diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 3281dc161e..d94c07ed5c 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,3 +1,2 @@ github: organicmaps liberapay: OrganicMaps -custom: ["https://organicmaps.app/donate"] diff --git a/.github/workflows/ios-beta.yaml b/.github/workflows/ios-beta.yaml index 11c974e0bd..babf10f82a 100644 --- a/.github/workflows/ios-beta.yaml +++ b/.github/workflows/ios-beta.yaml @@ -26,12 +26,7 @@ on: jobs: ios-beta: name: Apple TestFlight - runs-on: macos-11 - env: - DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer - LANG: en_US.UTF-8 # Fastlane complains that the terminal is using ASCII. - LANGUAGE: en_US.UTF-8 - LC_ALL: en_US.UTF-8 + runs-on: macos-latest environment: beta defaults: run: diff --git a/.github/workflows/ios-check.yaml b/.github/workflows/ios-check.yaml index 53a08130ee..72d4b8cb93 100644 --- a/.github/workflows/ios-check.yaml +++ b/.github/workflows/ios-check.yaml @@ -24,12 +24,7 @@ on: jobs: ios-check: name: Build iOS - runs-on: macos-11 - env: - DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer - LANG: en_US.UTF-8 # Fastlane complains that the terminal is using ASCII. - LANGUAGE: en_US.UTF-8 - LC_ALL: en_US.UTF-8 + runs-on: macos-latest strategy: fail-fast: false matrix: diff --git a/.github/workflows/ios-release.yaml b/.github/workflows/ios-release.yaml index 24beab2f8e..4bf3327649 100644 --- a/.github/workflows/ios-release.yaml +++ b/.github/workflows/ios-release.yaml @@ -5,12 +5,7 @@ on: jobs: ios-release: name: iOS Release - runs-on: macos-11 - env: - DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer - LANG: en_US.UTF-8 # Fastlane complains that the terminal is using ASCII. - LANGUAGE: en_US.UTF-8 - LC_ALL: en_US.UTF-8 + runs-on: macos-latest environment: production steps: - name: Checkout diff --git a/.github/workflows/linux-check.yaml b/.github/workflows/linux-check.yaml index 9a020d34cd..44bdcc552a 100644 --- a/.github/workflows/linux-check.yaml +++ b/.github/workflows/linux-check.yaml @@ -27,11 +27,6 @@ jobs: CMAKE_BUILD_TYPE: [Debug, RelWithDebInfo] steps: - - name: Free disk space by removing .NET, Android and Haskell - shell: bash - run: | - sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc - - name: Checkout sources uses: actions/checkout@v2 diff --git a/.github/workflows/strings-check.yaml b/.github/workflows/strings-check.yaml index f985419335..70fe9e2d45 100644 --- a/.github/workflows/strings-check.yaml +++ b/.github/workflows/strings-check.yaml @@ -1,14 +1,13 @@ -name: Validate translation strings +name: strings.txt check on: workflow_dispatch: # Manual trigger pull_request: paths: - 'data/strings/strings.txt' - - 'data/strings/types_strings.txt' jobs: - validate-translation-strings: - name: Validate translation strings + check-strings-txt: + name: Check strings.txt format runs-on: ubuntu-latest steps: @@ -17,8 +16,8 @@ jobs: with: python-version: '3' - - name: Validate strings.txt and types_strings.txt files + - name: Check strings.txt shell: bash run: | - ./tools/python/strings_utils.py --validate - ./tools/python/strings_utils.py --types-strings --validate + ./tools/python/clean_strings_txt.py -s + git diff --quiet HEAD diff --git a/.gitignore b/.gitignore index 8d7181f6bb..8dbd6ce506 100644 --- a/.gitignore +++ b/.gitignore @@ -76,6 +76,7 @@ iphone/Maps/3party/Carthage/Build/iOS/*.dSYM iphone/Maps/3party/Carthage/Build/*.version # GeneratedFiles +version/version.hpp tools/win/MapsWithMe* GeneratedFiles diff --git a/3party/bsdiff-courgette/divsufsort/README.chromium b/3party/bsdiff-courgette/divsufsort/README.chromium index 29bee1fb50..0c99c057cf 100644 --- a/3party/bsdiff-courgette/divsufsort/README.chromium +++ b/3party/bsdiff-courgette/divsufsort/README.chromium @@ -32,4 +32,3 @@ List of changes made to original code: - Added namespace divsuf. - Added divsufsort_with_empty(). - Added unit tests. - - Patch to avoid int/uint comparison warnings. diff --git a/3party/bsdiff-courgette/divsufsort/divsufsort.cc b/3party/bsdiff-courgette/divsufsort/divsufsort.cc index 072b51ad68..c41fc962d1 100644 --- a/3party/bsdiff-courgette/divsufsort/divsufsort.cc +++ b/3party/bsdiff-courgette/divsufsort/divsufsort.cc @@ -57,8 +57,8 @@ sort_typeBstar(const sauchar_t *T, saidx_it SA, saint_t c0, c1; /* Initialize bucket arrays. */ - for(i = 0; i < static_cast(BUCKET_A_SIZE); ++i) { bucket_A[i] = 0; } - for(i = 0; i < static_cast(BUCKET_B_SIZE); ++i) { bucket_B[i] = 0; } + for(i = 0; i < BUCKET_A_SIZE; ++i) { bucket_A[i] = 0; } + for(i = 0; i < BUCKET_B_SIZE; ++i) { bucket_B[i] = 0; } /* Count the number of occurrences of the first one or two characters of each type A, B and B* suffix. Moreover, store the beginning position of all @@ -84,11 +84,11 @@ note: */ /* Calculate the index of start/end point of each bucket. */ - for(c0 = 0, i = 0, j = 0; c0 < static_cast(ALPHABET_SIZE); ++c0) { + for(c0 = 0, i = 0, j = 0; c0 < ALPHABET_SIZE; ++c0) { t = i + BUCKET_A(c0); BUCKET_A(c0) = i + j; /* start point */ i = t + BUCKET_B(c0, c0); - for(c1 = c0 + 1; c1 < static_cast(ALPHABET_SIZE); ++c1) { + for(c1 = c0 + 1; c1 < ALPHABET_SIZE; ++c1) { j += BUCKET_BSTAR(c0, c1); BUCKET_BSTAR(c0, c1) = j; /* end point */ i += BUCKET_B(c0, c1); @@ -178,9 +178,10 @@ construct_SA(const sauchar_t *T, saidx_it SA, the sorted order of type B* suffixes. */ for(c1 = ALPHABET_SIZE - 2; 0 <= c1; --c1) { /* Scan the suffix array from right to left. */ - for (i = SA + BUCKET_BSTAR(c1, c1 + 1), j = SA + BUCKET_A(c1 + 1) - 1, - k = nullptr, c2 = -1; - i <= j; --j) { + for(i = SA + BUCKET_BSTAR(c1, c1 + 1), + j = SA + BUCKET_A(c1 + 1) - 1, k = NULL, c2 = -1; + i <= j; + --j) { if(0 < (s = *j)) { assert(T[s] == c1); assert(((s + 1) < n) && (T[s] <= T[s + 1])); @@ -238,24 +239,16 @@ divsufsort(const sauchar_t *T, saidx_it SA, saidx_t n) { saint_t err = 0; /* Check arguments. */ - if ((T == nullptr) || (SA == nullptr) || (n < 0)) { - return -1; - } else if (n == 0) { - return 0; - } else if (n == 1) { - SA[0] = 0; - return 0; - } else if (n == 2) { - m = (T[0] < T[1]); - SA[m ^ 1] = 0, SA[m] = 1; - return 0; - } + if((T == NULL) || (SA == NULL) || (n < 0)) { return -1; } + else if(n == 0) { return 0; } + else if(n == 1) { SA[0] = 0; return 0; } + else if(n == 2) { m = (T[0] < T[1]); SA[m ^ 1] = 0, SA[m] = 1; return 0; } bucket_A = (saidx_t *)malloc(BUCKET_A_SIZE * sizeof(saidx_t)); bucket_B = (saidx_t *)malloc(BUCKET_B_SIZE * sizeof(saidx_t)); /* Suffixsort. */ - if ((bucket_A != nullptr) && (bucket_B != nullptr)) { + if((bucket_A != NULL) && (bucket_B != NULL)) { m = sort_typeBstar(T, SA, bucket_A, bucket_B, n); construct_SA(T, SA, bucket_A, bucket_B, n, m); } else { diff --git a/3party/bsdiff-courgette/divsufsort/trsort.cc b/3party/bsdiff-courgette/divsufsort/trsort.cc index de5163bb3c..62691e8ab8 100644 --- a/3party/bsdiff-courgette/divsufsort/trsort.cc +++ b/3party/bsdiff-courgette/divsufsort/trsort.cc @@ -51,7 +51,7 @@ namespace { /*- Private Functions -*/ -const saint_t lg_table_[256]= { +const saint_t lg_table[256]= { -1,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, @@ -67,11 +67,11 @@ saint_t tr_ilg(saidx_t n) { return (n & 0xffff0000) ? ((n & 0xff000000) ? - 24 + lg_table_[(n >> 24) & 0xff] : - 16 + lg_table_[(n >> 16) & 0xff]) : + 24 + lg_table[(n >> 24) & 0xff] : + 16 + lg_table[(n >> 16) & 0xff]) : ((n & 0x0000ff00) ? - 8 + lg_table_[(n >> 8) & 0xff] : - 0 + lg_table_[(n >> 0) & 0xff]); + 8 + lg_table[(n >> 8) & 0xff] : + 0 + lg_table[(n >> 0) & 0xff]); } @@ -352,7 +352,7 @@ tr_introsort(saidx_it ISA, const_saidx_it ISAd, /* push */ if(1 < (b - a)) { - STACK_PUSH5(nullptr, a, b, 0, 0); + STACK_PUSH5(NULL, a, b, 0, 0); STACK_PUSH5(ISAd - incr, first, last, -2, trlink); trlink = ssize - 2; } diff --git a/3party/freetype/CMakeLists.txt b/3party/freetype/CMakeLists.txt index 5120494b50..f860474cbe 100644 --- a/3party/freetype/CMakeLists.txt +++ b/3party/freetype/CMakeLists.txt @@ -6,3 +6,4 @@ target_include_directories(freetype $ $ ) +add_library(Freetype::Freetype ALIAS freetype) diff --git a/3party/freetype/freetype b/3party/freetype/freetype index 4eb6cb8818..d6a5c57727 160000 --- a/3party/freetype/freetype +++ b/3party/freetype/freetype @@ -1 +1 @@ -Subproject commit 4eb6cb8818057a022f97176b53738ee3098c8eb6 +Subproject commit d6a5c57727643fc7a0d30e10776edf9c2c5956ae diff --git a/3party/icu/CMakeLists.txt b/3party/icu/CMakeLists.txt index 60b55d93de..5fc8f8ab33 100644 --- a/3party/icu/CMakeLists.txt +++ b/3party/icu/CMakeLists.txt @@ -1,126 +1,58 @@ project(icu) -set(SRC +add_library(icuuc uconfig_local.h icu/icu4c/source/common/appendable.cpp icu/icu4c/source/common/bmpset.cpp - icu/icu4c/source/common/bmpset.h - icu/icu4c/source/common/brkeng.h icu/icu4c/source/common/bytesinkutil.cpp - icu/icu4c/source/common/bytesinkutil.h icu/icu4c/source/common/bytestream.cpp icu/icu4c/source/common/bytestrie.cpp - icu/icu4c/source/common/capi_helper.h icu/icu4c/source/common/characterproperties.cpp icu/icu4c/source/common/charstr.cpp - icu/icu4c/source/common/charstr.h - icu/icu4c/source/common/charstrmap.h icu/icu4c/source/common/cmemory.cpp - icu/icu4c/source/common/cmemory.h - icu/icu4c/source/common/cstr.h icu/icu4c/source/common/cstring.cpp - icu/icu4c/source/common/cstring.h - icu/icu4c/source/common/cwchar.h - icu/icu4c/source/common/dictionarydata.h icu/icu4c/source/common/edits.cpp icu/icu4c/source/common/emojiprops.cpp - icu/icu4c/source/common/hash.h - icu/icu4c/source/common/icuplugimp.h icu/icu4c/source/common/loadednormalizer2impl.cpp icu/icu4c/source/common/localebuilder.cpp - icu/icu4c/source/common/localsvc.h - icu/icu4c/source/common/locbased.h icu/icu4c/source/common/locid.cpp icu/icu4c/source/common/loclikely.cpp icu/icu4c/source/common/locmap.cpp icu/icu4c/source/common/locutil.cpp - icu/icu4c/source/common/locutil.h - icu/icu4c/source/common/lsr.h - icu/icu4c/source/common/messageimpl.h - icu/icu4c/source/common/msvcres.h - icu/icu4c/source/common/mutex.h - icu/icu4c/source/common/norm2_nfc_data.h - icu/icu4c/source/common/norm2allmodes.h icu/icu4c/source/common/normalizer2.cpp icu/icu4c/source/common/normalizer2impl.cpp - icu/icu4c/source/common/normalizer2impl.h icu/icu4c/source/common/parsepos.cpp icu/icu4c/source/common/patternprops.cpp - icu/icu4c/source/common/patternprops.h icu/icu4c/source/common/propname.cpp - icu/icu4c/source/common/propname.h - icu/icu4c/source/common/propname_data.h - icu/icu4c/source/common/punycode.h icu/icu4c/source/common/putil.cpp - icu/icu4c/source/common/putilimp.h - icu/icu4c/source/common/rbbirb.h - icu/icu4c/source/common/rbbirpt.h - icu/icu4c/source/common/rbbiscan.h - icu/icu4c/source/common/rbbisetb.h - icu/icu4c/source/common/rbbitblb.h icu/icu4c/source/common/resbund.cpp icu/icu4c/source/common/resbund_cnv.cpp icu/icu4c/source/common/resource.cpp - icu/icu4c/source/common/resource.h - icu/icu4c/source/common/restrace.h icu/icu4c/source/common/ruleiter.cpp - icu/icu4c/source/common/ruleiter.h - icu/icu4c/source/common/serv.h - icu/icu4c/source/common/sharedobject.h - icu/icu4c/source/common/sprpimpl.h - icu/icu4c/source/common/static_unicode_sets.h icu/icu4c/source/common/stringpiece.cpp icu/icu4c/source/common/uarrsort.cpp - icu/icu4c/source/common/uarrsort.h icu/icu4c/source/common/ubidi.cpp icu/icu4c/source/common/ubidi_props.cpp - icu/icu4c/source/common/ubidi_props.h - icu/icu4c/source/common/ubidi_props_data.h - icu/icu4c/source/common/ubidiimp.h icu/icu4c/source/common/ubidiln.cpp icu/icu4c/source/common/ubidiwrt.cpp - icu/icu4c/source/common/ubrkimpl.h icu/icu4c/source/common/ucase.cpp - icu/icu4c/source/common/ucase.h - icu/icu4c/source/common/ucase_props_data.h - icu/icu4c/source/common/ucasemap_imp.h icu/icu4c/source/common/uchar.cpp icu/icu4c/source/common/ucharstrie.cpp icu/icu4c/source/common/ucharstrieiterator.cpp icu/icu4c/source/common/ucln_cmn.cpp - icu/icu4c/source/common/ucln_cmn.h - icu/icu4c/source/common/ucln_imp.h icu/icu4c/source/common/ucmndata.cpp - icu/icu4c/source/common/ucmndata.h - icu/icu4c/source/common/ucnv_bld.h - icu/icu4c/source/common/ucnv_cnv.h - icu/icu4c/source/common/ucnv_ext.h - icu/icu4c/source/common/ucnv_imp.h - icu/icu4c/source/common/ucnv_io.h - icu/icu4c/source/common/ucnvmbcs.h - icu/icu4c/source/common/ucol_data.h icu/icu4c/source/common/ucptrie.cpp - icu/icu4c/source/common/ucptrie_impl.h - icu/icu4c/source/common/ucurrimp.h icu/icu4c/source/common/udata.cpp icu/icu4c/source/common/udatamem.cpp icu/icu4c/source/common/udataswp.cpp - icu/icu4c/source/common/udataswp.h icu/icu4c/source/common/uenum.cpp - icu/icu4c/source/common/uenumimp.h icu/icu4c/source/common/uhash.cpp - icu/icu4c/source/common/uhash.h icu/icu4c/source/common/uhash_us.cpp icu/icu4c/source/common/uinvchar.cpp - icu/icu4c/source/common/uinvchar.h - icu/icu4c/source/common/ulayout_props.h - icu/icu4c/source/common/ulist.h icu/icu4c/source/common/uloc.cpp icu/icu4c/source/common/uloc_keytype.cpp icu/icu4c/source/common/uloc_tag.cpp - icu/icu4c/source/common/ulocimp.h icu/icu4c/source/common/umapfile.cpp - icu/icu4c/source/common/umapfile.h icu/icu4c/source/common/umath.cpp icu/icu4c/source/common/umutablecptrie.cpp icu/icu4c/source/common/umutex.cpp @@ -134,259 +66,81 @@ set(SRC icu/icu4c/source/common/unistr.cpp icu/icu4c/source/common/unistr_case.cpp icu/icu4c/source/common/unistr_case_locale.cpp - icu/icu4c/source/common/unistrappender.h icu/icu4c/source/common/uobject.cpp - icu/icu4c/source/common/uposixdefs.h icu/icu4c/source/common/uprops.cpp - icu/icu4c/source/common/uprops.h icu/icu4c/source/common/uresbund.cpp icu/icu4c/source/common/uresdata.cpp - icu/icu4c/source/common/uresimp.h icu/icu4c/source/common/uscript.cpp icu/icu4c/source/common/uscript_props.cpp icu/icu4c/source/common/uset.cpp - icu/icu4c/source/common/uset_imp.h icu/icu4c/source/common/ushape.cpp - icu/icu4c/source/common/ustr_cnv.h icu/icu4c/source/common/ustrcase.cpp icu/icu4c/source/common/ustrcase_locale.cpp icu/icu4c/source/common/ustrenum.cpp - icu/icu4c/source/common/ustrenum.h - icu/icu4c/source/common/ustrfmt.h icu/icu4c/source/common/ustring.cpp icu/icu4c/source/common/ustrtrns.cpp icu/icu4c/source/common/utf_impl.cpp icu/icu4c/source/common/util.cpp - icu/icu4c/source/common/util.h icu/icu4c/source/common/util_props.cpp icu/icu4c/source/common/utrace.cpp - icu/icu4c/source/common/utracimp.h - icu/icu4c/source/common/utrie.h icu/icu4c/source/common/utrie2.cpp - icu/icu4c/source/common/utrie2_impl.h icu/icu4c/source/common/utrie_swap.cpp - icu/icu4c/source/common/utypeinfo.h icu/icu4c/source/common/uvector.cpp icu/icu4c/source/common/uvectr32.cpp - icu/icu4c/source/common/uvectr64.h - icu/icu4c/source/common/wintz.h - icu/icu4c/source/i18n/anytrans.cpp - icu/icu4c/source/i18n/anytrans.h - icu/icu4c/source/i18n/astro.h - icu/icu4c/source/i18n/bocsu.h - icu/icu4c/source/i18n/brktrans.h - icu/icu4c/source/i18n/buddhcal.h - icu/icu4c/source/i18n/casetrn.cpp - icu/icu4c/source/i18n/casetrn.h - icu/icu4c/source/i18n/cecal.h - icu/icu4c/source/i18n/chnsecal.h - icu/icu4c/source/i18n/collation.h - icu/icu4c/source/i18n/collationbuilder.h - icu/icu4c/source/i18n/collationcompare.h - icu/icu4c/source/i18n/collationdata.h - icu/icu4c/source/i18n/collationdatabuilder.h - icu/icu4c/source/i18n/collationdatareader.h - icu/icu4c/source/i18n/collationdatawriter.h - icu/icu4c/source/i18n/collationfastlatin.h - icu/icu4c/source/i18n/collationfastlatinbuilder.h - icu/icu4c/source/i18n/collationfcd.h - icu/icu4c/source/i18n/collationiterator.h - icu/icu4c/source/i18n/collationkeys.h - icu/icu4c/source/i18n/collationroot.h - icu/icu4c/source/i18n/collationrootelements.h - icu/icu4c/source/i18n/collationruleparser.h - icu/icu4c/source/i18n/collationsets.h - icu/icu4c/source/i18n/collationsettings.h - icu/icu4c/source/i18n/collationtailoring.h - icu/icu4c/source/i18n/collationweights.h - icu/icu4c/source/i18n/collunsafe.h - icu/icu4c/source/i18n/coptccal.h - icu/icu4c/source/i18n/cpdtrans.cpp - icu/icu4c/source/i18n/cpdtrans.h - icu/icu4c/source/i18n/csdetect.h - icu/icu4c/source/i18n/csmatch.h - icu/icu4c/source/i18n/csr2022.h - icu/icu4c/source/i18n/csrecog.h - icu/icu4c/source/i18n/csrmbcs.h - icu/icu4c/source/i18n/csrsbcs.h - icu/icu4c/source/i18n/csrucode.h - icu/icu4c/source/i18n/csrutf8.h - icu/icu4c/source/i18n/currfmt.h - icu/icu4c/source/i18n/dangical.h - icu/icu4c/source/i18n/dayperiodrules.h - icu/icu4c/source/i18n/decContext.h - icu/icu4c/source/i18n/decNumber.h - icu/icu4c/source/i18n/decNumberLocal.h - icu/icu4c/source/i18n/double-conversion-bignum-dtoa.h - icu/icu4c/source/i18n/double-conversion-bignum.h - icu/icu4c/source/i18n/double-conversion-cached-powers.h - icu/icu4c/source/i18n/double-conversion-diy-fp.h - icu/icu4c/source/i18n/double-conversion-double-to-string.h - icu/icu4c/source/i18n/double-conversion-fast-dtoa.h - icu/icu4c/source/i18n/double-conversion-ieee.h - icu/icu4c/source/i18n/double-conversion-string-to-double.h - icu/icu4c/source/i18n/double-conversion-strtod.h - icu/icu4c/source/i18n/double-conversion-utils.h - icu/icu4c/source/i18n/double-conversion.h - icu/icu4c/source/i18n/dt_impl.h - icu/icu4c/source/i18n/dtitv_impl.h - icu/icu4c/source/i18n/dtptngen_impl.h - icu/icu4c/source/i18n/erarules.h - icu/icu4c/source/i18n/esctrn.cpp - icu/icu4c/source/i18n/esctrn.h - icu/icu4c/source/i18n/ethpccal.h - icu/icu4c/source/i18n/fmtableimp.h - icu/icu4c/source/i18n/formatted_string_builder.h - icu/icu4c/source/i18n/formattedval_impl.h - icu/icu4c/source/i18n/fphdlimp.h - icu/icu4c/source/i18n/funcrepl.cpp - icu/icu4c/source/i18n/funcrepl.h - icu/icu4c/source/i18n/gregoimp.h - icu/icu4c/source/i18n/hebrwcal.h - icu/icu4c/source/i18n/indiancal.h - icu/icu4c/source/i18n/inputext.h - icu/icu4c/source/i18n/islamcal.h - icu/icu4c/source/i18n/japancal.h - icu/icu4c/source/i18n/measunit_impl.h - icu/icu4c/source/i18n/msgfmt_impl.h - icu/icu4c/source/i18n/name2uni.cpp - icu/icu4c/source/i18n/name2uni.h - icu/icu4c/source/i18n/nfrlist.h - icu/icu4c/source/i18n/nfrs.h - icu/icu4c/source/i18n/nfrule.h - icu/icu4c/source/i18n/nfsubs.h - icu/icu4c/source/i18n/nortrans.cpp - icu/icu4c/source/i18n/nortrans.h - icu/icu4c/source/i18n/nultrans.cpp - icu/icu4c/source/i18n/nultrans.h - icu/icu4c/source/i18n/number_affixutils.h - icu/icu4c/source/i18n/number_asformat.h - icu/icu4c/source/i18n/number_compact.h - icu/icu4c/source/i18n/number_currencysymbols.h - icu/icu4c/source/i18n/number_decimalquantity.h - icu/icu4c/source/i18n/number_decimfmtprops.h - icu/icu4c/source/i18n/number_decnum.h - icu/icu4c/source/i18n/number_formatimpl.h - icu/icu4c/source/i18n/number_longnames.h - icu/icu4c/source/i18n/number_mapper.h - icu/icu4c/source/i18n/number_microprops.h - icu/icu4c/source/i18n/number_modifiers.h - icu/icu4c/source/i18n/number_multiplier.h - icu/icu4c/source/i18n/number_patternmodifier.h - icu/icu4c/source/i18n/number_patternstring.h - icu/icu4c/source/i18n/number_roundingutils.h - icu/icu4c/source/i18n/number_scientific.h - icu/icu4c/source/i18n/number_skeletons.h - icu/icu4c/source/i18n/number_types.h - icu/icu4c/source/i18n/number_usageprefs.h - icu/icu4c/source/i18n/number_utils.h - icu/icu4c/source/i18n/number_utypes.h - icu/icu4c/source/i18n/numparse_affixes.h - icu/icu4c/source/i18n/numparse_compositions.h - icu/icu4c/source/i18n/numparse_currency.h - icu/icu4c/source/i18n/numparse_decimal.h - icu/icu4c/source/i18n/numparse_impl.h - icu/icu4c/source/i18n/numparse_scientific.h - icu/icu4c/source/i18n/numparse_symbols.h - icu/icu4c/source/i18n/numparse_types.h - icu/icu4c/source/i18n/numparse_utils.h - icu/icu4c/source/i18n/numparse_validators.h - icu/icu4c/source/i18n/numrange_impl.h - icu/icu4c/source/i18n/numsys_impl.h - icu/icu4c/source/i18n/olsontz.h - icu/icu4c/source/i18n/persncal.h - icu/icu4c/source/i18n/pluralranges.h - icu/icu4c/source/i18n/plurrule_impl.h - icu/icu4c/source/i18n/quant.cpp - icu/icu4c/source/i18n/quant.h - icu/icu4c/source/i18n/quantityformatter.h - icu/icu4c/source/i18n/rbt.cpp - icu/icu4c/source/i18n/rbt.h - icu/icu4c/source/i18n/rbt_data.cpp - icu/icu4c/source/i18n/rbt_data.h - icu/icu4c/source/i18n/rbt_pars.cpp - icu/icu4c/source/i18n/rbt_pars.h - icu/icu4c/source/i18n/rbt_rule.cpp - icu/icu4c/source/i18n/rbt_rule.h - icu/icu4c/source/i18n/rbt_set.cpp - icu/icu4c/source/i18n/rbt_set.h - icu/icu4c/source/i18n/regexcmp.h - icu/icu4c/source/i18n/regexcst.h - icu/icu4c/source/i18n/regeximp.h - icu/icu4c/source/i18n/regexst.h - icu/icu4c/source/i18n/regextxt.h - icu/icu4c/source/i18n/region_impl.h - icu/icu4c/source/i18n/reldtfmt.h - icu/icu4c/source/i18n/remtrans.cpp - icu/icu4c/source/i18n/remtrans.h - icu/icu4c/source/i18n/scriptset.h - icu/icu4c/source/i18n/selfmtimpl.h - icu/icu4c/source/i18n/sharedbreakiterator.h - icu/icu4c/source/i18n/sharedcalendar.h - icu/icu4c/source/i18n/shareddateformatsymbols.h - icu/icu4c/source/i18n/sharednumberformat.h - icu/icu4c/source/i18n/sharedpluralrules.h - icu/icu4c/source/i18n/smpdtfst.h - icu/icu4c/source/i18n/standardplural.h - icu/icu4c/source/i18n/string_segment.h - icu/icu4c/source/i18n/strmatch.cpp - icu/icu4c/source/i18n/strmatch.h - icu/icu4c/source/i18n/strrepl.cpp - icu/icu4c/source/i18n/strrepl.h - icu/icu4c/source/i18n/taiwncal.h - icu/icu4c/source/i18n/titletrn.cpp - icu/icu4c/source/i18n/titletrn.h - icu/icu4c/source/i18n/tolowtrn.cpp - icu/icu4c/source/i18n/tolowtrn.h - icu/icu4c/source/i18n/toupptrn.cpp - icu/icu4c/source/i18n/toupptrn.h - icu/icu4c/source/i18n/translit.cpp - icu/icu4c/source/i18n/transreg.cpp - icu/icu4c/source/i18n/transreg.h - icu/icu4c/source/i18n/tridpars.cpp - icu/icu4c/source/i18n/tridpars.h - icu/icu4c/source/i18n/tzgnames.h - icu/icu4c/source/i18n/tznames_impl.h - icu/icu4c/source/i18n/ucln_in.cpp - icu/icu4c/source/i18n/ucln_in.h - icu/icu4c/source/i18n/ucol_imp.h - icu/icu4c/source/i18n/uitercollationiterator.h - icu/icu4c/source/i18n/umsg_imp.h - icu/icu4c/source/i18n/unesctrn.cpp - icu/icu4c/source/i18n/unesctrn.h - icu/icu4c/source/i18n/uni2name.cpp - icu/icu4c/source/i18n/uni2name.h - icu/icu4c/source/i18n/units_complexconverter.h - icu/icu4c/source/i18n/units_converter.h - icu/icu4c/source/i18n/units_data.h - icu/icu4c/source/i18n/units_router.h - icu/icu4c/source/i18n/uspoof_conf.h - icu/icu4c/source/i18n/uspoof_impl.h - icu/icu4c/source/i18n/usrchimp.h - icu/icu4c/source/i18n/utf16collationiterator.h - icu/icu4c/source/i18n/utf8collationiterator.h - icu/icu4c/source/i18n/vzone.h - icu/icu4c/source/i18n/windtfmt.h - icu/icu4c/source/i18n/winnmfmt.h - icu/icu4c/source/i18n/wintzimpl.h - icu/icu4c/source/i18n/zonemeta.h - icu/icu4c/source/i18n/zrule.h - icu/icu4c/source/i18n/ztrans.h - icu/icu4c/source/stubdata/stubdata.cpp +) +add_library(ICU::uc ALIAS icuuc) + +target_include_directories(icuuc + PUBLIC + ./ + icu/icu4c/source/common ) -add_library(${PROJECT_NAME} ${SRC}) - -target_compile_definitions(${PROJECT_NAME} +target_compile_definitions(icuuc PUBLIC UCONFIG_USE_LOCAL ) -target_include_directories(${PROJECT_NAME} +add_library(icui18n + icu/icu4c/source/i18n/anytrans.cpp + icu/icu4c/source/i18n/casetrn.cpp + icu/icu4c/source/i18n/cpdtrans.cpp + icu/icu4c/source/i18n/esctrn.cpp + icu/icu4c/source/i18n/funcrepl.cpp + icu/icu4c/source/i18n/name2uni.cpp + icu/icu4c/source/i18n/nortrans.cpp + icu/icu4c/source/i18n/nultrans.cpp + icu/icu4c/source/i18n/quant.cpp + icu/icu4c/source/i18n/rbt.cpp + icu/icu4c/source/i18n/rbt_data.cpp + icu/icu4c/source/i18n/rbt_pars.cpp + icu/icu4c/source/i18n/rbt_rule.cpp + icu/icu4c/source/i18n/rbt_set.cpp + icu/icu4c/source/i18n/remtrans.cpp + icu/icu4c/source/i18n/strmatch.cpp + icu/icu4c/source/i18n/strrepl.cpp + icu/icu4c/source/i18n/titletrn.cpp + icu/icu4c/source/i18n/tolowtrn.cpp + icu/icu4c/source/i18n/toupptrn.cpp + icu/icu4c/source/i18n/translit.cpp + icu/icu4c/source/i18n/transreg.cpp + icu/icu4c/source/i18n/tridpars.cpp + icu/icu4c/source/i18n/ucln_in.cpp + icu/icu4c/source/i18n/unesctrn.cpp + icu/icu4c/source/i18n/uni2name.cpp + icu/icu4c/source/stubdata/stubdata.cpp +) +add_library(ICU::i18n ALIAS icui18n) + +target_compile_definitions(icui18n PUBLIC - ./ - icu/icu4c/source/common - icu/icu4c/source/i18n + UCONFIG_USE_LOCAL ) -set_target_properties(${PROJECT_NAME} PROPERTIES UNITY_BUILD OFF) +target_include_directories(icui18n + PUBLIC + ./ + icu/icu4c/source/i18n + PRIVATE + icu/icu4c/source/common +) diff --git a/3party/minizip/src/ioapi.h b/3party/minizip/src/ioapi.h index 069e7d3fa6..8dcbdb06e3 100644 --- a/3party/minizip/src/ioapi.h +++ b/3party/minizip/src/ioapi.h @@ -21,7 +21,6 @@ #ifndef _ZLIBIOAPI64_H #define _ZLIBIOAPI64_H -/* Commented, because it is a manual hack and it fails on Android API < 24 #if (!defined(_WIN32)) && (!defined(WIN32)) && (!defined(__APPLE__)) // Linux needs this to support file operation on files larger then 4+GB @@ -41,7 +40,6 @@ #endif #endif -*/ #include #include diff --git a/3party/minizip/src/miniunz.c b/3party/minizip/src/miniunz.c index 56b87aaddb..3d65401be5 100644 --- a/3party/minizip/src/miniunz.c +++ b/3party/minizip/src/miniunz.c @@ -12,7 +12,6 @@ Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) */ -/* Commented, because it is a manual hack and it fails on Android API < 24 #if (!defined(_WIN32)) && (!defined(WIN32)) && (!defined(__APPLE__)) #ifndef __USE_FILE_OFFSET64 #define __USE_FILE_OFFSET64 @@ -27,7 +26,6 @@ #define _FILE_OFFSET_BIT 64 #endif #endif -*/ #ifdef __APPLE__ // In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions diff --git a/3party/minizip/src/minizip.c b/3party/minizip/src/minizip.c index 2da6d46301..4288962ece 100644 --- a/3party/minizip/src/minizip.c +++ b/3party/minizip/src/minizip.c @@ -12,7 +12,7 @@ Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) */ -/* Commented, because it is a manual hack and it fails on Android API < 24 + #if (!defined(_WIN32)) && (!defined(WIN32)) && (!defined(__APPLE__)) #ifndef __USE_FILE_OFFSET64 #define __USE_FILE_OFFSET64 @@ -27,7 +27,6 @@ #define _FILE_OFFSET_BIT 64 #endif #endif -*/ #ifdef __APPLE__ // In darwin and perhaps other BSD variants off_t is a 64 bit value, hence no need for specific 64 bit functions diff --git a/3party/opening_hours/CMakeLists.txt b/3party/opening_hours/CMakeLists.txt index c6a92dd281..52f93aebaf 100644 --- a/3party/opening_hours/CMakeLists.txt +++ b/3party/opening_hours/CMakeLists.txt @@ -21,10 +21,6 @@ omim_add_library(${PROJECT_NAME} ${SRC}) target_include_directories(${PROJECT_NAME} INTERFACE .) -if (NOT PLATFORM_ANDROID) - target_compile_options(${PROJECT_NAME} PRIVATE -Wno-deprecated-copy) -endif() - omim_add_test_subdirectory(opening_hours_tests) omim_add_test_subdirectory(opening_hours_integration_tests) omim_add_test_subdirectory(opening_hours_supported_features_tests) diff --git a/3party/opening_hours/opening_hours.cpp b/3party/opening_hours/opening_hours.cpp index fc201da04f..7dd39dd30c 100644 --- a/3party/opening_hours/opening_hours.cpp +++ b/3party/opening_hours/opening_hours.cpp @@ -186,7 +186,6 @@ std::ostream & operator<<(std::ostream & ost, TimeEvent::Event const event) { case TimeEvent::Event::None: ost << "None"; - break; case TimeEvent::Event::Sunrise: ost << "sunrise"; break; diff --git a/3party/protobuf/CMakeLists.txt b/3party/protobuf/CMakeLists.txt index c31682f0c2..8bbc19007f 100644 --- a/3party/protobuf/CMakeLists.txt +++ b/3party/protobuf/CMakeLists.txt @@ -29,14 +29,14 @@ add_library(${PROJECT_NAME} ${SRC}) target_include_directories(${PROJECT_NAME} PRIVATE . ../../ - PUBLIC protobuf/src + PUBLIC protobuf/src ) if(NOT PLATFORM_WIN) target_compile_definitions(${PROJECT_NAME} PRIVATE HAVE_PTHREAD) endif () -target_compile_options(${PROJECT_NAME} PRIVATE - $<$:-Wno-shorten-64-to-32> - -Wno-sign-compare +target_compile_options(${PROJECT_NAME} + PRIVATE $<$:-Wno-shorten-64-to-32> ) + diff --git a/CMakeLists.txt b/CMakeLists.txt index f7b854f9d4..68566d23b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,14 +8,8 @@ set(CMAKE_C_STANDARD 11) set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_C_EXTENSIONS OFF) -if (NOT (DEFINED ENV{UNITY_DISABLE})) - message("Using unity builds, export UNITY_DISABLE=1 to disable it.") - set(CMAKE_UNITY_BUILD ON) - set(CMAKE_UNITY_BUILD_BATCH_SIZE 50) -endif() - -if (NOT (DEFINED ENV{COLORS_DISABLE}) AND CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") - message("export COLORS_DISABLE=1 to disable colored compiler output.") +if(NOT (DEFINED ENV{COLORS_DISABLE}) AND CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") + message(STATUS "export COLORS_DISABLE=1 to disable colored compiler output.") add_compile_options($<$:-fdiagnostics-color=always> $<$:-fcolor-diagnostics>) add_link_options($<$:-fdiagnostics-color=always> $<$:-fcolor-diagnostics>) endif() @@ -161,7 +155,7 @@ set(LIBRARY_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR}) if (NOT (DEFINED ENV{CCACHE_DISABLE})) find_program(CCACHE_PROGRAM ccache HINTS /usr/local/bin/) if (CCACHE_PROGRAM) - message("Using ccache, export CCACHE_DISABLE=1 to disable it.") + message(STATUS "Using ccache, export CCACHE_DISABLE=1 to disable it.") set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}") set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK "${CCACHE_PROGRAM}") set(CMAKE_C_COMPILER_LAUNCHER "${CCACHE_PROGRAM}") @@ -274,25 +268,6 @@ if (USE_PCH) ) endif() -# Generate version header file. -execute_process(COMMAND tools/unix/version.sh android_name - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} - OUTPUT_VARIABLE OM_VERSION - OUTPUT_STRIP_TRAILING_WHITESPACE -) -execute_process(COMMAND tools/unix/version.sh android_code - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} - OUTPUT_VARIABLE OM_VERSION_CODE - OUTPUT_STRIP_TRAILING_WHITESPACE -) -execute_process(COMMAND tools/unix/version.sh git_hash - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} - OUTPUT_VARIABLE OM_GIT_HASH - OUTPUT_STRIP_TRAILING_WHITESPACE -) -# TODO: Does it run on every build or only on configure step? -# TODO: Run only when dependent targets are built. -configure_file(build_version.hpp.in ${CMAKE_SOURCE_DIR}/build_version.hpp @ONLY) # Include 3party dependencies. @@ -310,9 +285,14 @@ set(EXPAT_SHARED_LIBS OFF) add_subdirectory(3party/expat/expat) add_subdirectory(3party/agg) add_subdirectory(3party/bsdiff-courgette) -add_subdirectory(3party/freetype) add_subdirectory(3party/gflags) +if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux") + find_package(ICU COMPONENTS uc i18n data REQUIRED) + find_package(Freetype REQUIRED) +else() +add_subdirectory(3party/freetype) add_subdirectory(3party/icu) +endif() add_subdirectory(3party/jansson) add_subdirectory(3party/liboauthcpp) add_subdirectory(3party/minizip) @@ -386,3 +366,12 @@ omim_add_test_subdirectory(qt_tstfrm) if (PLATFORM_ANDROID) add_subdirectory(android/jni) endif() + +add_custom_target(BuildVersion ALL + COMMAND ${CMAKE_COMMAND} + ARGS + -D OMAPS_CURRENT_PROJECT_ROOT=${OMIM_ROOT} + -D PATH_WITH_BUILD_VERSION_HPP=${OMIM_ROOT} + -D PROJECT_NAME=${PROJECT_NAME} + -P ${OMIM_ROOT}/cmake/BuildVersion.cmake +) diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index 6ab7e036e9..273f541b46 100644 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -63,8 +63,7 @@ + android:label="@string/app_name"> @@ -244,8 +243,7 @@ + android:targetActivity="com.mapswithme.maps.SplashActivity"> @@ -281,8 +279,7 @@ android:name="com.mapswithme.maps.help.HelpActivity" android:configChanges="orientation|screenLayout|screenSize" android:label="@string/help" - android:parentActivityName="com.mapswithme.maps.MwmActivity" - android:exported="false"> + android:parentActivityName="com.mapswithme.maps.MwmActivity"> @@ -340,9 +337,7 @@ android:exported="false"/> - + diff --git a/android/build.gradle b/android/build.gradle index bff8188cd9..126895424e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -30,21 +30,21 @@ buildscript { if (googleMobileServicesEnabled) { println("Building with Google Mobile Services") - classpath 'com.google.gms:google-services:4.3.10' + classpath 'com.google.gms:google-services:4.3.5' } else { println("Building without Google Services") } if (googleFirebaseServicesEnabled) { println("Building with Google Firebase Services") - classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1' - classpath 'com.google.firebase:firebase-appdistribution-gradle:2.2.0' + classpath 'com.google.firebase:firebase-crashlytics-gradle:2.6.1' + classpath 'com.google.firebase:firebase-appdistribution-gradle:2.1.2' } else { println("Building without Google Firebase Services") } - classpath("com.github.triplet.gradle:play-publisher:3.7.0") - classpath("ru.cian:huawei-publish-gradle-plugin:1.3.1") + classpath("com.github.triplet.gradle:play-publisher:3.6.0") + classpath("ru.cian:huawei-publish-gradle-plugin:1.3.0") } } @@ -77,12 +77,12 @@ dependencies { // Google Firebase Services if (googleFirebaseServicesEnabled) { - implementation 'com.google.firebase:firebase-crashlytics:18.2.6' - implementation 'com.google.firebase:firebase-crashlytics-ndk:18.2.6' + implementation 'com.google.firebase:firebase-crashlytics:18.0.0' + implementation 'com.google.firebase:firebase-crashlytics-ndk:18.0.0' } // 3-party - implementation 'com.google.code.gson:gson:2.8.9' + implementation 'com.google.code.gson:gson:2.8.7' // BottomSheet implementation 'com.cocosw:bottomsheet:1.5.0@aar' implementation 'com.timehop.stickyheadersrecyclerview:library:0.4.3@aar' @@ -91,14 +91,14 @@ dependencies { // Java concurrency annotations implementation 'net.jcip:jcip-annotations:1.0' - implementation 'androidx.constraintlayout:constraintlayout:2.1.2' - implementation 'androidx.work:work-runtime:2.7.1' - implementation 'com.trafi:anchor-bottom-sheet-behavior:0.14-alpha' + implementation 'androidx.constraintlayout:constraintlayout:2.1.0' + implementation 'androidx.work:work-runtime:2.5.0' + implementation 'com.trafi:anchor-bottom-sheet-behavior:0.13-alpha' implementation 'com.github.devnullorthrow:MPAndroidChart:3.2.0-alpha' - implementation 'com.google.android.material:material:1.6.0-alpha01' - implementation 'androidx.appcompat:appcompat:1.4.0' + implementation 'com.google.android.material:material:1.5.0-alpha02' + implementation 'androidx.appcompat:appcompat:1.3.1' implementation 'androidx.preference:preference:1.1.1' - implementation 'androidx.fragment:fragment:1.4.0' + implementation 'androidx.fragment:fragment:1.3.6' implementation 'androidx.recyclerview:recyclerview:1.2.1' } @@ -112,8 +112,30 @@ def run(cmd) { } def getVersion() { - def versionCode = Integer.parseInt(run(['../tools/unix/version.sh', 'android_code']).trim()) - def versionName = run(['../tools/unix/version.sh', 'android_name']).trim() + def time = Integer.parseInt(run(['git', 'log', '-1', '--format=%ct']).trim()) + def cal = Calendar.getInstance(TimeZone.getTimeZone("UTC"), Locale.ENGLISH) + cal.setTimeInMillis((long) time * 1000) + def year = cal.get(Calendar.YEAR) + def month = cal.get(Calendar.MONTH) + 1 + def day = cal.get(Calendar.DAY_OF_MONTH) + def date_of_last_commit = String.format("%04d-%02d-%02d", year, month, day) + def build = Integer.parseInt(run(['git', 'rev-list', '--count', '--after="' + date_of_last_commit + 'T00:00:00Z"', 'HEAD']).trim()) + + // Use the last git commit date to generate the version code: + // RR_yy_MM_dd_CC + // - RR - reserved to identify special markets, max value is 21. + // - yy - year + // - MM - month + // - dd - day + // - CC - the number of commits from the current day + // 21_00_00_00_00 is the the greatest value Google Play allows for versionCode. + // See https://developer.android.com/studio/publish/versioning for details. + def versionCode = (year - 2000) * 1_00_00_00 + month * 1_00_00 + day * 1_00 + build + + // Use the current date to generate the version name: + // 2021.04.11-12-Google (-Google added by flavor) + def versionName = String.format("%04d.%02d.%02d-%d", year, month, day, build) + return new Tuple2(versionCode, versionName) } @@ -134,9 +156,10 @@ android { compileSdkVersion propCompileSdkVersion.toInteger() buildToolsVersion propBuildToolsVersion - ndkVersion '23.1.7779620' + ndkVersion '21.4.7075529' defaultConfig { + vectorDrawables.useSupportLibrary = true // Default package name is taken from the manifest and should be app.organicmaps def ver = getVersion() println('Version: ' + ver.first) @@ -222,7 +245,7 @@ android { flavorDimensions "default" productFlavors { - // 01 is a historical artefact, sorry. + // See getVersion() final int HUAWEI_VERSION_CODE_BASE = 01_00_00_00_00 google { diff --git a/android/gradle.properties b/android/gradle.properties index 17d04cffd4..1ea05cc5b8 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,7 +1,7 @@ propMinSdkVersion=21 -propTargetSdkVersion=31 -propCompileSdkVersion=31 -propBuildToolsVersion=32.0.0 +propTargetSdkVersion=30 +propCompileSdkVersion=30 +propBuildToolsVersion=31.0.0 propMultiDexVersion=2.0.1 org.gradle.caching=true diff --git a/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp b/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp index e577336829..f0b9f0942c 100644 --- a/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp +++ b/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp @@ -2,12 +2,13 @@ #include "defines.hpp" -#include "storage/downloader.hpp" +#include "storage/map_files_downloader.hpp" #include "storage/storage.hpp" #include "platform/downloader_defines.hpp" #include "platform/http_request.hpp" #include "platform/platform.hpp" +#include "platform/servers_list.hpp" #include "coding/internal/file_data.hpp" #include "coding/reader_streambuf.hpp" @@ -181,28 +182,41 @@ extern "C" env->CallVoidMethod(*listener, methodID, static_cast(g_totalDownloadedBytes + req.GetProgress().m_bytesDownloaded)); } + static void DownloadURLListFinished(HttpRequest const & req, Callback const & onFinish, Callback const & onProgress) + { + FileToDownload & curFile = g_filesToDownload.back(); + + LOG(LINFO, ("Finished URL list download for", curFile.m_fileName)); + + GetServersList(req, curFile.m_urls); + + Storage const & storage = g_framework->GetStorage(); + for (size_t i = 0; i < curFile.m_urls.size(); ++i) + { + curFile.m_urls[i] = MapFilesDownloader::MakeFullUrlLegacy(curFile.m_urls[i], + curFile.m_fileName, + storage.GetCurrentDataVersion()); + LOG(LDEBUG, (curFile.m_urls[i])); + } + + g_currentRequest.reset(HttpRequest::GetFile(curFile.m_urls, curFile.m_pathOnSdcard, curFile.m_fileSize, onFinish, onProgress, 512 * 1024, false)); + } + JNIEXPORT jint JNICALL Java_com_mapswithme_maps_DownloadResourcesLegacyActivity_nativeStartNextFileDownload(JNIEnv * env, jclass clazz, jobject listener) { if (g_filesToDownload.empty()) return ERR_NO_MORE_FILES; - /// @todo One downloader instance with cached servers. All this routine will be refactored some time. - static auto downloader = storage::GetDownloader(); - downloader->SetDataVersion(g_framework->GetStorage().GetCurrentDataVersion()); + FileToDownload & curFile = g_filesToDownload.back(); - downloader->EnsureServersListReady([ptr = jni::make_global_ref(listener)]() - { - FileToDownload const & curFile = g_filesToDownload.back(); - LOG(LINFO, ("Downloading file", curFile.m_fileName)); + LOG(LDEBUG, ("downloading", curFile.m_fileName, "sized", curFile.m_fileSize, "bytes")); - auto const urls = downloader->MakeUrlListLegacy(curFile.m_fileName); - g_currentRequest.reset(HttpRequest::GetFile(urls, curFile.m_pathOnSdcard, curFile.m_fileSize, - std::bind(&DownloadFileFinished, ptr, _1), - std::bind(&DownloadFileProgress, ptr, _1), - 512 * 1024, false)); - }); + Callback onFinish(std::bind(&DownloadFileFinished, jni::make_global_ref(listener), _1)); + Callback onProgress(std::bind(&DownloadFileProgress, jni::make_global_ref(listener), _1)); + g_currentRequest.reset(HttpRequest::Get(GetPlatform().MetaServerUrl(), + std::bind(&DownloadURLListFinished, _1, onFinish, onProgress))); return ERR_FILE_IN_PROGRESS; } diff --git a/android/jni/com/mapswithme/maps/Framework.cpp b/android/jni/com/mapswithme/maps/Framework.cpp index 91462544cb..b911fc2e13 100644 --- a/android/jni/com/mapswithme/maps/Framework.cpp +++ b/android/jni/com/mapswithme/maps/Framework.cpp @@ -79,10 +79,13 @@ using platform::ToNativeNetworkPolicy; static_assert(sizeof(int) >= 4, "Size of jint in less than 4 bytes."); -::Framework * frm() { return g_framework->NativeFramework(); } - namespace { +::Framework * frm() +{ + return g_framework->NativeFramework(); +} + jobject g_placePageActivationListener = nullptr; android::AndroidVulkanContextFactory * CastFactory(drape_ptr const & f) diff --git a/android/jni/com/mapswithme/maps/Framework.hpp b/android/jni/com/mapswithme/maps/Framework.hpp index ececcbdf94..3bb3eb5b52 100644 --- a/android/jni/com/mapswithme/maps/Framework.hpp +++ b/android/jni/com/mapswithme/maps/Framework.hpp @@ -199,4 +199,3 @@ namespace android } extern std::unique_ptr g_framework; -::Framework * frm(); diff --git a/android/jni/com/mapswithme/maps/LocationHelper.cpp b/android/jni/com/mapswithme/maps/LocationHelper.cpp index d7a759d230..4951743e95 100644 --- a/android/jni/com/mapswithme/maps/LocationHelper.cpp +++ b/android/jni/com/mapswithme/maps/LocationHelper.cpp @@ -1,5 +1,6 @@ #include "Framework.hpp" #include "map/gps_tracker.hpp" +#include "platform/file_logging.hpp" extern "C" { @@ -36,6 +37,7 @@ extern "C" if (speed > 0.0) info.m_speedMpS = speed; + LOG_MEMORY_INFO(); if (g_framework) g_framework->OnLocationUpdated(info); GpsTracker::Instance().OnLocationUpdated(info); diff --git a/android/jni/com/mapswithme/maps/MapFragment.cpp b/android/jni/com/mapswithme/maps/MapFragment.cpp index 990dc325a3..1013e832b9 100644 --- a/android/jni/com/mapswithme/maps/MapFragment.cpp +++ b/android/jni/com/mapswithme/maps/MapFragment.cpp @@ -8,6 +8,7 @@ #include "base/logging.hpp" +#include "platform/file_logging.hpp" #include "platform/settings.hpp" namespace diff --git a/android/jni/com/mapswithme/maps/MapManager.cpp b/android/jni/com/mapswithme/maps/MapManager.cpp index 09635043b8..068af595ed 100644 --- a/android/jni/com/mapswithme/maps/MapManager.cpp +++ b/android/jni/com/mapswithme/maps/MapManager.cpp @@ -51,9 +51,9 @@ struct TBatchedData {} }; -jmethodID g_listAddMethod = nullptr; -jclass g_countryItemClass = nullptr; -jobject g_countryChangedListener = nullptr; +jmethodID g_listAddMethod; +jclass g_countryItemClass; +jobject g_countryChangedListener; DECLARE_THREAD_CHECKER(g_batchingThreadChecker); std::unordered_map> g_batchedCallbackData; @@ -61,11 +61,11 @@ bool g_isBatched; Storage & GetStorage() { - ASSERT(g_framework != nullptr, ()); + CHECK(g_framework != nullptr, ()); return g_framework->GetStorage(); } -void CacheListClassRefs(JNIEnv * env) +void PrepareClassRefs(JNIEnv * env) { if (g_listAddMethod) return; @@ -268,7 +268,7 @@ static void PutItemsToList( JNIEXPORT void JNICALL Java_com_mapswithme_maps_downloader_MapManager_nativeListItems(JNIEnv * env, jclass clazz, jstring parent, jdouble lat, jdouble lon, jboolean hasLocation, jboolean myMapsMode, jobject result) { - CacheListClassRefs(env); + PrepareClassRefs(env); if (hasLocation && !myMapsMode) { @@ -291,9 +291,9 @@ Java_com_mapswithme_maps_downloader_MapManager_nativeListItems(JNIEnv * env, jcl // static void nativeUpdateItem(CountryItem item); JNIEXPORT void JNICALL -Java_com_mapswithme_maps_downloader_MapManager_nativeGetAttributes(JNIEnv * env, jclass, jobject item) +Java_com_mapswithme_maps_downloader_MapManager_nativeGetAttributes(JNIEnv * env, jclass clazz, jobject item) { - CacheListClassRefs(env); + PrepareClassRefs(env); static jfieldID countryItemFieldId = env->GetFieldID(g_countryItemClass, "id", "Ljava/lang/String;"); jstring id = static_cast(env->GetObjectField(item, countryItemFieldId)); @@ -462,7 +462,7 @@ static void ProgressChangedCallback(std::shared_ptr const & listenerRef JNIEXPORT jint JNICALL Java_com_mapswithme_maps_downloader_MapManager_nativeSubscribe(JNIEnv * env, jclass clazz, jobject listener) { - CacheListClassRefs(env); + PrepareClassRefs(env); return GetStorage().Subscribe(std::bind(&StatusChangedCallback, jni::make_global_ref(listener), _1), std::bind(&ProgressChangedCallback, jni::make_global_ref(listener), _1, _2)); } diff --git a/android/jni/com/mapswithme/maps/TrackRecorder.cpp b/android/jni/com/mapswithme/maps/TrackRecorder.cpp index 49a7b47936..d595f3a05e 100644 --- a/android/jni/com/mapswithme/maps/TrackRecorder.cpp +++ b/android/jni/com/mapswithme/maps/TrackRecorder.cpp @@ -4,6 +4,16 @@ #include +namespace +{ + +::Framework * frm() +{ + return (g_framework ? g_framework->NativeFramework() : nullptr); +} + +} // namespace + extern "C" { JNIEXPORT void JNICALL diff --git a/android/jni/com/mapswithme/maps/bookmarks/data/BookmarkManager.cpp b/android/jni/com/mapswithme/maps/bookmarks/data/BookmarkManager.cpp index 697702aec2..a3bc30fbb5 100644 --- a/android/jni/com/mapswithme/maps/bookmarks/data/BookmarkManager.cpp +++ b/android/jni/com/mapswithme/maps/bookmarks/data/BookmarkManager.cpp @@ -21,6 +21,8 @@ using namespace std::placeholders; namespace { +::Framework * frm() { return g_framework->NativeFramework(); } + jclass g_bookmarkManagerClass; jfieldID g_bookmarkManagerInstanceField; jmethodID g_onBookmarksChangedMethod; diff --git a/android/jni/com/mapswithme/maps/sound/tts.cpp b/android/jni/com/mapswithme/maps/sound/tts.cpp index 13d3408b66..d20ffa9722 100644 --- a/android/jni/com/mapswithme/maps/sound/tts.cpp +++ b/android/jni/com/mapswithme/maps/sound/tts.cpp @@ -2,29 +2,35 @@ #include "com/mapswithme/core/jni_helper.hpp" + +namespace +{ + ::Framework * frm() { return g_framework->NativeFramework(); } +} // namespace + extern "C" { JNIEXPORT void JNICALL - Java_com_mapswithme_maps_sound_TtsPlayer_nativeEnableTurnNotifications(JNIEnv *, jclass, jboolean enable) + Java_com_mapswithme_maps_sound_TtsPlayer_nativeEnableTurnNotifications(JNIEnv * env, jclass thiz, jboolean enable) { return frm()->GetRoutingManager().EnableTurnNotifications(static_cast(enable)); } JNIEXPORT jboolean JNICALL - Java_com_mapswithme_maps_sound_TtsPlayer_nativeAreTurnNotificationsEnabled(JNIEnv *, jclass) + Java_com_mapswithme_maps_sound_TtsPlayer_nativeAreTurnNotificationsEnabled(JNIEnv * env, jclass clazz) { return static_cast(frm()->GetRoutingManager().AreTurnNotificationsEnabled()); } JNIEXPORT void JNICALL - Java_com_mapswithme_maps_sound_TtsPlayer_nativeSetTurnNotificationsLocale(JNIEnv * env, jclass, jstring jLocale) + Java_com_mapswithme_maps_sound_TtsPlayer_nativeSetTurnNotificationsLocale(JNIEnv * env, jclass thiz, jstring jLocale) { frm()->GetRoutingManager().SetTurnNotificationsLocale(jni::ToNativeString(env, jLocale)); } JNIEXPORT jstring JNICALL - Java_com_mapswithme_maps_sound_TtsPlayer_nativeGetTurnNotificationsLocale(JNIEnv * env, jclass) + Java_com_mapswithme_maps_sound_TtsPlayer_nativeGetTurnNotificationsLocale(JNIEnv * env, jclass thiz) { - return jni::ToJavaString(env, frm()->GetRoutingManager().GetTurnNotificationsLocale()); + return jni::ToJavaString(env, frm()->GetRoutingManager().GetTurnNotificationsLocale().c_str()); } } // extern "C" diff --git a/android/jni/com/mapswithme/util/Config.cpp b/android/jni/com/mapswithme/util/Config.cpp index 1983893f25..42e5f72e58 100644 --- a/android/jni/com/mapswithme/util/Config.cpp +++ b/android/jni/com/mapswithme/util/Config.cpp @@ -2,6 +2,11 @@ #include "com/mapswithme/maps/Framework.hpp" #include "platform/settings.hpp" +namespace +{ +::Framework * frm() { return g_framework->NativeFramework(); } +} + extern "C" { JNIEXPORT jboolean JNICALL diff --git a/android/res/layout-land/routing_details.xml b/android/res/layout-land/routing_details.xml index b98fde3487..020bc4e4d1 100644 --- a/android/res/layout-land/routing_details.xml +++ b/android/res/layout-land/routing_details.xml @@ -9,10 +9,10 @@ + tools:text="33 min"/> + tools:text="33 min"/> + android:layout_height="wrap_content"/> diff --git a/android/res/values-ar/strings.xml b/android/res/values-ar/strings.xml index b25edd1b0b..663b08c1dd 100644 --- a/android/res/values-ar/strings.xml +++ b/android/res/values-ar/strings.xml @@ -8,6 +8,8 @@ رجوع إلغاء + + إلغاء التنزيل حذف تنزيل الخرائط @@ -17,6 +19,8 @@ جاري التنزيل… كيلومتر + + اترك تعليق الخرائط @@ -31,14 +35,19 @@ البحث ابحث في الخريطة + + نعم التطبيق أو جميع خدمات تحديد المواقع معطلة لديك في الوقت الحالي. الرجاء تفعيلها في الإعدادات. عرض على الخريطة + + تحميل الخريطة فشلت عملية تنزيل محاولة مرة أخرى + حول Organic Maps اعدادات الاتصال اغلاق أنت بحاجة الى OpenGL بأجهزة تسريع. لسوء الحظ جهازك لا يدعم هذه الخاصية. @@ -63,6 +72,8 @@ لون الإشارة المرجعية اسم مجموعة الإشارات المرجعية + + مجموعات الإشارات المرجعية الإشارات المرجعية @@ -71,8 +82,8 @@ الاسم العنوان - - قائمة + + المجموعة الإعدادات @@ -87,43 +98,41 @@ وحدات القياس. اختر من بين الأميال و الكيلو مترات. - - - + مكان لتناول الطعام - + المشتريات - + نقل - + غاز - + الاصطفاف - + التسوق - + فندق - + سياحة - + التسلية - + ماكينة الصراف الآلي - + أنشطة ترفيه ليلية - + عطلة عائلية - + بنك - + صيدلية - + مستشفى - + حمام - + بريد - + شرطة ملاحظات @@ -157,8 +166,12 @@ البريد الالكتروني تم النسخ الى الحافظة: %1$s + + المعلومات تم + + الاصدار: %s هل أنت واثق أنك تريد الاستمرار؟ @@ -187,6 +200,10 @@ لغة الصوت غير متاح + + آخر + + المسار الأخير تكبير تلقائي لا يعمل 1 ساعة @@ -194,6 +211,8 @@ 6 ساعات 12 ساعة 1 يوم + يتيح لك تسجيل مسار السفر لفترة معينة وعرضه على الخريطة. الرجاء ملاحظة: يؤدي تنشيط هذه الوظيفة إلى زيادة استهلاك البطارية. سوف تتم إزالة المسار تلقائيًا من الخريطة بعد انتهاء الفاصل الزمني. + المسافة مشاهدة على الخريطة الموقع الإلكتروني @@ -211,6 +230,12 @@ حقوق الطبع والنشر الإبلاغ عن خطأ + + لم يتم تعيين البريد الإلكتروني للعميل. يرجى تكوينه أو استخدام أي وسيلة أخرى للاتصال بنا على %s + + هناك خطأ في إرسال البريد الإلكتروني + + معايرة البوصلة واي-فاي @@ -219,12 +244,19 @@ إلغاء الكل تم تنزيلها + + متاح مَصْفوف بالقرب مني الخرائط تنزيل الكل يتم تنزيل: + تم العثور على + + تحديث + + فشل لحذف الخريطة يرجى إيقاف الملاحة. @@ -239,12 +271,22 @@ تحديث الخريطة استخدم خدمات جوجل بلاي لتتعرف على موقعك الحالي + + لقد قمت بتقييم تطبيقك للتو + + شكرا لك! + + شارك أي أفكار أو مشاكل، حتى نتمكن من تحسين التطبيق من أجلك. + + إرسال التعليق تنزيل الخرائط على طول الطريق Creare un percorso necessita la presenza di tutte le mappe scaricate e aggiornate dalla tua posizione alla destinazione. Spazio non sufficiente + + إشارة مرجعية الرجاء تفعيل خدمة تحديد المواقع حفظ @@ -297,6 +339,8 @@ يُرجى التحقق من إشارة GPS لديك. ويساعد تمكين خدمة Wi-Fi في تحسين دقة تحديد موقعك. تمكين خدمات المواقع تعذر تحديد إحداثيات نظام تحديد المواقع العالمي GPS الحالية. قم بتمكين خدمات المواقع لحساب المسار. + تنزيل الملفات المطلوبة + قم بتنزيل وتحديث كافة الخرائط ومعلومات التوجيه على طول الطريق المتوقع لحساب المسار. تعذر تحديد موقع المسار تعذر إنشاء مسار. برجاء تعديل نقطة بدء وجهتك. @@ -311,6 +355,7 @@ خطأ في النظام تعذر إنشاء مسار نتيجة وجود خطأ في التطبيق. برجاء إعادة المحاولة + ليس الآن هل ترغب في تنزيل الخريطة وإنشاء مسار أفضل يمتد عبر أكثر من خريطة؟ تنزيل الخريطة لإنشاء مسار أفضل يعبر حافة هذه الخريطة. @@ -321,8 +366,17 @@ عرض إخفاء + + فشل في تخطيط المسار الوصول: %s + + لإنشاء مسار، يرجى تنزيل وتحديث جميع الخرائط على امتداد الطريق. + يعجبك التطبيق؟ + شكرا لاستخدامك Organic Maps. من فضلك، أَعْطِ تقييمك للتطبيق. ملاحظاتك تساعدنا على أن نصبح أفضل. + مرحا! نحن أيضا نحبك! + شكرا لك، سوف نبذل قصارى جهدنا! + لديك أي فكرة حول كيف يمكننا أن نجعله أفضل؟ التصنيفات السجل مغلق @@ -353,6 +407,8 @@ أمثلة على القيم تصحيح الخطأ الموقع + لقد غيرت خريطة العالم. لا تخفي ذلك! اخبر أصدقاءك، وغيروها معا. + شارك مع الأصدقاء يرجى وصف المشكلة بالتفاصيل حتى يتسنى لفريق OpenStreeMap إصلاح الخطأ. أو افعل ذلك بنفسك من خلال الموقع https://www.openstreetmap.org/ إرسال @@ -362,20 +418,29 @@ مكان متكرر التنزيل التلقائي + مغلق الآن + يوميا ليلا ونهارا مغلق اليوم مغلق اليوم + اضف ساعات عمل حرر ساعات عمل ليس لديك حساب في OpenStreetMap؟ التسجيل + كلمة المرور (8 أحرف بحد أدنى) + اسم المستخدم أو كلمة المرور غير صالحة. تسجيل الدخول كلمة المرور هل نسيت كلمة المرور؟ + حساب OSM تسجيل الخروج + + آخر تحميل شكرا لك تعديل المكان + اسم المكان إضافة لغة الشارع @@ -392,16 +457,22 @@ اختر المطبخ البريد الإلكتروني أو اسم المستخدم + الهاتف + يرجى العلم أنه، سيتم حذف جميع التغييرات بالخريطة بالإضافة إلى حذف الخريطة نفسها. تحديث الخرائط لإنشاء مسار، فأنت تحتاج إلى تحديث كافة الخرائط ثم إعادة تخطيط المسار مرة أخرى. اعثر على الخريطة + خطأ بالتنزيل يرجى التحقق من الإعدادات والتأكد من اتصال جهازك بالإنترنت. مساحة غير كافية من فضلك، قم بإزالة البيانات غير الضرورية خطأ في تسجيل الدخول. التغييرات التي تم التحقق منها اسحب الخريطة لتحدد الموقع الصحيح للهدف. + اختر الفئة + شائع + جميع الفئات تعديل إٍضافة اسم المكان @@ -409,8 +480,13 @@ وصف مفصل للمشكلة مشكلة مختلفة إضافة مؤسسة + قم بإضافة أماكن جديدة للخريطة، وعدل أماكن حالية مباشرة من التطبيق. + تغيير الموقع لا يمكن تحديد موقع الكائن هنا قم بتسجيل الدخول حتى يتمكن باقي المستخدمين من رؤية التغييرات التي قمت بها. + + للتنزيل، فأنت تحتاج إلى توفير مساحة أكبر. من فضلك، احذف البيانات غير الضرورية. + لقد قمت بتحديث خرائط تطبيق Organic Maps %1$d من%2$d تنزيل باستخدام اتصال الشبكة الخلوية؟ @@ -428,6 +504,7 @@ سيتم إرسال التغييرات التي اقترحتها إلى مجتمع OpenStreetMap. اذكر التفاصيل التي لا يمكن تحريرها في Organic Maps المزيد عن OpenStreetMap معامل + خرائطي لم تقم بتنزيل أية خرائط قم بتنزيل خرائط للبحث عن مكان والتنقل بدون اتصال بالإنترنت. @@ -436,6 +513,14 @@ الموقع الحالي غير معروف. ربما تتواجد داخل مبنى أو نفق. استمرار إيقاف + الموقع الحالي غير معروف. + حدث خطأ أثناء البحث عن موقعك. تأكد من أن جهازك يعمل بشكل صحيح وأعد المحاولة لاحقًا. + تم تعطيل تحديد الموقع + قم بتفعيل الوصول إلى الموقع الجغرافي في إعدادات الجهاز + 1. افتح الإعدادات + 2. انقر على الموقع + + 3. اختيار أثناء استخدام التطبيق م كم كم/ساعة @@ -450,29 +535,43 @@ حجز اتصال تحرير العلامة المرجعية + اسم العلامة المرجعية + ملاحظات شخصية + حذف العلامة المرجعية + لقد تم إرسال التغييرات التي اقترحتها تعليق… هل تريد مسح كافة التغييرات المحلية؟ مسح إزالة مكان تمت إضافته؟ إزالة المكان غير موجود + …المزيد أدخل رقم هاتف صحيح أدخل عنوان ويب صالح أدخل بريدا إلكترونيا صالحا + تحديث إضافة مكان ما للخريطة هل ترغب في إرساله لجميع المستخدمين؟ تأكد من أنك لم تقم بإدخال أي بيانات شخصية. سنقوم بمراجعة هذه التغييرات. إذا كانت لدينا أي أسئلة فسوف نتصل بك عبر البريد الإلكتروني. + توقف + + تريد تعطيل التسجيل الخاص بمسار سفرك الأخير؟ + تعطيل + + انظر + يستخدم Organic Maps موقعك الجغرافي في الخلفية لتسجيل مسار سفرك الأخير. Organic Maps هي تطبيق خرائط مجاني ومفتوح المصدر بلا اتصال بالإنترنت. لا اعلانات. لا تتبع. إذا رأيت خطأً على الخريطة ، فيرجى إصلاحه في OpenStreetMap. تم إنشاء المشروع بواسطة المتحمسين في أوقات فراغنا ، لذلك نحتاج إلى ملاحظاتك ودعمك. + إعدادات عامة قبول رفض - + قائمة استخدام إنترنت المحمول لإظهار المعلومات التفصيلية؟ استخدام دائمًا @@ -485,6 +584,8 @@ لعرض البيانات المرورية، يجب تحديث الخرائط. زيادة حجم الخط على الخريطة الرجاء تحديث Organic Maps + + لعرض البيانات المرورية، يجب تحديث التطبيق. البيانات المرورية غير متاحة تمكين التسجيل @@ -501,8 +602,13 @@ أضف نقطة البداية لتخطيط المسار أضف النهاية لتخطيط المسار خروج + إدارة المسار + خطة إزالة + اسحب هنا للإزالة إضافة نقطة توقف + بدء من + عفوًا، كان هناك خطأ. حاول تسجيل الدخول مرة اخرى. مشكلة الوصول للتخزين التخزين الخارجي غير متوفر، ربما تمت إزالة بطاقة SD، أو أنها تالفة أو ملف النظام للقراءة فقط. افحصه واتصل بنا على support\@organicmaps.app محاكاة التخزين السيء @@ -512,7 +618,14 @@ إخفاء الكل إظهار الكل + + %d من الإشارات المرجعية + إنشاء قائمة جديدة + إخفاء الشاشة + %1$s (%2$s من %3$s) + جار تنزيل %s… + جار تطبيق %s… تعذرت المشاركة بسبب خطأ في التطبيق خطأ في المشاركة لا يمكن مشاركة قائمة فارغة @@ -521,13 +634,21 @@ قائمة جديدة هذا الاسم أخذ سابقا يرجى اختيار اسم آخر + هذا الاسم طويل للغاية أرجو الإنتظار… رقم الهاتف الملف الشخصي OpenStreetMap + تم اكتشاف ملفات جديدة تم العثور على %d ملفات. سوف تراهم بعد التحويل. + تحول + خطأ + لم يتم تحويل بعض الملفات. + استعادة هذا الإصدار؟ لا يوجد اتصال بالإنترنت + حدث خطأ غير معروف + استعادة المكان %d @@ -549,13 +670,17 @@ هذه اللائحة شاغرة لإضافة إشارة مرجعية ، اضغط على مكان على الخريطة ثم انقر فوق رمز النجمة …المزيد + حدث خطأ ملف التصدير قائمة الإعدادات حذف القائمة + إخفاء من الخريطة إطلاع الجمهور محدودية فرص حصول اكتب وصفًا (نص أو html) خاص + حدث خطأ أثناء تحميل العلامات ، يرجى المحاولة مرة أخرى + تحميل كاميرات السرعة السيارات دائما @@ -563,6 +688,7 @@ وصف المكان محمل الخريطة + السيارات- تحذير على الرادارات إذا كان هناك خطر تجاوز الحد الأقصى للسرعة\nدائما - احذر دائما من كاميرات السرعة\nمطلقا - أبدا تحذير من كاميرات السرعة وضع توفير الطاقة عندما يتم اختيار الوضع التلقائي، يبدأ التطبيق بتعطيل الخصائص التي تستهلك البطارية بناءً على مستوى شحن البطارية أبدًا @@ -586,11 +712,44 @@ تجنب نقاط تحصيل الرسوم تجنب الطرق الغير ممهدة تجنب تقاطع العبارات + هيا بنا + جهة الوصول + العودة إلى الوسط + نتائج البحث + ثم + هل تريد إعادة تحديد الطريق? + نعم + لا + لقد وصلت! + لوحة الكتابة غير متاحة أثناء القيادة + لا يمكن تحديد طريق من موقعك الحالي + لا يمكن تحديد طريق لجهة الوصول. يرجي اختيار مكان آخر + لا وجد إشارة GPS. يرجى التحرك لمكان مفتوح + لا يمكن تحديد طريق. يرجى تحديد أماكن أخرى على الطريق + كي تُنشئ مساراً، يجب أن تحمل الخرائط المفقودة على جهازك + حدث خطأ. يرجى إعادة تشغيل التطبيق + سيتم اعادة تحديد الطريق من موقعك الحالي + سيتم تعديل الطريق لتكون خاصة بالسيارة موافق + غير ترابي + تجنب غير الممهد + بدون عبََارة + تجنب العبََارة + بدون رسوم + تجنب الرسوم + كاميرا سريعة + تحذير سريع + يُرجى تحميل الخرائط في تطبيق Organic Maps على جهازك + المخرج رقم %s تريتب… رتب العلامات المرجعية + + رتب افتراضي + رتب حسب النوع + رتب حسب المسافة + رتب حسب التاريخ افتراضي @@ -629,6 +788,10 @@ تضاريس لتفعيل الطبقة الطبوغرافية واستخدامها ، يرجى تحديث أوتنزيل خريطة المنطقة الطبقة الطبوغرافية ليست متاحة بعد في هذه المنطقة + مستوى الصعوبة + سهل + معتدل + صعب تصاعدي تنازلي الحد الأدنى للارتفاع @@ -637,9 +800,22 @@ المسافة: مدة: قرب لتكتشف خطوط الكنتور + جار التحديث + جار التحميل + معلومات رئيسية اسمح للشاشة بالنوم عند التمكين ، سيتم السماح للشاشة بالنوم بعد فترة من عدم النشاط. + + قم بتحديث الخرائط التي قمت بنتزيلها + + تحديث الخرائط والاحتفاظ بالمعلومات حول الكائنات محدثة + + تحديث (%s) + + تحديث يدوياً في وقت لاحق + + مسار محطة تلفريك @@ -864,8 +1040,6 @@ هاتف الطوارئ مدخل ﺔﻴﺒﻄﻟﺍ ﺕﺍﺮﺒﺘﺨﻤﻟﺍ - - موقف حافلة طريق تحت الإنشاء مسار @@ -965,22 +1139,6 @@ شارع شارع شارع - مسار - شارع - شارع - مسار - شارع - شارع - شارع - شارع - شارع - شارع - مسار - شارع - شارع - شارع - - موقع أثري قلعة قلعة @@ -1069,16 +1227,16 @@ شركة اتصالات مدينة عاصمة - مدينة - مدينة + عاصمة + عاصمة عاصمة - مدينة - مدينة - مدينة - مدينة - مدينة - مدينة - مدينة + عاصمة + عاصمة + عاصمة + عاصمة + عاصمة + عاصمة + عاصمة قارة دولة مقاطعة diff --git a/android/res/values-be/strings.xml b/android/res/values-be/strings.xml index bdf0dec6e1..4e48794045 100644 --- a/android/res/values-be/strings.xml +++ b/android/res/values-be/strings.xml @@ -8,6 +8,8 @@ Назад Адмяніць + + Адмяніць спампоўку Выдаліць Спампаваць мапы @@ -17,6 +19,8 @@ Спампоўваецца… Кіламетры + + Напісаць водгук Мапы @@ -32,14 +36,19 @@ Шукаць Шукаць на мапе + + Так У вас выключана геалакацыя для гэтай прылады альбо дадатку. Калі ласка, уключыце яе ў Наладах. Паказаць на мапе + + Спампаваць мапу Спампоўка не атрымалася Паспрабаваць зноў + Аб дадатку Organic Maps Налады злучэння Зачыніць Дадатак патрабуе апаратна паскоранага OpenGL. Нажаль, ваша прылада не падтрымліваецца. @@ -59,11 +68,13 @@ Спампаваць %s не ўдалося - Дадаць новы спіс + Дадаць новую групу Колер закладкі - Назва спісу закладак + Назва групы закладак + + Групы закладак Закладкі @@ -72,8 +83,8 @@ Назва Адрас - - Спіс + + Група Налады @@ -88,43 +99,41 @@ Адзінкі вымярэння Ужываць кіламетры альбо мілі - - - + Дзе паесці - + Прадукты - + Транспарт - + Запраўка - + Паркоўка - + Закупы - + Гатэль - + Славутасці - + Забавы - + Банкамат - + Начное жыццё - + Сямейны адпачынак - + Банк - + Аптэка - + Лякарня - + Прыбіральня - + Пошта - + Паліцыя Нататкі @@ -159,8 +168,12 @@ Email Скапіравана ў буфер абмена: %1$s + + Інфармацыя Гатова + + Версія: %s Версія дадзеных: %d @@ -195,6 +208,10 @@ Мова агучвання Не дасягальна + + Іншы + + Нядаўняя сцежка Аўтаматычны маштаб Выключана 1 гадзіна @@ -202,6 +219,8 @@ 6 гадзін 12 гадзін 1 дзень + Гэтая функцыя дазваляе запісваць сцежку за некаторы прамежак часу і бачыць яе на мапе. Увага: уключэнне гэтай функцыі павялічвае выкарыстанне батарэі. Сцежка будзе аўтаматычка выдалена з мапы калі прамежак часу скончыцца. + Адлегласць Паглядзець на мапе Вэб-сайт @@ -219,6 +238,12 @@ Капірайт Паведаміць аб памылцы + + Паштовы кліент не наладжаны. Наладзьце яго альбо звяжыцеся з намі па адрасе %s іншым чынам. + + Памылка адпраўкі пошты + + Каліброўка компаса WiFi @@ -227,12 +252,19 @@ Адмяніць усё Спампаваныя + + Дасягальныя У чарзе Каля мяне Мапы Спампаваць усё Спампоўваецца: + Знойдзена + + Абнавіць + + Не атрымалася Каб выдаліць мапу, спыніце навігацыю. @@ -247,12 +279,22 @@ Абнавіць мапу Ужываць службы Google Play для вызначэння месцазнаходжання + + Я толькі што ацаніў ваш дадатак + + Шчыры дзякуй! + + Падзяліцеся ідэямі альбо расскажыце пра праблемы каб мы маглі палепшыць наш дадатак. + + Водгук Спампаваць усе мапы на вашым шляху Каб пракласці маршрут, трэба спампаваць і абнавіць усе мапы на на вашым шляху. Не хапае месца + + закладка Калі ласка, ўключыце геалакацыю Захаваць @@ -305,6 +347,8 @@ Калі ласка, праверце сігнал GPS. Для больш дакладнага вызначэння месцазнаходжання уключыце Wi-Fi. Уключыць геалагацыю Не атрымалася вызначыць каардынаты GPS. Уключыце геалакацыю каб пракласці маршрут. + Спампуйце неабходныя файлы + Спампуйце і абнавіце усе мапы і дадзеныя навігацыі на планаваным шляху каб пракласці маршрут. Не атрымалася знайсці маршрут Не атрымалася пракласці маршрут. Калі ласка, змяніце пункт адпраўлення альбо прызначэння. @@ -319,6 +363,7 @@ Памылка сістэмы Не атрымалася пракласці маршрут з-за памылкі дадатка. Паспрабуйце зноў + Не зараз Спампаваць мапу і пракласці лепшы маршрут праз некалькі мапаў? Спампаваць дадатковыя мапы, каб пракласці лепшы маршрут, каторы перасякае межы гэтай мапы. @@ -329,8 +374,17 @@ Паказаць Схаваць + + Памылка пракладання маршрута Прыбыццё а %s + + Спампуйце і абнавіце ўсе мапы на шляху каб пракласці маршрут. + Падабаецца дадатак? + Дзякуй што карыстаецеся Organic Maps. Калі ласка, ацаніце дадатак. Вашы водгукі дапамагаюць нам палепшыць прадукт. + Мы вас таксама любім, даражэнькія! + Дзякуй, мы будзем старацца! + Расскажыце, што зрабіць каб было лепш? Катэгорыі Гісторыя Зачынена @@ -363,6 +417,8 @@ Прыклады значэнняў Выправіць памылку Месцазнаходжанне + Вы змянілі мапу свету. Не прыхоўвайце гэта! Расскажыце сябрам і праўце разам. + Падзяліцца з сябрамі Калі ласка, падрабязна апішыце праблему, каб супольнасць OpenStreetMap магла выправіць памылку. Альбо зрабіце гэта самі на https://www.openstreetmap.org/ Адправіць @@ -372,20 +428,29 @@ Паўтараючаеся месца Аўтаматычная спампоўка + Зараз зачынена + Штодзённа 24/7 Сёння зачынена Зачынена Сёння + Дадаць часы працы Правіць часы працы Не зарэгістраваныя на OpenStreetMap? Зарэгістравацца на OpenStreetMap + Пароль (мінімум 8 сімвалаў) + Няправільныя імя карыстальніка альбо пароль. Увайсці Пароль Забылі пароль? + Акаунт OSM Выйсці + + Апошняя запампоўка Дзякуй Правіць месца + Назва месца Дадаць мову Вуліца @@ -402,16 +467,22 @@ Выбраць кухню Email альбо імя карыстальніка + Тэлефон + Звярніце ўвагу Усе вашы праўкі мапы будуць выдаленыя разам з мапай. Абнавіць мапы Каб стварыць маршрут, вам трэба абнавіць усе мапы і потым пракласці маршрут зноў. Знайсці мапу + Памылка спампоўкі Праверце налады і ўпэўніцеся, што прылада падключана да інтэрнэту. Не хапае месца Выдаліце непатрэбныя дадзеныя Памылка аўтарызацыі. Правераныя змены Перацягніце мапу каб выбраць правільнае месцазнаходжанне аб\'екта. + Выбраць катэгорыю + Папулярныя + Усе катэгорыі Праўка Даданне Назва месца @@ -419,8 +490,13 @@ Падрабязнае апісанне праблемы Іншая праблема Дадаць установу + Стварайце на мапе новыя месцы і праўце існуючыя прама ў дататку. + Змяніце месцазнаходжанне Аб\'ект не можа знаходзіцца тут Аўтарызуйцеся, каб іншыя карыстальнікі бачылі вашыя змены. + + Каб спампаваць, трэба больш месца. Выдаліце непатрэбныя дадзеныя. + Я палепшыў мапы Organic Maps %1$d з %2$d Спампаваць праз мабільны інтэрнэт? @@ -438,6 +514,7 @@ Запрапанаваныя вамі змены будуць дасланыя суполцы OpenStreetMap. Апішыце любыя іншыя падрабязнасці, каторыя нельга паправіць у Organic Maps. Падрабязней пра OpenStreetMap Уладальнік + Мае мапы Вы не спампавалі ніводнай мапы Спампуйце мапы, каб шукаць месцы і карыстацца навігацыяй без інтэрнэту. @@ -446,6 +523,14 @@ Месцазнаходжанне невядома. Магчыма вы ў будынку альбо ў танэлі. Працягнуць Спыніць + Месцазнаходжанне невядома. + Адбылася памылка пры пошуку месцазнаходжання. Праверце, што ваша прылада працуе як трэба, і паспрабуйце зноў. + Геалакацыя выключана + Уключыце доступ да геалакацыі у наладах прылады. + 1. Адчыніце Налады + 2. Націсніце Геалакацыя + + 3. Выберыце \"Падчас ужывання дадатку\" м км км/г @@ -460,6 +545,10 @@ Забраніраваць Патэлефанаваць Правіць закладку + Назва закладкі + Асабістыя нататкі + Выдаліць закладку + Запрапанаваныя вамі змены адпраўлены Каментар… Скінуць усе лакальныя змены? Скінуць @@ -468,24 +557,34 @@ Месца не існуе Калі ласка, укажыце прычыну выдалення + …яшчэ Увядзіце нумар тэлефона правільна Увядзіце web-адрас правільна Увядзіце email правільна Упішыце вэб-адрас LINE старонкі або LINE ID + Абнавіць Дадаць месца на мапу Хочаце адправіць усім карыстальнікам? Упэўніцеся, што вы не ўвялі ніякіх асабістых дадзеных. Мы праверым змены. Калі ў нас з\'явяцца пытанні, мы з вамі звяжамся праз email. + спыніць + + Выключыць запіс вашага нядаўна пройдзенага маршрута? + Выключыць + + Паглядзі + Organic Maps ужывае вашу геалакацыю ў фонавым рэжыме каб запісваць ваш нядаўна пройдзены маршрут. Organic Maps – бясплатныя мапы з адкрытым зыходным кодам, якія працуюць без інтэрнэту. Ніякай рэкламы. Ніякага адсочвання. Калі вы бачыце памылку на карце, выпраўце яе ў OpenStreetMap. Праект ствараецца энтузіястамі ў вольны час, таму нам патрэбны вашы водгукі і падтрымка. + Агульныя налады Прыняць Адхіліць - + Спіс Ужываць мабільны інтэрнэт для паказу больш падрабязнай інфармацыі? Заўсёды @@ -498,6 +597,8 @@ Для паказу інфармацыі пра рух, трэба абнавіць мапы. Павялічыць шрыфт мапы Абнавіце Organic Maps + + Для паказу інфармацыі пра рух трэба абнавіць дадатак. Інфармацыі пра рух няма Уключыць вядзенне журналу @@ -514,8 +615,13 @@ Дадайце пункт адпраўлення каб пракласці маршрут Дадайце пункт прызначэння каб пракласці маршрут Выхад + Кіраваць маршрутам + Пракласці Выдаліць + Перацягніце сюды, каб выдаліць Дадаць прыпынак + Пачаць ад + Ой-ёй, здарылася памылка. Паспрабуйце аўтарызавацца зноў. Праблема з доступам да сховішча Знешняе сховішча недасягальнае. SD-карта можа быць вынутая, пашкоджаная, альбо файлавая сістэма даступная толькі для чытання. Праверце вашу SD-карту альбо зважыцеся за намі па адрасе support\@organicmaps.app Эмуляваць дрэннае сховішча @@ -525,9 +631,18 @@ Схаваць усе Паказаць усе + + %d закладкі + %d закладка + %d закладак + Стварыць новы спіс Імпартаваць закладкі + Схаваць экран + %1$s (%2$s з %3$s) + Спампоўка %s… + Застасаванне %s… Не атрымалася падзяліцца з-за памылкі дадатка Памылка пры спробе падзяліцца Нельга падзяліцца пустым спісам @@ -536,10 +651,18 @@ Новы спіс Гэтая назва ўжо занятая Выберыце іншую назву + Гэтая назва надта доўгая Калі ласка, пачакайце… Нумар тэлефона Профіль OpenStreetMap + Знойдзены новыя файлы + Ператварыць + Памылка + Некаторыя файлы не ператварыліся. + Узнавіць гэтую версію? Няма падлучэння да інтэрнэту + Адбылася невядомая памылка + Узнавіць %d аб\'екты %d аб\'ект @@ -567,13 +690,18 @@ Гэты спіс пусты Каб дадаць закладку, націсніце на месца на мапе і потым на іконку з зорачкай …яшчэ + Адбылася памылка + Папулярнае Экспартаваць файл Налады спіса Выдаліць спіс + Схаваць з мапы Публічны доступ Абмежаваны доступ Дабаўце апісанне (тэкст альбо html) Прыватны + Адбылася памылка падчас загрузкі метак, калі ласка паспрабуйце зноў + Спампаваць Камеры хуткасці Аўтаматычна Заўсёды @@ -581,6 +709,7 @@ Апісанне месца Спампоўка мапаў + Аўтаматычна - Папярэджваць пра камеры хуткасці, калі ёсць рызыка перавышэння дазволенай хуткасці.\nЗаўсёды - Заўсёды папярэджваць пра камеры\nНіколі - Ніколі не папярэджваць пра камеры Рэжым захавання энергіі Калі ўключаны рэжым захавання энергіі, дадатак пачынае выключаць энергазатратныя функцыі ў залежнасці ад зарада батарэі Ніколі @@ -604,11 +733,44 @@ Пазбягаць платных дарог Пазбягаць грунтовых дарог Пазбягаць паромных перапраў + Паехалі + Пункт прызначэння + Па цэнтры + Вынікі пошуку + Потым + Хочаце перапракласці маршрут? + Так + Не + Вы прыбылі! + Клавіятура недасягальная падчас язды + Не атрымалася пракласці маршрут ад вашага цяперашняга месцазнаходжання + Не атрымалася пракласці маршрут да вашага пункту прызначэння. Выберыце іншы пункт прызначэння. + Няма сігналу GPS. Перамясціцеся на адкрытую прастору + Не атрымалася пракласці маршрут. Выберыце іншыя кропкі маршрута. + Каб пракласці маршрут, спампуйце мапы, каторых не хапае на вашай прыладзе + Адбылася памылка. Калі ласка, перазапусціце дадатак + Маршрут будзе перапракладзены ад вашага цяперашняга месцазнаходжання + Маршрут будзе ператвораны ў аўтамабільны Ок + Без грунт. + Пазбягаць грунтовак + Без паромаў + Пазбягаць паромаў + Без платных + Пазбягаць платных + Камеры + Папяр. аб хуткасці + Спампуйце мапы ў дадатку Organic Maps на вашай прыладзе + %s з\'езд Сартаваць… Сартаваць закладкі + + Сартаваць па змаўчанні + Сартаваць па тыпу + Сартаваць па адлегласці + Сартаваць па даце Па змоўчанні @@ -647,6 +809,10 @@ Рэльеф Каб карыстацца мапай рэльефа, абнавіце альбо спампуйце мапу патрэбнай мясцовасці Мапы рэльефа для гэтай мясцовасці пакуль што няма + Узровень складанасці + Лёгкі + Сярэдні + Цяжкі Пад\'ём Спуск Мін. вышыня @@ -655,20 +821,37 @@ Адл.: Час: Павялічце маштаб, каб пабачыць рэльеф + Абнаўленне + Спампоўка + Галоўная інфармацыя Спампаваць мапу света Памылка падлучэння Адлучыце USB кабель Дазволіць экрану засынаць Дазваляе экрану засынаць пасля перыяда бездзеяння. + + Абнавіце спампаваныя мапы + + Абнаўленне мапаў падтрымлівае актуальнасць звестак пра аб’екты + + Абнавіць (%s) + + Абнавіць пазней уручную + + Выдаліць сцежку + + Назва сцежкі + + Перамясціць + + Сцежка Ланцуг Шлагбаўм Шлагбаўм Медыцынская лабараторыя - - Рэзервуар Стол для пікніка Сілас diff --git a/android/res/values-bg/strings.xml b/android/res/values-bg/strings.xml deleted file mode 100644 index 14ca4f98d4..0000000000 --- a/android/res/values-bg/strings.xml +++ /dev/null @@ -1,625 +0,0 @@ - - - - - - - - Назад - - Отмяна - - Изтриване - Изтегляне на карти - - Изтеглянето се провали. Натиснете, за да опитате отново. - - Теглене… - - Километри - - Карти - - МБ - ГБ - - Мили - - Мое местоположение - - По-късно - - Търсене - - Търсене в карта - - В момента всички услуги за местоположение за това устройство или приложение са деактивирани. Моля, разрешете ги в Настройки. - - Показване на картата - - Изтеглянето се провали - - Опитайте отново - Настройки за свързване - Затваряне - Приложението изисква хардуерно ускорение на OpenGL. За съжаление вашето устройство не се поддържа. - Изтегляне - Моля, изключете USB кабела или поставете карта с памет. - Моля, първо освободете място на SD картата/USB паметта, за да можете да използвате приложението. - Няма достатъчно памет за стартиране на приложението - Преди да започнете да използвате приложението, позволете ни да изтеглим общата карта на света на вашето устройство.\nТова ще използва %s от паметта. - Към картата - Изтегляне на %s. Вече можете да преминете към картата. - Изтегляне на %s? - Обновяване на %s? - - Пауза - - Възобновяване - - Изтеглянето на %s се провали - - Добавяне на нова група - - Цвят на отметка - - Име на група - - Отметки - - Мои места - - Име - - Адрес - - Списък - - Настройки - - Запаметяване на карти в - - Изберете мястото, където картите трябва да се изтеглят - - Преместване на карти? - - Това може да отнеме няколко минути.\nМоля изчакайте… - - Мерни единици - - Изберете между километри или мили - - - - Места за хапване - - Продукти - - Транспорт - - Гориво - - Паркинг - - Шопинг - - Хотел - - Забележителности - - Развлечения - - Банкомат - - Нощен живот - - Семейна почивка - - Банка - - Аптека - - Болница - - Тоалетна - - Поща - - Полиция - - Бележки - - Споделени са с вас отметки за Organic Maps - - Зареждане на отметки - - Отметките са заредени успешно! Можете да ги откриете на картата или при секцията с отметки. - - Качването на отметките се провали. Файлът може да бъде повреден или дефектен. - - Редакция - - Местоположението ви още не е определено - - Съжаляваме, но настройките за съхранение на карти в момента са деактивирани. - - Изтеглянето на картата вече е в ход. - - Хей, виж текущото ми местоположение в Organic Maps! %1$s или %2$s - - Хей, виж какво съм отбелязал в Organic Maps! - - Хей, виж текущото ми местоположение на картата в Organic Maps! - - Здравей,\n\nСега съм тук: %1$s. Натисни върху тази връзка %2$s или тази %3$s, за да видиш мястото на картата.\n\nБлагодаря. - - Споделяне - - Имейл - - Копирано в клипборда: %1$s - - Готово - - Версия на данните: %d - - Сигурни ли сте, че искате да продължите? - - Пътеки - - Дължина - Споделяне на местоположение - - Общи настройки - - Информация - Навигация - Мащабни бутони - Показване на картата - - Нощен режим - - Изключен - - Включен - - Автоматично - - Перспективен изглед - - 3D сгради - - Гласови инструкции - - Език на инструкциите - - Не е налично - Автоматично мащабиране - Изключено - 1 час - 2 часа - 6 часа - 12 часа - 1 ден - Преглед на картата - - Уебсайт - - Обратна връзка - - Оцени приложение - - Помощ - - Въпроси и отговори - - Как да ни подкрепите? - - Авторски права - - Докладване на проблем - - WiFi - - Обновяване на всичко - - Отмяна на всичко - - Изтеглено - - На опашка - Близо до мен - Карти - Изтегляне на всичко - Теглене: - - За да изтриете карта, моля спрете навигирането. - - Могат да се създават само маршрути, които са изцяло в рамките на картата на един регион. - - Изтегляне на карта - - Повторно - - Изтриване на карта - - Обнояване на карта - - Използвайте услугите на Google Play, за да определите текущото си местоположение - - Изтегляне на всички карти по вашия маршрут - - За да създадем маршрут, трябва да изтеглим и актуализираме всички карти от местоположението ви до вашата дестинация. - - Недостатъчно място - - Моля, разрешете услугите за местоположение - Запазване - Ваши описания (текст или html) - създаване - - Червено - - Жълто - - Синьо - - Зелено - - Лилаво - - Оранжево - - Кафяво - - Розово - - Да - - - Когато следвате маршрута, моля, имайте предвид: - - Пътната обстановка, законите за движение по пътищата и че пътните знаци винаги имат приоритет пред навигационните подсказки; - - Картата може да е неточна, а предложеният маршрут невинаги е най-оптималният начин за достигане до дестинацията; - - Предложените маршрути са само препоръки; - - Бъдете внимателни с маршрутите в гранични зони: маршрутите, създадени от нашето приложение, понякога могат да пресичат границите на страната на неразрешени места. - Моля, бъдете бдителни и безопасни по пътищата! - Приверете GPS сигнала - Не е възможно да се създаде маршрут. Текущите GPS координати не могат да бъдат идентифицирани. - Моля, проверете GPS сигнала. Включването на Wi-Fi ще подобри точността на местоположението ви. - Активиране на услугите за местоположение - Не е възможно да се определят GPS координатите. Активирайте услугите за местоположение, за да изчислите маршрута. - Не е намерен маршрут - Не е възможно да се създаде маршрут. - Моля, коригирайте началната точка или дестинацията си. - Регулиране на началната точка - Маршрутът не е създаден. Не може да се намери начална точка. - Моля, изберете начална точка, която е по-близо до път. - Регулиране на дестинацията - Маршрутът не е създаден. Не е възможно да се открие дестинацията. - Моля, изберете крайна точка, разположена по-близо до път. - Не може да се открие междинната точка на маршрута. - Моля, коригирайте междинната си точка на маршрута. - Грешка в системата - Не е възможно да се създаде маршрут поради грешка в приложението. - Моля, опитайте отново - Бихте ли искали да изтеглите картата и да създадете по-оптимален маршрут, обхващащ повече от една карта? - За да създадете по-добър маршрут с граничен преход, трябва да изтеглите картата. - - - За да започнете да търсите и създавате маршрути, изтеглете картата. Това ще ви позволи да пътувате без интернет връзка. - Избор на карта - - Показване - - Скриване - - Пристигане в %s - Категории - История - Затворено - За съжаление не са намерени резултати. - Опитайте да промените критериите за търсене. - История на търсенията - Преглед на последните търсения. - Изчистване на историята на търсенията - Вашето местоположение - Начало - Маршрут от - Маршрут към - Навигацията е възможна само от текущото ви местоположение. - Искате ли да планираме маршрут от текущото ви местоположение? - - Напред - Добавяне на график - Изтриване на график - - Цял ден (24 часа) - Отворено - Затворено - Добавяне на почивка - Работно време - Подробен режим - Сбит режим - Почивка - Примерни стойности - Поправяне на грешка - Местоположение - Моля, опишете подробно проблема, за да може общността на OpenStreeMap да отстрани грешката. - Или го направете сами на https://www.openstreetmap.org/ - Изпращане - Проблем - Мястото не съществува - Затворено за ремонт - Дубликат - Автоматично изтегляне - - Ежедневно - 24 часа - Затворено днес - Затворено - Днес - Редакция на работното време - Нямате акаунт в OpenStreetMap? - Регистриране в OSM - Вход - Парола - Забравили сте паролата си? - Изход - Благодаря - Редакция на място - Добавяне на език - Улица - - Номер на сграда - Подробности - - Добавяне на улица - - Въведете име на улица - Избор на език - Избор на улица - Пощенски код - Кухня - Избор на кухня - - Имейл или потребителско име - Всички ваши редакции на картата ще бъдат изтрити заедно с нея. - Обновяване на карти - За да създадете маршрут, трябва да актуализирате всички карти и след това да планирате маршрута отново. - Намиране на карта - Моля, проверете настройките си и се уверете, че устройството ви е свързано с интернет. - Няма достатъчно място - Моля, изтрийте всички ненужни данни. - Грешка при вход. - Потвърдени промени - Плъзнете картата, за да изберете правилното местоположение на обекта. - Редактиране - Добавяне - Име на мястото - Категория - Подробно описание на проблема - Друг проблем - Добавяне на бизнес - Тук не може да бъде намерен обект - Влезте в системата, за да могат другите потребители да видят направените от вас промени - - %1$d от %2$d - Изтегляне чрез мобилни данни? - Това може да бъде значително скъпо при някои планове или при роуминг. - Въведете валиден номер на сграда - Брой етажи (максимум %d) - - Броят на етажите не трябва да надвишава 25 - Пощенски код - Въведете валиден пощенски код - - Неизвестно място - Изпращане на бележка до редакторите на OSM - Подробен коментар - Предложените от вас промени по картата ще бъдат изпратени до общността на OpenStreetMap. Опишете всички допълнителни подробности, които не могат да бъдат въведени в Organic Maps. - Повече за OpenStreetMap - Собственик - Не сте изтеглили никакви карти - Изтеглете картите, от които се нуждаете, за да намирате места и да навигирате без интернет. - - Да продължаваме ли да ви засичаме местоположението? - - Настоящото местоположение е неизвестно. Може би се намирате в сграда или тунел. - Продължаване - Стоп - м - км - ми - фут - ч - мин - Описание - Още - Още отзиви - Резервиране - Обаждане - Редакция на отметка - Коментиране… - Отхвърляне на всички локални промени? - Отхвърляне - Изтриване на добавеното място? - Изтриване - Мястото не съществува - - Въведете валиден телефонен номер - Въведете валиден уеб адрес - Въведете валиден имейл - Добавяне на място в картата - - Искате ли да го изпратите на всички потребители? - - Уверете се, че не сте въвели никакви лични данни. - Ще проверим промените. Ако имаме някакви въпроси, ще се свържем с вас по имейл. - - Organic Maps е безплатно приложение за офлайн карти с отворен код. Без реклами. Без проследяване. Ако видите грешка на картата, моля, поправете я в OpenStreetMap. Проектът е създаден от ентусиасти в свободното ни време, така че имаме нужда от вашата отзиви и подкрепа. - - Приемане - - Отказване - - Списък - Използване на мобилни данни за подробна информация? - Винаги - Само днес - Без днес - Мобилни данни - Мобилните данни са необходими за показване на подробна информация за местата, като например снимки, цени и отзиви. - Никога - Винаги питай - За да се показват данни за трафика, картите трябва да са актуализирани. - Увеличаване на размера на шрифта в картата - Моля, актуализирайте Organic Maps - - Няма налични данни за трафика - Активиране на запис на дневник - - Обща обратна връзка - Вкл. - Изкл. - Навигирането се озвучава от системен синтезатор на реч (TTS). Много устройства използват Google TTS, който може да бъде изтеглен или актуализиран от Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts). - За някои езици може да се наложи да инсталирате допълнителен синтезатор на реч (TTS) от магазина за приложения (Google Play Магазин, Samsung Apps).\nЗа да настроите синтезатора на реч, отидете в Настройки → Езици и въвеждане → Синтезиран говор.\nТук можете да инсталирате допълнителни езикови пакети или да изберете синтезатор на реч. - За повече информация вижте това ръководство. - Латинска транслитерация - Научете повече - Изход - Добавяне на начална точка за планиране на маршрут - Добавяне на крайна точка за планиране на маршрут - Изход - Премахване - Добавяне на спирка - Проблем с достъпа до хранилището - Външната памет на устройството не е налична, SD картата може да е била извадена, повредена или файловата система е само за четене. Проверете това и се свържете с нас support\@organicmaps.app - Емулация на грешки с външна памет - Вход - Моля, въведете правилно име - Списъци - - Скриване на всичко - Показване на всичко - Създаване на нов списък - - Импортиране на отметки - Не е възможно споделяне поради грешка в приложението - Грешка при споделяне - Не може да се споделя празен списък - Името не може да бъде празно - Моля, въведете името на списъка - Нов списък - Това име вече е заето - Моля, изберете друго име - Моля, изчакайте… - Профил в OpenStreetMap - - Открит е %d файл. Можете да го видите след конвертирането. - Открити са %d файла. Можете да ги видите след конвертирането. - - Няма интернет връзка - - %d обект - %d обекта - - - %d място - %d места - - - %d пътека - %d пътеки - - Настройки за проследяване - Доклад за срив - Можем да използваме данни ви, за да подобрим изживяването с Organic Maps. Промените ще влязат в сила, след рестартиране на приложението. - Политика за поверителност - Условия за ползване - Трафик - Метро - Слоеве на картата - Картата на метрото не е налична - Този списък е празен - За да добавите отметка, докоснете място на картата, след което докоснете звездообразната икона. - …още - Експортиране на файл - Настройки на списък - Изтриване на списък - Публичен достъп - Ограничен достъп - Добавяне на описание (текст или html) - Лично - Камери за скорост - Автоматично - Винаги - Никога - Описание на мястото - - Изтегляне на карти - Режим пестене на енергия - Ако е активиран режима пестене на енергия, приложението ще деактивира функциите, консумиращи енергия, в зависимост от текущия заряд на телефона. - Никога - Автоматично - Максимално пестене на енергия - Тази настройка е разрешена, за да се записват действия за диагностични цели, които помагат на нашия екип да идентифицира проблеми с приложението. Временно активирайте тази настройка само за изпращане на подробна информация за проблема, който сте открили с приложението. - Онлайн редактиране - Опции за маршрутизация - Избягване при всеки маршрут - Платени пътища - Неасфалтирани пътища - Преходи с ферибот - Магистрали - Не е възможнос изчисляване на маршрут - За съжаление не успяхме да намерим маршрут, вероятно поради избраните от вас параметри. Моля, променете настройките и опитайте отново. - Определяне пътищата, които да се избягват - Разрешени опции за маршрутизиране - Избягване на платени пътища - Избягвайте неасфалтирани пътища - Избягване на преходи с ферибот - Ок - - Сортиране… - - Сортиране на отметки - - По подразбиране - - По тип - - По разстояние - - По дата - Търсене в списъка - Избор на списък - Навигацията за метро все още не е налична в региона - Не е открит маршрут за метро - Моля, изберете начална или крайна точка по-близо до метростанция - Терен - За да активирате и използвате топографския слой, моля, актуализирайте или изтеглете картата на района - Топографският слой все още не е наличен в тази област - Изкачване - Спускане - Мин. надморска височина - Макс. надморска височина - Трудност - Разст.: - Време: - Увеличете мащаба, за да разгледате изолиниите - Изтегляне на картата на света - Неуспешно свързване - Изключване на USB кабел - Позволяване на екрана да заспи - - Когато е разрешено, екранът ще бъде оставен да заспи след определен период на неактивност. - - - Медицинска лаборатория - - - Резервоар - Маса за пикник - Резервоар - Резервоар - Воден басейн - diff --git a/android/res/values-cs/strings.xml b/android/res/values-cs/strings.xml index 6646fe1782..76956bb94c 100644 --- a/android/res/values-cs/strings.xml +++ b/android/res/values-cs/strings.xml @@ -8,6 +8,8 @@ Zpět Zrušit + + Zrušit stahování Smazat Stáhnout mapy @@ -17,6 +19,8 @@ Stahování… Kilometry + + Zpětná vazba Mapy @@ -29,14 +33,19 @@ Hledat Prohledat mapu + + Ano Aktuálně máte všechny možnosti pro určování polohy vypnuté. Prosím, povolte je v Nastavení. Ukázat na mapě + + Stáhnout mapu Stahování selhalo Zkusit znovu + O aplikaci Organic Maps Nastavení připojení Zavřít Je vyžadována hardwarová akcelerace OpenGL. Bohužel, vaše zařízení není podporováno. @@ -61,6 +70,8 @@ Barva záložky Název záložky + + Skupiny záložek Záložky @@ -69,8 +80,8 @@ Název Adresa - - Seznam + + Skupina Nastavení @@ -85,43 +96,41 @@ Měřicí jednotky Vyberte si míle nebo kilometry - - - + Kde se najíst - + Potraviny - + Doprava - + Čerpací stanice - + Parkoviště - + Nákupy - + Hotel - + Pamětihodnost - + Zábava - + Bankomat - + Noční život - + Dovolená s dětmi - + Banka - + Lékárna - + Nemocnice - + Záchody - + Pošta - + Policie Poznámky @@ -155,8 +164,12 @@ Email Zkopírováno do schránky: %1$s + + Více informací Hotovo + + Verze: %s Opravdu chcete pokračovat? @@ -185,6 +198,10 @@ Jazyk hlasu Není dostupná + + Ostatní + + Historie polohy Automatické zvětšení Vypnuto 1 hodina @@ -192,6 +209,8 @@ 6 hodin 12 hodin 1 den + To vám umožňuje zaznamenávat ujetou cestu po určitou dobu a vidět ji na mapě. Poznámka: aktivace této funkce způsobuje zvýšenou spotřebu baterie. Trať bude automaticky odebrána z mapy poté, co vyprší časový interval. + Vzdálenost Zobrazit na mapě Webové stránky @@ -209,6 +228,12 @@ Autorská práva Nahlásit chybu + + Emailový klient nebyl ještě nakonfigurován. Nastavte ho, prosím, nebo použijte jiný způsob k našemu kontaktování na %s + + Chyba při odesílání emailu + + Kalibrace kompasu WiFi @@ -217,12 +242,19 @@ Zrušit vše Staženo + + Dostupné Ve frontě Poblíž mě Mapy Stáhnout vše Probíhá stahování: + Nalezeno + + Aktualizace + + Selhalo Chcete-li odstranit mapu, pak prosím zastavte navigaci. @@ -237,12 +269,22 @@ Aktualizovat mapu Používat Služby Google Play pro získání aktuální polohy + + Právě jsem ohodnotil(a) vaši aplikaci + + Děkujeme vám! + + Podělte se s námi o své nápady nebo problémy, abychom mohli aplikaci vylepšit. + + Odeslat názor Stahovat mapy podél cesty Naplánování trasy vyžaduje stažení a aktualizaci všech map z vašeho umístění do cílového umístění. Nedostatek místa + + uložit Prosím, povolte Služby určování polohy Uložit @@ -295,6 +337,8 @@ Zkontrolujte signál GPS. Povolením připojení WiFi zpřesníte určení vaší polohy. Povolit služby určování polohy Aktuální souřadnice GPS se nepodařilo zjistit. Pro výpočet trasy povolte služby určování polohy. + Stáhnout požadované soubory + Stáhnout a aktualizovat všechny mapy a data tras pro výpočet trasy podél navrhované cesty. Trasu se nepodařilo zjistit Trasu se nepodařilo vytvořit. Upravte výchozí nebo cílový bod. @@ -309,6 +353,7 @@ Systémová chyba Trasu se nepodařilo vytvořit z důvodu chyby aplikace. Prosím, zkuste to znovu + Nyní ne Chcete mapu stáhnout a vytvořit optimálnější trasu, která vede přes více než jednu mapu? Stáhnout mapu a vytvořit optimálnější trasu, která překračuje hranice této mapy. @@ -319,8 +364,17 @@ Ukázat Skrýt + + Naplánování trasy se nezdařilo Příjezd: %s + + Pro vytvoření trasy si prosím stáhněte a aktualizujte všechny mapy podél očekávané cesty. + Líbí se vám aplikace? + Děkujeme, že používáte Organic Maps. Ohodnoťte, prosím, tuto aplikaci. Váš komentář nám pomůže ji ještě zlepšit. + Hurá! Také vás zbožňujeme! + Děkujeme, budeme se snažit! + Nějaké nápady, co můžeme udělat lépe? Kategorie Historie Zavřeno @@ -351,6 +405,8 @@ Vzorové hodnoty Opravit chybu Umístění + Změnili jste světovou mapu. Neskrývejte to! Řekněte o tom svým kamarádům a upravujte ji společně. + Sdílejte s kamarády Popište prosím detailně problém, aby vám komunita OpenStreeMap mohla pomoct opravit chybu. Nebo to udělejte sami na https://www.openstreetmap.org/ Odeslat @@ -360,20 +416,29 @@ Duplicitní místo Automaticky stahovat + Nyní je zavřeno + Denně Nonstop Dnes zavřeno Zavřeno Dnes + Přidat otevírací dobu Upravit otevírací dobu Nemáte účet u OpenStreetMap? Registrace + Heslo (minimálně 8 znaků) + Neplatné uživatelské jméno nebo heslo. Přihlásit se Heslo Zapomenuté heslo? + Účet OSM Odhlášení + + Poslední nahrání Děkujeme Vám Upravit místo + Název místa Přidat jazyk Ulice @@ -390,16 +455,22 @@ Vybrat kuchyni Email nebo uživatelské jméno + Telefon + Vezměte prosím na vědomí Zároveň s touto mapou budou odstraněny také všechny změny na této mapě. Aktualizujte mapy Chcete-li vytvořit trasu, pak musíte aktualizovat všechny mapy a poté trasu naplánovat znovu. Najít mapu + Chyba při stahování Zkontrolujte prosím své nastavení a ujistěte se, že je vaše zařízení připojeno k internetu. Nedostatek místa Odstraňte prosím nepotřebná data Chyba při přihlašování. Oveřené změny Táhněte mapu, abyste vybrali správné umístění objektu. + Vyberte kategorii + Populární + Všechny kategorie Probíhají úpravy Probíhá přidávání Název místa @@ -407,8 +478,13 @@ Detailní popis problému Jiný problém Přidat organizaci + Přidejte na mapu nová místa a upravte existující místa přímo z aplikace. + Změnit umístění Objekt zde nemůže být umístěn Přihlaste se, aby ostatní uživatelé mohli vidět změny, které jste provedli. + + Ke stažení potřebujete více volného místa. Odstraňte prosím nepotřebná data. + Vylepšil jsem mapy Organic Maps %1$d z %2$d Stáhnout pomocí připojení přes mobilní síť? @@ -426,6 +502,7 @@ Vámi navržené změny odešleme do komunity OpenStreetMap. Popište podrobnosti, které nelze upravit v Organic Maps. Více o projektu OpenStreetMap Operátor + Mé mapy Nemáte stažené žádné mapy Stáhněte si mapy a hledejte cestu a její cíl, i když jste offline. @@ -434,6 +511,14 @@ Nezjistili jsme vaši současnou polohu. Možná jste v budově nebo tunelu. Pokračovat Zastavit + Současná poloha nezjištěna. + Při zjišťování současné polohy došlo k chybě. Zkontrolujte, že nedošlo k chybě zařízení a pokus prosím opakujte později. + Určení polohy je zakázáno + Povolte přístup ke geolokaci v nastavení přístroje + 1. Otevřete Nastavení + 2. Klepněte na položku Poloha + + 3. Vyberte při používání aplikace m km km/h @@ -448,29 +533,43 @@ Rezervace Volat Upravit záložku + Název záložky + Vlastní poznámka + Smazat záložku + Odeslali jsme Vámi navržené změny Poznámka… Vymazat všechny místní změny? Vymazat Odstranit přidané místo? Odstranit Místo neexistuje + …dále Zadejte správné telefonní číslo Zadat platnou webovou adresu Zadat platný email + Aktualizovat Přidat místo na mapu Chcete jej poslat všem uživatelům? Ujistěte se, že jste nezadali žádná osobní data. Změny ověříme. Budeme-li k vám mít jakékoli dotazy, budeme vás kontaktovat prostřednictvím emailu. + stop + + Zakázat zaznamenávání vaší nedávno ujeté trasy? + Zakázat + + Odjezd + Organic Maps používají geopozici na pozadí, aby se zaznamenala vaše nedávno ujetá trasa. Organic Maps jsou bezplatná offline mapová aplikace s otevřeným zdrojovým kódem. Žádné reklamy. Žádné sledování. Pokud na mapě vidíte chybu, opravte ji v OpenStreetMap. Projekt vytvářejí nadšenci v našem volném čase, takže potřebujeme vaši zpětnou vazbu a podporu. + Obecná nastavení Přijmout Odmítnout - + Seznam Použít mobilní data k zobrazení podrobnějších informací? Vždy použít @@ -483,6 +582,8 @@ Ke zobrazení údajů o provozu musí být aktualizovány mapy. Zvětšit velikost písma na mapě Aktualizujte Organic Maps + + Ke zobrazení dat o provozu je nutné aplikaci aktualizovat. Data o provozu nejsou k dispozici Povolit protokolování @@ -499,8 +600,13 @@ Zadejte výchozí bod pro plánování trasy Zadejte cílový bod pro plánování trasy Ukončit + Spravovat trasu + Naplánovat Odstranit + Pro odebrání přetáhněte sem Přidat zastávku + Začít z + Jejda, došlo k chybě. Zkuste se přihlásit znovu. Problém s přístupem k úložišti Externí úložiště není k dispozici, pravděpodobně byla vyjmuta nebo poškozena SD karta, nebo je systém souborů pouze pro čtení. Zkontrolujte to prosím a kontaktujte nás na support\@organicmaps.app Emulovat špatné úložiště @@ -510,7 +616,14 @@ Skrýt vše Zobrazit vše + + %d záložek + Vytvořte nový seznam + Skrýt obrazovku + %1$s (%2$s z %3$s) + Stahování %s… + Aplikuji %s… Nelze sdílet kvůli chybě aplikace Chyba sdílení Nelze sdílet s prázdným seznamem @@ -519,15 +632,23 @@ Nový seznam Toto jméno již bylo provedeno Zvolte jiný název + Tento název je příliš dlouhý Prosím, čekejte… Telefonní číslo Profil OpenStreetMap + Byly zjištěny nové soubory %d byly nalezeny soubory. Uvidíte je po konverzi. %d soubor byl nalezen. Uvidíte ji po konverzi. Bylo nalezeno %d souborů. Uvidíte je po konverzi. + Konvertovat + Chyba + Některé soubory nebyly převedeny. + Obnovit tuto verzi? Žádné internetové připojení + Nastala neznámá chyba + Obnovit %d místo @@ -549,13 +670,17 @@ Seznam je prázdný Pro přidání nové značky klikněte na symbol hvězdičky na obrázku objektu …ještě + Někde se stala chyba Exportovat soubor Nástroje seznamu Smazat seznam + Neukazovat na mapě Veřejně přístupné Soukromé Přidejte popis (text nebo html) Osobní účet + Během nahrávání tagů se stala chyba, zkuste to prosím ještě jednou + Stáhnout Detektory rychlosti Automaticky Vždy @@ -563,6 +688,7 @@ Popis místa Nahrávání map + Automaticky - Upozorňovat na rychlostní radary, pokud hrozí riziko překročení rychlosti\nVždy - Vždy upozorňovat na rychlostní radary\nNikdy - Nikdy neupozorňovat na rychlostní radary Nízkoenergetický režim Pokud je nízkoenergetický režim zapojen, příloha bude vypínat funkce, které mrhají energii v závislosti na nynější nabíjení telefonu Nikdy @@ -586,11 +712,44 @@ Vyhnout se silnicím s mýtným Vyhnout se nezpevněným silnicím Vyhnout se přejezdům trajektů + Pojďme + Destinace + Znovu vystředit + Prohledat výsledky + Poté + Chcete přestavět trasu? + Ano + Ne + Přijeli jste! + Při řízení není klávesnice dostupná + Od vaší aktuální polohy nelze vystavět trasu + Nelze vystavět trasu k vaší destinaci. Zvolte prosím další bod + Signál GPS neexistuje. Přesuňte se prosím do otevřeného prostoru + Nelze sestavit trasu. Specifikujte prosím další body trasy + K vytvoření trasy si stáhněte chybějící mapy do vašeho zařízení + Vyskytla se chyba. Restartujte prosím aplikaci + Trasa bude přestavěna od vaší aktuální polohy + Trasa bude upravena k autu jedna Ok + Bez pr. cest + Vyhnout se nezp + Bez trajektů + Vyh. se traj. + Bez pl.sil. + Vyh. se pl. sil + Rych. kam. + Rych. varování + Stáhněte si prosím mapy do aplikace Organic Maps ve vašem zařízení + %s výjezd Třídit… Třídit záložky + + Třídit ve výchozím nastavení + Třídit dle typu + Třídit dle vzdálenosti + Třídit dle data Podle výchozího stavu @@ -629,6 +788,10 @@ Terén Chcete-li aktivovat a používat topografickou vrstvu, prosím aktualizujte nebo si stáhněte mapu oblasti Topografická vrstva není v této oblasti ještě dostupná + Stupeň obtížnosti + Snadný + Mírný + Těžký Stoupání Klesání Min. nadmořská výška @@ -637,9 +800,22 @@ Vzdál.: Čas: Přiblížit pro prozkoumání izolinií + Probíhá aktualizace + Probíhá stahování + Klíčové informace Nechte obrazovku spát Je-li tato možnost povolena, bude obrazovka po určité době nečinnosti umožněna usnout. + + Aktualizujte své stažené mapy + + Aktualizace map zajišťuje aktuální informace o objektech + + Aktualizace (%s) + + Aktualizovat ručně později + + Dráha Stanice lanové dráhy @@ -860,8 +1036,6 @@ Tísňového volání Vchod Lékařská laboratoř - - Autobusová zastávka Silnice v rekonstrukci Cesta @@ -961,22 +1135,6 @@ Ulice Ulice Ulice - Cesta - Ulice - Ulice - Cesta - Ulice - Ulice - Ulice - Ulice - Ulice - Ulice - Cesta - Ulice - Ulice - Ulice - - Vykopávky Zámek Zámek @@ -1063,16 +1221,16 @@ Mobilní operátor Velkoměsto Hlavní město - Velkoměsto - Velkoměsto + Hlavní město + Hlavní město Hlavní město - Velkoměsto - Velkoměsto - Velkoměsto - Velkoměsto - Velkoměsto - Velkoměsto - Velkoměsto + Hlavní město + Hlavní město + Hlavní město + Hlavní město + Hlavní město + Hlavní město + Hlavní město Kontinent Země Země diff --git a/android/res/values-da/strings.xml b/android/res/values-da/strings.xml index e06417ed64..71b1e776ee 100644 --- a/android/res/values-da/strings.xml +++ b/android/res/values-da/strings.xml @@ -8,6 +8,8 @@ Tilbage Afbryd + + Annuller download Slet Download kort @@ -17,6 +19,8 @@ Downloader… Kilometre + + Lav en bedømmelse Kort @@ -29,14 +33,19 @@ Søg Søg kort + + Ja Du har alle lokationstjenester for denne enhed eller applikation slukket. Slå dem venligst til i Indstillinger. Vis på kortet + + Download kort Download mislykket Prøv igen + Om Organic Maps Forbindelsesindstillinger Luk En hardware accelereret OpenGL er påkrævet. Din enhed er desværre ikke understøttet. @@ -61,6 +70,8 @@ Bogmærke Farve Indstil bogmærkenavn + + Bogmærk sæt Bogmærker @@ -69,8 +80,8 @@ Navn Adresse - - Liste + + Sæt Indstillinger @@ -85,43 +96,41 @@ Måleenhed Vælg mellem mil eller kilometer - - - + Spisesteder - + Dagligvarer - + Transport - + Benzin - + Parkering - + Indkøb - + Hotel - + Seværdigheder - + Underholdning - + Hæveautomat - + Natteliv - + Familieferie - + Bank - + Apotek - + Hospital - + Toilet - + Post - + Politi Noter @@ -155,8 +164,12 @@ Email Kopieret til udklipsholderen: %1$s + + Info Færdig + + Version: %s Er du sikker på, at du vil fortsætte? @@ -185,6 +198,10 @@ Stemmesprog Ikke til rådighed + + Andet + + Seneste sti Auto zoom Fra 1 time @@ -192,6 +209,8 @@ 6 timer 12 timer 1 dag + Det giver dig mulighed at optage en rejsterute for en bestemt periode og se den på kortet. Bemærk: aktivering af denne funktion forårsager øget batteriforbrug. Sporet vil blive fjernet automatisk fra kortet efter at tidsintervallet er udløbet. + Afstand Vis på kortet Hjemmeside @@ -209,6 +228,12 @@ Copyright Rapportér fejl + + Emailklienten er ikke blevet sat op. Venligst konfigurér den eller brug en anden måde til at kontakte os på %s + + Mailforsendelsesfejl + + Kalibrering af kompas WiFi @@ -217,12 +242,19 @@ Aflys Alt Downloadet + + Tilgængelige I kø I nærheden Kort Download alle Downloader: + Fundet + + Opdater + + Mislykkedes For at slette kortet skal du stoppe navigeringen. @@ -237,12 +269,22 @@ Opdater kort Anvend Google Play Services til at få din aktuelle placering + + Jeg har netop bedømt jeres app + + Mange tak! + + Del dine ideer eller problemer med os, så vi kan forbedre appen for dig. + + Send feedback Download kort på vejen Ved at oprette en rute kræver det, at alle kort fra din placering til destination er downloadede og opdaterede. Ikke nok plads + + bogmærke Aktiver venligst lokationstjenester Gem @@ -295,6 +337,8 @@ Tjek venligst dit GPS-signal. Din placering registreres mere præcist, hvis wi-fi er slået til. Slå lokaliseringstjenester til Det lykkedes ikke at finde de aktuelle GPS-koordinater. Slå lokaliseringstjenester til for at beregne en rute. + Download de nødvendige filer + Download og opdatér alle kort og ruteoplysninger for at beregne en rute. Der blev ikke fundet en rute Der blev ikke planlagt en rute. Prøv at angive et andet startpunkt eller en anden destination. @@ -309,6 +353,7 @@ Systemfejl Det lykkedes ikke at planlægge en rute. Der opstod en fejl i systemet. Prøv igen + Ikke nu Ønsker du at downloade kortet og planlægge en mere optimal rute, der strækker sig over mere end ét kort? Download kortet for at planlægge en mere optimal rute, der strækker sig ud over dette korts grænser. @@ -319,8 +364,17 @@ Vis Skjul + + Ruteplanlægning mislykkedes Ankomst: %s + + For at oprette en rute skal du hente og opdatere alle kort langs ruten. + Kan du lide appen? + Tak for at du bruger Organic Maps. Venligst bedøm appen. Din feedback hjælper os med at blive bedre. + Hurra! Vi elsker også dig! + Mange tak, vi vil gøre vores bedste! + Har du en idé om, hvordan vi kan gøre den bedre? Kategorier Historik Lukket @@ -351,6 +405,8 @@ Eksempelværdier Ret fejl Sted + Du har ændret verdenskortet. Lad andre det vide! Fortæl dine venner og redigér det sammen. + Del med venner Beskriv problemet i detaljer, så OpenStreetMap-fællesskabet kan løse fejlen. Eller gør det selv på https://www.openstreetmap.org/ Send @@ -360,20 +416,29 @@ Duplikeret sted Automatisk download + Lukket nu + Daglig Dag og nat Fridag i dag Fridag I dag + Tilføj arbejdstid Rediger arbejdstid Ingen konto på OpenStreetMap? Tilmeld dig + Adgangskode (mindst 8 tegn) + Ugyldigt brugernavn eller adgangskode. Log ind Adgangskode Glemt adgangskode? + OSM-konto Log ud + + Sidste overførsel Mange tak Redigér stedet + Navn på sted Tilføj et sprog Gade @@ -390,16 +455,22 @@ Vælg køkken Email eller brugernavn + Telefon + Bemærk venligst Alle kortændringer vil blive slettet sammen med kortet. Opdatér kort For at oprette en rute skal du opdatere alle kort og så planlægge ruten igen. Find kortet + Fejl ved download Tjek dine indstillinger og sørg for, din enhed er forbundet til internettet. Ikke nok plads Fjern unødvendig data Login-fejl. Bekræftede ændringer Træk kortet for at vælge objektets korrekte placering. + Vælg kategori + Populær + Alle kategorier Redigerer Tilføjer Stedets navn @@ -407,8 +478,13 @@ Detaljeret beskrivelse af problemet Et anderledes problem Tilføj organisationen + Tilføj nye steder til kortet og redigér eksisterende direkte fra app\'en. + Skift lokation Et objekt kan ikke placeres her Log på så andre brugere kan se ændringerne som du har foretaget. + + For at opdatere app\'en skal du bruge mere plads. Slet unødvendig data. + Jeg forbedrede Organic Maps kortene %1$d af %2$d Download ved brug af mobilnetværksforbindelse? @@ -426,6 +502,7 @@ Dine foreslåede ændringer vil blive sendt til OpenStreetMap fællesskabet. Beskrive detaljer, som ikke kan redigeres i Organic Maps. Mere om OpenStreetMap Bruger + Mine kort Du har ikke hentet alle kort Download kort for at finde position og navigere offline. @@ -434,6 +511,14 @@ Aktuel placering er ukendt. Måske er du i en bygning eller i en tunnel. Fortsæt Stop + Aktuel position er ukendt. + Der opstod en fejl under søgning efter din position. Kontrollér at din enhed fungerer korrekt, og prøv igen senere. + Placeringsservices er slået fra + Slå adgang til geoposition til i enhedens indstillinger + 1. Åbn Indstillinger + 2. Tryk på Placering + + 3. Vælg Mens app\'en bruges m km km/t @@ -448,29 +533,43 @@ Book Ring Rediger bogmærke + Bogmærke + Personlige notater + Slet bogmærke + Dine foreslåede ændringer er blevet sendt Kommentar… Nulstil alle lokale ændringer? Nulstil Fjern en ekstra plads? Fjern Stedet eksisterer ikke + …mere Indtast korrekt telefonnummer Indtast en gyldig webadresse Indtast en gyldig emailadresse + Opdater Tilføj et sted på kortet Ønsker du at sende det til alle brugere? Sørg for at du ikke indtastede personlige oplysninger. Vi vil kigge på ændringerne. Hvis vi har spørgsmål, vil vi kontakte dig via email. + stop + + Vil du deaktivere gemningen af din seneste rejserute? + Deaktiver + + Tjek + Organic Maps anvender din geoposition i baggrunden til at gemme din seneste rejserute. Organic Maps er en gratis og open source offline kortapplikation. Ingen annoncer. Ingen sporing. Hvis du ser en fejl på kortet, skal du rette den i OpenStreetMap. Projektet er skabt af entusiaster i vores fritid, så vi har brug for din feedback og support. + Generelle indstillinger Accepter Afvis - + Liste Skal mobilt internet bruges til at vise detaljerede oplysninger? Brug altid @@ -483,6 +582,8 @@ Kortet opdateres for kunne vise trafikdata. Forøg skriftstørrelsen på kortet Opdater Organic Maps + + Appen skal opdateres for at kunne vise trafikdata. Trafikdata er ikke tilgængelige Aktiver logføring @@ -499,8 +600,13 @@ Tilføj startpunkt for at planlægge en rute Tilføj slutpunkt for at planlægge en rute Afslut + Administrer rute + Planlæg Fjern + Træk herhen for at fjerne Tilføj stop + Start fra + Ups, der skete en fejl. Prøv at logge på igen. Problem med lageradgang Eksternt lager er ikke tilgængeligt, formentlig er SD-kortet blevet fjernet eller beskadiget, eller filsystemet er skrivebeskyttet. Kontroller det og kontakt os på support\@organicmaps.app Emulere beskadiget lager @@ -510,7 +616,14 @@ Skjul alle Vis alle + + %d bogmærker + Opret ny liste + Skjul skærm + %1$s (%2$s af %3$s) + Downloader %s… + Anvender %s… Ikke i stand til at dele på grund af en programfejl Delingsfejl Kan ikke dele en tom liste @@ -519,14 +632,22 @@ Ny liste Dette navn er allerede taget Vælg venligst et andet navn + Dette navn er for langt Vent venligst… Telefonnummer OpenStreetMap profil + Nye filer registreret %d fil blev fundet. Du vil se det efter konvertering. Der er fundet %d filer. Du vil se dem efter konvertering. + Konvertere + Fejl + Nogle filer blev ikke konverteret. + Gendan denne version? Ingen internetforbindelse + Der opstod en ukendt fejl + Gendan %d sted @@ -548,13 +669,17 @@ Listen er tom For at tilføje et bogmærke, så tryk et sted på kort og så på stjerneikonet …mere + Der er opstået en fejl Eksporter fil Listeindstillinger Slet liste + Skjul på kort Offentlig adgang Begrænset adgang Lav en beskrivelse (tekst eller html) Privat + Der skete en fejl under hentning af tags, prøv igen + Download Fartkameraer Auto Altid @@ -562,6 +687,7 @@ Beskrivelse af sted Korthenter + Auto - Advar om fartkameraer, hvis der er en risiko for, at hastighedsgrænsen overskrides\nAltid - Advar altid om fartkameraer\nAldrig - Advar aldrig om fartkameraer Strømsparetilstand Når automatisk tilstand er valgt, begynder applikationen at deaktivere funktioner, med højt batteri-strømforbrug, afhængigt af det aktuelle batteriniveau Aldrig @@ -585,11 +711,44 @@ Undgå betalingsveje Undgå grusveje Undgå færgeoverfarter + Lad os komme i gang + Destination + Centrer igen + Søgeresultater + Derefter + Vil du genopbygge en rute igen? + Ja + Nej + Du er ankommet! + Keyboard er ikke tilgængelig under kørsel + Det er ikke muligt at beregne rute fra din nuværende position + Det er ikke muligt at beregne rute til din destination. Vælg en anden destination + Intet GPS signal. Flyt til et område med dækning + Det er ikke muligt at beregne rute. Vælg andre forbindelses-punkter for ruten + Download manglende kort til din enhed, for at lave ruten + Der opstod en fejl. Genstart programmet + Rute vil blive beregnet igen, ud fra din nuværende position + Rute vil blive ændret til en kørselsrute Ok + Ingen grus + Undgå grus + Ingen færger + Undgå færger + Ingen betal. + Undgå betaling + Radarkontrol + Radar advarsel + Download kort i Organic Maps appen, på din enhed + %s exit Sort… Sort (bookmaarks) + + Sortér (std) + Sort (type) + Sort (Afs) + Sort (dato) Som standard @@ -628,6 +787,10 @@ Terræn For at aktivere og bruge de topografiske lag, opdater venligst eller download kortet for området Det topografiske lag er endnu ikke tilgængeligt i dette område + Sværhedsgrad + Let + Middel + Svær Stige op Stige ned Min. højde @@ -636,9 +799,22 @@ Afs.: Tid: Zoom ind for at udforske isolinjekort + Opdaterer + Downloader + Central information Lad skærmen sove Når den er aktiveret, får skærmen lov til at sove efter en periode med inaktivitet. + + Opdater dine downloadede kort + + Opdatering af kort sikrer, at oplysningerne om objekter er aktuel + + Opdater (%s) + + Opdater manuelt senere + + Rute Kabelbanestation @@ -854,8 +1030,6 @@ Nødtelefon Indgang Medicinsk laboratorium - - Busstoppested Vej under opbygning Sti @@ -955,22 +1129,6 @@ Gade Gade Gade - Sti - Gade - Gade - Sti - Gade - Gade - Gade - Gade - Gade - Gade - Sti - Gade - Gade - Gade - - Arkæologisk sted Slot Slot @@ -1054,16 +1212,16 @@ Mobiloperatør By Kapital - By - By + Kapital + Kapital Kapital - By - By - By - By - By - By - By + Kapital + Kapital + Kapital + Kapital + Kapital + Kapital + Kapital Kontinent Land Amt diff --git a/android/res/values-de/strings.xml b/android/res/values-de/strings.xml index 1e23ce3c95..6ef21c29de 100644 --- a/android/res/values-de/strings.xml +++ b/android/res/values-de/strings.xml @@ -8,6 +8,8 @@ Zurück Abbrechen + + Herunterladen abbrechen Löschen Karten herunterladen @@ -17,6 +19,8 @@ Wird heruntergeladen… Kilometer + + Bericht abgeben Karten @@ -31,14 +35,19 @@ Suche Auf der Karte suchen + + Ja Ortungsdienste sind für dieses Gerät oder die App deaktiviert. Bitte aktivieren Sie diese in den Einstellungen. Auf der Karte anzeigen + + Karte herunterladen Herunterladen fehlgeschlagen Erneut versuchen + Über Organic Maps Verbindungseinstellungen Schließen Das Programm benötigt OpenGL, um zu funktionieren. Leider wird Ihr Gerät nicht unterstützt. @@ -63,6 +72,8 @@ Lesezeichenfarbe Name des Lesezeichens + + Lesezeichenmappe Lesezeichengruppen @@ -71,8 +82,8 @@ Name Adresse - - Liste + + Gruppe Einstellungen @@ -87,43 +98,41 @@ Maßeinheiten Wählen Sie zwischen Kilometern und Meilen - - - + Essmöglichkeiten - + Lebensmittel - + Verkehr - + Tankstelle - + Parkplatz - + Shopping - + Hotel - + Sehenswürdigkeit - + Unterhaltung - + Geldautomat - + Nachtleben - + Freizeit mit Kindern - + Bank - + Apotheke - + Krankenhaus - + Toilette - + Post - + Polizeistation Notizen @@ -157,8 +166,12 @@ Email In die Zwischenablage kopiert: %1$s + + Info Fertig + + Version: %s Datenversion: %d @@ -193,6 +206,10 @@ Sprache für Sprachführung Nicht verfügbar + + Weitere + + Letzte Strecke Auto-Zoom Aus 1 Stunde @@ -200,6 +217,8 @@ 6 Stunden 12 Stunden 1 Tag + So können Sie die zurückgelegte Strecke für einen bestimmten Zeitraum aufzeichnen und auf der Karte sehen. Hinweis: Die Aktivierung dieser Funktion führt zu erhöhtem Batterieverbrauch. Die Aufzeichnung wird nach Ablauf des Zeitintervalls automatisch von der Karte entfernt. + Entfernung Auf der Karte ansehen Webseite @@ -217,6 +236,12 @@ Copyright Fehler melden + + Der Email-Client ist noch nicht eingerichtet worden. Konfigurieren Sie ihn bitte oder nutzen Sie eine andere Möglichkeit, uns unter %s zu erreichen. + + Fehler beim Email-Versand + + Kompass-Kalibrierung WLAN @@ -225,12 +250,19 @@ Alle abbrechen Heruntergeladen + + Verfügbar In der Warteschlange In meiner Nähe Karten Alle herunterladen Gerade wird heruntergeladen: + Gefunden + + Aktualisieren + + Fehlgeschlagen Um die Karte zu löschen, die Navigation unterbrechen. @@ -245,12 +277,22 @@ Karte aktualisieren Nutzen Sie die Google Play-Dienste, um Ihren aktuellen Standort zu erhalten + + Ich habe gerade Ihre App bewertet + + Vielen Dank! + + Teilen Sie uns Ihre Anregungen und Probleme mit, so dass wir die App für Sie verbessern können. + + Rückmeldung senden Karten entlang der Route herunterladen Zum Erstellen einer Route müssen alle Karten von Ihrem Standort bis zum Ziel heruntergeladen und aktualisiert worden sein. Nicht genug Speicherplatz + + Lesezeichen Aktivieren Sie bitte Ortungsdienste Speichern @@ -303,6 +345,8 @@ Bitte prüfen Sie Ihr GPS-Signal. WLAN verbessert Ihre Standortgenauigkeit. Ortungsdienste aktivieren Aktuelle GPS-Koordinaten können nicht ermittelt werden. Aktivieren Sie Ortungsdienste, um die Route zu berechnen. + Erforderliche Dateien herunterladen + Laden Sie alle Karten- und Routeninformationen für den geplanten Weg herunter und aktualisieren Sie sie, um die Route zu berechnen. Route kann nicht ermittelt werden Route kann nicht erstellt werden. Bitte passen Sie Ihren Startpunkt oder Ihr Ziel an. @@ -317,6 +361,7 @@ Systemfehler Route kann wegen eines Anwendungsfehlers nicht erstellt werden. Bitte versuchen Sie es erneut + Nicht jetzt Möchten Sie die Karte herunterladen und eine bessere Route erstellen, die mehr als eine Karte umfasst? Laden Sie die Karte herunter, um eine bessere Route zu erstellen, die den Rand dieser Karte überschreitet. @@ -327,8 +372,17 @@ Anzeigen Ausblenden + + Routenplanung fehlgeschlagen Ankunft: %s + + Zum Erstellen einer Route müssen Sie alle Karten herunterladen und aktualisieren, auf der die Route liegt. + Gefällt Ihnen die App? + Danke, dass Sie Organic Maps nutzen. Bitte bewerten Sie die App. Ihre Rückmeldung hilft uns, besser zu werden. + Hurra! Wir lieben Sie auch! + Danke, wir geben unser Bestes! + Haben Sie eine Idee, wie wir besser werden können? Kategorien Verlauf Geschlossen @@ -359,6 +413,8 @@ Beispiele Fehler korrigieren Position + Sie haben die Weltkarte geändert. Blenden Sie das nicht aus! Erzählen Sie Ihren Freunden davon und bearbeiten Sie sie zusammen. + Mit Freunden teilen Bitte beschreiben Sie das Problem detailliert, damit die OpenStreeMap-Gemeinschaft den Fehler beheben kann. Oder kümmern Sie sich selbst darum auf https://www.openstreetmap.org/ Senden @@ -368,20 +424,29 @@ Doppelter Ort Automatisch herunterladen + Jetzt geschlossen + Täglich Tag und Nacht Heute geschlossen Geschlossen Heute + Geschäftszeiten hinzufügen Geschäftszeiten bearbeiten Kein Konto bei OpenStreetMap? Registrieren + Passwort (mindestens 8 Zeichen) + Ungültiger Benutzername oder Passwort. Anmelden Passwort Passwort vergessen? + OSM Konto Abmelden + + Zuletzt hochgeladen Danke Platz bearbeiten + Name des Platzes Eine Sprache hinzufügen Straße @@ -398,17 +463,23 @@ Küche auswählen Email oder Benutzername + Telefon Telefon hinzufügen + Bitte beachten Alle Kartenänderungen werden zusammen mit der Karte gelöscht. Karten aktualisieren Um eine Strecke zu erstellen, müssen Sie alle Karten aktualisieren und dann die Strecken erneut planen. Karte finden + Fehler beim Herunterladen Bitte überprüfen Sie Ihre Einstellungen und stellen Sie sicher, dass Ihr Gerät mit dem Internet verbunden ist. Nicht genug Speicherplatz Bitte entfernen Sie unnötige Daten Login-Fehler. Bestätigte Änderungen der Karte Ziehen Sie die Karte, um den Standort des Objektes zu korrigieren. + Kategorie auswählen + Beliebt + Alle Kategorien Wird bearbeitet Wird hinzugefügt Name des Orts @@ -416,8 +487,13 @@ Detaillierte Beschreibung eines Problems Ein anderes Problem Organisation hinzufügen + Fügen Sie auf der Karte einen neuen Ort hinzu und bearbeiten Sie existierende Ort direkt in der App. + Standort wechseln Ein Objekt kann hier nicht positioniert werden Melden Sie sich an, damit andere Benutzer Ihre Änderungen sehen können. + + Zum Herunterladen benötigen Sie mehr Platz. Bitte löschen Sie unnötige Daten. + Ich habe die Organic Maps-Karten verbessert %1$d von %2$d Über eine Mobilfunknetzverbindung herunterladen? @@ -435,6 +511,7 @@ Ihre Änderungsvorschläge für die Karte werden an OpenStreetMap gesendet: Beschreiben Sie die Details der Objekte, die Sie in Organic Maps nicht bearbeiten können. Mehr Informationen über OpenStreetMap Betreiber oder Eigentümer + Meine Karten Keine Karten geladen Laden Sie die für die Suche nach Orten erforderlichen Karten und verwenden Sie die Navigation offline. @@ -443,6 +520,14 @@ Standort nicht gefunden. Möglicherweise befinden Sie sich in einem Gebäude oder einem Tunnel. Fortsetzen Anhalten + Standort nicht gefunden. + Bei der Standortsuche ist ein unbekannter Fehler aufgetreten. Prüfen Sie die Funktionstüchtigkeit Ihres Geräts und versuchen Sie es etwas später erneut. + Standort-Identifizierung ist deaktiviert + Aktivieren Sie den Zugang zur Positionsbestimmung in den Geräteeinstellungen + 1. Einstellungen öffnen + 2. Auf Standort tippen + + 3. Wählen Sie „Beim Verwenden der App“ m km km / h @@ -457,12 +542,17 @@ Buchen Anruf Lesezeichen bearbeiten + Name des Lesezeichens + Anmerkung + Lesezeichen löschen + Ihre Änderungsvorschläge wurden gesendet Kommentar… Alle lokalen Korrekturen verwerfen Verwerfen Hinzugefügtes Objekt löschen? Löschen Dieser Ort existiert nicht + …Mehr Geben Sie die richtige Telefonnummer ein Geben Sie eine gültige Internetadresse ein @@ -471,19 +561,28 @@ Geben Sie eine gültige Instagram-Webadresse oder einen Kontonamen ein Geben Sie eine gültige Twitter-Webadresse oder einen Benutzernamen ein Geben Sie eine gültige VK-Webadresse oder einen Kontonamen ein + Aktualisieren Einen Ort zur Karte hinzufügen Wollen Sie sie an alle Benutzer senden? Stellen Sie sicher, dass Sie keine persönlichen Daten eingegeben haben. Wir werden die Änderungen prüfen. Wenn wir Fragen haben, werden wir Sie per Email kontaktieren. + Stop + + Aufzeichnung Ihrer kürzlich gefahrenen Route deaktivieren? + Deaktivieren + + Nachsehen + Organic Maps verwendet Ihre Geoposition im Hintergrund, um Ihre kürzlich gefahrene Route aufzunehmen. Organic Maps ist eine kostenlose Open-Source-Offline-Kartenanwendung. Keine Werbung. Keine Verfolgung. Wenn Sie einen Fehler auf der Karte sehen, beheben Sie ihn bitte in OpenStreetMap. Das Projekt wird von Enthusiasten in unserer Freizeit erstellt, daher brauchen wir Ihr Feedback und Ihre Unterstützung. + Allgemeine Einstellungen Annehmen Ablehnen - + Liste Mobiles Internet verwenden, um genauere Informationen anzuzeigen? Immer verwenden @@ -496,6 +595,8 @@ Um Verkehrsdaten anzuzeigen, müssen die Karten aktualisiert werden. Schriftgröße auf der Karte erhöhen Bitte aktualisieren Sie Organic Maps + + Um Verkehrsdaten anzuzeigen, muss die Anwendung aktualisiert werden. Verkehrsdaten sind nicht verfügbar Protokollierung aktivieren @@ -512,8 +613,13 @@ Fügen Sie einen Startpunkt hinzu, um eine Route zu planen Fügen Sie ein Ziel hinzu, um eine Route zu planen Beenden + Route verwalten + Planen Entfernen + Hierher ziehen zum Entfernen Zwischenstopp hinzufügen + Starten von + Hoppla, es ist ein Fehler aufgetreten. Versuchen Sie erneut, sich anzumelden. Problem mit dem Zugreifen auf den Speicher Der externe Speicher ist nicht verfügbar, möglicherweise wurde die SD-Karte entfernt oder sie ist beschädigt oder das Dateisystem ist schreibgeschützt. Überprüfen Sie das bitte und kontaktieren Sie uns unter support\@organicmaps.app Fehlerhaften Speicher emulieren @@ -523,9 +629,16 @@ Alle verbergen Alle anzeigen + + %d Lesezeichen + Erstelle eine neue Liste Lesezeichen importieren + Bildschirm verbergen + %1$s (%2$s von %3$s) + %s heruntergeladen… + %s anwenden… Freigabe wegen eines Anwendungsfehlers nicht möglich Fehler bei der Freigabe Es kann keine leere Liste freigegeben werden @@ -534,14 +647,22 @@ Neue Liste Dieser Name ist bereits vergeben Bitte wähle einen anderen Namen + Dieser Name ist zu lang Warten Sie mal… Telefonnummer OpenStreetMap-Profil + Neue Dateien erkannt %d Datei wurde gefunden. Sie werden es nach der Konvertierung sehen. %d Dateien wurden gefunden. Sie werden sie nach der Konvertierung sehen. + Konvertieren + Error + Einige Dateien wurden nicht konvertiert. + Diese Version wiederherstellen? Keine Internetverbindung + Ein unbekannter Fehler ist aufgetreten + Wiederherstellen %d Platz @@ -563,13 +684,18 @@ Die Liste ist leer Um eine neue Markierung hinzuzufügen, drücken Sie auf das Sternzeichen in der Karte des Objekts …mehr + Es ist ein Fehler aufgetreten + Beliebt Datei exportieren Listeneinstellungen Liste löschen + Auf der Karte ausblenden Öffentlicher Zugriff Privater Zugriff Fügen Sie die Beschreibung hinzu (Text oder html) Persönlich + Während dem Laden der Tags ist ein Fehler aufgetreten, bitte, versuchen Sie es erneut + Downloaden Geschwindigkeitskameras Auto Immer @@ -577,6 +703,7 @@ Ortsbeschreibung Karten werden geladen + Auto - Über Geschwindigkeitskameras bei Risiko einer Geschwindigkeitsüberschreitung informieren\nImmer - Immer über Geschwindigkeitskameras informieren\nNiemals - Nie über Geschwindigkeitskameras informieren Stromsparmodus Falls der Stromsparmodus aktiviert ist, wird die App stromintensive Prozesse je nach dem aktuellen Ladezustand deaktivieren Niemals @@ -600,11 +727,44 @@ Mautstraßen vermeiden Erdwege vermeiden Fährstellen vermeiden + Fahren wir + Ziel + Zentrieren + Suchergebnisse + Danach + Möchten Sie die Route neu erstellen? + Ja + Nein + Sie sind angekommen! + Die Tastatur ist während der Bewegung nicht zugänglich + Es ist unmöglich eine Reiseroute vom aktuellen Standort planen + Es ist unmöglich eine Reiseroute bis zum Endpunkt planen. Wählen Sie einen anderen + Kein GPS-Signal. Gehen Sie in das offene Gelände + Es ist unmöglich, eine Route zu planen. Wählen Sie andere Routenpunkte + Laden Sie die fehlenden Karten hoch, um die Route zu erstellen + Fehler aufgetreten. Starten Sie Applikation neu + Die Route wird von Ihrem derzeitigen Standpunkt geplant werden + Reiseroute wird zur Route für Fahrzeug geändert sein Ok + Ohne Landstr + Ohne Landstr. + Ohne Fähren + Ohne Fähren + Ohne kpf Str + Ohne kpfl. Str. + Blitzer + Blitzerwarnung + Laden Sie Karten in der App Organic Maps auf Ihrem Gerät herunter + %s Ausfahrt Sortieren… Lesezeichen sortieren + + Default Sortierung + Sortierung nach Kategorien + Sortieren nach Entfernung + Sortieren nach Datum Default @@ -643,6 +803,10 @@ Terrain Um den Topographie-Layer benutzen zu können, aktualisieren oder laden Sie die Karte der benötigten Gegend herunter Topographie-Layer sind in dieser Region noch nicht verfügbar + Komplexitätsniveau + Leicht + Mittel + Schwer Bergauf Bergab Min. Höhe @@ -651,12 +815,27 @@ Entf.: Dauer: Karte vergrößern, um Isolinien zu sehen + Update + Download + Wichtige Informationen Download der Weltkarte Verbindungsfehler USB-Kabel trennen Bildschirm schlafen lassen Wenn diese Option aktiviert ist, kann der Bildschirm nach einer gewissen Zeit der Inaktivität in den Ruhezustand versetzt werden. + + Aktualisieren Sie Ihre heruntergeladenen Karten + + Das Aktualisieren der Karten sorgt dafür, dass die Objektinformationen stets auf dem neuesten Stand sind + + Aktualisieren (%s) + + Später manuell aktualisieren + + Strecke löschen + + Strecken Seilbahn @@ -898,8 +1077,6 @@ Notruftelefon Eingang Medizinisches Labor - - Straße Reitweg Reitweg @@ -953,9 +1130,9 @@ Hauptstraße Hauptstraße Hauptstraßentunnel - Hauptstraße - Hauptstraße - Hauptstraße + Straße + Straße + Straße Rennbahn Wohnstraße Wohnstraße @@ -1003,30 +1180,13 @@ Schnellstraße Schnellstraße Schnellstraßentunnel - Schnellstraße - Schnellstraße + Straße + Straße Straßentunnel Straße Straße Straße Straßentunnel - Radweg - Weg - Wohnstraße - Autobahn - Weg - Fußgängerzone - Hauptstraße - Wohnstraße - Straße - Straße - Straße - Stufen - Straße - Schnellstraße - Straße - - Historisches Objekt Ausgrabungsstätte Schlachtfeld @@ -1176,16 +1336,16 @@ Ort Großstadt Hauptstadt - Großstadt - Großstadt + Hauptstadt + Hauptstadt Hauptstadt - Großstadt - Großstadt - Großstadt - Großstadt - Großstadt - Großstadt - Großstadt + Hauptstadt + Hauptstadt + Kreisstadt + Hauptstadt + Hauptstadt + Hauptstadt + Hauptstadt Kontinent Staat Kreis @@ -1453,4 +1613,9 @@ Langlaufloipe Rodelbahn Gebäude + Radweg + Weg + Wohnstraße + Autobahn + Weg diff --git a/android/res/values-el/strings.xml b/android/res/values-el/strings.xml index 3e6d154c6b..85a411abe5 100644 --- a/android/res/values-el/strings.xml +++ b/android/res/values-el/strings.xml @@ -8,6 +8,8 @@ Πίσω Άκυρο + + Ακύρωση λήψης Διαγραφή Λήψη χαρτών @@ -17,6 +19,8 @@ Λήψη… Χιλιόμετρα + + Αφήστε μια κριτική Χάρτες GB @@ -30,14 +34,19 @@ Αναζήτηση Αναζήτηση χάρτη + + Ναι Οι υπηρεσίες εντοπισμού τοποθεσίας είναι προς το παρόν απενεργοποιημένες σε αυτή τη συσκευή ή για αυτή την εφαρμογή. Ενεργοποιήστε τις από τις Ρυθμίσεις. Εμφάνιση στο χάρτη + + Λήψη χάρτη Η λήψη απέτυχε Δοκιμάστε ξανά + Σχετικά με το Organic Maps Ρυθμίσεις σύνδεσης Κλείσιμο Η εφαρμογή απαιτεί OpenGL με επιτάχυνση υλικού. Δυστυχώς, η συσκευή σας δεν το υποστηρίζει. @@ -62,6 +71,8 @@ Χρώμα αγαπημένου Όνομα συνόλου αγαπημένων + + Σύνολα αγαπημένων Αγαπημένα @@ -70,8 +81,8 @@ Όνομα Διεύθυνση - - Λίστα + + Σύνολο Ρυθμίσεις @@ -86,43 +97,41 @@ Μονάδες μέτρησης Επιλέξετε ανάμεσα σε μίλια και χιλιόμετρα - - - + Πού να φάμε - + Παντοπωλεία - + Συγκοινωνία - + Βενζίνη - + Χώρος στάθμευσης - + Ψώνια - + Ξενοδοχείο - + Αξιοθέατα - + Ψυχαγωγία - + ATM - + Νυχτερινή Ζωή - + Οικογενειακές Διακοπές - + Τράπεζα - + Φαρμακείο - + Νοσοκομείο - + Τουαλέτα - + Ταχυδρομείο - + Αστυνομία Σημειώσεις @@ -156,8 +165,12 @@ Email Αντιγράφηκε στο Πρόχειρο: %1$s + + Πληροφορίες Ολοκληρώθηκε + + Έκδοση: %s Ημερομηνία έκδοσης: %d @@ -188,6 +201,10 @@ Γλώσσα φωνής Δεν είναι διαθέσιμη + + Άλλα + + Πρόσφατη διαδρομή Αυτόματη μεγέθυνση Απενεργ. 1 ώρα @@ -195,6 +212,7 @@ 6 ώρες 12 ώρες 1 ημέρα + Σας επιτρέπει να καταγράψετε τη διαδρομή που έχει διανυθεί για συγκεκριμένο χρονικό διάστημα και να την δείτε στο χάρτη. Λάβετε υπόψη: η ενεργοποίηση αυτής της λειτουργίας κάνει έντονη χρήση της μπαταρίας. Το τμήμα θα αφαιρεθεί αυτόματα από το χάρτη μετά τη λήξη του μεσοδιαστήματος. Προβολή στο χάρτη Ιστότοπος @@ -212,6 +230,12 @@ Πνευματικά δικαιώματα Αναφορά σφάλματος + + Το πρόγραμμα-client ηλεκτρονικού ταχυδρομείου έχει δεν έχει ρυθμιστεί. Ρυθμίστε το ή χρησιμοποιήστε άλλο τρόπο να επικοινωνήσετε μαζί μας στη διεύθυνση %s + + Αποστολή σφάλματος αλληλογραφίας + + Βαθμονόμηση πυξίδας WiFi @@ -220,12 +244,19 @@ Ακύρωση όλων Έγινε λήψη + + Διαθέσιμη στην ουρά Κοντά μου Χάρτες Λήψη όλων Λήψη: + Βρέθηκαν + + Ενημέρωση + + Απέτυχε Για να διαγράψετε το χάρτη, σταματήστε την πλοήγηση. @@ -240,12 +271,22 @@ Ενημέρωση χάρτη Χρησιμοποιήστε υπηρεσίες Google Play για να προσδιορίσετε την τρέχουσα τοποθεσία σας + + Μόλις βαθμολόγησα την εφαρμογή σας + + Σας ευχαριστούμε! + + Μοιραστείτε ιδέες ή προβλήματα για να βελτιώσουμε την εφαρμογή. + + Αποστολή σχολίου Κατεβάστε όλους τους χάρτες για ολόκληρο το μήκος της διαδρομής σας Για να δημιουργήσετε μια διαδρομή, πρέπει να κατεβάσετε και να ενημερώσετε όλους τους χάρτες από τη θέση σας στον προορισμό σας. Δεν υπάρχει αρκετός χώρος + + αγαπημένο Ενεργοποιήστε τις υπηρεσίες εντοπισμού τοποθεσίας Αποθήκευση @@ -298,6 +339,8 @@ Ελέγξτε το σήμα GPS. Η ενεργοποίηση του Wi-Fi θα βελτιώσει την ακρίβεια της τοποθεσίας σας. Ενεργοποιήστε τις υπηρεσίες εντοπισμού τοποθεσίας Δεν είναι δυνατός ο εντοπισμός των τρεχουσών συντεταγμένων GPS. Ενεργοποιήστε τις υπηρεσίες εντοπισμού τοποθεσίας για τον υπολογισμό της διαδρομής. + Κατεβάστε τα απαιτούμενα αρχεία + Κατεβάσετε και να ενημερώσετε όλους τους χάρτες και τις πληροφορίες δρομολόγησης για όλη την απόσταση της προβαλλόμενης διαδρομής για τον υπολογισμό της. Δε μπορεί να εντοπιστεί η διαδρομή Δε μπορεί να δημιουργηθεί η διαδρομή. Ρυθμίστε το σημείο εκκίνησης ή τον προορισμό σας. @@ -312,6 +355,7 @@ Σφάλμα συστήματος Δεν είναι δυνατή η δημιουργία διαδρομής εξαιτίας σφάλματος εφαρμογής. Προσπαθήστε ξανά + Όχι τώρα Θέλετε να κατεβάσετε το χάρτη και να δημιουργήσετε μια πιο βέλτιστη διαδρομή που εκτείνονται σε περισσότερους από έναν χάρτη; Κατεβάσετε επιπλέον χάρτες για να δημιουργήσετε μια καλύτερη διαδρομή που διασχίζει τα όρια αυτού του χάρτη. @@ -322,8 +366,15 @@ Εμφάνιση Απόκρυψη + + Ο σχεδιασμός διαδρομής απέτυχε Άφιξη στις %s + Σας αρέσει η εφαρμογή; + Σας ευχαριστούμε που χρησιμοποιείτε το Organic Maps. Βαθμολογήστε την εφαρμογή. Τα σχόλιά σας μας βοηθάνε να βελτιώσουμε το προϊόν μας. + Ζήτω! Σας ευχαριστούμε πάρα πολύ! + Σας ευχαριστούμε, θα κάνουμε το καλύτερο δυνατό! + Έχετε κάποια ιδέα για το πώς μπορούμε να το κάνουμε καλύτερο; Κατηγορίες Ιστορικό Κλειστό @@ -356,6 +407,8 @@ Παράδειγμα τιμών Διόρθωση λάθους Τοποθεσία + Έχετε αλλάξει τον παγκόμιο χάρτη. Μην το κρατάτε για τον εαυτό σας! Πείτε το στους φίλους σας και κάντε τις αλλαγές μαζί. + Μοιραστείτε με φίλους Περιγράψτε το πρόβλημα αναλυτικά ώστε η Κοινότητα OpenStreeMap να διορθώσει το σφάλμα. Ή κάντε το μόνοι σας στη διεύθυνση https://www.openstreetmap.org/ Αποστολή @@ -365,20 +418,29 @@ Διπλότυπη τοποθεσία Αυτόματη λήψη + Τώρα είναι κλειστό + Καθημερινά 24/7 Κλειστό σήμερα Κλειστό Σήμερα + Προσθέστε ώρες λειτουργίας Επεξεργαστείτε τις ώρες λειτουργίας Δεν έχετε λογαριασμό OpenStreetMap; Εγγραφείτε στο OSM + Κωδικός πρόσβασης (8 χαρακτήρες ελάχιστο) + Μη έγκυρο όνομα χρήστη ή κωδικός πρόσβασης. Σύνδεση Κωδικός πρόσβασης Ξαχάσατε τον κωδικό πρόσβασης; + Λογαριασμός OSM\u0020\u0020 Αποσύνδεση + + Τελευταία μεταφόρτωση Σας ευχαριστούμε Επεξεργασία μέρους + Όνομα μέρους Προσθήκη γλώσσας Οδός @@ -394,16 +456,22 @@ Επιλέξτε κουζίνα Email ή όνομα χρήστη + Τηλέφωνο + Λάβετε υπόψη Όλες οι αλλαγές που έχετε κάνει στο χάρτη θα διαγραφούν μαζί με το χάρτη. Ενημέρωση χαρτών Για να δημιουργήσετε μια διαδρομή, πρέπει να ενημερώσετε όλους τους χάρτες και στη συνέχεια να σχεδιάσετε τη διαδρομή ξανά. Ανεύρεση χάρτη + Σφάλμα λήψης Ελέγξτε τις ρυθμίσεις σας και βεβαιωθείτε ότι η συσκευή σας είναι συνδεδεμένη στο Internet. Δεν υπάρχει αρκετός χώρος Διαγράψτε τυχόν μη απαραίτητα δεδομένα Σφάλμα σύνδεσης. Επαληθευμένες αλλαγές Σύρετε τον χάρτη για να επιλέξετε τη σωστή θέση του αντικειμένου. + Επιλέξτε κατηγορία + Δημοφιλή + Όλες οι κατηγορίες Επεξεργασία Προσθήκη Το όνομα του τόπου @@ -411,8 +479,13 @@ Λεπτομερή περιγραφή του θέματος Διαφορετικό πρόβλημα Προσθήκη επιχείρησης + Προσθέστε νέες τοποθεσίες στο χάρτη, και επεξεργαστείτε τις υπάρχουσες απευθείας από την εφαρμογή. + Αλλαγή τοποθεσίας Δε μπορεί να εντοπιστεί αντικείμενο εδώ Συνδεθείτε ώστε άλλοι χρήστες να μπορούν να δουν τις αλλαγές που έχετε κάνει + + Για να το κατεβάσετε, χρειάζεστε περισσότερο χώρο. Διαγράψτε τυχόν μη απαραίτητα δεδομένα. + Βελτίωσα τους χάρτες Organic Maps %1$d από %2$d Να γίνει λήψη μέσω δικτύου κινητής τηλεφωνίας; @@ -430,6 +503,7 @@ Οι προτεινόμενες αλλαγές χάρτη θα σταλούν στην Κοινότητα του OpenStreetMap. Περιγράψτε τυχόν πρόσθετα στοιχεία που δεν μπορείτε να επεξεργαστείτε στο Organic Maps. Περισσότερα σχετικά με το OpenStreetMap Ιδιοκτήτης + Οι χάρτες μου Δεν έχετε κατεβάσει χάρτες Κατεβάστε χάρτες για να αναζητήσετε μια τοποθεσία και να χρησιμοποιήσετε την πλοήγησης χωρίς σύνδεση. @@ -438,33 +512,54 @@ Η τρέχουσα τοποθεσία είναι άγνωστη. Ίσως είστε σε ένα κτίριο ή σε μια σήραγγα. Συνέχεια Στοπ + Η τρέχουσα τοποθεσία είναι άγνωστη. + Παρουσιάστηκε σφάλμα κατά την αναζήτηση της τοποθεσίας σας. Ελέγξτε αν η συσκευή σας λειτουργεί κανονικά και δοκιμάστε ξανά αργότερα. + Οι υπηρεσίες εντοπισμού τοποθεσίας είναι απενεργοποιημένες + Ενεργοποίηση πρόσβασης γεωγραφικού εντοπισμού τοποθεσίας στις ρυθμίσεις της συσκευής + 1. Ανοίξτε τις ρυθμίσεις + 2. Πατήστε τοποθεσία + + 3. Επιλέξτε ενώ χρησιμοποιείτε την εφαρμογή Περισσότερα Περισσότερα σχόλια Κλήση Επεξεργασία αγαπημένου + Όνομα αγαπημένου + Προσωπικές σημειώσεις + Διαγραφή αγαπημένου + Οι προτεινόμενες αλλαγές σας έχουν σταλεί Σχόλιο… Απόρριψη όλων των τοπικών αλλαγών; Απόρριψη Διαγραφή της τοποθεσίας που προστέθηκε; Διαγραφή Η τοποθεσία δεν υπάρχει + …περισσότερα Εισάγετε έναν έγκυρο αριθμό τηλεφώνου Εισάγετε μια έγκυρη διεύθυνση ιστοτόπου Εισάγετε ένα έγκυρο email + Ενημέρωση Να προστεθεί η τοποθεσία στο χάρτη Θέλετε να το στείλετε σε όλους τους χρήστες; Βεβαιωθείτε ότι δεν έχετε εισάγει προσωπικά δεδομένα. Θα ελέγξουμε τις αλλαγές. Εάν έχουμε οποιαδήποτε απορία θα επικοινωνήσουμε μαζί σας μέσω email. + + Θέλετε να απενεργοποιήσετε την καταγραφή της πρόσφατης διαδρομής σας; + Απενεργοποίηση + + Αναχώρηση + Το Organic Maps χρησιμοποιεί τη γεωγραφική σας τοποθεσία στο παρασκήνιο για την καταγραφή των πρόσφατων διαδρομών σας. Οι Organic Maps είναι μια δωρεάν και ανοιχτού κώδικα εφαρμογή χαρτών εκτός σύνδεσης. Χωρίς διαφημίσεις. Χωρίς εντοπισμό. Εάν δείτε κάποιο σφάλμα στον χάρτη, διορθώστε το στο OpenStreetMap. Το έργο δημιουργείται από λάτρεις στον ελεύθερο χρόνο μας, επομένως χρειαζόμαστε τα σχόλια και την υποστήριξή σας. + Γενικές ρυθμίσεις Συμφωνώ Διαφωνώ - + Λίστα Θέλετε να χρησιμοποιήσετε το δίκτυο κινητής τηλεφωνίας για να εμφανίσετε αναλυτικές πληροφορίες; Να χρησιμοποιείται πάντα @@ -477,6 +572,8 @@ Για να εμφανίσετε πληροφορίες για την κίνηση, πρέπει να ενημερωθούν οι χάρτες. Αύξηση μεγέθους γραμματοσειράς στο χάρτη Κάντε ενημέρωση του Organic Maps + + Για να εμφανιστούν πληροφορίες για την κίνηση, πρέπει να γίνει ενημέρωση της εφαρμογής. Οι πληροφορίες για την κίνηση δεν είναι διαθέσιμες Ενεργοποίηση δυνατότητας καταγραφής @@ -493,8 +590,13 @@ Προσθέστε αφετηρία για να σχεδιάσετε μια διαδρομή Προσθέστε τελικό προορισμό, για να σχεδιάσετε μια διαδρομή Έξοδος + Διαχείριση διαδρομής + Σχέδιο Κατάργηση + Σύρετε εδώ για κατάργηση Προσθήκη στάσης + Έναρξη από + Ωχ, παρουσιάστηκε σφάλμα. Προσπαθήστε να συνδεθείτε ξανά. Πρόβλημα πρόσβασης στον αποθηκευτικό χώρο Ο εξωτερικός απθηκευτικός χώρος δεν είναι διαθέσιμος, πιθανότατα έχει αφαιρεθεί η κάρτα SD, είναι κατεστραμμένη ή το σύστημα αρχείων είναι μόνο για ανάγνωση. Ελέγξτε το και επικοινωνήστε μαζί μας στη διεύθυνση support\@organicmaps.app Εξομείωση κακού αποθηκευτικού χώρου @@ -504,7 +606,14 @@ Απόκρυψη όλων Εμφάνιση όλων + + %d αγαπημένα + Δημιουργία νέας λίστας + Απόκρυψη οθόνης + %1$s (%2$s από %3$s) + Λήψη %s… + Εφαρμογή %s… Αδυναμία κοινής χρήσης λόγω σφάλματος εφαρμογής Σφάλμα κοινής χρήσης Αδύνατη η κοινή χρήση κενής λίστας @@ -513,14 +622,22 @@ Νέα λίστα Αυτό το όνομα έχει ήδη ληφθεί Επιλέξτε άλλο όνομα + Αυτό το όνομα είναι πολύ μεγάλο Παρακαλώ περιμένετε… Τηλεφωνικό νούμερο Προφίλ OpenStreetMap + Εντοπίστηκαν νέα αρχεία Βρέθηκε %d αρχείο. Θα το δείτε μετά τη μετατροπή. έχουν βρεθεί %d αρχεία. Θα τα δείτε μετά τη μετατροπή. + Μετατρέπω + Λάθος + Ορισμένα αρχεία δεν μετατράπηκαν. + Επαναφορά αυτής της έκδοσης; Δεν υπάρχει σύνδεση στο διαδίκτυο + Συνέβη ένα άγνωστο σφάλμα + Επαναφορά %d μέρος @@ -542,13 +659,17 @@ Η λίστα είναι άδεια Για να προσθέσετε σελιδοδείκτη, πατήστε ένα μέρος στο χάρτη και μετά πατήστε το αστεράκι …περισσότερα + Συνέβη σφάλμα Αρχείο Εξαγωγής Ρυθμίσεις Λίστας Διαγραφή λίστας + Κρύψε από τον χάρτη Δημόσια πρόσβαση Περιορισμένη πρόσβαση Πληκτρολογήστε μια περιγραφή (κείμενο ή html) Προσωπικός + Ένα σφάλμα συνέβη στο φόρτωμα των ετικετών, παρακαλώ ξαναπροσπαθήστε + Κατέβασμα Κάμερες Ταχύτητας Αυτόματο Πάντα @@ -556,6 +677,7 @@ Περιγραφή μέρους Κατέβασμα χαρτών + Αυτόματο- Να ειδοποιούμαι για κάμερες αν υπάρχει κίνδυνος να υπερβώ το όριο ταχύτητας\nΠάντα- Πάντα να ειδοποιούμαι για κάμερες\nΠοτέ- Ποτέ να μην ειδοποιούμαι για κάμερες Λειτουργία εξοικονόμησης ενέργειας Εάν η λειτουργία εξοικονόμησης ενέργειας είναι ενεργοποιημένη, η εφαρμογή θα κλείνει τις λειτουργίες που καταναλώνουν ενέργεια ανάλογα με την τρέχουσα φόρτιση του τηλεφώνου Ποτέ @@ -579,11 +701,44 @@ Αποφυγή των δρόμων με διόδια Αποφυγή των χωματόδρομων Αποφυγή των πορθμείων + Πάμε + Προορισμός + Επανατοποθέτηση + Αποτελέσματα αναζήτησης + Μετά + Θα θέλατε να τροποποιήσετε τη διαδρομή; + Ναι + Όχι + Έχετε φτάσει! + Το πληκτρολόγιο δεν είναι διαθέσιμο κατά τη διάρκεια οδήγησης + Δεν είναι δυνατή η δημιουργία διαδρομής από την τρέχουσα τοποθεσία σας + Δεν είναι δυνατή η δημιουργία διαδρομής μέχρι τον προορισμό σας. Επιλέξτε ένα άλλο σημείο + Δεν υπάρχει σήμα GPS. Μετακινήστε σε μια ανοικτή τοποθεσία + Δεν είναι δυνατή η δημιουργία διαδρομής. Επιλέξτε άλλα σημεία διαδρομής + Για να χτίσετε διαδρομή, κατεβάστε χάρτες που λείπουν στη συσκευή + Παρουσιάστηκε σφάλμα. Κάντε επανεκκίνηση της εφαρμογής + Η διαδρομή θα ξαναδημιουργηθεί από την τρέχουσα τοποθεσία σας + Η διαδρομή θα αντικατασταθεί με τη διαδρομή με αυτοκίνητο Καλώς + Χ/χωματόδρ. + Χ/χωματόδρομους + Χ/πορθμεία + Χωρίς πορθμεία + Χωρίς διόδια + Χωρίς διόδια + Κάμερες + Πληροφ. γιαόρια + Κάντε λήψη χαρτών στην εφαρμογή Organic Maps στη συσκευή σας + %s έξοδος Ταξινόμηση Ταξινόμηση σελιδοδ/τών + + Ταξινόμηση κατά προεπιλογή + Ταξινόμηση ανά τύπο + Ταξινόμηση κατά απόσταση + Ταξινόμηση κατά ημερομηνία Προεπιλογή @@ -622,6 +777,10 @@ Υψόμετρα Για να χρησιμοποιήσετε τοπογραφικά στρώματα, ενημερώστε ή κατεβάστε τον χάρτη της επιθυμητής περιοχής Τα τοπογραφικά στρώματα δεν είναι ακόμα διαθέσιμα σε αυτή την περιοχή + Επίπεδο δυσκολίας + Εύκολο + Μέτριο + Δύσκολο Άνοδος Κάθοδος Ελ. υψόμετρο @@ -630,9 +789,22 @@ Απόστ.: Διαρκ: Μεγεθύνετε για να δείτε περιγράμματα + Ενημέρωση + Φόρτωση + Βασικές πληροφορίες Αφήστε την οθόνη να κοιμηθεί Όταν είναι ενεργοποιημένη, η οθόνη θα αφεθεί να κοιμηθεί μετά από περίοδο αδράνειας. + + Θα πρέπει να ενημερώστε τους χάρτες που έχετε κατεβάσει + + Η ενημέρωση των χαρτών διατηρεί τις πληροφορίες των στοιχείων επικαιροποιημένες + + Ενημέρωση (%s) + + Χειροκίνητη ενημέρωση αργότερα + + Τροχιά Τελεφερίκ @@ -862,8 +1034,6 @@ Τηλέφωνο έκτακτης ανάγκης Είσοδος Ιατρικό Εργαστήριο - - Στάση λεωφορείου Οδός υπό κατασκευή Διαδρομή @@ -963,22 +1133,6 @@ Οδός Οδός Οδός - Διαδρομή - Οδός - Οδός - Διαδρομή - Οδός - Οδός - Οδός - Οδός - Οδός - Οδός - Διαδρομή - Οδός - Οδός - Οδός - - Αρχαιολογικός χώρος Κάστρο Κάστρο @@ -1067,16 +1221,16 @@ Εταιρεία κινητής τηλεφωνίας Πόλη Πρωτεύουσα - Πόλη - Πόλη + Πρωτεύουσα + Πρωτεύουσα Πρωτεύουσα - Πόλη - Πόλη - Πόλη - Πόλη - Πόλη - Πόλη - Πόλη + Πρωτεύουσα + Πρωτεύουσα + Πρωτεύουσα + Πρωτεύουσα + Πρωτεύουσα + Πρωτεύουσα + Πρωτεύουσα Ήπειρος Χώρα Δήμος diff --git a/android/res/values-en-rGB/strings.xml b/android/res/values-en-rGB/strings.xml index 8054166769..5201fa71bf 100644 --- a/android/res/values-en-rGB/strings.xml +++ b/android/res/values-en-rGB/strings.xml @@ -10,11 +10,9 @@ Bookmark Colour Choose between miles and kilometres - - - + Petrol - + Lift diff --git a/android/res/values-es-rMX/strings.xml b/android/res/values-es-rMX/strings.xml index 9a320b3a17..3c61974a09 100644 --- a/android/res/values-es-rMX/strings.xml +++ b/android/res/values-es-rMX/strings.xml @@ -3,7 +3,7 @@ - + Rojo @@ -50,7 +50,14 @@ Ocultar todo Mostrar todo + + %d marcadores + Crear lista nueva + Ocultar pantalla + %1$s (%2$s de %3$s) + Descargando %s… + Aplicando %s… No se puede compartir debido a un error de la aplicación Error al compartir No se puede compartir una lista vacía @@ -59,13 +66,20 @@ Lista nueva Este nombre ya está en uso Por favor elige otro nombre + Este nombre es demasiado largo Por favor, espere… - Número de teléfono + Se detectaron archivos nuevos Se encontró %d archivo. Lo verás después de la conversión. Se han encontrado %d archivos. Los verás después de la conversión. + Convertir + Error + Algunos archivos no se convirtieron. + ¿Está seguro que desea restaurar esta versión? Sin conexión a Internet + Ocurrió un error desconocido + Restaurar %d lugar @@ -87,13 +101,17 @@ Esta lista está vacía Para añadir un marcador, toque un lugar en el mapa y después toque el ícono de estrella …más + Ocurrió un error Exportar archivo Ajustes de lista Eliminar lista + Ocultar del mapa Acceso público Acceso limitado Introduzca una descripción (texto o html) Privado + Ocurrió un error al cargar las etiquetas, por favor intente de nuevo + Descargar Cámaras de velocidad Automático Siempre @@ -101,6 +119,7 @@ Descripción de lugares Descargar mapas + Automático - Aviso de las cámaras de velocidad si existe el riesgo de exceder el límite de velocidad\nSiempre - Siempre dar aviso de las cámaras de velocidad\nNunca - Nunca dar aviso de las cámaras de velocidad Modo de ahorro de energía Si el modo de ahorro de energía está activado, la aplicación desactivará las funciones de ahorro de energía, en función de la carga actual del teléfono Nunca @@ -124,11 +143,44 @@ Evitar las carreteras de peaje Evitar los caminos de tierra Evitar los trasbordadores de ferri + Vamos + Objetivo + Centrar + Resultados de la búsqueda + Después + ¿Quiere reconstruir la ruta? + Si + No + ¡Ya llegó! + El teclado no está disponible durante el movimiento + No se puede construir una ruta desde la ubicación actual + No se puede construir una ruta hasta el punto final. Seleccione otra + No hay señal de GPS. Vaya a una zona abierta + No se puede construir una ruta. Seleccione otros puntos de ruta + Al construir ruta, descargue los mapas ausentes en su dispositivo + Ocurrió un error. Reinicie la aplicación + La ruta se reconstruirá desde su ubicación actual + La ruta se cambiará a en auto Ok + Sin de grava + Sin de grava + Sin ferri + Sin ferri + Sin peaje + Sin peaje + Cám.velocidad. + Alerta velocidad. + Descargue mapas en la aplicación Organic Maps en su dispositivo + %s desviación Ordenar… Ordenar marcadores + + Ordenar por defecto + Ordenar por tipo + Ordenar por distancia + Ordenar por fecha Por defecto @@ -167,6 +219,10 @@ Alturas Para usar la altitud de relieve, actualice o descargue el mapa del área deseada La altitud de relieve no está aún disponible en esta región + Nivel de dificultad + Fácil + Moderado + Difícil Ascenso Descenso Altura mínima @@ -175,6 +231,17 @@ Distancia: Lapso: Amplíe el mapa para ver las isolíneas + Actualización + Cargando + Información clave + + Debe actualizar sus mapas descargados + + Actualizar los mapas mantiene actualizada también la información acerca de los objetos + + Actualizar (%s) + + Actualizar después manualmente Infraestructura @@ -195,12 +262,8 @@ Desechos electrónicos Máquina expendedora de billetes de transporte público Parque nacional - - Carretera en construcción Vado (de lugar) - - Camposanto Terreno agrícola Césped diff --git a/android/res/values-es/strings.xml b/android/res/values-es/strings.xml index 24c95acdec..4bf8f929c5 100644 --- a/android/res/values-es/strings.xml +++ b/android/res/values-es/strings.xml @@ -8,6 +8,8 @@ Atrás Cancelar + + Cancelar descarga Eliminar Descargar mapas @@ -17,6 +19,8 @@ Descargando… Kilómetros + + Escribir una opinión Mapas @@ -29,14 +33,19 @@ Buscar Buscar en el mapa + + No se puede acceder a los servicios de localización. Por favor, activelo en los ajustes. Mostrar en el mapa + + Descargar mapa Error durante la descarga Intentar otra vez + Sobre Organic Maps Ajustes de conexión Cerrar La aplicación requiere OpenGL acelerado por hardware. Lamentablemente, su dispositivo no es compatible. @@ -61,6 +70,8 @@ Color del marcador Nombre del grupo de marcadores + + Grupos de marcadores Marcadores @@ -69,8 +80,8 @@ Nombre Dirección - - Lista + + Grupo Configuración @@ -85,43 +96,41 @@ Unidades de medida Elija entre millas y kilómetros - - - + Dónde comer - + Productos - + Transporte - + Gasolinera - + Aparcamiento - + Compras - + Hotel - + Turismo - + Entretenimiento - + Cajero automático - + Vida nocturna - + Descanso con niños - + Banco - + Farmacia - + Hospital - + Baños - + Oficina de correos - + Policía Notas @@ -156,8 +165,12 @@ Email Copiado al portapapeles: %1$s + + Información Hecho + + Versión: %s Versión de datos: %d @@ -192,6 +205,10 @@ Idioma de voz No disponible + + Otros + + Trayecto reciente Zoom automático Desactivada 1 hora @@ -199,6 +216,8 @@ 6 horas 12 horas 1 día + Permite registrar el recorrido realizado durante un determinado periodo de tiempo y verlo en el mapa. Tenga en cuenta que la activación de esta función aumenta el consumo de la batería. El registro del recorrido se eliminará automáticamente del mapa una vez vencido dicho periodo de tiempo. + Distancia Ver en el mapa Sitio web @@ -216,6 +235,12 @@ Derechos de autor Hay un error + + No se ha configurado el cliente de correo electrónico. Por favor, configúralo o utiliza alguna otra forma de ponerte en contacto con nosotros en %s + + Error de envío de correo + + Calibración de la brújula WiFi @@ -224,12 +249,19 @@ Cancelar todo Descargado + + Disponible En cola Cerca de mí Mapas Descargar todos Descargando: + Encontrado + + Actualizar + + Fallo Para eliminar el mapa, por favor, detén la navegación. @@ -244,12 +276,22 @@ Actualizar mapa Usar los servicios de Google Play para obtener tu ubicación actual + + Acabo de calificar tu aplicación + + ¡Gracias! + + Comparte ideas o informa de problemas para que podamos mejorar la aplicación para ti. + + Enviar comentarios Descargue todos los mapas de su ruta Para crear una ruta es necesario descargar y actualizar todos los mapas de la ubicación de destino. No hay suficiente espacio + + marcador Por favor, active los servicios de localización Guardar @@ -302,6 +344,8 @@ Verifique la señal del GPS. Activar Wi-Fi mejorará la precisión de su ubicación. Activar servicios de ubicación No se pueden encontrar las coordenadas del GPS. Active los servicios de ubicación para calcular la ruta. + Descargar archivos requeridos + Descargue y actualice toda la información de mapas y rutas junto con el trayecto proyectado para calcular la ruta. Imposible de encontrar una ruta No se puede crear la ruta. Ajuste su punto de inicio o su destino. @@ -316,6 +360,7 @@ Error del sistema No se pudo crear la ruta debido a un error en la aplicación. Intentar nuevamente + No ahora ¿Desea descargar el mapa y crear una ruta mejor que abarque más de un mapa? Descargue mapas adicionales para crear una ruta mejor que cruce los límites de este mapa. @@ -326,8 +371,17 @@ Mostrar Ocultar + + Error al planificar la ruta Llegada: %s + + Descargue y actualice todos los mapas a lo largo del camino proyectado para calcular la ruta. + ¿Te gusta la aplicación? + Gracias por usar Organic Maps. Por favor, califica la aplicación. Tus comentarios nos ayudan a mejorar. + ¡Genial! ¡Nosotros también te queremos! + ¡Gracias, haremos todo lo posible! + ¿Alguna idea de cómo podemos mejorarla? Categorías Historial Cerrado @@ -358,6 +412,8 @@ Valores de ejemplo Corregir error Ubicación + Has cambiado el mapa del mundo. No te lo guardes para ti. Díselo a tus amigos y edítenlo juntos. + Compartir con amigos Por favor, describe el problema en detalle para que la comunidad de OpenStreeMap pueda corregir el error. O hazlo tú mismo en https://www.openstreetmap.org/ Enviar @@ -367,20 +423,29 @@ Lugar duplicado Descarga automática + Cerrado ahora + Diario 24/7 Día libre hoy Día libre Hoy + Añadir horarios de apertura Editar los horarios de apertura ¿No tienes cuenta en OpenStreetMap? Registrarse en OSM + Contraseña (mínimo 8 caracteres) + Usuario o contraseña incorrectos. Iniciar sesión Contraseña ¿Has olvidado tu contraseña? + Cuenta OSM Cerrar sesión + + Última carga Gracias Editar el lugar + Nombre del lugar Añadir un idioma Calle @@ -397,16 +462,22 @@ Seleccionar cocina Email ó usuario + Teléfono + Aviso Todos los cambios en los mapas se borrarán junto con el mapa. Autodescarga de mapas Para crear una ruta, es necesario actualizar todos los mapas y volver a planificar la ruta. Buscar en el mapa + Error de descarga Por favor, verifica la configuración y asegúrate de que tu dispositivo está conectado a Internet. Sin espacio suficiente Por favor, elimina los datos innecesarios Error de inicio de sesión. Cambios verificados Arrastra el mapa para seleccionar la ubicación correcta del objeto. + Seleccionar categoría + Popular + Todas las categorías Editar Añadir Nombre del lugar @@ -414,8 +485,13 @@ Descripción detallada del problema Un problema diferente Añadir organización + Añadir lugares nuevos al mapa y editar los lugares actuales directamente desde la aplicación. + Cambiar ubicación No se puede ubicar ningún objeto aquí Inicia sesión para que otros usuarios puedan ver los cambios que has efectuado. + + Necesitas más espacio para descargar. Por favor, elimina los datos innecesarios. + He mejorado los mapas de Organic Maps %1$d de %2$d ¿Descargar con conexión de red móvil? @@ -433,6 +509,7 @@ Los cambios que ha sugerido se enviarán a la comunidad de OpenStreetMap. Describa los detalles que no pueden editarse en Organic Maps. Más acerca de OpenStreetMap Operador + Mis mapas No ha descargado ningún mapa Descargue mapas para encontrar la ubicación y navegar sin conexión. @@ -441,6 +518,14 @@ La ubicación actual es desconocida. Quizá esté en un edificio o en un túnel. Continuar Detener + La ubicación actual es desconocida. + Se ha producido un error al buscar su ubicación. Compruebe que su dispositivo funciona correctamente e inténtelo más tarde. + La identificación de la ubicación está desactivada + Activa el acceso a la geolocalización en los ajustes del dispositivo + 1. Abre los ajustes + 2. Pulsa \"Ubicación\" + + 3. Seleccionar al usar la aplicación m km km/h @@ -455,12 +540,17 @@ Reservar Llamar Editar marcador + Nombre del marcador + Notas personales + Eliminar marcador + Se han enviado sus cambios sugeridos Comentario… ¿Restablecer todos los cambios locales? Restablecer ¿Eliminar el lugar añadido? Eliminar El lugar no existe + …más Introduce un número de teléfono correcto Introduce una dirección web válida @@ -469,19 +559,28 @@ Introduce una dirección web o un nombre de cuenta de Instagram válidos Introduzca una dirección web o un nombre de usuario válido de Twitter Introduce una dirección web o un nombre de cuenta de VK válidos + Actualizar Añadir un lugar al mapa ¿Quieres enviarlo a todos los usuarios? Asegúrate de que no has introducido ningún dato personal. Comprobaremos los cambios. Si tenemos alguna pregunta, te contactaremos por correo electrónico. + parada + + ¿Desactivar la grabación de su ruta recientemente recorrida? + Deshabilitar + + Comprueba + Organic Maps usa tu geolocalización en segundo plano para registrar tu ruta recorrida recientemente. Organic Maps es una aplicación de mapas sin conexión gratuita y de código abierto. Sin anuncios. Sin seguimiento. Si ve un error en el mapa, corríjalo en OpenStreetMap. El proyecto está creado por entusiastas en nuestro tiempo libre, por lo que necesitamos tus comentarios y tu apoyo. + Ajustes generales Aceptar Declinar - + Lista ¿Usar Internet móvil para mostrar información detallada? Usar siempre @@ -494,6 +593,8 @@ Para mostrar los datos de tráfico, deben actualizarse los mapas. Aumentar el tamaño de fuente en el mapa Por favor, actualice Organic Maps + + Para mostrar los datos de tráfico, debe actualizar la aplicación. Los datos de tráfico no están disponibles Habilitar historial @@ -510,8 +611,13 @@ Buscar un origen para el plan de ruta Buscar un destino para el plan de ruta Salir + Administrar ruta + Planificar Eliminar + Arrastre aquí para eliminar Añadir parada + Empezar desde + Vaya, se ha producido un error. Intente iniciar sesión de nuevo. Problema de acceso al almacenamiento El almacenamiento externo no está disponible; puede que se haya quitado o dañado la tarjeta SD, o el sistema de archivos solo permite lectura. Por favor, compruébelo ó escríbanos a support\@organicmaps.app Emular almacenamiento dañado @@ -521,9 +627,16 @@ Ocultar todo Mostrar todo + + %d marcadores + Crear nueva lista Importar marcadores + Ocultar pantalla + %1$s (%2$s de %3$s) + Descargando %s… + Aplicando %s… No se puede compartir debido a un error de la aplicación Error al compartir No se puede compartir una lista vacía @@ -532,14 +645,22 @@ Lista nueva Este nombre ya ha sido tomado Por favor elige otro nombre + Este nombre es demasiado largo Por favor espera… Número de teléfono Perfil de OpenStreetMap + Nuevos archivos detectados Se encontró %d archivo. Lo verás después de la conversión. Se han encontrado %d archivos. Los verás después de la conversión. + Convertir + Error + Algunos archivos no fueron convertidos. + ¿Restaurar esta versión? Sin conexión a Internet + Ocurrió un error desconocido + Restaurar %d objecto %d objectos @@ -564,13 +685,17 @@ Esta lista está vacía Para agregar un marcador, toque un lugar en el mapa y después toque el ícono de estrella …más + Se ha producido un error Exportar como archivo Configurar lista Eliminar lista + Ocultar en el mapa Acceso público Acceso privado Agregue una descripción (texto o html) Privado + Durante la carga de las etiquetas, se produjo un error, por favor inténtelo de nuevo + Descargar Cámaras de velocidad Auto Siempre @@ -578,6 +703,7 @@ Descripción del lugar Descargar mapas + Auto - advierte sobre las cámaras de velocidad si existe el riesgo de exceder el límite de velocidad\nSiempre - siempre alerta sobre las cámaras\nNunca - nunca advierte acerca de las cámaras Modo de ahorro de energía Si el modo de ahorro de energía está activado, la aplicación desactivará las funciones que consumen energía, según la carga actual del teléfono Nunca @@ -601,11 +727,44 @@ Evitar las carreteras con pago de peaje Evitar los caminos sin pavimento Evitar ferries + Vamos + Objetivo + Centrar + Resultados de búsqueda + Después + ¿Quieres reconstruir la ruta? + Si + No + ¡Llegaste! + Teclado no disponible durante el movimiento + No se puede construir la ruta desde la ubicación actual + No se puede construir la ruta al punto final. Elige otra + No hay señal GPS. Ve a una zona abierta + No se puede construir una ruta. Elige otros puntos de ruta + Para construir una ruta, descarga los mapas ausentes en tu dispositivo + Ocurrió un error. Reinicia la aplicación + La ruta se reconstruirá desde tu ubicación actual + La ruta se cambiará a coche Ok + Sin carretera de tierra + Evitar sin pavimentar + Sin ferri + Sin ferri + Sin peaje + Sin peaje + Cám.velocidad. + Alerta velocidad. + Descargue los mapas en la aplicación Organic Maps en su dispositivo + %s desviación Ordenar… Ordenar marcadores + + Ordenar por defecto + Ordenar por tipo + Ordenar por distancia + Ordenar por fecha Por defecto @@ -644,6 +803,10 @@ Alturas Para usar la altitud de relieve, actualiza o descarga el mapa del área deseada La altitud de relieve aún no está disponible en esta región + Nivel de dificultad + Fácil + Moderado + Difícil Ascenso Descenso Altura mínima @@ -652,12 +815,31 @@ Distancia: Lapso: Amplía el mapa para ver las isolíneas + Actualización + Cargando + Información clave Descarga mapa mundial Problema de conexión Desconecte el cable USB Permitir que la pantalla duerma Cuando está habilitado, la pantalla podrá dormir después de un período de inactividad. + + Actualice sus mapas descargados + + La actualización de mapas mantiene actualizada la información sobre objetos + + Actualizar (%s) + + Actualizar más tarde de forma manual + + Borrar ruta + + Nombre de la ruta + + Mover + + Ruta Estación de teleférico @@ -876,8 +1058,6 @@ Teléfono de emergencia Entrada Laboratorio médico - - Parada de autobús Carretera en construcción Camino @@ -977,22 +1157,6 @@ Calle Calle Calle - Camino - Calle - Calle - Camino - Calle - Calle - Calle - Calle - Calle - Calle - Camino - Calle - Calle - Calle - - Yacimiento arqueológico Castillo Castillo @@ -1074,15 +1238,6 @@ Sede de ONG Operadora de telefonía móvil Ciudad - Ciudad - Ciudad - Ciudad - Ciudad - Ciudad - Ciudad - Ciudad - Ciudad - Ciudad Continente País Municipio diff --git a/android/res/values-fa/strings.xml b/android/res/values-fa/strings.xml index 8d18c3ff77..df863eaae6 100644 --- a/android/res/values-fa/strings.xml +++ b/android/res/values-fa/strings.xml @@ -8,6 +8,8 @@ بازگشت لغو + + لغو دانلود حذف دانلود نقشه ها @@ -17,6 +19,8 @@ درحال دانلود کیلومتر + + نظر خود را بیان کنید نقشه ها @@ -32,14 +36,19 @@ جست‌وجو جست‌وجوی نقشه + + بله سرویس موقعیت مکانی شما غیر فعال است .لطفا جهت کارکرد صحیح نرم افزار ان را فعال کنید. بر روی نقشه نمایش بده + + دانلود نقشه دانلود با شکست مواجه شد تلاش مجدد + Organic Maps درباره‌ی تنظیمات اتصال بستن نیازمند است. متاسفانه دستگاه شما از ان پشتیبانی نمی کندOpenGLبرنامه برای اجرا به @@ -69,8 +78,8 @@ نام ادرس - - لیست + + مجموعه تنظیمات @@ -85,43 +94,41 @@ واحد اندازه گیری بین مایل و کیلومتر انتخاب کنید - - - + کجا غذا بخوریم - + عطاری - + حمل و نقل - + سوخت - + پارکینگ - + خرید کردن - + هتل - + منظره - + سرگرمی - + خود پرداز - + تفریحات شبانه - + تعطیلات خانوادگی - + بانک - + داروخانه - + بیمارستان - + توالت - + صندوق پست - + پلیس یادداشت ها @@ -145,8 +152,12 @@ ایمیل کپی در کلیپ برد :%1$s + + اطلاعات انجام شد + + ورژن: %s ورژن داده: %d @@ -181,6 +192,10 @@ زبان صوت موجود نیست + + بیشتر + + مسیر اخیر بزرگ نمایی خودکار خاموش 1 ساعت @@ -188,6 +203,8 @@ 6 ساعت 12 ساعت 1 روز + با این قابلیت شما می توانید مسیری که می پیمایید را در یک دوره مشخص ضبط نماید و ان را بر روی نقشه ببینید.لطفا توجه نمایید:فعال سازی این قابلیت باعث افزایش مصرف باتری موبایل شما می شود.مسیر به طور خودکار بعد از مدت مشخص شده حذف خواهد شد + مسافت مشاهده بر روی نقشه وب سایت @@ -205,6 +222,12 @@ حق نشر و کپی رایت گزارش خطا + + کلاینت ایمیل شما پیکربندی نشده است.لطفا ان را پیکربندی کنید یا از طریق دیگر با ما تماس بگیرید %s + + خطا در ارسال ایمیل + + تنظیم کردن قظب نما وای فای @@ -213,12 +236,19 @@ لغو همه دانلود شده + + موجود صف نزدیک من نقشه ها دانلود همه درحال دانلود: + یافت شد + + به روز رسانی + + ناموفق برای حذف نقشه لطفا مسیر یابی را متوقف کنید @@ -233,12 +263,20 @@ به روز رسانی نقشه استفاده از Google Play Services برای تعیین موقعیت کنونی شما + + متشکریم! + + ایده ها و نقطه نظرات تان را با ما در میان بگذارید ما برنامه را مطابق میلتان توسعه می دهیم + + ارسال بازخورد دانلود تمامی نقشه ها در طول مسیر تان به منظور ایجاد مسیر ما نیاز داریم تا تمامی نقشه های شما از مبدا تا مقصد را به روز رسانی کنیم. فضای کافی موجود نیست + + نشانه ها لطفا موقعیت مکانی(GPS)خود را فعال کنید. ذخیره @@ -291,6 +329,7 @@ لطفا سیگنال GPS موبایتان راچک کنید.و WiFi موبایلتان را جهت دقت بیشتر در موقعیت یابی فعال کنید. فعال کردن سرویس موقعیت مکانی (GPS) ناتوان از مشخص کردن موقعیت مکانی شما.لطفا سرویس موقعیت مکانی خود را فعال کنید. + دانلود فایل های مورد نیاز ناتوان در تعیین مسیر ناتوان در ایجاد مسیر لطفا مبدا یا مقصد خود را تنظیم کنید. @@ -305,6 +344,7 @@ خطای سیستم ناتوان در ایجاد مسیر به علت خطای برنامه. لطفا دوباره تلاش کنید + اکنون خیر ایا مایل به دانلود نقشه و ایجاد مسیر های بهینه بیشتری که نقشه های بیشتری را پوشش میدهد هستید؟ دانلود نقشه های اضافی برای ایجاد مسیری بهتر که حاشیه های این نقشه را رد می کند. @@ -315,8 +355,15 @@ نمایش مخفی کردن + + برنامه ریزی مسیر ناموفق ورود به: %s + این اپ را دوست دارید؟ + باتشکر از شما بابت استفاده ازOrganic Maps.لطفا به این اپلیکیشن رای بدهید. بازخورد شما باعث پیشرفت اپلیکیشن ما می شود. + هورا ! ما هم شما را دوست داریم! + متشکریم تلاش خود را می کنیم + ایا پیشنهاد یا ایده ای دارید که ما بتوانیم بهتر از این باشیم؟ دسته بندی ها تاریخچه تعطیل @@ -349,6 +396,8 @@ مقادیر پیش فرض تصحیح خطا موقعیت + شما نقشه جهان را تغییر دادید.این افتخار را پیش خود نگه ندارید!به دوستانتان درموردش بگویید و با یکدیگر ویرایش کنید. + اشتراک گذاری با دوستان لطفا مشکلتان را با جزئیات توضیح دهید بطوری که انجمن OSM بتوانند ان را برطرف کنند. یا خودتان ان را انجام دهید در وبسایت https://www.openstreetmap.org/ ارسال @@ -358,20 +407,29 @@ مکان تکراری دانلود خودکار + اکنون تعطیل است + روزانه شبانه روزی امروز تعطیل است تعطیل است امروز + اضافه کردن ساعت بازگشایی ویرایش ساعت کاری ایا حساب OpenStreetMap ندارید؟ ثبت نام در OSM + رمز عبور (حداقل 8 عدد یا حرف) + نام کاربری یا رمز عبور نامعتبر است. ورود رمز عبور رمز عبور خود را فراموش کردید؟ + حساب OSM خروج از حساب + + اخرین بروزرسانی متشکریم ویرایش مکان + نام مکان افزودن یک زبان خیابان @@ -388,16 +446,22 @@ انتخاب غذاخوری ایمیل یا نام کاربری + تلفن + لطفا توجه داشته باشد تمام ویرایش های که بر روی نقشه انجام داده اید به همراه نقشه حذف شد. بروزرسانی نقشه ها برای ایجاد مسیر شما نیازمند بروزرسانی تمامی نقشه ها هستید سپس می توانید دوباره مسیرتان را برنامه ریزی کنید یافتن نقشه + خطا در دانلود لطفا تنظیمات خود را بازبینی کنید و مطمئن شوید که ابزار شما به اینترنت متصل است. فظای کافی موجود نیست لطفا داده های غیر ضروری را از دستگاه خود حذف کنید خطای ورود تغییرات تایید شد برای انتخاب مکان صحیح شئی نقشه را بکشید. + انتخاب دسته بندی + پرطرفدار + همه دسته بندی ها درحال ویرایش درحال افزودن نام مکان @@ -405,8 +469,13 @@ توضیح مفصل در مورد مشکل مشکلی دیگر اضافه کردن یک تجارت + اضافه کردن مکان به نقشه و ویرایش ان مستقیما از طریق این اپلیکیشن. + تغییر موقعیت نمی توان شی ای در این مکان باشد وارد شوید تا دیگر کاربران نیز بتوانند تغییرات ایجاد شده توسط شما را ببینند + + برای دانلود,شما نیازمند فضای ذخیره سازی بیشتری هستید.لطفا داده های غیر ضروری خود را حذف کنید. + من نقشه های Organic Maps را بهبود بخشیدم %1$d از %2$d دانلود بر روی یک شبکه دیتای موبایل؟ @@ -424,6 +493,7 @@ شما یک سری تغییرات در نقشه را برای انجمن OpenStreetMap ارسال کردید.جزئیات اضافی را که نتوانستید در Organic Maps ویرایش کنید را برایشان بنویسید. در مورد OpenStreetMap بیشتر بدانید مالک + نقشه های من شما هیچ نقشه دانلود شده ای ندارید برای جست وجو یک مکان و استفاده از قابلیت ناوبری, نقشه ها را دانلود کنید. @@ -432,6 +502,11 @@ مکان شما ناشناس مانده است.ممکن است شما داخل یک ساختمان یا تونل باشید. ادامه توقف + مکان فعلیتان ناشناس است. + خطایی در هنگام جست وجوی مکان شمارخ داده است.بررسی کنیید دستگاهتان به درستی کار می کند و دوباره تلاش کنید. + سرویس موقعیت مکانی شما غیرفعال است + سرویس موقعیت مکانی خود را در بخش تنظیمات فعال کنید. + 1. بازکردن تنظیمات متر کیلومتر کیلومتربرساعت (km/h) @@ -446,29 +521,43 @@ رزرو تماس ویرایش نشانه ها + نام نشانه ها + یاداشت های شخصی + حذف نشانه + تغییر پیشنهادی شما ارسال شد اظهار نظر ایا تغییرات محلی را نادیده می گیرید؟ نادیده گرفتن ایا مکان ثبت شده حذف شود؟ حذف مکان وجود ندارد + بیشتر…. شماره تلفن معتبری وارد نمایید ادرس وب معتبری وارد نمایید ایمیل معتبری وارد نمایید + بروزرسانی اضافه کردن یک مکان به نقشه ایا می خواهید ان را برای دیگر کاربران ارسال کنید؟ مطمئن شوید که هیچ اطلاعات شخصی وارد نکرده باشد. ما تغییرات را بررسی می کنیم.اگر سوالی بود با ایمیل با شما تماس می گیریم. + توقف + + غیرفعال سازی ذخیره مسیر اخیرا طی شده + غیرفعال + + بررسی کنید + Organic Maps از اطلاعات موقعیت مکانی شما در پس ضمینه برای ذخیره مسیر هایی که اخیرا سفر کرده اید استفاده می کند. Organic Maps یک برنامه نقشه آفلاین رایگان و منبع باز است. بدون تبلیغات بدون ردیابی اگر خطایی روی نقشه مشاهده کردید، لطفاً آن را در OpenStreetMap برطرف کنید. این پروژه توسط علاقه مندان در اوقات فراغت ما ایجاد می شود، بنابراین ما به بازخورد و پشتیبانی شما نیاز داریم. + تنظیمات عمومی موافقم کاهش - + لیست از دیتای موبایل برای نمایش اطلاعات بیشتر استفاده شود؟ همیشه استفاده کن @@ -481,6 +570,8 @@ برای نمایش ترافیک,نقشه می بایستی بروزرسانی شود. افزایش اندازه متن بر روی نقشه لطفا Organic Maps را بروزرسانی کنید + + برای نمایش ترافیک باید اپلیکیشن را بروزرسانی کنید. اطلاعات ترافیکی موجود نیست ورود به سیستم را فعال کنید @@ -497,8 +588,13 @@ یک نقطه شروع برای برنامه ریزی یک مسیر اضافه کنید یک مقصد برای برنامه ریزی یک مسیر اضافه کنید خروج + مدیریت مسیر + برنامه حذف + برای حذف اینجا بکشید اضافه کردن توقف + شروع از + اوه، یک خطا وجود داشت سعی کنید دوباره وارد سیستم شوید مشکل دسترسی به ذخیره سازی ذخیره سازی خارجی در دسترس نیست کارت SD ممکن است برداشته شده باشد، آسیب دیده باشد یا سیستم فایل فقط خواندنی باشد. لطفا کارت SD خود را بررسی کنید یا با ما در support\@organicmaps.app تماس بگیرید شبیه سازی ذخیره سازی بد @@ -508,7 +604,15 @@ پنهان کردن همه نمایش همه + + %d نشانه + %d نشانه‌ها + ایجاد لیست جدید + پنهان کردن صفحه + %1$s (%2$s از %3$s) + در حال دانلود %s… + اعمال %s… با توجه به خطای برنامه، امکان اشتراک گذاری وجود ندارد خطای اشتراک یک لیست خالی را نمی توان به اشتراک گذاشت @@ -517,14 +621,22 @@ لیست جدید این اسم قبلا انتخاب شده است لطفا نام دیگری را انتخاب کنید + این نام خیلی طولانی است لطفا صبر کنید… شماره تلفن OpenStreetMap نمایه + فایل‌های جدید پیدا شد %d فایل پیدا شد. بعد از تبدیل آن را می‌بینید. %d فایل پیدا شد. بعد از تبدیل آن‌ها را می‌بینید. + تبدیل + خطا + بعضی از فایل‌ها تبدیل نشد. + این نسخه برگردد؟ اتصال اینترنتی برقرار نیست + خطای ناشناخته‌ای رخ داد + بازیابی %d شیء %d شیء @@ -549,13 +661,18 @@ این لیست خالی است برای افزودن یک نشانه، روی یک مکان روی نقشه ضربه بزنید و سپس روی نماد ستاره ضربه بزنید بیشتر… + خطایی رخ داد + مشهور ارسال فایل تنظیمات لیست حذف لیست + پنهان کردن از نقشه دسترسی عمومی دسترسی محدود یک توضیح (متن یا html) تایپ نمایید خصوصی + هنگام بارگذاری برچسب خطایی رخ داد، لطفا دوباره امتحان کنید + دانلود دوربین های سرعت خودکار همیشه @@ -563,6 +680,7 @@ توضیحات محل دانلود کننده نقشه + خودکار- در صورتی که خطر تجاوز از سرعت مجاز وجود داشت، نسبت به دوربین های کنترل سرعت هشدار دهد\nهمیشه-همیشه درباره دوربین های کنترل سرعت هشدار دهد\nهرگز-هرگز درباره دوربین های کنترل سرعت هشدار ندهد حالت ذخیره انرژی هنگامی که حالت خودکار انتخاب شده‌باشد، برنامه با توجه میزان شارژ باتری شما، ویژگی‌های تخلیه کننده باتری را غیر فعال می‌کند هرگز @@ -586,11 +704,44 @@ اجتناب از جاده های دارای عوارض اجتناب از جاده های آسفالت نشده اجتناب از گذرگاه های کشتی + برویم + مقصد + نشان دادن مجدد در مرکز + نتایج جستجو + سپس + آیا می خواهید مسیر را دوباره ایجاد کنید? + بله + خیر + شما به مقصد رسیدید! + صفحه کلید در هنگام رانندگی در دسترس نیست + امکان ایجاد مسیر از مکان فعلی شما نیست + امکان ایجاد مسیر به مقصد شما نیست. لطفاً نقطه دیگری را انتخاب کنید + سیگنال GPS وجود ندارد. لطفاً به فضای باز بروید + امکان ایجاد مسیر نیست. لطفاً نقاط مسیر دیگری را مشخص کنید + برای ایجاد مسیر، نقشه های ناقص را روی دستگاه خود را دانلود کنید + خطایی رخ داد. لطفاً برنامه را دوباره اجرا کنید + مسیر از مکان فعلی شما بازسازی خواهد شد + مسیر به مسیر خودرویی تغییر خواهد کرد موافقت کردن + بی جاده خاکی + پرهیز از خاکی + بدون بزرگراه + پرهیز از اتوبان + بدون عوارضی + اجتناب از عوارض + دوربین سرعت + هشدارهای سرعت + لطفا نقشه ها را در نرم افزار Organic Maps روی دستگاه خود دانلود کنید + خروجی %s مرتب سازی… مرتب سازی نشانهها + + مرتب سازی بر اساس پیش فرض + مرتب سازی بر اساس نوع + مرتب سازی بر اساس فاصله + مرتب سازی بر اساس تاریخ به صورت پیش فرض @@ -629,6 +780,10 @@ ایزومپ برای فعال سازی و استفاده از لایه توپوگرافی نقشه منطقه را به روزرسانی یا دانلود کنید لایه توپوگرافی هنوز برای این منطقه در دسترس نیست + سطح دشواری + آسان + متوسط + دشوار بالا رفتن پایین آمدن کمینه ارتفاع @@ -637,9 +792,22 @@ مسافت زمان: برای بررسی خطوط تراز زوم کنید + در حال بروزرسانی + در حال دانلود + اطلاعات کلیدی اجازه دهید صفحه نمایش بخوابد درصورت فعال بودن ، بعد از یک دوره عدم فعالیت به صفحه اجازه خواب داده می شود. + + نقشه های دانلود شده خود را به روز کنید + + به روز رسانی نقشه ها اطلاعات مربوط به اشیا را به روز نگه می دارد + + بروزرسانی (%s) + + بعدا به صورت دستی به روزرسانی کنید + + مسیر فرودگاه @@ -734,7 +902,7 @@ تاکسی تلفن خانه سرگرمی - دستشویی + دستشویی^ گردشگری دانشگاه ماشین سیگار فروشی @@ -775,8 +943,6 @@ تلفن اضطراری ورودی ﯽﮑﺷﺰﭘ ﻩﺎﮕﺸﯾﺎﻣﺯﺁ - - حمل و نقل جاده در دست ساخت است مسیر @@ -875,22 +1041,6 @@ جاده جاده جاده - مسیر - جاده - جاده - مسیر - جاده - جاده - جاده - جاده - جاده - جاده - مسیر - جاده - جاده - جاده - - گردشگری گردشگری گردشگری @@ -977,16 +1127,16 @@ اپراتور تلفن همراه شهر پایتخت - شهر - شهر + پایتخت + پایتخت پایتخت - شهر - شهر - شهر - شهر - شهر - شهر - شهر + پایتخت + پایتخت + پایتخت + پایتخت + پایتخت + پایتخت + پایتخت قاره کشور بخش diff --git a/android/res/values-fi/strings.xml b/android/res/values-fi/strings.xml index af99b76f2c..7509d36ba5 100644 --- a/android/res/values-fi/strings.xml +++ b/android/res/values-fi/strings.xml @@ -8,6 +8,8 @@ Takaisin Peruuta + + Peruuta lataus Poista Lataa karttoja @@ -17,6 +19,8 @@ Ladataan… Kilometrit + + Jätä arviointi Kartat @@ -31,14 +35,19 @@ Haku Hae kartalta + + Kyllä Laitteen tai sovelluksen kaikki sijaintipalvelut ovat tällä hetkellä poissa käytöstä. Ota ne käyttöön Asetukset-valikossa. Näytä kartalla + + Lataa kartta Lataus epäonnistui Yritä uudelleen + Tietoa Organic Maps:stä Yhteysasetukset Sulje Laitteistokiihdytetty OpenGL vaaditaan. Valitettavasti laitteesi ei ole tuettu. @@ -63,6 +72,8 @@ Kirjanmerkin väri Kirjanmerkkivalikoiman nimi + + Kirjanmerkkivalikoimat Kirjanmerkit @@ -71,8 +82,8 @@ Nimi Osoite - - Luettelo + + Aseta Asetukset @@ -87,43 +98,41 @@ Mittayksiköt Valitse mailit tai kilometrit - - - + Missä syödä - + Elintarvikkeet - + Liikenne - + Huoltoasema - + Parkkipaikka - + Ostokset - + Hotelli - + Nähtävyydet - + Viihde - + Pankkiautomaatti - + Yöelämä - + Vapaa-aikaa lasten kanssa - + Pankki - + Apteekki - + Sairaala - + WC - + Posti - + Poliisi Muistiinpanot @@ -157,8 +166,12 @@ Sähköposti Kopioitu leikepöydälle: %1$s + + Tietoa Valmis + + Versio: %s Oletko varma että haluat jatkaa? @@ -191,6 +204,10 @@ Äänen kieli Ei saatavilla + + Muu + + Viimeisin reitti Automaattinen zoomaus Pois päältä 1 tunti @@ -198,6 +215,8 @@ 6 tuntia 12 tuntia 1 päivä + Toiminnon avulla voit tallentaa kuljetun reitin tietyltä ajalta ja nähdä sen kartalla: Huomautus: tämän toiminnon aktivoiminen lisää akun käyttöä. Reitti poistetaan kartalta automaattisesti ajanjakson päätyttyä. + Etäisyys Näytä kartalla Kotisivut @@ -215,6 +234,12 @@ Tekijänoikeudet Ilmoita virheestä + + Sähköpostisovellusta ei ole asetettu. Ole hyvä ja määritä sähköpostiasetukset tai ota meihin yhteyttä toista kautta osoitteessa %s + + Virhe lähetettäessä viestiä + + Kompassin kalibrointi WiFi @@ -223,12 +248,19 @@ Peruuta kaikki Ladatut + + Saatavilla Jonossa Lähelläni Kartat Lataa kaikki Ladataan: + Löytyi + + Päivitä + + Epäonnistunut Pysäytä navigointi poistaaksesi kartan. @@ -243,12 +275,22 @@ Päivitä kartta Käytä Google Play -palveluita sijaintisi selvittämiseksi + + Olen juuri arvostellut sovelluksesi. + + Kiitos! + + Jaathan ideasi ja kohtaamasi ongelmat, jotta voimme parantaa sovellusta sinua varten. + + Lähetä palautetta Lataa karttoja matkalla Reitin luominen vaatii karttojen lataamisen ja päivityksen oman sijaintisi ja kohteeen väliltä. Ei tarpeeksi tilaa + + kirjanmerkki Ota sijaintipalvelut käyttöön Tallenna @@ -301,6 +343,8 @@ Tarkista GPS-signaali. Wi-Fi-signaalin käyttöönotto parantaa sijainnin tarkkuutta. Ota sijaintipalvelut käyttöön Tämänhetkisiä GPS-koordinaatteja ei löydy. Ota sijaintipalvelut käyttöön reitin laskemista varten. + Lataa tarvittavat tiedostot + Lataa ja päivitä kaikki suunnitellun reitin kartta- ja reititystiedot, jotta reitin voi laskea. Reitin paikannus ei onnistu Reitin luonti ei onnistu. Muuta aloituskohtaa tai määränpäätä. @@ -315,6 +359,7 @@ Järjestelmävirhe Reittiä ei voi luoda sovellusvirheen vuoksi. Yritä uudelleen + Ei nyt Haluatko ladata kartan ja luoda paremman reitin, joka ylettyy usealle kartalle? Lataa kartta ja luo parempi reitti, joka ylittää tämän kartan reunan. @@ -325,8 +370,17 @@ Näytä Piilota + + Reitin suunnittelu epäonnistui Saavut: %s + + Lataa ja päivitä kaikki kartat reitin varrella luodaksesi reitin. + Pidätkö sovelluksesta? + Kiitos kun käytät Organic Maps:tä. Voisitko myös arvostella sovelluksen? Palautteesi avulla tulemme vielä paremmiksi. + Hurraa! Mekin rakastamme sinua! + Kiitos, teemme parhaamme! + Kertoisitko missä voisimme parantaa? Luokat Historia Suljettu @@ -357,6 +411,8 @@ Esimerkkiarvot Korjaa virhe Sijainti + Olet muuttanut maailmankarttaa. Älä piilota tätä! Kerro ystävillesi ja muokatkaa sitä yhdessä. + Jaa kavereille Kuvaile ongelmaa yksityiskohtaisesti, jotta OpenStreetMap-yhteisö voi korjata vian. Tai tee se itse osoitteessa https://www.openstreetmap.org/ Lähetä @@ -366,20 +422,29 @@ Paikan kaksoiskappale Lataa automaattisesti + Suljettu nyt + Päivittäin Päivin ja öin Suljettu tänään Suljettu Tänään + Lisää aukioloajat Muokkaa aukioloaikoja Eikö sinulla ole OpenStreetMap tiliä? Rekisteröidy + Salasana (vähintään 8 merkkiä) + Virheellinen käyttäjätunnus tai salasana Kirjaudu sisään Salasana Unohtuiko salasana? + OSM-tili Kirjaudu ulos + + Viimeisin lisäys Kiitos Muokkaa kohdetta + Paikan nimi Lisää kieli Katu @@ -394,16 +459,22 @@ Valitse ruokalaji Sähköposti tai käyttäjätunnus + Puhelinnumero + Huomaathan, että Kaikki karttaan tehdyt muutokset poistetaan kartan mukana. Päivitä kartat Sinun täytyy päivittää kaikki kartat ja suunnitella reitti uudelleen luodaksesi uuden reitin. Etsi kartta + Latausvirhe Tarkista asetuksesi ja varmista, että laitteesi on yhteydessä Internetiin. Ei tarpeeksi tilaa Poista tarpeeton data Kirjautumisvirhe. Vahvistetut karttamuutokset Vedä karttaa valitaksesi kohteelle oikean sijainnin. + Valitse kategoria + Suositut + Kaikki kategoriat Muokkaus Lisääminen Paikan nimi @@ -411,8 +482,13 @@ Ongelman tarkka kuvaus Eri ongelma Lisää organisaatio + Lisää karttaan uusia paikkoja ja muokkaa sovelluksessa olevia karttoja suoraan sovelluksessa. + Vaihda sijaintia Kohdetta ei voida asettaa tänne Kirjaudu sisään jotta muut käyttäjät voivat nähdä tekemäsi muokkaukset. + + Tarvitset lisää tilaa ladataksesi. Poista tarpeeton data. + Paransin Organic Maps-karttoja %1$d/%2$d Lataa käyttämällä puhelinverkkoyhteyttä? @@ -430,6 +506,7 @@ Ehdottamasi muutokset lähetetään OpenStreetMap-yhteisöön. Kuvaa tiedot, joita ei voi muokata Organic Maps:ssä. Lisätietoja OpenStreetMap:ista Operaattori + Omat kartat Et ole ladannut yhtään karttaa Lataa kartattoja löytääksesi paikkoja ja navigoidaksesi offline-tilassa. @@ -438,6 +515,14 @@ Nykyistä sijaintiasi ei voitu määrittää. Kenties olet rakennuksessa tai tunnelissa. Jatka Seis + Nykyinen sijainti on tuntematon. + Tapahtui virhe määritettäessä sijaintiasi. Tarkista laitteesi ja yritä myöhemmin uudelleen. + Sijaintipalvelut on poistettu käytöstä + Schakel de toegang tot geolocaties in in de instellingen van het apparaat + 1. Avaa asetukset + 2. Tik op locatie + + 3. Valitse sovellusta käytettäessä m km km/h @@ -452,29 +537,43 @@ Varaa Soita Muokkaa kirjanmerkkiä + Kirjanmerkin nimi + Henkilökohtaiset merkinnät + Poista kirjanmerkki + Ehdottamasi muutokset on lähetetty Kommentti… Nollataanko kaikki paikalliset muutokset? Nollaa Poistetaanko lisätty paikka? Poista Paikkaa ei ole olemassa + …Näytä Syötä kelvollinen puhelinnumero Syötä kelvollinen verkko-osoite Syötä kelvollinen sähköpostiosoite + Päivitä Lisää paikka kartalle Haluatko lähettää sen kaikille käyttäjille? Varmistat, ettet syöttänyt henkilökohtaisia tietojasi. Tarkistamme muutokset. Otamme sinuun yhteyttä sähköpostitse, jos meillä on kysyttävää. + lopeta + + Poistetaanko viimeisen matkareitin tallennus? + Poista + + Tarkastele + MAPS.SE käyttää taustalla geosijaintia sinun viimeisen matkareitin tallentamiseksi. Organic Maps on ilmainen ja avoimen lähdekoodin offline-karttasovellus. Ei mainoksia. Ei seurantaa. Jos näet virheen kartalla, korjaa se OpenStreetMapissa. Hankkeen ovat luoneet harrastajat vapaa-ajallamme, joten tarvitsemme palautettasi ja tukeasi. + Yleiset asetukset Hyväksy Hylkää - + Luettelo Näytetäänkö lisätiedot mobiili-internetillä? Käytä aina @@ -487,6 +586,8 @@ Liikennetietojen näyttämiseksi kartat on päivitettävä. Suurenna fonttikokoa kartalla Päivitä Organic Maps + + Liikennetietojen näyttämiseksi sovellus on päivitettävä. Liikennetietoja ei ole saatavilla Ota loki käyttöön @@ -503,8 +604,13 @@ Lisää alkupiste reitin suunnittelua varten Lisää määränpää reitin suunnittelua varten Poistu + Hallitse reittiä + Suunnittele Poista + Vedä tähän poistaaksesi Lisää pysähdys + Aloita kohdasta + Tapahtui virhe. Yritä kirjautua sisään uudelleen. Ongelma tallennustilan käyttämisessä Ulkoinen tallennustila ei ole käytettävissä, SD-kortti on luultavasti poistettu tai vahingoittunut tai tiedostojärjestelmä on vain luku -tilassa. Tarkista ja ota yhteyttä osoitteeseen support\@organicmaps.app Jäljittele virheellistä tallennustilaa @@ -514,9 +620,16 @@ Piilota kaikki Näytä kaikki + + %d kirjanmerkkiä + Luo uusi luettelo Tuo kirjamerkit + Piilota näyttö + %1$s (%2$s / %3$s) + Ladataan %s… + %s otetaan käyttöön… Ei voitu jakaa sovellusvirheen vuoksi Jakamisvirhe Tyhjää listaa ei voi jakaa @@ -525,14 +638,22 @@ Uusi lista Nimi on jo käytössä Valitse toinen nimi + Tämä nimi on liian pitkä Odota… Puhelinnumero OpenStreetMap-profiili + Uusia tiedostoja havaittiin %d tiedosto löydettiin. Näet sen muunnoksen jälkeen. %d tiedostoa on löytynyt. Näet heidät muuntamisen jälkeen. + Muuntaa + Virhe + Joitakin tiedostoja ei muutettu. + Palauta tämä versio? Ei Internet-yhteyttä + Tuntematon virhe tapahtui + Palauttaa %d paikka @@ -554,13 +675,17 @@ Lista on tyhjä Lisätäksesi kirjanmerkin, paina kartasta ja sitten paina tähden kuvaa …lisää + Tapahtui virhe Viedä tiedosto Listan asetukset Poista lista + Piilota kartalta Julkinen pääsy Yksityinen pääsy Lisää kuvaus (teksti tai html) Henkilökohtainen + Tunnisteiden lataamisen aikana tapahtui virhe, yritä uudelleen + Ladata Nopeuskamerat Auto Aina @@ -568,6 +693,7 @@ Paikan kuvaus Karttojen lataaminen + Auto - Varoita nopeuskameroista, jos tuntuu siltä, että nopeusrajan ylitys on mahdollista\nAina - Varoita kameroista aina\nEi koskaan - älä koskaan varoita kameroista Virransäästötila Kun olet valinnut automaattisen tilan, sovellus alkaa sammuttamaan virtaa vieviä ominaisuuksia riippuen kulloisestakin akun latauksesta Ei koskaan @@ -591,11 +717,44 @@ Vältä maksullisia teitä Vältä maanteitä Vältä lautan käyttöä + Mennään + Kohde + Kohdista + Hakutulokset + Sitten + Haluatko luoda reitin uudelleen? + Kyllä + Ei + Olet saapunut! + Näppäimistö ei ole käytettävissä ajon aikana + Reittiä ei ole mahdollista luoda nykyisestä sijainnista + Reittiä ei ole mahdollista luoda loppupisteeseen. Valitse toinen + Ei ole GPS-signaalia. Siirry avaralle alueelle + Reittiä ei ole mahdollista luoda. Valitse muut reittipisteet + Luodaksesi reitin lataa puuttuvat kartat + On tapahtunut virhe. Käynnistä sovellus uudelleen + Reitti luodaan nykyisestä sijainnista + Reitti muutetaan autoilijan reitiksi Ok + Päällyste + Vain päällyste + Ei lauttoja + Ei lauttoja + Ei maksua + Ei maksua + Nopeuskamera + Nopeuskamerat + Lataa kartat laitteesi Organic Maps-sovelluksessa + Poistumisramppi %s Järjestä… Järjestä kirjanmerkit + + Järjestä: oletus + Järjestä: tyyppi + Järjestä: etäisyys + Järjestä: päivämäärä Oletus @@ -634,6 +793,10 @@ Maasto Päivitä tai lataa haluamasi alueen kartta, voidaksesi käyttää korkeuskäyriä Korkeuskäyrät eivät ole vielä saatavilla tällä alueella + Vaikeustaso + Helppo + Kohtuullinen + Vaikea Nousua Laskua Min. korkeus @@ -642,12 +805,31 @@ Etäisyys: Aika: Suurenna kartta nähdäksesi korkeuskäyrät + Päivitys + Lataus + Avaintietoa Lataa maailmankartta Yhteysvirhe Irrota USB-kaapeli Salli näytön lepotila Kun tämä asetus on käytössä, näyttö menee lepotilaan käyttämättömyyden jälkeen. + + Päivitä ladatut kartat + + Karttojen päivittäminen pitää kohteita koskevat tiedot ajan tasalla + + Päivitä (%s) + + Päivitä manuaalisesti myöhemmin + + Poista reitti + + Reitin nimi + + Siirrä + + Reitti Köysirata-asema @@ -870,8 +1052,6 @@ Hätäpuhelin Sisäänkäynti Lääketieteellinen laboratorio - - Bussipysäkki Rakenteilla oleva tie Polku @@ -971,23 +1151,6 @@ Katu Katu Katu - Pyörätie - Kävelytie - Katu - Moottoritie - Polku - Kävelykatu - Katu - Katu - Katu - Katu - Katu - Portaat - Katu - Katu - Katu - - Arkeologinen kohde Linna Linna @@ -1074,16 +1237,16 @@ Matkapuhelinoperaattori Kaupunki Pääkaupunki - Kaupunki - Kaupunki + Pääkaupunki + Pääkaupunki Pääkaupunki - Kaupunki - Kaupunki - Kaupunki - Kaupunki - Kaupunki - Kaupunki - Kaupunki + Pääkaupunki + Pääkaupunki + Pääkaupunki + Pääkaupunki + Pääkaupunki + Pääkaupunki + Pääkaupunki Maanosa Maa Lääni @@ -1273,4 +1436,11 @@ Laskettelurinne Latu Rakennus + Pyörätie + Kävelytie + Moottoritie + Polku + Kävelykatu + Katu + Portaat diff --git a/android/res/values-fr-rCA/strings.xml b/android/res/values-fr-rCA/strings.xml deleted file mode 100644 index 70147dcf45..0000000000 --- a/android/res/values-fr-rCA/strings.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - Translittération vers l\'alphabet latin - diff --git a/android/res/values-fr/strings.xml b/android/res/values-fr/strings.xml index ebd0ebd5f2..3f2c0accd9 100644 --- a/android/res/values-fr/strings.xml +++ b/android/res/values-fr/strings.xml @@ -8,6 +8,8 @@ Retour Annuler + + Annuler le téléchargement Supprimer Télécharger des cartes @@ -17,6 +19,8 @@ Téléchargement… kilomètres + + Laisser une critique Cartes @@ -31,14 +35,19 @@ Recherche Rechercher sur la carte + + Oui Tous les services de localisation de cet appareil sont désactivés, ou ils le sont pour cette application. Veuillez les activer dans les paramètres. Voir sur la carte + + Téléchargez la carte Échec lors du téléchargement Réessayer + À propos de Organic Maps Paramètres de connexion Fermer L\'accélération OpenGL matérielle est exigée. Malheureusement, votre appareil n\'est pas pris en charge. @@ -63,6 +72,8 @@ Couleur du signet Nom du groupe de signets + + Groupes de signets Signets @@ -71,8 +82,8 @@ Nom Adresse - - Liste + + Groupe Paramètres @@ -87,49 +98,47 @@ Unités de mesure Choisir entre miles et kilomètres - - - + Un endroit pour manger - + Les courses - + Transport - + Essence - + Stationnement - + Shopping - + Hôtel - + Site touristique - + Divertissement - + DAB - + Vie nocturne - + Vacances en famille - + Banque - + Pharmacie - + Hôpital - + Toilettes - + Poste - + Police Notes Signets Organic Maps partagés - Bonjour !\n\nVous trouverez ci-joint mes signets de l\'appli Organic Maps. Veuillez les ouvrir si vous avez installé Organic Maps. Si vous ne l\'avez pas, téléchargez l\'application pour votre appareil iOS ou Android en suivant ce lien : https://omaps.app/get?kmz\n\nBon voyage avec Organic Maps! + Bonjour !\n\nVous trouverez ci-joint mes signets de l\'appli Organic Maps. Veuillez les ouvrir si vous avez installé Organic Maps. Si vous ne l\'avez pas, téléchargez l\'application pour votre appareil iOS ou Android en suivant ce lien : https://omaps.app/get?kmz\n\nBon voyage avec Organic Maps ! Chargement des signets @@ -158,8 +167,12 @@ Email Copié dans le presse-papiers : %1$s + + Infos Terminé + + Version : %s Version des données: %d @@ -194,6 +207,10 @@ Langue vocale Non disponible + + Autre + + Parcours récent Zoom automatique Désactivé 1 heure @@ -201,6 +218,8 @@ 6 heures 12 heures 1 jour + Ceci vous permet d’enregistrer le chemin emprunté pendant un certain temps et de le voir sur la carte. Veuillez noter : l’activation de cette fonction entraîne une grande utilisation de la batterie. La route sera supprimée automatiquement de la carte lorsque l’intervalle de temps sera arrivé à expiration. + Distance Voir sur la carte Site internet @@ -218,6 +237,12 @@ Tous droits réservés Signaler un bug + + Le client de courriel n\'a pas été configuré. Veuillez le faire ou employer tout autre moyen pour nous contacter à %s + + Erreur d\'envoi de courriel + + Étalonnage de la boussole WiFi @@ -226,12 +251,19 @@ Tout annuler Téléchargé + + Disponible En file d\'attente Près de moi Cartes Télécharger tout Téléchargement en cours : + Trouvé + + Mettre à jour + + A échoué Veuillez interrompre la navigation pour supprimer la carte. @@ -246,12 +278,22 @@ Mise à jour carte Utilisez l\'application Google Play Services pour obtenir votre emplacement actuel + + Je viens d\'évaluer votre appli + + Merci ! + + Partagez vos idées ou vos problèmes de façon à ce que nous puissions améliorer l\'application. + + Envoyez vos commentaires Téléchargez toutes les cartes le long de votre itinéraire La création d\'un itinéraire nécessite que toutes les cartes de votre localisation vers votre destination soient téléchargées et actualisées. Pas assez d\'espace + + signet Veuillez activer les services de localisation Sauvegarder @@ -304,6 +346,8 @@ Vérifiez le signal GPS. Activez le Wi-Fi pour améliorer la précision de votre localisation. Activez les services de localisation Impossible d\'identifier les coordonnées GPS actuelles. Activez les services de localisation pour calculer l\'itinéraire. + Téléchargez les fichiers requis + Téléchargez et mettez à jour les informations de carte et d\'itinéraire de votre trajet pour calculer l\'itinéraire. Impossible de localiser l\'itinéraire Impossible de créer l\'itinéraire. Modifiez votre point de départ ou votre destination. @@ -318,6 +362,7 @@ Erreur système Impossible de créer l\'itinéraire à cause d\'une erreur dans l\'application. Réessayer + Pas maintenant Voulez-vous télécharger la carte et créer un itinéraire plus direct s\'étendant sur plus d\'une carte? Téléchargez des cartes pour créer un itinéraire plus direct sortant des limites de cette carte. @@ -328,8 +373,17 @@ Afficher Masquer + + La planification de l\'itinéraire a échoué Arrivée: %s + + Pour créer un trajet, veuillez télécharger et mettre à jour toutes les cartes concernant ce trajet. + Vous aimez l’application ? + Merci d’avoir utilisé Organic Maps. Pourriez-vous, s’il vous plaît, noter cette application ? Vos commentaires nous aideront à nous améliorer. + Super ! Nous vous aimons aussi ! + Merci, nous ferons tout notre possible ! + Avez-vous une idée de ce que nous pourrions améliorer ? Catégories Historique Fermé @@ -362,6 +416,8 @@ Exemple de valeurs Corriger l\'erreur Emplacement + Vous avez modifié la carte du monde ! Ne le cachez pas ! Dites-le à vos amis, et modifiez-le ensemble. + Partagez avec vos amis Veuillez décrire le problème en détail pour permettre à la communauté OpenStreeMap de réparer l\'erreur. Ou faites-le vous-même sur https://www.openstreetmap.org/ Envoyer @@ -371,20 +427,29 @@ Lieu doublon Téléchargement automatique + Fermé actuellement + Tous les jours Jour et nuit Fermé aujourd\'hui Fermé Aujourd\'hui + Ajouter les heures d\'ouverture Modifier les heures d\'ouverture Vous n\'avez pas de compte sur OpenStreetMap? Inscription + Mot de passe (8 caractères minimum) + Nom d\'utilisateur ou mot de passe invalide. Connexion Mot de passe Mot de passe oublié ? + Compte OSM Déconnexion + + Dernier téléchargement Merci Modifier le lieu + Nom du lieu Ajouter une langue Rue @@ -399,17 +464,23 @@ Sélectionner une cuisine Email ou nom d\'utilisateur + Numéro de téléphone Ajouter un numéro de téléphone + À noter Toutes vos modifications de la carte seront supprimées avec elle. Mettre à jour les cartes Pour créer un itinéraire, vous devez mettre à jour toutes les cartes puis reprogrammer l\'itinéraire. Trouver la carte + Erreur de téléchargement Veuillez vérifier vos paramètres et vous assurer que votre appareil est bien connecté à Internet. Espace insuffisant Veuillez supprimer les données inutiles Erreur de connexion. Modifications vérifiées Faite glisser la carte pour sélectionner la bonne position de l\'objet. + Sélectionner une catégorie + Populaire + Toutes les catégories Modification Ajout Nom du lieu @@ -417,8 +488,13 @@ Description détaillée du problème Un problème différent Ajouter une organisation + Ajoutez de nouveaux lieux sur la carte et modifiez les lieux existants directement depuis l\'appli. + Modifier l\'emplacement Aucun objet ne peut être localisé ici Se connecter pour que d\'autres utilisateurs puissent voir les changements que vous avez effectués. + + Pour télécharger, vous avez besoin de plus d\'espace. Veuillez supprimer les données non nécessaires. + J\'ai amélioré les cartes de Organic Maps %1$d de %2$d Téléchargement avec une connexion réseau cellulaire ? @@ -436,6 +512,7 @@ Vos modifications suggérées seront envoyées à la communauté OpenStreetMap. Décrivez les détails qui ne peuvent pas être modifiés dans Organic Maps. En savoir plus sur OpenStreetMap Opérateur + Mes cartes Vous n\'avez téléchargé aucune carte Téléchargez des cartes pour rechercher un lieu et utiliser la navigation hors ligne @@ -444,6 +521,14 @@ L\'emplacement actuel est inconnu. Vous êtes peut-être dans un bâtiment ou sous un tunnel. Continuer Arrêter + L\'emplacement actuel est inconnu. + Une erreur est survenue lors de la recherche de votre emplacement. Vérifiez que le périphérique fonctionne correctement et réessayez ultérieurement + L\'identification de la localisation est désactivée + Permettre l\'accès à la géolocalisation dans les paramètres de l\'appareil + 1. Ouvrir Paramètres + 2. Appuyer sur Localisation + + 3. Sélectionner tout en utilisant l\'app m km km/h @@ -458,12 +543,17 @@ Réserver Appeler Éditer le signet + Nom du signet + Remarques personnelles + Supprimer signet + Vos modifications suggérées ont été envoyées Commentaire… Abandonner toutes les modifications locales ? Réinitialiser Supprimer le lieu ajouté ? Supprimer Ce lieu n\'existe pas + …Afficher la suite Saisissez un numéro de téléphone valide Saisissez une adresse Internet valide @@ -472,19 +562,28 @@ Saisissez une adresse web, un nom de compte Instagram valide Saisissez une adresse web, un nom de compte Twitter valide Saisissez une adresse web, un nom de compte VK valide + Mettre à jour Ajouter un lieu sur la carte Souhaitez-vous l’envoyer à tous les utilisateurs ? Assurez-vous de n’avoir saisi aucunes données personnelles. Nous vérifierons les changements. Si nous avons des questions quelles qu’elles soient, nous vous contacterons par courriel. + stop + + Souhaitez-vous désactiver l\'enregistrement de vos itinéraires récents ? + Désactiver + + Consultez + Organic Maps utilise votre géolocalisation en arrière-plan pour enregistrer vos itinéraires récents. Organic Maps est une application de cartographie hors ligne gratuite et open source. Pas de pubs. Pas de localisation. Si vous voyez une erreur sur la carte, veuillez la corriger dans OpenStreetMap. Le projet est créé par des passionnés pendant notre temps libre, nous avons donc besoin de vos commentaires et de votre soutien. + Paramètres généraux Accepter Refuser - + Liste Utiliser l\'Internet mobile pour afficher les informations détaillées ? Toujours utiliser @@ -497,6 +596,8 @@ Pour afficher les données de circulation, les cartes doivent être actualisées. Augmenter la taille de police sur la carte Veuillez mettre à jour Organic Maps + + Pour afficher les données de circulation, l\'application doit être actualisée. Les données de circulation ne sont pas disponibles Activer le journal @@ -513,8 +614,13 @@ Ajouter un point de départ pour planifier un itinéraire Ajouter un point d\'arrivée pour planifier un itinéraire Quitter + Gérer l’itinéraire + Planifier Supprimer + Faire glisser ici pour supprimer Ajouter un arrêt + Commencer à partir de + Oups, une erreur s\'est produite. Essayez de vous connecter à nouveau. Problème d\'accès au stockage Le stockage externe n\'est pas disponible. La carte SD a probablement été enlevée, endommagée ou le système est en lecture seule. Veuillez vérifier et nous contacter via support\@organicmaps.app Émuler le mauvais stockage @@ -524,9 +630,16 @@ Tout masquer Tout afficher + + %d signets + Créer une nouvelle liste Importer des signets + Masquer l’écran + %1$s (%2$s de %3$s) + Téléchargement de %s… + Application de %s… Impossible de partager en raison d\'une erreur d\'application Erreur de partage Impossible de partager une liste vide @@ -535,15 +648,23 @@ Nouvelle liste Ce nom est déjà pris Merci de choisir un autre nom + Ce nom est trop long S\'il vous plaît, attendez… Numéro de téléphone Profil OpenStreetMap + Nouveaux fichiers détectés %d fichier a été trouvé. Vous le verrez après la conversion. %d fichiers ont été trouvés. Vous les verrez après la conversion. %d fichier a été trouvé. Vous le verrez après la conversion. + Convertir + Erreur + Certains fichiers n\'ont pas été convertis. + Restaurer cette version? Pas de connexion Internet + Une erreur inconnue est survenue + Restaurer lieu %d @@ -566,13 +687,18 @@ Cette liste est vide Pour ajouter un signet, appuyez sur un lieu sur la carte, puis appuyez sur l\'icône étoile …plus + Une erreur est survenue + Populaire Exporter comme fichier Paramètres liste Supprimer liste + Masquer de la carte Accès publique Accès limité Tapez une description (texte ou html) Personnel + Une erreur s\'est produite lors du chargement des tags, veuillez réessayer + Téléchargez Radars de vitesse Auto Toujours @@ -580,6 +706,7 @@ Description d\'endroit Téléchargeur carte + Auto - Alerte sur les radars en cas de risque de dépassement de la limite de vitesse\nToujours - Toujours avertir des radars\nJamais - Jamais avertir à propos des radars Mode économie d\'énergie Si le mode d\'économie d\'énergie est activé, l\'application désactive les fonctions consommant de l\'énergie en fonction de la charge actuelle du téléphone Jamais @@ -603,11 +730,44 @@ Éviter les routes à péage Éviter les routes non revêtues Éviter les traversées en ferry + On y va + Point d\'arrivée + Recentrer + Résultats de recherche + Ensuite + Voulez-vous reconstruire l\'itinéraire ? + Oui + Non + Vous êtes arrivé ! + Clavier non disponible en conduisant + Impossible de créer un itinéraire à partir de votre position actuelle + Impossible de créer un itinéraire jusqu\'au point final. Choisissez-en un autre + Pas de signal GPS. Veuillez vous déplacer vers une zone dégagée + Impossible de calculer l\'itinéraire. Sélectionnez d\'autres points d\'itinéraire + Pour créer l\'itinéraire, téléchargez les cartes manquantes sur votre appareil + Une erreur est survenue. Redémarrez l\'application + L\'itinéraire sera reconstruit à partir de votre position actuelle + L\'itinéraire sera changé en mode Voiture Ok + Pas de route en terre + Pas de route non revêtue + Pas de traversée en ferry + Éviter les traversées en ferry + Sans péage + Éviter les routes à péages + Radars de vitesse + Infos radars de vitesse + Téléchargez des cartes dans l\'application Organic Maps sur votre appareil + %s sortie Trier… Trier les signets + + Trier par défaut + Trier par type + Trier par distance + Classer pa date Par défaut @@ -646,6 +806,10 @@ Terrain Pour utiliser les lignes d\'altitude, mettez à jour ou téléchargez la carte de l\'endroit désiré Les lignes d\'élévation ne sont pas encore disponibles dans cette région + Niveau de difficulté + Faible + Moyen + Haut Montée Descente Hauteur minimale @@ -654,12 +818,31 @@ Distance : Temps: Zoomez pour voir les courbes de niveaux + Misе à jour + Téléchargement + Informations clés Télécharcher la carte du monde Erreur de connexion Déconnectez le câble USB Autoriser l\'écran à dormir Lorsqu\'il est activé, l\'écran sera autorisé à dormir après une période d\'inactivité. + + Mettez à jour vos cartes téléchargées + + Actualiser les cartes permet d\'actualiser également les informations sur les objets + + Mettre à jour (%s) + + Mettre à jour manuellement plus tard + + Supprimer la route + + Nom de la route + + Déplacer + + Route Transport par câble aérien @@ -895,8 +1078,6 @@ Téléphone d\'urgence Entrée Laboratoire médical - - Chemin pour cavalier Chemin pour cavalier Chemin pour cavalier @@ -927,9 +1108,9 @@ Autoroute Autoroute Sortie - Autoroute - Autoroute - Autoroute + Rue + Rue + Rue Chemin Chemin Chemin @@ -999,30 +1180,13 @@ Voie rapide Voie rapide Voie rapide - Voie rapide - Voie rapide - Voie rapide + Rue + Rue + Rue Rue Rue Rue Rue - Piste cyclable - Chemin - Zone de rencontre - Autoroute - Chemin - Rue piétonne - Rue - Rue - Rue - Rue - Rue - Escaliers - Piste - Voie rapide - Rue - - Site archéologique Champ de bataille Château @@ -1148,16 +1312,16 @@ Opérateur mobile Ville Capitale - Ville - Ville + Capitale + Capitale Capitale - Ville - Ville - Ville - Ville - Ville - Ville - Ville + Capitale + Capitale + Capitale + Capitale + Capitale + Capitale + Capitale Pays Comté Ferme @@ -1342,4 +1506,18 @@ Non équipé pour l\'usage des fauteuils roulants Équipé pour l\'usage des fauteuils roulants Bâtiment + Piste cyclable + Chemin + Zone de rencontre + Autoroute + Chemin + Rue piétonne + Rue + Rue + Rue + Rue + Rue + Escaliers + Voie rapide + Rue diff --git a/android/res/values-hu/strings.xml b/android/res/values-hu/strings.xml index f60c058b04..31b90529bb 100644 --- a/android/res/values-hu/strings.xml +++ b/android/res/values-hu/strings.xml @@ -8,6 +8,8 @@ Vissza Mégse + + Letöltés megszakítása Törlés Térképek letöltése @@ -17,6 +19,8 @@ Letöltés… Kilométer + + Ajánlás írása Térképek @@ -29,14 +33,19 @@ Keresés Keresés a térképen + + Igen Ezen az eszközön jelenleg minden helyzetmeghatározó szolgáltatás ki van kapcsolva. Kérjük kapcsolja be ezeket a Beállítások között. Megjelenítés a térképen + + Térkép letöltése Letöltése sikertelen Újrapróbálkozás + A Organic Maps programról Kapcsolat beállítások Bezár Hardware-s gyorsítású OpenGL szükséges. Sajnos az Ön eszköze nem támogatott. @@ -61,6 +70,8 @@ Könyvjelző színe Könyvjelzőcsoport neve + + Könyvjelzőcsoportok Könyvjelzők @@ -69,8 +80,8 @@ Név Cím - - Lista + + Csoport Beállítások @@ -85,43 +96,41 @@ Mértékegységek Válasszon kilométer és mérföld között - - - + Hol lehet enni valamit - + Termékek - + Közlekedés - + Benzinkút - + Parkoló - + Bevásárlás - + Szálloda - + Látnivaló - + Szórakozás - + Pénzautomata - + Éjjeli élet - + Pihenés a gyerekekkel - + Bank - + Gyógyszertár - + Kórház - + Mosdó - + Posta - + Rendőrség Jegyzetek @@ -155,8 +164,12 @@ Email A vágólapra másolva: %1$s + + Info Kész + + Verzió: %s Valóban folytatni akarja? @@ -185,6 +198,10 @@ A hang nyelve Nem áll rendelkezésre + + Egyéb + + Legutolsó útvonal Auto-zoom Kikapcsolva 1 óra @@ -192,6 +209,8 @@ 6 óra 12 óra 1 nap + Ez lehetővé teszi a bejárt útvonal rögzítését és megtekintését a térképen bizonyos időre. Kérjük, vegye figyelembe, hogy ezen funkció aktiválásával megnöveli az akkumulátor használatát. Az útvonal automatikusan törlődik a térképről az időtartam lejártával. + Távolság Megtekintés a térképen Honlap @@ -209,6 +228,12 @@ Szerzői jog Hibabejelentés + + Az email kliens nincs beállítva. Kérjük, konfiguráld vagy próbálj meg valamilyen más módon kapcsolatba lépni velünk a %s email címen keresztül. + + Hiba az email küldése során + + Iránytű kalibrálás WiFi @@ -217,12 +242,19 @@ Mindent visszavon Letöltve + + Elérhető Várólistás A közelemben Térképek Mindegyik letöltése Letöltés: + Megtalálva + + Frissítés + + Sikertelen Kérjük, állítsa le a navigációt a térkép törléséhez. @@ -237,12 +269,22 @@ Térkép frissítése Használja a Google Play szolgáltatást, hogy szert tegyen aktuális helyszínéről + + Most értékeltem az alkalmazásodat + + Köszönjük! + + Az alkalmazás fejlesztése érdekében ossz meg bármilyen ötletet vagy problémát. + + Visszajelzés elküldése Tölts le térképeket az útvonal mellett Útvonal tervezéséhez a kiindulási pont és a célútvonal összes térképét szükséges letölteni és frissíteni. Nincs elég hely + + könyvjelző Kérjük kapcsolja be a helyzetmeghatározó szolgáltatást Simpan @@ -295,6 +337,8 @@ Kérjük, ellenőrizze a GPS jelet. A Wi-Fi engedélyezése javítja a helyszín meghatározásának pontosságát. Engedélyezze a helyszíni szolgáltatásokat Nem sikerült lokalizálni a jelenlegi GPS koordinátákat. Az útvonaltervezéshez engedélyezze a helyszíni szolgáltatásokat. + Töltse le a szükséges fájlokat + Útvonaltervezéshez töltse le és frissítse az összes térkép- és útvonal-információt a tervezett út mentén. Nem sikerült meghatározni az útvonalat Nem sikerült létrehozni az útvonalat. Kérjük, pontosítsa indulási helyét, vagy célállomását. @@ -309,6 +353,7 @@ Rendszerhiba Egy alkalmazáshiba miatt nem sikerült az útvonal létrehozása. Kérjük, próbálja újra + Most nem Szeretné letölteni a térképet és létrehozni egy optimálisabb útvonalat, amely több, mint egy térképen terül el? Töltse le a térképet, hogy létrehozzon egy optimálisabb útvonalat, amely áthalad a jelenlegi térkép szélén. @@ -319,8 +364,17 @@ Mutat Elrejt + + Sikertelen útvonaltervezés Megérkezik: %s + + Útvonal létrehozásához kérjük, töltse le és frissítse az összes térképet az útvonal mentén. + Tetszik az app? + Köszönjük, hogy a Organic Maps-t használta. Kérjük, értékelje az appot. A visszajelzéseik segítenek bennünket abban, hogy jobbá váljunk. + Hurrá! Mi is szeretjük magát! + Köszönjük, igyekszünk a legjobbunkat nyújtani! + Van valami ötlete, amivel jobbá tehetnénk? Kategóriák Előzmények Zárva @@ -351,6 +405,8 @@ Példa értékek Hiba javítása Elhelyezkedés + Megváltoztattad a világ térképét. Ne titkold el mások elől! Mondd el a barátaidnak, és szerkesszétek közösen! + Oszd meg az ismerőseiddel Kérjük, írd le részletesen a problémát, hogy az OpenStreeMap csapata kijavíthassa. Vagy végezd el te magad a javítást itt: https://www.openstreetmap.org/ Küldés @@ -360,20 +416,29 @@ Duplikált hely Automatikus letöltés + Most zárva + Naponta Nappal és éjszaka Ma zárva Zárva Ma + Nyitvatartás hozzáadása Nyitvatartás szerkesztése Nem rendelkezel még OpenStreetMap-felhasználói fiókkal? Regisztráció + Jelszó (legalább 8 karakter) + Érvénytelen felhasználónév vagy jelszó. Bejelentkezés Jelszó Elfelejtett jelszó? + OSM-felhasználói fiók Kijelentkezés + + Utolsó frissítés Köszönjük Hely szerkesztése + Hely neve Nyelv hozzáadása Utca @@ -388,25 +453,36 @@ Válassz Konyhát Email vagy felhasználónév + Telefonszám + Megjegyzés A térképekkel együtt minden rajtuk végzett módosítás is törlésre kerül. Térképek frissítése Útvonal létrehozásához frissítsd az összes térképet, majd tervezd meg újra az útvonalat. Térkép keresése + Letöltési hiba Kérjük, ellenőrizd a beállításaid és győződj meg arról, hogy a készüléked kapcsolódik az internethez. Nincs elegendő tárhely Kérjük, töröld a szükségtelen adatokat Bejelentkezési hiba. Jóváhagyott változtatások Húzd a térképet a megfelelő helyre az objektum helyes helyszínének kiválasztásához. + Válassz kategóriát + Népszerűek + Minden kategória Szerkesztés Hozzáadás Hely neve Kategória A probléma részletes leírása - Különböző problémaDifferent problem + Különböző probléma Szervezet hozzáadása + Adj hozzá új helyeket a térképhez, és szerkeszd a meglévőket közvetlenül az alkalmazásból. + Helyszín megváltoztatása Célpont áthelyezése ide nem lehetséges Jelentkezz be, hogy más felhasználók is láthassák a változtatásaidat. + + A letöltéshez több szabad tárhelyre van szükség. Kérjük, töröld a szükségtelen adatokat. + Én fejlesztettem a Organic Maps térképeket %1$d/%2$d Letöltés mobilhálózati kapcsolat segítségével? @@ -424,6 +500,7 @@ Javasolt változtatásait elküldjük az OpenStreetMap közösségnek. Írja le a további információkat, amelyek nem szerkeszthetők a Organic Maps-ben. További részletek az OpenStreetMap-ról Üzemeltető + Térképeim Még nem töltött le térképet Töltse le a szükséges térképeket, hogy megtalálja a helyet és internet nélkül is navigálhasson. @@ -432,6 +509,13 @@ Tartózkodási helye ismeretlen. Lehet, hogy épületben vagy alagútban tartózkodik. Folytatás Leállítás + Hiba történt tartózkodási helye keresésekor. Ellenőrizze készüléke működését és próbálkozzon újra. + Helyzetmeghatározás kikapcsolva + Kapcsolja be a földrajzi helymeghatározást a készülék beállításaiban + 1. Nyissa meg a Beállításokat + 2. Érintse meg a Helyzet gombot + + 3. Kiválaszt az alkalmazás használata alatt m km km/h @@ -446,29 +530,43 @@ Foglalás Hívás Könyvjelző szerkesztése + Könyvjelző neve + Jegyzet + Könyvjelző törlése + Javasolt változtatásainak elküldése sikerült Megjegyzés… Elveti az összes helyi módosítást? Elvetés Eltávolít egy hozzáadott objektumot? Eltávolítás A hely nem létezik + …tovább Adja meg a helyes telefonszámot Adj meg egy érvényes weboldalcímet Adj meg egy érvényes email-címet + Frissítés Hely hozzáadása a térképhez Szeretnéd elküldeni az összes felhasználónak? Győződj meg arról, hogy nem adsz meg semmilyen személyes információt. Ellenőrizni fogjuk a változásokat. Ha bármilyen kérdésünk van, emailben keresünk. + megállítás + + Megszakítod a legutóbb megtett utad rögzítését? + Megszakítás + + Tekintse meg + A Organic Maps a geopozíciód használatával a háttérben rögzíti a legutóbb megtett utad. Az Organic Maps egy ingyenes, nyílt forráskódú offline térképalkalmazás. Nincsenek hirdetések. Nincs nyomkövetés. Ha hibát lát a térképen, javítsa ki az OpenStreetMap segítségével. A projektet a lelkesek készítik szabadidőnkben, ezért szükségünk van az Ön visszajelzésére és támogatására. + Általános beállítások Elfogadja Elutasítja - + Lista Részletes információk megjelenítése a mobil internet segítségével? Mindig használja @@ -481,6 +579,8 @@ Forgalmi adatok megjelenítéséhez a térképeket frissíteni kell. Betűméret növelése a térképen Kérjük, frissítse a Organic Maps alkalmazást + + A forgalmi adatok megjelenítéséhez frissíteni kell az alkalmazást. Forgalmi adatok nem állnak rendelkezésre Naplózás engedélyezése @@ -497,8 +597,13 @@ Adjon hozzá kiindulási pontot az útvonal megtervezéséhez Adjon hozzá végpontot az útvonal tervezéséhez Kilépés + Útvonal kezelése + Terv Eltávolítja + Húzza ide az eltávolításhoz Hozzáad megállót + Elkezdi innen: + Hoppá, volt egy hiba. Próbáljon meg újra bejelentkezni. Tároló hozzáférési hiba Külső tároló nem áll rendelkezésre, valószínűleg az SD-kártyát eltávolították vagy sérült, vagy rendszerfájl csak olvasható. Ellenőrizze, és lépjen kapcsolatba velünk a support\@organicmaps.app címen Sérült tároló emulálása @@ -508,7 +613,14 @@ Összes elrejtése Összes megjelenítése + + könyvjelzők %d + Új lista létrehozása + Képernyő elrejtése + %1$s (%2$s / %3$s) + %s letöltése… + %s alkalmazása… Nem lehet megosztani alkalmazáshiba miatt Megosztási hiba Üres lista nem osztható meg @@ -517,14 +629,22 @@ Új lista Ez a név már foglalt Kérjük, válasszon másik nevet + Ez a név túl hosszú Kérlek várj… Telefonszám OpenStreetMap profil + Új fájlokat észleltek %d fájlt találtunk. Látni fogja őket a megtérés után. %d fájl található. Látni fogja őket a megtérés után. + Alakítani + Hiba + Egyes fájlok nem konvertáltak. + A verzió visszaállítása? Nincs internetkapcsolat + Ismeretlen hiba történt + Visszaállítás %d hely @@ -546,13 +666,17 @@ A lista üres A könyvjelző hozzáadásához, érintsen meg a térképen egy helyet majd érintse meg a csillag ikont …tovább + Hiba történt Fájl exportálása Lista beállításai Törölni a listát + Lefedés a térképen Nyílt hozzáférés Személyes hozzáférés Leírás hozzáadása (szöveg vagy html) Privát + A tag-ek feltöltésekor hiba történt, kérjük próbálja meg még egyszer + Letöltés Sebességmérő kamerák Autó Mindig @@ -560,6 +684,7 @@ A hely ismertetése Kártyák letöltése + Autó - Figyelmeztetés a sebesség kamerákról, ha van kockázat a sebesség korlátozás megsértéséről\nMindig - Mindig figyelmeztet a kamerákról\nSoha - Soha ne figyelmezet a kamerákról Energiatakarékos mód Amikor az automatikus mód van kiválasztva, az alkalmazás elkezdi kikapcsolni az akkumulátort merítő funkciókat a jelenlegi akkumulátor töltöttség alapján Soha @@ -583,11 +708,44 @@ Fizetős utak elkerülése Kövezetlen utak elkerülése Kompátkelők elkerülése + Gyerünk + Cél + Középre + Keresési eredmények + Utána + Szeretnél újratervezni egy útvonalat? + Igen + Nem + Megérkeztél! + A billentyűzet nem elérhető vezetés közben + Nem lehet útvonalat tervezni a jelenlegi helyedről + Nem lehet útvonalat tervezni a célodhoz. Kérjük válassz egy másik pontot + Nincs GPS-jel. Kérjük menj egy nyílt területre + Nem lehet útvonalat tervezni. Kérjük határozz meg más útvonal lehetőségeket + Útvonal létrehozásához töltsd le a hiányzó térképeket az eszközre + Hiba történt. Kérjük indítsd újra az alkalmazást + Az útvonal újra lesz tervezve a jelenlegi helyzetedről + Az útvonal módosítva lesz egy autó számára Oké + Nem földút + Földút kerülése + Komp nélkül + Kompok kerülése + Nincs útdíj + Útdíj kerülése + Traffipaxok + Sebességjelzés + Kérjük, töltsd le a térképeket a Organic Maps alkalmazásban az eszközödre + %s kijárat Rendezd… Könyvelzők rendezése + + Alapértelmezés szerint + Típus szerint + Távolság szerint + Dátum szerint Alapértelmezés szerint @@ -626,6 +784,10 @@ Terep A topográfiai réteg aktiválásához és használatához kérjük frissítse vagy töltse le az adott terület térképét Ezen a területen a topográfiai réteg még nem elérhető + Nehézségi szint + Könnyű + Mérsékelt + Nehéz Felemelkedés Leereszkedés Min. magasság @@ -634,9 +796,22 @@ Táv.: Idő Nagyítás az isovonalak felfedezéséhez + Feltöltés + Letöltés + Kulcs információ Hagyja aludni a képernyőt Ha engedélyezve van, akkor a képernyő inaktivitás után alszik. + + Frissítse a letöltött térképeit + + A térképek frissítésével naprakészen tarthatja az objektumokra vonatkozó adatokat + + Frissítés (%s) + + Kézi frissítés később + + Útvonal Felvonóállomás @@ -859,8 +1034,6 @@ Sürgősségi telefon Bejárat Orvosi laboratórium - - Buszmegálló Útépítés Ösvény @@ -960,22 +1133,6 @@ Utca Utca Utca - Ösvény - Utca - Utca - Ösvény - Utca - Utca - Utca - Utca - Utca - Utca - Ösvény - Utca - Utca - Utca - - Ásatás Kastély Kastély @@ -1061,16 +1218,16 @@ Mobilüzemeltető Város Főváros - Város - Város + Főváros + Főváros Főváros - Város - Város - Város - Város - Város - Város - Város + Főváros + Főváros + Főváros + Főváros + Főváros + Főváros + Főváros Kontinens Ország Kerület diff --git a/android/res/values-in/strings.xml b/android/res/values-in/strings.xml index 414e01cf41..ddabf537df 100644 --- a/android/res/values-in/strings.xml +++ b/android/res/values-in/strings.xml @@ -8,6 +8,8 @@ Kembali Batalkan + + Batalkan Pengunduhan Hapus Unduh Peta @@ -17,6 +19,8 @@ Sedang mengunduh… Kilometer + + Tulis Ulasan Peta @@ -31,14 +35,19 @@ Cari Cari Peta + + Ya Saat ini semua Layanan Lokasi untuk perangkat atau aplikasi ini non-aktif. Mohon aktifkan lewat Setelan. Tampilkan di peta + + Unduh Peta Sedang Mengunduh telah gagal Coba Lagi + Tentang Organic Maps Pengaturan Koneksi Tutup OpenGL yang dipercepat oleh OpenGL diperlukan. Sayangnya, perangkat Anda tidak mendukung. @@ -63,6 +72,8 @@ Warna Penanda Nama Set Penanda + + Set Penanda Penanda @@ -71,8 +82,8 @@ Nama Alamat - - Daftar + + Set Pengaturan @@ -87,43 +98,41 @@ Unit Pengukuran Pilihlah antara mil dan kilometer - - - + Tempat makan - + Toserba - + Transportasi - + Bahan bakar - + Parkir - + Berbelanja - + Hotel - + Pemandangan - + Hiburan - + ATM - + Kehidupan Malam - + Liburan keluarga - + Bank - + Apotek - + Rumah sakit - + Toilet - + Pos - + Polisi Catatan @@ -157,8 +166,12 @@ Surel Telah Disalin ke Papan Klip: %1$s + + Info Selesai + + Versi: %s Apakah Anda yakin ingin melanjutkan? @@ -187,6 +200,10 @@ Bahasa Suara Tidak Tersedia + + Lainnya + + Jalur terkini Perbesar otomatis Nonaktif 1 jam @@ -194,6 +211,8 @@ 6 jam 12 jam 1 hari + Ini memungkinkan Anda untuk merekam jalur yang telah dilalui selama jangka waktu tertentu dan melihatnya pada peta. Harap ketahui: aktivasi fungsi ini menyebabkan peningkatan penggunaan baterai. Trek akan dihapus secara otomatis dari peta setelah selang waktu berakhir. + Jarak Tampilkan pada peta Situs Web @@ -211,6 +230,12 @@ Hak cipta Laporkan gangguan + + Surel pelanggan belum diatur. Mohon konfigurasikan atau gunakan cara lain untuk menghubungi kami di %s + + Gangguan pengiriman surel + + Kalibrasi kompas WiFi @@ -219,12 +244,19 @@ Batalkan Semuanya Diunduh + + Tersedia Telah diantrekan Dekat saya Peta Unduh semua Mengunduh: + Ditemukan + + Perbarui + + Gagal Untuk menghapus peta, silakan hentikan navigasi. @@ -239,12 +271,22 @@ Perbarui Peta Gunakan Layanan Google Play untuk mendapatkan lokasi Anda saat ini + + Saya baru saja menilai app Anda + + Terima kasih! + + Bagikan ide atau masalah, sehingga kami dapat meningkatkan app ini untuk Anda. + + Kirim umpan balik Unduh peta bersama rute Membuat rute memerlukan semua peta dari lokasi Anda ke tujuan yang diunduh dan diperbarui. Ruang simpan tidak cukup + + bookmark Mohon aktifkan Layanan Lokasi Simpan @@ -297,6 +339,8 @@ Mohon periksa sinyal GPS Anda. Mengaktifkan Wi-Fi akan meningkatkan akurasi lokasi Anda. Aktifkan layanan lokasi TIdak dapat menemukan koordinat GPS saat ini. Aktifkan layanan lokasi untuk mengalkulasi rute. + Unduh file yang diperlukan + Unduh dan perbarui semua informasi peta dan perutean di sepanjang proyeksi jalan untuk mengalkulasi rute. Tidak dapat menemukan rute Tidak dapat membuat rute. Sesuaikan titik mula atau tujuan Anda. @@ -311,6 +355,7 @@ Kesalahan sistem Tidak dapat membuat rute karena kesalahan aplikasi. Mohon coba lagi + Jangan Sekarang Apakah Anda ingin mengunduh peta dan membuat rute yang lebih optimal yang meliputi lebih dari satu peta? Unduh peta untuk membuat rute yang lebih optimal yang melewati ujung peta ini. @@ -321,8 +366,17 @@ Tampilkan Sembunyikan + + Sudah sampai di tujuan Kedatangan: %s + + Untuk membuat rute, silakan unduh dan perbarui semua peta sepanjang rute. + Suka aplikasi ini? + Terima kasih karena menggunakan Organic Maps. Mohon beri peringkat untuk aplikasi ini. Masukan dari Anda membantu kami untuk menjadi lebih baik. + Hore! Kami juga sangat menyukai Anda! + Terima kasih, kami akan melakukan yang terbaik! + Anda punya ide agar kami bisa membuatnya menjadi lebih baik? Kategori Riwayat Tutup @@ -353,6 +407,8 @@ Contoh Nilai Koreksi kesalahan Lokasi + Anda telah mengubah peta dunia. Jangan menyembunyikan ini! Katakan kepada teman-teman Anda, dan edit bersama. + Bagikan dengan teman-teman Harap menggambarkan masalah secara rinci sehingga komunitas OpenStreeMap dapat memperbaiki kesalahan. Atau Anda bisa melakukan sendiri di https://www.openstreetmap.org/ Kirim @@ -362,20 +418,29 @@ Tempat ganda Unduhan otomatis + Sekarang Tutup + Setiap Hari siang dan malam Tutup hari ini Tutup Hari ini + Tambah jam kerja Sunting jam kerja Tidak ada akun di OpenStreetMap? Mendaftar + Kata Sandi (minimal 8 karakter) + Nama pengguna dan Kata sandi tidak valid. Masuk Kata sandi Lupa kata sandi? + Akun OSM Keluar + + Pengunggahan terakhir Terima kasih Sunting tempat + Nama tempat Tambahkan bahasa Jalan @@ -390,16 +455,22 @@ Pilih Masakan Surel atau nama pengguna + Telepon + Harap diperhatikan Semua perubahan peta akan dihapus bersama dengan peta. Perbarui peta Untuk membuat rute, Anda perlu memperbarui semua peta dan kemudian merencanakan rute tersebut lagi. Temukan peta + Unduh kesalahan Harap memeriksa pengaturan Anda dan pastikan perangkat Anda terhubung dengan internet. Tidak cukup ruang Harap menghapus data yang tidak diperlukan Kesalahan masuk. Perubahan Terverifikasi Tarik peta untuk memilih lokasi yang benar dari obyek. + Pilih kategori + Populer + Semua kategori Mengedit Menambahkan Nama tempat @@ -407,8 +478,13 @@ Gambaran terperinci tentang masalah Masalah yang berbeda Tambahkan organisasi + Tambahkan tempat-tempat baru di peta, dan edit peta-peta yang ada langsung dari aplikasi. + Ubah lokasi Objek tidak dapat diletakkan di sini Masuk agar pengguna lain dapat melihat perubahan yang Anda buat. + + Untuk mengunduh, Anda perlu ruang lebih banyak. Harap menghapus data yang tidak diperlukan. + Saya meningkatkan peta Organic Maps %1$d dari %2$d Unduh dengan menggunakan koneksi jaringan seluler? @@ -426,6 +502,7 @@ Saran perubahan Anda akan dikirimkan ke komunitas OpenStreetMap. Jelaskan detail yang tidak dapat diedit di Organic Maps. Selengkapnya tentang OpenStreetMap Pemilik + Peta saya Tidak ada peta apa pun yang diunduh Unduh peta untuk menemukan lokasi dan bernavigasi secara offline. @@ -434,6 +511,14 @@ Lokasi saat ini tidak diketahui. Anda mungkin berada dalam bangunan atau terowongan. Lanjutkan Berhenti + Lokasi saat ini tidak diketahui. + Terjadi kesalahan saat mencari lokasi Anda. Periksa apakah perangkat Anda bekerja dengan benar dan coba lagi nanti. + Identifikasi lokasi dinonaktifkan + Izinkan akses ke geolokasi pada pengaturan perangkat + 1. Buka Pengaturan + 2. Ketuk Lokasi + + 3. Pilih While Using the App m km km/j @@ -448,29 +533,43 @@ Pesan Hubungi Edit Bookmark + Nama Bookmark + Catatan pribadi + Hapus Bookmark + Saran perubahan Anda telah dikirim Komentar… Atur ulang perubahan lokal? Atur Ulang Hapus tempat yang ditambahkan? Hapus Tempat tidak ada + …selebihnya Masukkan nomor telepon yang benar Masukkan alamat web valid Masukkan surel valid + Memperbarui Tambahkan tempat ke peta Apakah Anda ingin mengirimkannya ke semua pengguna? Pastikan Anda tidak memasukkan data pribadi apa pun. Kami akan memeriksa perubahan tersebut. Jika kami memiliki pertanyaan maka kami akan menghubungi Anda melalui surel. + berhenti + + Nonaktifkan rekaman dari rute yang baru Anda lalui? + Nonaktifkan + + Lihat + Organic Maps menggunakan geoposisi di latar belakang untuk merekam rute yang baru Anda lalui. Organic Maps adalah aplikasi peta offline sumber terbuka dan gratis. Tanpa iklan. Tidak ada pelacakan. Jika Anda melihat kesalahan pada peta, harap perbaiki di OpenStreetMap. Proyek ini dibuat oleh para penggemar di waktu luang kami, jadi kami membutuhkan masukan dan dukungan Anda. + Setelan umum Terima Tolak - + Daftar Gunakan internet seluler untuk memperlihatkan informasi terperinci? Selalu Gunakan @@ -483,6 +582,8 @@ Untuk memperlihatkan data lalu lintas, peta harus diperbarui. Perbesar ukuran huruf pada peta Perbarui Organic Maps + + Untuk menampilkan data lalu lintas, aplikasi ini harus diperbarui. Data lalu lintas tidak tersedia Aktifkan pencatatan @@ -499,8 +600,13 @@ Tambahkan titik awal untuk merencanakan rute Tambahkan titik akhir untuk merencanakan rute Keluar + Kelola rute + Rencana Hapus + Seret ke sini untuk menghapus Tambah perhentian + Mulai dari + Ah, tadi ada kesalahan. Coba masuk kembali. Masalah akses penyimpanan Penyimpanan eksternal tidak tersedia, mungkin Kartu SD sudah dilepaskan, rusak, atau sistem berkasnya hanya dapat dibaca. Silakan periksa dan beri tahu kami di alamat support\@ maps.me Emulasi penyimpanan yang buruk @@ -510,7 +616,14 @@ Sembunyikan semua Perlihatkan semua + + %d markah + Buat daftar baru + Sembunyikan Layar + %1$s (%2$s dari %3$s) + Mengunduh %s… + Menerapkan %s… Tidak dapat berbagi karena kesalahan aplikasi Kesalahan dalam membagikan Tidak dapat membagikan daftar kosong @@ -519,14 +632,22 @@ Daftar baru Nama ini sudah dipakai Silakan pilih nama lain + Nama ini terlalu panjang Mohon tunggu… Nomor telepon Profil OpenStreetMap + File baru terdeteksi %d file ditemukan. Anda akan melihatnya setelah mengonversi. %d file telah ditemukan. Anda akan melihatnya setelah konversi. + Mengubah + Kesalahan + Beberapa file tidak dikonversi. + Kembalikan versi ini? Tidak ada koneksi internet + Terjadi kesalahan yang tidak diketahui + Mengembalikan tempat %d @@ -548,13 +669,17 @@ Daftar ini kosong Untuk menambahkan bookmark, ketuk satu tempat di peta lalu ketuk ikon bintang …selengkapnya + Terjadi kesalahan File ekspor Pengaturan Daftar Hapus Daftar + Sembunyikan dari peta Akses umum Akses terbatas Ketikkan deskripsi (teks atau html) Pribadi + Kesalahan terjadi saat memuat tag, silakan coba lagi + Unduh Kamera cepat Auto Selalu @@ -562,6 +687,7 @@ Deskripsi Tempat Pengunduh peta + Auto - Peringatkan tentang kamera kecepatan saat terdapat risiko melebihi batas kecepatan\nSelalu - Selalu peringatkan tentang kamera kecepatan\nTidak pernah - Jangan pernah peringatkan tentang kamera kecepatan Mode hemat daya Saat mode otomatis dipilih, aplikasi mulai menonaktifkan fitur yang menghabiskan daya baterai, bergantung pada tingkat daya baterai saat ini Jangan pernah @@ -585,11 +711,44 @@ Hindari jalan tol Hindari jalan tanah Hindari penyeberangan kapal feri + Ayo + Tujuan + Pusatkan ulang + Hasil pencarian + Lalu + Anda ingin membuat ulang rute? + Ya + Tidak + Anda telah tiba! + Papan ketik tidak tersedia saat berkendara + Tidak dapat membuat rute dari lokasi saat ini + Tidak dapat membuat rute ke tujuan Anda. Pilih titik lainnya + Tidak ada sinyal GPS. Harap pindah ke area terbuka + Tidak dapat membuat rute. Harap tentukan titik rute lainnya + Untuk membuat rute, unduh peta baru di perangkat anda + Terjadi kesalahan. Harap mulai ulang aplikasi + Rute akan dibuat ulang dari lokasi saat ini + Rute akan diubah untuk mobil Oke + Jalan aspal + Hindari tanah + Tanpa feri + Hindari feri + Tanpa tol + Hindari tol + Speedcam + Info kecepatan + Silakan unduh peta di apl Organic Maps pada perangkat Anda + Jalan keluar ke %s Urutkan… Urutkan bookmark + + Urutkan standar + Urutkan per tipe + Urutkan per jarak + Urutkan per tanggal Standar @@ -628,6 +787,10 @@ Isometrik Untuk mengaktifkan dan menggunakan lapisan topografi, silakan perbarui atau unduh peta area Lapisan topografi belum tersedia untuk wilayah ini + Tingkat kesulitan + Mudah + Sedang + Sulit Menanjak Menurun Ketinggian Min. @@ -636,9 +799,22 @@ Jarak: Waktu: Perbesar untuk menjelajahi garis kontur + Memperbarui + Mengunduh + Informasi kunci Izinkan layar untuk tidur Jika diaktifkan, layar akan diizinkan untuk tidur setelah beberapa saat tidak aktif. + + Perbarui peta yang sudah Anda unduh + + Memperbarui peta membuat informasi tentang objek tetap terkini + + Pembaruan (%s) + + Perbarui secara manual nanti + + Trek Stasiun kereta gantung @@ -856,8 +1032,6 @@ Telepon darurat Pintu masuk Laboratorium medis - - Halte bus Jalan sedang dibangun Jalur @@ -957,22 +1131,6 @@ Jalan Jalan Jalan - Jalur - Jalan - Jalan - Jalur - Jalan - Jalan - Jalan - Jalan - Jalan - Jalan - Jalur - Jalan - Jalan - Jalan - - Situs arkeologi Kastel Kastel @@ -1058,16 +1216,16 @@ Operator seluler Kota Ibu kota - Kota - Kota + Ibu kota + Ibu kota Ibu kota - Kota - Kota - Kota - Kota - Kota - Kota - Kota + Ibu kota + Ibu kota + Ibu kota + Ibu kota + Ibu kota + Ibu kota + Ibu kota Benua Benua Kabupaten diff --git a/android/res/values-it/strings.xml b/android/res/values-it/strings.xml index bfc3adde32..b45445c8ac 100644 --- a/android/res/values-it/strings.xml +++ b/android/res/values-it/strings.xml @@ -8,15 +8,19 @@ Indietro Annulla + + Annulla il download Cancella - Scarica mappe + Scarica le mappe - Download fallito. Riprova. + Download fallito, tocca di nuovo per un altro tentativo Download in corso… Chilometri + + Lascia una recensione Mappe @@ -28,15 +32,20 @@ Cerca - Cerca mappa + Cerca sulla mappa + + Attualmente tutti i servizi di localizzazione per questo dispositivo o applicazione sono disattivati. Si prega di abilitarli in Impostazioni. Mostra sulla mappa + + Scarica mappa Il download non è riuscito Riprova + Informazioni su Organic Maps Impostazioni di connessione Chiudi È necessaria una accelerazione hardware OpenGL. Purtroppo, il tuo dispositivo non è supportato. @@ -56,21 +65,21 @@ Il download di %s non è riuscito - Aggiungi nuovo elenco + Aggiungi un nuovo Set - Colore Luogo preferito + Colore del Segnalibro - Nome dell\'elenco + Seleziona un nome del segnalibro + + Seleziona un segnalibro - Luoghi preferiti + Segnalibri I miei luoghi - - Nome Indirizzo - - Elenco + + Seleziona Impostazioni @@ -80,74 +89,71 @@ Vuoi spostare le mappe? - Questo può richiedere diversi minuti.\nAttendere prego… + Questo può richiedere diversi minuti.\ncortesemente attendi… Unità di misura Scegli tra miglia e chilometri - - - + Dove mangiare - + Alimentari - - Trasporto - - Benzinaio - + + Transporto + + Stazione di rifornimento + Parcheggio - - Negozi - - Albergo - - Luoghi turistici - + + Shopping + + Hôtel + + Turistico + Divertimento - + Bancomat - + Vita notturna - - Tempo libero - + + Vacanze bambini + Banca - + Farmacia - + Ospedale - + Toilette - + Posta - + Polizia - Informazioni + Note - Questi sono i miei luoghi preferiti - Ciao!\n\nIn allegato ci sono i miei luoghi preferiti. Aprili se hai installato Organic Maps. Oppure, se non ce l\'hai, scarica l\'app per iOS o Android seguendo questo link: https://omaps.app/\n\nDivertiti a viaggiare con Organic Maps! + Il segnalibri Organic Maps è stato condiviso con te - Caricamento luoghi preferiti + Caricamento segnalibri in corso - Luoghi preferiti caricati con successo! Puoi trovarli sulla mappa o nella schermata \"Gestione Luoghi preferiti\". + Segnalibri caricati con successo! Puoi trovare i segnalibri direttamente sulla mappa, oppure aprendo la schermata dedicata alla Gestione dei segnalibri. - Caricamento dei luoghi preferiti non riuscito. Il file potrebbe essere corrotto o difettoso. + Caricamento dei segnalibri non riuscito. Il file potrebbe essere corrotto o difettoso. Modifica La tua posizione non è stata ancora stabilita - Le impostazioni di archiviazione delle mappe sono disabilitate. + Siamo spiacenti, ma le impostazioni di archiviazione delle mappe sono disabilitate. - Il download della mappa è in corso. + Il download della nazione è in corso. - Guarda la mia posizione in Organic Maps! %1$s o %2$s Non hai scaricato l\'app? La puoi scaricare da qui: https://omaps.app/get + Vedi dove sono ora. Apri %1$s o %2$s - Puoi vedere il mio luogo preferito sulla mappa Organic Maps! + Dai uno sguardo al mio pin sulla mappa di Organic Maps - Guarda dove mi trovo attualmente sulla mappa Organic Maps! + Guarda dove mi trovo attualmente sulla mappa Organic Maps Ciao,\n\nSono qui adesso: %1$s. Clicca su questo link %2$s oppure su questo %3$s per vedere il posto sulla mappa.\n\nGrazie. @@ -155,25 +161,23 @@ E-mail - Copiato in appunti: %1$s + Copiato sugli Appunti: %1$s + + Informazioni - Fatto - - Versione: %d + Fine + + Versione: %s Sei sicuro di voler continuare? - Percorsi + Tracciati Lunghezza - Condividi la mia posizione - - Opzioni generali - - Informazioni + Condividi la mia location Navigazione Pulsanti per lo zoom - Mostra sulla mappa + Condividi la mia location Modalità notturna @@ -181,24 +185,30 @@ Acceso - Automatico + Auto Vista in prospettiva - Edifici 3D + Edifici in 3D Istruzioni vocali Lingua per la voce Non disponibile + + Altro + + Percorso recente Zoom automatico - Spento + Disabilitato 1 ora 2 ore 6 ore 12 ore 1 giorno + Consente di registrare il tratto percorso in un determinato periodo di tempo e vedere lo stesso sulla mappa. Nota: l\'attivazione di questa funzione incrementa l\'uso della batteria. Il tratto viene rimosso automaticamente dalla mappa allo scadere dell\'intervallo di tempo. + Distanza Visualizza sulla mappa Sito web @@ -209,51 +219,74 @@ Aiuto - Domande frequenti + Domande e risposte - Come sostenerci? + Come supportarci? Copyright - Segnala un errore + Riporta un bug + + Il client email non è stato configurato. Si prega di configurarlo o di usare qualsiasi altro metodo per contattarci all\'indirizzo %s + + Errore invio e-mail + + Calibrazione del compasso - Wi-Fi + WiFi Aggiorna tutte Annulla tutto Scaricate + + Disponibile In coda Vicino a me Mappe Scarica tutte In scaricamento: + Trovate + + Aggiorna + + Fallito Per eliminare una mappa interrompi la navigazione. - Si possono creare solo percorsi che sono completamente contenuti in una mappa di una singola regione. + I percorsi possono essere creati solo se interamente presenti in una singola mappa. Scarica mappa - Riprova + Ripeti Elimina mappa Aggiorna mappa Usa i servizi Google Play per ottenere la tua posizione attuale + + Ho appena valutato la tua app + + Grazie! + + Condividi le tue idee o problemi così che possiamo migliorare l\'app per te. + + Invia feedback Scarica le mappe lungo il percorso Creare un percorso necessita la presenza di tutte le mappe scaricate e aggiornate dalla tua posizione alla destinazione. - Spazio insufficiente + Spazio non sufficiente + + segnalibro - Abilita i servizi di localizzazione + Cortesemente abilita i servizi di localizzazione Salva - Le tue descrizioni (testo o html) + Le tue descrizioni (formato testo o html) crea Rosso @@ -276,9 +309,9 @@ Azzurro - Ciano + Cyan - Blu tè + Verde smeraldo Verde fluo @@ -292,7 +325,7 @@ Quando segui il percorso, ricorda che: - — Le condizioni stradali, il codice della strada e la segnaletica stradale hanno sempre precedenza sulle indicazioni del navigatore; + — Le condizioni stradali, il codice della strada e la segnaletica stradale hanno sempre precedenza sui consigli di navigazione; — La mappa potrebbe essere imprecisa e il percorso suggerito potrebbe non essere sempre quello ottimale per raggiungere la destinazione; — I percorsi suggeriti devono essere considerati solo come consigli; — Fai attenzione ai percorsi nelle zone di confine: i percorsi creati dalla nostra app possono, a volte, attraversare i confini di stato in zone non autorizzate; @@ -302,6 +335,8 @@ Controlla il segnale GPS. Se abiliti il Wi-Fi, migliorerà la precisione della posizione. Abilita i servizi di localizzazione Impossibile individuare le coordinate GPS attuali. Per calcolare il percorso, abilita i servizi di localizzazione. + Scarica i file necessari + Per calcolare il percorso, scarica e aggiorna tutte le mappe e le informazioni di itinerario lungo la strada prevista. Impossibile individuare il percorso Impossibile creare il percorso. Modifica il punto di partenza o la destinazione. @@ -312,12 +347,13 @@ Percorso non creato. Impossibile individuare la destinazione. Seleziona un punto di destinazione più vicino a una strada. Impossibile individuare un punto intermedio. - Modifica il punto intermedio. + Regolare il punto intermedio. Errore di sistema Impossibile creare il percorso a causa di un errore dell\'applicazione. Riprova + Non ora Vuoi scaricare la mappa e creare un percorso migliore che si estende su più mappe? - Scarica altre mappe per creare un percorso migliore che attraversi i confini di questa mappa. + Per creare un percorso migliore che oltrepassa il limite di questa mappa, scarica la mappa. Per iniziare a cercare e a creare i percorsi, scarica la mappa e non avrai più bisogno di una connessione a internet. @@ -326,28 +362,35 @@ Mostra Nascondi + + Pianificazione del percorso fallito - Arrivo a %s + Arrivo: %s + + Per creare un percorso, scaricare e aggiornare tutte le mappe interessate dal percorso. + Ti piace l’app? + Grazie per aver utilizzato Organic Maps. Valuta l’app. Il tuo feedback ci permette di migliorare. + Hooray! Anche noi amiamo i nostri utenti! + Grazie, faremo del nostro meglio! + Hai qualche idea su come migliorarla? Categorie Cronologia Chiuso - Non ho trovato nulla. + Spiacente, non ho trovato nulla. Prova con un\'altra ricerca. - Cronologia delle ricerche - Visualizza le ricerche recenti. + Cerca nella cronologia + Accedi velocemente alle stringhe di ricerca recenti. Cancella сronologia ricerche - - Wikipedia La tua posizione Inizia Da - A + Percorso per La navigazione è disponibile solo dalla tua posizione attuale. - Vuoi che pianifichiamo un percorso dalla tua posizione attuale? + Vuoi che impostiamo il percorso dalla tua posizione corrente? Avanti - Aggiungi pianificazione - Elimina pianificazione + Aggiungi orari + Elimina orari Tutto il giorno (24 ore) Aperto @@ -357,9 +400,11 @@ Modalità avanzata Modalità semplice Orari di chiusura - Esempi + Valori esemplificativi Correggi errore Posizione + Hai modificato la mappa del mondo. Non tenerlo per te! Dillo ai tuoi amici e modificatela insieme. + Condividi con gli amici Si prega di descrivere il problema in dettaglio in modo che la community OpenStreeMap possa riparare l’errore. O fallo tu stesso su https://www.openstreetmap.org/ Invia @@ -369,56 +414,73 @@ Luogo duplicato Scaricamento automatico + Ora chiuso + Tutti i giorni - 24/7 + Giorno e notte Oggi chiuso Chiuso Oggi + Aggiungi orari di apertura Modifica orari di apertura - Non hai un account OpenStreetMap? - Iscriviti + Non hai un account su OpenStreetMap? + Registrati + Password (minimo 8 caratteri) + Username o password non corretti. Accedi Password Hai dimenticato la password? + Account OSM Esci + + Ultimo caricamento Grazie Modifica il luogo + Nome del luogo Aggiungi una lingua Via Numero civico Dettagli - Aggiungi una via - - Inserire il nome della via + Aggiungi una strada Scegli una lingua - Scegli una via + Scegli una strada Codice postale Cucina Seleziona la cucina - E-mail o nome utente - Aggiungi numero - Tutte le tue modifiche alla mappa saranno cancellate insieme alla mappa. + Email o nome utente + Telefono + Si prega di notare + Tutti i cambiamenti nella mappa saranno cancellati insieme alla mappa. Aggiorna mappe Per creare un percorso, devi aggiornare tutte le mappe e pianificare nuovamente il percorso. Trova la mappa - Verifica le tue impostazioni e assicurarti che il tuo dispositivo sia connesso a internet. + Errore nel download + Sei pregato di verificare le tue impostazioni e assicurarti che il tuo dispositivo sia connesso a internet. Spazio insufficiente Si prega di rimuovere i dati non necessari Errore accesso. Modifiche approvate Sposta la mappa per selezionare l’esatta posizione dell’oggetto. + Seleziona categoria + Popolari + Tutte le categorie Modifica - Aggiungi + Aggiunta Nome del luogo Categoria - Descrizione dettagliata del problema + Descrizione dettagliata di un problema Un problema diverso - Aggiungi attività - Nessun oggetto può essere posizionato qui + Aggiungi organizzazione + Aggiungi nuovi luoghi alla mappa, e modifica quelli già esistenti direttamente dall’app. + Cambia posizione + Un oggetto non può essere posizionato qui Accedi per consentire ad altri utenti di vedere le modifiche apportate. + + Per scaricare, hai bisogno di più spazio. Sei pregato di eliminare i dati non necessari. + Ho migliorato le mappe Organic Maps %1$d di %2$d Vuoi scaricare utilizzando una connessione di rete cellulare? @@ -426,68 +488,84 @@ Inserisci numero civico corretto Numero di piani (massimo %d) - Il numero di piani non deve superare 25 + Modificare l\'edificio con un massimo di 25 piani Codice postale Inserire il codice postale corretto Luogo sconosciuto - Invia un messaggio a OSM + Invia una nota agli editor di OSM Commento dettagliato - Le modifiche alla mappa da te suggerite saranno inviate alla comunità di OpenStreetMap. Descrivi qualsiasi dettaglio aggiuntivo che non può essere modificato in Organic Maps. - Informazioni su OpenStreetMap - Proprietario + Le modifiche suggerite saranno inviate alla community OpenStreetMap. Descrivere i dettagli che non è possibile modificare in Organic Maps. + Ulteriori informazioni su OpenStreetMap + Titolare + Le mie mappe Non hai scaricato mappe - Scarica mappe per trovare un luogo e navigare offline. + Scarica mappe per trovare il luogo e navigare offline. - Continuare a rilevare la tua posizione attuale? + Continuare a rilevare la posizione attuale? La posizione attuale è sconosciuta. È possibile che ci si trovi all\'interno di un edificio o un tunnel. Continua - Ferma + Arresta + La posizione attuale è sconosciuta. + Si è verificato un errore durante la ricerca della posizione. Controllare che il dispositivo utilizzato funzioni correttamente e riprovare. + La geolocalizzazione è disabilitata + Abilita l\'accesso alla geolocalizzazione dalle impostazioni del dispositivo + 1. Apri le impostazioni + 2. Tocca su Localizzazione + + 3. Seleziona mentre usi l\'app m km - km/h + chilometri orari (km/h) mi - piede + ft mph - o + h min Descrizione - Di più + Altro Altre recensioni Prenota Chiama - Modifica luogo preferito - Commento… - Cancellare tutte le modifiche locali? - Cancella - Eliminare il luogo aggiunto? - Elimina - Il luogo non esiste - - Indicare il motivo dell\' eliminazione del luogo + Modifica segnalibro + Nome segnalibro + Note personali + Elimina segnalibro + Le modifiche suggerite sono state inviate + Commenta… + Reimpostare tutte le modifiche locali? + Reimposta + Rimuovere il luogo aggiunto? + Rimuovi + Luogo inesistente + …continua Inserisci un numero di telefono corretto Inserisci un indirizzo web valido - Inserisci un\'e-mail valida - Inserisci un indirizzo web, un account o un nome di pagina Facebook valido - Inserisci un indirizzo web o un nome di account Instagram valido - Inserisci un indirizzo web o un nome utente Twitter valido - Inserisci un indirizzo web o un nome di account VK valido - Inserisca un indirizzo web LINE valido o un ID LINE + Inserisci un\'email valida + Aggiornare Aggiungi un luogo sulla mappa Vuoi inviarlo a tutti gli utenti? Assicurati di non aver inserito alcun dato personale. - Controlleremo le modifiche. Se avremo delle domande, ti contatteremo via e-mail. + Controlleremo le modifiche. Se avremo delle domande, ti contatteremo via email. + ferma + + Disattivare la registrazione del tuo percorso effettuato di recente? + Disattiva + + Dai uno sguardo + Organic Maps usa la tua posizione geografica in background per registrare il tuo percorso effettuato più di recente. - Organic Maps è un\'applicazione gratuita e open-source di mappe offline. Nessuna pubblicità. Nessun tracciamento. Se vedi un errore sulla mappa, correggilo in OpenStreetMap. Il progetto è creato da appassionati nel nostro tempo libero, quindi abbiamo bisogno del vostro parere e sostegno. + Organic Maps è un\'applicazione di mappe offline gratuita e open source. Nessuna pubblicità. No tracciabilità. Se vedi un errore sulla mappa, correggilo in OpenStreetMap. Il progetto è creato da appassionati nel nostro tempo libero, quindi abbiamo bisogno del tuo feedback e supporto. + Impostazioni generali Accetta Rifiuta - + Elenco Usare l\'Internet mobile per mostrare le informazioni dettagliate? Usa sempre @@ -498,28 +576,35 @@ Non usare mai Chiedi sempre Per visualizzare i dati sul traffico, le mappe devono essere aggiornate. - Aumenta caratteri sulla mappa + Aumenta dimensione carattere sulla mappa Aggiorna Organic Maps + + Per visualizzare i dati sul traffico, l\'applicazione deve essere aggiornata. Dati sul traffico non disponibili - Abilita i registri + Abilita registrazione Feedback generale - Acceso - Spento + On + Off Usiamo il TTS di sistema per le istruzioni vocali. Molti dispositivi Android utilizzano Google TTS, che puoi scaricare o aggiornare da Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) - Per alcune lingue, sarà necessario installare un altro sintetizzatore vocale o un language pack aggiuntivo dall\'app store (Google Play, Samsung Apps).\nApri le impostazioni del tuo dispositivo → Lingua e inserimento → Da testo a voce → Motore sintesi vocale.\nQui puoi gestire le impostazioni di sintesi vocale (ad esempio, scaricare una lingua per l\'utilizzo offline) e selezionare un altro motore di sintesi vocale. + Per alcune lingue, sarà necessario installare un altro sintetizzatore vocale o un language pack aggiuntivo dall\'app store (Google Play Market, Samsung Apps).\nApri le impostazioni del tuo dispositivo → Lingua e input → Riconoscimento vocale → Output sintesi vocale.\nQui puoi gestire le impostazioni di sintesi vocale (ad esempio, scaricare un language pack per l\'utilizzo offline) e selezionare un altro motore di sintesi vocale. Per maggiori informazioni, consulta questa guida. - Trascrizione in latino - Scopri di più - Uscita + Traslitterazione in latino + Ulteriori informazioni + Esci Aggiungi un punto di partenza per pianificare un percorso Aggiungi un punto di arrivo per pianificare un percorso - Uscita + Esci + Gestisci percorso + Pianifica Rimuovi + Trascina qui per rimuovere Aggiungi sosta - Problema di accesso alla memoria - Archivio esterno non disponibile, probabilmente la scheda SD è stata rimossa, è danneggiata o il file system è di sola lettura. Controllala o contattaci su support\@organicmaps.app + Parti da + Ops, si è verificato un errore. Prova a ripetere l\'accesso più tardi. + Problema di accesso all\'archivio + Archivio esterno non disponibile, probabilmente la scheda SD è stata rimossa, è danneggiata o il file system è di sola lettura. Controllala e contattaci su support\@organicmaps.app Simula archivio danneggiato Ingresso Inserisci un nome corretto @@ -527,93 +612,141 @@ Nascondi tutto Mostra tutto - Crea un nuovo elenco - - Importa luoghi preferiti + + %d preferiti + + Crea una nuova lista + Nascondi schermata + %1$s (%2$s di %3$s) + Download di %s… + Applicazione di %s… Impossibile condividere a causa di un errore dell\'applicazione Errore di condivisione - Impossibile condividere un elenco vuoto + Impossibile condividere una lista vuota Il nome non può essere vuoto - Inserire il nome dell\'elenco - Nuovo elenco + Si prega di inserire il nome della lista + Nuova lista Questo nome è già stato scelto - Scegliere un altro nome - Attendere… + Si prega di scegliere un altro nome + Questo nome è troppo lungo + Attendere prego… Numero di telefono Profilo OpenStreetMap + Nuovi file rilevati %d file è stato trovato. Lo vedrai dopo la conversione. - %d file trovati. Li vedrai dopo la conversione. + %d file trovati Li vedrai dopo la conversione. + Convertire + Errore + Alcuni file non sono stati convertiti. + Ripristina questa versione? Nessuna connessione internet + Si è verificato un errore sconosciuto + Ristabilire - %d oggetto - %d oggetti + %d luogo - %d luogo %d luoghi - %d percorso - %d percorsi + %d tracce - Impostazioni percorso - Rapporto d\'arresto - Potremmo utilizzare i tuoi dati per migliorare l\'esperienza di Organic Maps. Le modifiche avranno effetto dopo aver riavviato l\'app. - Riservatezza + Impostazioni di tracciamento + Rapporto incidenti + Potremmo utilizzare i tuoi dati per migliorare l\'esperienza Organic Maps. Le modifiche avranno effetto dopo il riavvio dell\'applicazione. + Politica sulla riservatezza Condizioni d\'uso Traffico Metropolitana Livelli mappa La mappa della metropolitana non è disponibile - Questo elenco è vuoto - Per aggiungere un luogo preferito, tieni premuto un punto sulla mappa e poi tocca l\'icona a forma di stella + Questa lista è vuota + Per aggiungere un segnalibro, toccare un punto sulla mappa e successivamente toccare l\'icona a forma di stella …altro + Si è verificato un errore Esportare il file Impostazioni elenco Cancella elenco + Nascondere sulla mappa Accesso pubblico Accesso privato - Scrivi una descrizione (testo o html) + Aggiungere la descrizione (testo o html) Personale - Autovelox + Si è verificato un errore durante il caricamento dei tag. Si prega di riprovare + Scaricare + Autovelox o Tutor Auto Sempre Mai Descrizione luogo - Scaricamento mappe - Risparmio energetico + Caricamento mappe + Auto - Avvisare di autovelox in caso di rischio eccesso velocità\nSempre - avvisare sempre di autovelox\nMai - Non avvisare mai di autovelox + Modalità di risparmio energetico In modalità di risparmio energetico l\'applicazione disattiva alcuni funzioni che hanno un impatto sulla batteria a secondo della carica restante Mai - Automatico + Auto Massimo risparmio energetico - L\'opzione attiva i registri per scopi diagnostici. Può essere utile al nostro team per risolvere i problemi dell\'app. Abilita temporaneamente questa opzione per registrare e inviarci registri dettagliati sul tuo problema. + Questa opzione si attiva per registrare tutte le azioni ai fini diagnostici. Ciò aiuta il nostro staff ad ottimizzare il funzionamento dell\'applicazione. Attiva l\'opzione sulla richiesta dello staff di suporto di Organic Maps. Modifica online Impostazioni di deviazione Evitare in tutti i percorsi Strade a pedaggio - Strade non asfaltate + Strade sterrate Traghetti Autostrade - Impossibile elaborare il percorso - Purtroppo non siamo riusciti a trovare un percorso, probabilmente a causa delle opzioni che hai scelto. Si prega di cambiare le impostazioni e riprovare. - Definire le strade da evitare - Opzioni di deviazione abilitate + Impossibile pianificare percorso + Impossibile creare percorso con modalità prescelte. Modifica impostazioni e riprova + Impostare modalità di deviazione + Impostazioni di deviazione abilitate Strada a pedaggio - Strada non asfaltata + Strada sterrata Traghetto Evitare strade a pedaggio - Evitare le strade non asfaltate + Evitare strade sterrate Evitare i traghetti + Si parte + Meta + Centrare + Risultati di ricerca + Avanti + Vuoi modificare il percorso? + + No + Sei giunto a destinazione! + Tastiera non disponibile in movimento + Impossibile creare percorso dal punto di partenza selezionato + Impossibile creare percorso per raggiungere la destinazione Scegli un\'altra destinazione + Segnale GPS assente. Procedi su terreno aperto + Impossibile trovare percorso. Scegli altre tappe + Per creare percorso scarica mappe mancanti sul proprio dispositivo + Si è verificato un errore. Riavviare l\'applicazione + Il percorso verrà impostato dalla tua posizione corrente + Il percorso verrà modificato in modalità Auto Ok + No sterrati + No sterrati + No traghetti + No traghetti + No pedaggi + Senza pedaggi + Autovelox + Info autovelox + Scarica l\'applicazione Organic Maps sul tuo smartphone + %s uscita Ordina… - Ordina i preferiti + Ordina i segnalibri + + Ordina per default + Ordina per tipo + Ordina per distanza + Ordina per data - Predefinito + Per default Per tipo @@ -625,7 +758,7 @@ Più di un mese fa Più di un anno fa Vicino a me - Altro + Altri Cibo Luoghi d\'interesse Musei @@ -641,29 +774,43 @@ Stazione di servizio Acqua Farmacia - Cerca nell\'elenco + Cerca nella lista Luoghi di culto - Seleziona l\'elenco - La navigazione in metropolitana in questa regione non è ancora disponibile + Scegli la lista + L\'utilizzo della metro non è ancora disponibile in questa regione Percorso della metro non trovato - Scegli un punto di partenza o di arrivo più vicino a una stazione della metropolitana + Seleziona il punto iniziale o finale del percorso più vicino alla stazione della metro Terreno Per utilizzare la modalità topografica, aggiornate o scaricate la mappa dell\'area interessata La modalità topografica per questa regione non è ancora disponibile - Salita + Livello di difficoltà + Facile + Moderato + Difficile + Ascesa Discesa Altitudine minima Altitudine massima Difficoltà - Dist.: + Dist. Tempo: Ingrandisci mappa per vedere l\'isolinea - Scarica la mappa del mondo - Errore di connessione - Scollegare il cavo USB + Aggiornamento in corso + Caricamento + Informazioni importanti Consenti allo schermo di dormire - Quando è abilitato, lo schermo si spegnerà dopo un periodo di inattività. + Quando abilitato, lo schermo potrà dormire dopo un periodo di inattività. + + Aggiorna le mappe scaricate + + Aggiornamento mappe mantiene aggiornate le informazioni sugli oggetti + + Aggiorna (%s) + + Aggiorna manualmente più tardi + + Traccia Funivia @@ -880,8 +1027,6 @@ Telefono di emergenza Ingresso Laboratorio Medico - - Fermata Strada in costruzione Sentiero @@ -980,22 +1125,6 @@ Via Via Via - Sentiero - Via - Via - Sentiero - Via - Via - Via - Via - Via - Via - Sentiero - Via - Via - Via - - Sito archeologico Castello Castello @@ -1083,16 +1212,16 @@ Operatore di telefonia mobile Città Capitale - Città - Città + Capitale + Capitale Capitale - Città - Città - Città - Città - Città - Città - Città + Capitale + Capitale + Capitale + Capitale + Capitale + Capitale + Capitale Continente Paese Contea diff --git a/android/res/values-iw/strings.xml b/android/res/values-iw/strings.xml deleted file mode 100644 index 41259fb458..0000000000 --- a/android/res/values-iw/strings.xml +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - - חזור - - בטל - - מחק - הורד קבצי מפות - - הורדת הקובץ נכשלה. לחץ שוב לניסיון נוסף - - מוריד…. - - ק\"מ - - מפות - - מ\"ב - - מיקומי - - מאוחר יותר - - חפש במפה - - שרותי המיקום של מכשיר או ישום זה זה כבויים. הכנס ל \"הגדרות\" Settings)) כדי להדליקם. - - הורדנכשלה - - נסה שוב - הגדרות תקשורת - סגור - נדרש מאיץ חומרה OpenGL. לצערינו מכשיר זה אינו נתמך. - הורד - אנא נתק כבל USB או הכנס כרטיס זכרון כדי להשתמש ב Organic Maps. - אנא פנה שטח אחסון על ה SD card/USB כדי להשתמש בישום - אין מספיק זכרון כדי להפעיל הישום - תחילה, נוריד למכשירך מפה כללית של העולם.\nדורש %s של נתונים. - עבור למפה - מוריד %s. תוכל עתה\nלהמשיך למפה. - להוריד %s? - לעדכן %s? - - הפסק - - המשך - - %s ההורדה נכשלה - - הוסף קבוצה חדשה - - צבע רשימת האתרים - - שם רשימת האתרים - - רשימות אתרים - - המקומות שלי - - שם - - כתובת - - קבוצה - - הגדרות - - בחר הכתובת במחשבך לשמירת המפות שתוריד - - להעביר המפות? - - פעולה זו יכולה להמשך מספר דקות.\nהמתן בבקשה… - - יחידות מדידה - - בחר בין מיילים לקילומטרים - - - - תחבורה - - גז - - חניה - - מלון - - נקודות עיניין - - בידור - - כספומט - - בנק - - בית מרקחת - - בית חולים - - שירותים - - דואר - - משטרה - - הערות - - משותפתOrganic Maps רשימת אתרי - - טוען רשימות אתרים - - רשימת האתרים הועלתה בהצלחה! תוכל למצוא אותה על המפה או במסך נהול רשימות האתרים. - - טעינת רשימת האתרים נכשלה. יתכן שהקובץ פגום. - - ערוך - - מיקומך לא אותר עדיין - - . פעילה כרגע מצטערים, הגדרת \"שמירת מפה\" אינה - - הודת מפת המדינה מתבצעת כרגע. - - . אין ברשותך מפות לא מקוונות? הורד Organic Maps! %1$s or %2$s הי, בדוק את מיקומי הנוכחי ב. https://omaps.app/get הורד אותן מ: - - הי, בדוק את הסיכה שלי במפה של Organic Maps! - - היי, בדקו את המיקום הנוכחי שלי במפה של Organic Maps! - - הי, n\nI\ אני כאן: %1$s. הקש על הלינק %2$s או על %3$s כדי לראות את המקום על המפה. \n\n תודה. - - הפץ - - הועתקו לזכרון זמני %1$s - - בוצע - - האם הנך בטוח שרצונך להמשיך? - - נתיבים - - אורך - שתף את מקומי - כפתורי זום - הצג על המסך - ראה במפה - - דרגו את האפליקציה - - עזרה - - תובושתו תולאש - - כיצד לתמוך בנו? - - זכויות יוצרים - - דווחו על באג - - בטל הכול - - נוסף/ו לתור - - ניתן ליצור רק מסלולים שמוכלים במלואם בתוך מפה אחת. - - הורידו את המפה - - מחק מפה - - עדכן מפה - - כן - - - בעת נסיעה לאורך המסלול, שים לב לדברים הבאים: - — תנאי הכביש, חוקי התנועה והתמרורים תמיד מקבלים עדיפות על פני הנחיות הניווט; - — ייתכנו אי-דיוקים במפה, וייתכן כי המסלול המוצע אינו תמיד הדרך המיטבית להגעה אל היעד; - — יש לראות במסלולים המוצעים המלצה בלבד; - שמור על ערנות ועל הבטיחות בכביש! - בדוק אות GPS - לא ניתן ליצור מסלול. לא ניתן לזהות את קואורדינטות ה-GPS הנוכחיות. - בדוק את אות ה-GPS שלך. הפעלת ה-Wi-Fi תשפר את הדיוק בזיהוי המיקום שלך. - הפעל שירותי מיקום - לא ניתן לאתר קואורדינטות GPS נוכחיות. הפעל שירותי מיקום כדי לחשב מסלול. - לא ניתן לאתר מסלול - לא ניתן ליצור מסלול. - כוונן את נקודת ההתחלה או היעד שלך. - כוונן נקודת התחלה - לא נוצר מסלול. לא ניתן לאתר את נקודת ההתחלה. - בחר נקודת התחלה הקרובה יותר לכביש כלשהו. - כוונן יעד - לא נוצר מסלול. לא ניתן לאתר את היעד. - בחר נקודת יעד הקרובה יותר לכביש כלשהו. - שגיאת מערכת - לא ניתן ליצור מסלול עקב שגיאת אפליקציה. - נסה שוב - האם ברצונך להוריד את המפה וליצור מסלול מיטבי יותר, הכולל יותר מאשר מפה אחת? - הורד את המפה כדי ליצור מסלול מיטבי יותר, החוצה את הגבול של מפה זו. - - - על מנת להתחיל לחפש וליצור מסלולים, הורידו בבקשה את המפה ולא תזדקקו יותר לחיבור לאינטרנט. - בחרו את המפה - יום ולילה - - Organic Maps היא אפליקציית מפות לא מקוונות בחינם ובקוד פתוח. ללא פרסומות. אין מעקב. אם אתה רואה שגיאה במפה, אנא תקן אותה ב-OpenStreetMap. הפרויקט נוצר על ידי חובבים בזמננו הפנוי, אז אנו זקוקים למשוב ולתמיכה שלכם. - תעתיק ללטינית - אפשר למסך לישון - - כאשר מופעל המסך יורשה לישון לאחר תקופה של חוסר פעילות. - - - מטבח אפריקאי - מטבח אמריקאי - מטבח ערבי - מטבח ארגטינאי - מטבח אסיאתי - מטבח אוסטרי - בייגל - מטבח בלקני - ברביקיו - מטבח של בוואריה - קערת בשר בקר - מטבח ברזילאי - ארוחת בוקר - המבורגר - בושנשאנק - עוגה - מטבח קריבי - עוף - מטבח סיני - הֶפָק - קרפ - מטבח קרואטי - קארי - מעדנייה - דיינר - דונאט - מטבח אתיופי - מטבח פיליפיני - אכילה במסעדות יוקרה - דגים - פיש אנד צ\'יפס - מטבח צרפתי - פריטורה - מטבח גיאורגי - מטבח גרמני - מטבח יווני - גריל - הויריגר - נקניקיה - מטבח הונגרי - גלידה - מטבח הודי - מטבח אינדונזי - מטבח בינלאומי - מטבח אירי - מטבח איטלקי - מטבח איטלקי;פיצה - מטבח יפני - קבב - מטבח קוריאני - מטבח לאו - מטבח לבנוני - מטבח מקומי - מלגאסי - מטבח מלזי - מטבח ים-תיכוני - מטבח מקסיקני - מטבח מרוקאי - אטריות - מטבח מזרחי - פנקייק - פסטה - מטבח פרסי - מטבח פרואני - פיצה - מטבח פולני - מטבח פורטוגלי - ראמן - מטבח אזורי - מטבח רוסי - סנדוויץ\' - נקניק - חביתיות טעימות - מאכלי ים - אטריות סובה - מטבח ספרדי - סטייקיה - סושי - טאפאס - תה - מטבח תאילנדי - מטבח תורכי - מטבח טבעוני - מטבח צמחוני - מטבח וייטנאמי - תיאופר הדבעמ - - - אגן מים - קינקיפ ןחלוש - מאגר - אגן מים - גוף מים - diff --git a/android/res/values-ja/strings.xml b/android/res/values-ja/strings.xml index f5eb11b2eb..858c797c4a 100644 --- a/android/res/values-ja/strings.xml +++ b/android/res/values-ja/strings.xml @@ -8,6 +8,8 @@ 戻る キャンセル + + ダウンロードをキャンセル 削除 マップをダウンロード @@ -17,6 +19,8 @@ ダウンロード中… キロメートル + + 評価する マップ @@ -29,14 +33,19 @@ 検索 マップを検索 + + はい 端末の位置情報サービスが無効になっているか、このアプリケーションからの位置情報利用が制限されています。端末の設定を有効化してください。 地図に表示 + + 地図をダウンロード のダウンロードに失敗しました 再実行 + Organic Mapsについて 接続設定 閉じる ハードウェアアクセラレーションされたOpenGLが必要です。残念ながらご利用中のデバイスではサポートされていません。 @@ -61,6 +70,8 @@ ブックマーク表示色 ブックマークセット名称 + + ブックマークセット ブックマーク @@ -69,8 +80,8 @@ 名称 住所 - - 一覧 + + セット 設定 @@ -85,43 +96,41 @@ 距離計測単位 マイルまたはキロメートルを選択 - - - + 食事場所 - + 食料雑貨 - + 交通機関 - + ガソリンスタンド - + 駐車場 - + ショッピング - + ホテル - + 観光 - + エンターテイメント - + ATM - + ナイトライフ - + 家族の休日 - + 銀行 - + 薬局 - + 病院 - + トイレ - + 郵便局 - + 警察 メモ @@ -153,8 +162,12 @@ Eメール クリップボードにコピーしました: %1$s + + 情報 完了 + + バージョン: %s 本当に続けますか? @@ -183,6 +196,10 @@ 音声言語 利用不可 + + その他 + + 最近の移動経路 自動ズーム オフ 1時間 @@ -190,6 +207,8 @@ 6時間 12時間 1日 + 移動経路を一定期間記録し、地図上で確認できるようにします。注意:この機能を有効にすると、バッテリーの消費量が増えます。表示期間が終了すると、走行軌跡は地図から自動的に削除されます。 + 距離 地図に表示 ウェブサイト @@ -207,6 +226,12 @@ 著作権 バグを報告 + + このメールクライアントはセットアップされていません。設定するか、他の方法で%sにご連絡ください。 + + メール送信エラー + + コンパスの調整 無線LAN @@ -215,12 +240,19 @@ すべてキャンセル ダウンロード済み + + 利用可能 待ち行列型の 付近 地図 全てをダウンロード ダウンロード中: + 見つかりました + + を更新 + + 失敗 地図を削除するにはナビゲーションを停止してください。 @@ -235,12 +267,22 @@ 地図を更新 現在のロケーションを取得するためにGoogle Playのサービスを使う + + たった今アプリを評価したところです + + よろしくお願いします! + + 皆様のためにアプリを改善できるよう、アイディアや問題点を教えてください。 + + フィードバックを送信 ルート上の地図をダウンロード ルートの作成には現在位置から目的地までのすべての地図をダウンロードし、最新のものにする必要があります。 空き容量が足りません + + お気に入り 位置情報サービスを有効化してください 保存 @@ -293,6 +335,8 @@ GPS信号をご確認ください。Wi-Fiを有効にするとより正確な位置情報を取得できます。 位置情報サービスを有効にしてください 現在地のGPSコードを確認できません。案内ルートを作成するには、位置情報サービスを有効にしてください。 + 必要なファイルをダウンロードしてください + 案内ルートを作成するには、表示されたパスに従ってすべてのマップ、ルート情報をダウンロード、アップデートしてください。 ルートの位置を確認できません 案内ルートを作成できません。 出発地または目的地の位置調整をしてください。 @@ -307,6 +351,7 @@ システムエラー アプリケーションのエラーにより案内ルートを作成できませんでした。 もう一度お試しください + あとで マップをダウンロードし、複数マップを利用してより最適なルートを作成しますか? このマップの境界を越えて複数マップを利用し、より最適なルートを作成するには、マップをダウンロードしてください。 @@ -317,8 +362,17 @@ 表示する 隠す + + ルート検索に失敗 到着予定: %s + + ルートを作成するには、ルートの通過する地図を全てダウンロード・アップデートしてください。 + このアプリが好きですか? + Organic Mapsをご使用いただきありがとうございます。アプリの評価をお願いいたします。皆様からのフィードバックはアプリの改善に役立つものです。 + やったー! 相思相愛! + ありがとうございます。頑張ります! + 改善のためのアイデアはございますか? カテゴリー 履歴 閉鎖 @@ -349,6 +403,8 @@ 値の例 間違いの訂正 現在位置 + 世界地図を変更しました。この変更を秘密にしないでください! 友達に教えて一緒に編集しましょう。 + 友達にシェア OpenStreeMapコミュニティがエラーを修正できるよう、問題の詳細を説明してください。 または、このURLでご自身で修正してください https://www.openstreetmap.org/ 送信 @@ -358,20 +414,29 @@ 重複している場所 自動ダウンロード + 現在閉店 + 毎日 昼と夜 本日終業 終業 今日は + 営業時間を追加 営業時間を編集 OpenStreetMapのアカウントがありませんか? 登録 + パスワード(最低8文字) + ユーザー名またはパスワードが無効です。 ログイン パスワード パスワードをお忘れですか? + OSMアカウント ログアウト + + 最終更新 ありがとうございます 場所を編集 + 場所の名前 言語を追加 通り @@ -386,16 +451,22 @@ 料理を選択 メールアドレスまたはユーザー名 + 電話 + ご注意ください この地図を削除すると、今まで行った変更の全ても一緒に削除されます。 地図をアップデート ルートを作成するには、全ての地図をアップデートした後で再びルート計画を行う必要があります。 地図を検索 + ダウンロードエラー 設定をチェックし、デバイスがインターネットに接続されているか確認してください。 十分な空き容量がありません 不必要なデータを削除してください ログインエラー。 確認された変更 地図を操作してオブジェクトの正しい場所を選択します。 + カテゴリを選択 + 人気 + 全てのカテゴリ 編集中 追加中 場所の名前 @@ -403,8 +474,13 @@ 問題の詳細な説明 異なる問題 団体を追加 + アプリから直接地図に新しい場所を追加したり、既存の場所を編集できます。 + 位置を変更してください ここにはオブジェクトを配置できません 他のユーザーにも変更が表示されるようログインしてください。 + + ダウンロードするには空き容量がさらに必要です。不必要なデータを削除してください。 + Organic Mapsの地図を改善しました %2$d中%1$d 携帯通信ネットワークで接続してダウンロードしますか? @@ -422,6 +498,7 @@ あなたが提案した変更は、OpenStreetMapのコミュニティに送信されます。Organic Mapsで編集できない詳細を説明してください。 OpenStreetMapについての詳細 オペレーター + マイマップ マップをダウンロードしていません ロケーションの検索とオフラインナビゲートのためにマップをダウンロードしてください。 @@ -430,6 +507,14 @@ 現在地が不明です。建物の中やトンネル内の可能性があります。 続ける 止める + 現在地は不明です。 + お住まいの地域の検索中にエラーが発生しました。お使いのデバイスが正常に動作していることを確認してから再度試してください。 + 位置情報認識機能が無効になっています + デバイスの設定で位置情報へのアクセスを有効にしてください + 1. 設定を開きます + 2. 位置情報をタップします + + 3. アプリの使用中を選択してください m km キロメートル毎時 @@ -444,29 +529,43 @@ 予約 コール ブックマークを編集 + ブックマーク名 + パーソナルメモ + ブックマークを削除 + あなたの提案の変更が送信されました コメント… すべてのローカルの変更をリセットしますか? リセット 追加された場所を削除しますか? 削除 存在しない場所 + …続き 正しい電話番号を入力してください 有効なウェブアドレスを入力してください 有効なメールアドレスを入力してください + 更新 地図上に場所を追加 全てのユーザーに送信しますか? 個人情報を入力していないことを確認してください。 弊社で変更を確認します。質問がある場合はメールでご連絡します。 + 停止 + + 最近の走行ルートの記録を無効にしますか? + 無効にする + + ご覧ください + Organic Mapsは、あなたの位置情報をバックグラウンドで使用して最近の走行ルートを記録します。 Organic Mapsは、無料のオープンソースのオフラインマップアプリケーションです。広告なし。全く追跡しません。地図上にエラーが表示された場合は、OpenStreetMapで修正してください。プロジェクトは私たちの自由な時間に愛好家によって作成されているため、フィードバックとサポートが必要です。 + 一般設定 了解 拒否 - + 一覧 モバイルインターネットを使用して詳細な情報を表示しますか? 常に使用 @@ -479,6 +578,8 @@ 交通データを表示するには、地図を更新する必要があります。 地図上のフォントサイズを大きく Organic Maps をアップデートしてください + + 交通データを表示するには、アプリケーションをアップデートする必要があります。 交通データは利用できません ログを有効化 @@ -495,8 +596,13 @@ ルートを計画するには出発地点を追加してください ルートを計画するには到着地点を追加してください 終了 + ルートを編集 + 適用する 削除 + ここにドラッグして削除 経由地点を追加 + 開始位置 + エラーが発生しました。もう一度サインインしてみてください。 ストレージアクセスの問題 外部ストレージは使用できません。おそらく SD カードが取り外されたか、破損している、あるいはファイルシステムが読み取り専用になっています。確認後、support\@organicmaps.app までご連絡ください。 壊れたストレージをエミュレート @@ -506,7 +612,14 @@ すべて非表示 すべて表示 + + %d個のブックマーク + 新しいリストを作成する + 画面を非表示 + %1$s (%2$s / %3$s) + %s をダウンロードしています… + %s を適用中です… アプリケーションエラーのため共有できません 共有エラー 空のリストは共有できません @@ -515,13 +628,21 @@ 新しいリスト この名前はすでに使用されています 別の名前を選んでください + この名前は長すぎます お待ちください… 電話番号 OpenStreetMap プロフィール + 新しいファイルが検出されました %d ファイルが見つかりました。 あなたは変換後にそれらを見るでしょう。 + 変換 + エラー + 一部のファイルは変換されませんでした。 + このバージョンを復元しますか? インターネット接続なし + 不明なエラーが発生しました + リストア %dの場所 @@ -543,13 +664,17 @@ このリストは空です ブックマークを追加するには、地図上の場所をタップし、星のアイコンをタップします。 詳細 + エラーが発生しました ファイルのエクスポート リスト設定 リスト削除 + マップから隠す パブリック・アクセス 制限されたアクセス 説明(テキストまたはhtml)を記入してください 非公開 + タグのロード中にエラーが起きました。もう一度やり直してください + ダウンロード 自動速度違反取締装置 自動 常時 @@ -557,6 +682,7 @@ 場所の説明 マップダウンローダー + 自動-速度制限超過の危険性がある場合には、自動速度違反取締装置について警告します\n常時-自動速度違反取締装置について常に警告します\n無効-自動速度違反取締装置を警告しません 電力節約モード 自動モードが選択されている場合、このアプリケーションは現在のバッテリーの充電状態に応じてバッテリー消費の激しい機能の無効化を開始します 無効 @@ -580,11 +706,44 @@ 有料道路を回避 未舗装道路を回避 フェリー航路を回避 + レッツゴー + 目的地 + リセンター + 検索結果 + その後 + ルートを再構築しますか? + はい + いいえ + 到着しました! + 運転中はキーボードを使用する事はできません + 現在位置からはルートを構築できません + 目的地へのルートは構築できません。別の地点を選択してください + GPS信号がありません。開けた場所へ移動してください + ルートが構築できません。別のルート地点を設定して下さい + ルートを作成するには、地図に表示されていない部分を端末でダウンロードします + エラーが発生しました。アプリを再起動してください + ルートは現在位置から再構築されます + ルートは自動車用として修正されます OK + 未舗装道路無し + 未舗装道路無し + フェリー無し + フェリーを回避 + 有料道路無し + 有料道路を回避 + 速度警告 + 速度警告 + あなたの機器のOrganic Mapsのアプリにマップをダウンロードしてください + 第%s出口 並び替え中… ブックマークの並び替え + + デフォルトで並び替え + タイプで並び替え + 距離で並び替え + 日付で並び替え デフォルトで @@ -623,6 +782,10 @@ 地形 トポグラフィーレイヤーを有効化して使用するには、このエリアのマップを更新もしくはダウンロードしてください トポグラフィーレイヤーはこの地域ではまだ利用できません + 難易度 + イージー + ノーマル + ハード 上昇 下降 最小高度 @@ -631,9 +794,22 @@ 距離: 時間: 等高線を調べるためにズームインしましょう + 更新中 + ダウンロード中 + 重要情報 画面をスリープ状態にする 有効にすると、画面は一定時間非アクティブになった後もスリープ状態になります。 + + ダウンロード済みのマップを更新してください + + 地図を更新することで物件情報を最新の状態に保ちます + + 更新 (%s) + + あとで手動で更新 + + トラック 索道 @@ -882,8 +1058,6 @@ 緊急電話 エントランス 医療研究所 - - 道路 馬道 馬道(橋) @@ -993,23 +1167,6 @@ ストリート ストリート ストリート - 自転車道 - 歩道 - ストリート - ストリート - 歩道 - ストリート - ストリート - ストリート - ストリート - ストリート - ストリート - 歩道 - ストリート - ストリート - ストリート - - 史跡 考古遺跡 古戦場 @@ -1162,16 +1319,16 @@ 地名 首都 - - + 首都 + 首都 首都 - - - - - - - + 首都 + 首都 + 首都 + 首都 + 首都 + 首都 + 首都 大陸 diff --git a/android/res/values-ko/strings.xml b/android/res/values-ko/strings.xml index ac3b576cb1..2fdac9a638 100644 --- a/android/res/values-ko/strings.xml +++ b/android/res/values-ko/strings.xml @@ -8,6 +8,8 @@ 뒤로 취소하기 + + 다운로드 취소하기 삭제하기 지도 다운로드받기 @@ -17,6 +19,8 @@ 다운로드 중… 킬로미터 + + 평 남기기 지도 @@ -29,14 +33,19 @@ 검색하기 지도 검색하기 + + 현재 이 장치나 애플리케이션을 위한 전 위치 서비스를 불능시키셨습니다. 설정에서 이를 작동시켜 주시기 바랍니다. 지도에 표시 + + 지도 다운로드 다운로드에 실패하였습니다 다시 시도 + 소개 연결 설정 닫기 하드웨어 촉진 OpenGL이 요구됩니다. 애석하게도 귀하의 장치는 지원되지 않습니다. @@ -61,6 +70,8 @@ 색상 즐겨찾기에 추가 집합 이름을 즐겨찾기에 추가 + + 세트를 즐겨찾기에 추가 북마크 @@ -69,8 +80,8 @@ 이름 주소 - - 목록 + + 집합 설정 @@ -85,43 +96,41 @@ 측정 단위 마일과 킬로미터 중에서 선택하십시오 - - - + 어디서먹을까 - + 식료품들 - + 수송 - + 연료 - + 주차 - + 쇼핑 - + 호텔 - + 관광 - + 엔터테인먼트 - + ATM - + 유흥 - + 가족 기념일 - + 은행 - + 약국 - + 병원 - + 화장실 - + 우편 - + 치안대 메모 @@ -155,8 +164,12 @@ 이메일 클립보드에 복사됨: %1$s + + 정보 완료 + + 버전: %s 계속하겠습니까? @@ -185,6 +198,10 @@ 음성 언어 사용할 수 없음 + + 다른 언어 + + 최근 추적 자동 줌 선택 안 함 1시간 @@ -192,6 +209,8 @@ 6시간 12시간 1일 + 특정 기간 동안 이동된 경로를 기록하고 지도에서 그 경로를 볼 수 있습니다. 참고: 이 기능을 활성화하면 배터리 사용량이 증가하게 됩니다. 시간 간격이 만료된 후 지도에서 해당 트랙이 자동으로 제거됩니다. + 거리 지도 보기 웹사이트 @@ -209,6 +228,12 @@ 저작권 오류 신고 + + 이메일 클라이언트가 설정되지 않았습니다. 이를 구성하거나 %s로 연락할 다른 방법을 사용하십시오. + + 메일 전송 중 오류 + + 나침반 보정 WiFi 인터넷 @@ -217,12 +242,19 @@ 모두 취소 다운로드 + + 사용 가능 대기 내 근처 지도 모두 다운로드 다운로드 중: + 검색 결과 + + 업데이트 + + 실패함 지도를 삭제하시려면 길 찾기를 멈추세요. @@ -237,12 +269,22 @@ 지도 업데이트 Google Play 서비스를 사용하여 현재 위치 정보 얻기 + + 앱 평가 완료 + + 감사합니다! + + 모든 아이디어나 문제를 공유하여, 사용자를 위한 앱을 향상시킬 수 있습니다. + + 의견 보내기 경로를 따라 지도 다운로드 경로를 만드는 것은 사용자의 위치에서의 모든 지도를 다운로드되고 업데이트된 대상으로 필요합니다. 여유 공간 부족 + + 북마크 위치 서비스를 작동시켜 주십시요. 저장 @@ -295,6 +337,8 @@ GPS 신호를 확인해주세요. Wi-Fi를 켜면 위치 정확도가 높아집니다. 위치 서비스 활성화 현재 GPS 좌표를 찾을 수 없습니다. 경로를 계산하려면 위치 서비스를 활성화하세요. + 필수 파일 다운로드 + 경로를 계산하려면 모든 지도와 예상 경로 정보를 다운로드하고 업데이트하세요. 경로를 찾을 수 없습니다 경로를 찾을 수 없습니다. 출발지나 목적지를 조정하세요. @@ -309,6 +353,7 @@ 시스템 오류 애플리케이션 오류로 인해 경로를 설정하지 못했습니다. 다시 시도해주세요. + 나중에 지도를 다운로드하여, 두 개 이상의 지도를 통과하는 더 최적화된 경로를 설정하시겠습니까? 이 지도의 경계를 통과하는 더 최적화된 경로를 설정하려면 지도를 다운로드하세요. @@ -319,8 +364,17 @@ 표시 숨기기 + + 경로 계획 실패 도착: %s + + 경로를 만들려면, 경로를 따라 모든 지도를 다운로드하고 업데이트하십시오. + 앱을 좋아하나요? + Organic Maps를 사용해 주셔서 감사합니다. 이 앱을 평가해 주십시오. 당신의 피드백은 이 앱을 더 낫게 만드는데 도움을 줍니다. + 야호! 저희는 당신도 사랑합니다! + 감사합니다. 최선을 다할 것입니다! + 더 낫게 만드는 아이디어가 있습니까? 범주 내역 닫음 @@ -351,6 +405,8 @@ 예제 입력 수정 위치 + 세계 지도를 변경했습니다. 이를 숨기지 마십시오! 친구에게 말하고, 이를 함께 편집합니다. + 친구들과 공유 OpenStreeMap 커뮤니티가 오류를 수정할 수 있도록 상세하게 문제를 설명하십시오. 아니면, 다음에서 스스로 가능: https://www.openstreetmap.org/ 전송 @@ -360,20 +416,29 @@ 중복된 장소 자동 다운로드 + 지금 닫힘 + 일별 24 시간 오늘 영업 종료됨 종료됨 오늘 + 영업일 추가 영업일 편집 OpenStreetMap에서 계정이 없습니까? 등록 + 암호(최소 8자) + 잘못된 사용자 이름 또는 암호. 로그인 암호 암호를 잊으 셨나요? + OSM 계정 로그 아웃 + + 마지막 업로드 고맙습니다. 장소 편집 + 지명 언어 추가 거리 @@ -388,16 +453,22 @@ 요리 선택 이메일 또는 사용자 이름 + 전화 + 참고 사항 모든 지도의 변경 사항은 지도와 함께 삭제됩니다. 지도 업데이트 경로를 만들려면, 모든 지도를 업데이트한 다음, 다시 경로를 계획해야 합니다. 지도 찾기 + 다운로드 오류 설정을 확인하고 장치가 인터넷에 연결되어 있는지 확인하십시오. 충분하지 않은 여유 공간 불필요한 데이터를 제거하십시오. 로그인 오류. 변경사항 승인 개체의 정확한 위치를 선택하려면 지도를 당깁니다. + 범주 선택 + 인기있는 + 모든 카테고리 편집 중 첨가 중 장소 이름 @@ -405,8 +476,13 @@ 문제에 대한 자세한 설명 다른 문제 조직 추가 + 지도에 새로운 장소를 추가하고 응용 프로그램에서 직접 기존 편집 할 수 있습니다. + 위치 변경 목적지를 이곳에서 찾을 수 없습니다 로그인하여 다른 사용자가 변경한 내용을 볼 수 있도록 하십시오. + + 다운로드하려면, 더 많은 여유 공간이 필요합니다. 불필요한 데이터를 삭제하십시오. + 나는 Organic Maps 지도를 향상함 %2$d중의 %1$d 셀룰러 네트워크 접속을 사용하여 다운로드하시겠습니까? @@ -424,6 +500,7 @@ 귀하가 제안한 변경 사항은 OpenStreetMap 커뮤니티로 전송됩니다. Organic Maps에서 편집할 수 없는 세부정보를 작성해 주세요. OpenStreetMap 정보 소유자 + 내 지도 지도를 다운로드하지 않았습니다 오프라인으로 위치를 검색하려면 지도를 다운로드하세요. @@ -432,6 +509,14 @@ 현재 위치를 알 수 없습니다. 건물 안이나 터널 안에서는 검색할 수 없습니다 계속 중지 + 현재 위치를 알 수 없습니다. + 위치 검색 중 오류가 발생했습니다. 장치가 올바르게 작동되는지 확인하고 다시 시도하세요. + 위치 식별 사용할 수 없음 + 장치 설정에서 위치 정보에 액세스할 수 있음 + 1. 설정 열기 + 2. 위치 누르기 + + 3. 앱 사용 중에 선택 m km km/시 @@ -446,29 +531,43 @@ 예약 전화 즐겨찾기 편집 + 즐겨찾기 이름 + 개인 메모 + 즐겨찾기 삭제 + 귀하의 제안 변경사항이 전송되었습니다 설명… 지역 변경 사항을 재설정하시겠습니까? 재설정 추가한 장소를 삭제하시겠습니까? 삭제 존재하지 않는 장소입니다. + …기타 올바른 전화 번호 입력 유효한 웹 주소 입력 유효한 이메일 주소 입력 + 최신 정보 지도에 장소 추가 이를 모든 사용자에게 전송하시겠습니까? 개인 정보를 입력하지 않았는지 확인하십시오. 저희가 변경 사항을 확인할 것입니다. 질문이 있으신 경우, 저희에게 이메일을 통해 연락하십시오. + 중지 + + 최근 여행한 경로 녹음을 비활성화하시겠습니까? + 비활성화 + + 체크아웃 + Organic Maps는 최근 여행한 경로를 녹음하기 위해 배경 화면에서 지역 위치 서비스를 사용합니다. Organic Maps는 무료 오픈 소스 오프라인 지도 애플리케이션입니다. 광고 없음. 추적이 없습니다. 지도에 오류가 표시되면 OpenStreetMap에서 수정하세요. 이 프로젝트는 여가 시간에 열광자들에 의해 만들어지므로 여러분의 피드백과 지원이 필요합니다. + 일반 설정 동의 거부 - + 목록 모바일 인터넷을 사용하여 자세한 정보를 표시하시겠습니까? 항상 사용 @@ -481,6 +580,8 @@ 교통 데이터를 표시하려면 지도를 업데이트해야 합니다. 지도에서 글꼴 크기 늘리기 Organic Maps를 업데이트하세요. + + 교통 데이터를 표시하려면 응용 프로그램을 업데이트해야 합니다. 교통 데이터를 사용할 수 없습니다 로깅 사용 @@ -497,8 +598,13 @@ 경로 계획을 세우기 위한 시작 지점을 추가하세요 경로 계획을 세우기 위한 끝 지점을 추가하세요 끝내기 + 경로 관리 + 계획 제거 + 여기로 끌어와서 제거 스톱 추가 + 시작 위치: + 죄송합니다. 오류가 발생했습니다. 다시 로그인해 보세요. 저장소 액세스 문제 외부 저장소를 사용할 수 없습니다. SD 카드가 제거되었거나 손상되었거나 파일 시스템이 읽기 전용일 수 있습니다. 확인 후 support\@organicmaps.app로 문의하세요. 불량 저장소 에뮬레이션 @@ -508,7 +614,14 @@ 모두 숨기기 모두 표시 + + %d 북마크 + 새 목록 만들기 + 화면 숨기기 + %1$s(%2$s / %3$s) + %s 다운로드 중… + %s 적용 중… 애플리케이션 오류로 인해 공유할 수 없습니다 공유 오류 빈 목록을 공유 할 수 없습니다 @@ -517,13 +630,21 @@ 새 목록 이 이름은 이미 사용 중입니다. 다른 이름을 선택하십시오. + 이 이름이 너무 깁니다. 잠시만 기다려주십시오… 전화 번호 OpenStreetMap 프로필 + 새 파일이 감지되었습니다. %d 파일을 찾았습니다. 회심 후 그들을 볼 수 있습니다. + 변하게 하다 + 오류 + 일부 파일은 변환되지 않았습니다. + 이 버전을 복원 하시겠습니까? 인터넷에 연결되지 않음 + 알 수없는 오류가 발생했습니다 + 복원 %d 장소 @@ -545,13 +666,17 @@ 이 목록은 비어있습니다. 북마크를 추가하려면 맵에서 장소를 탭하고 별 모양 아이콘을 탭하세요. …기타 정보 + 오류가 발생했습니다. 파일 내보내기 목록 세팅 리스트 삭제 + 지도에서 숨기기 일반 접근 제한 접근 묘사를 적으세요 (글자 혹은 html) 개인 + 태그를 불러오는 중 에러가 발생했습니다. 다시 시도해보세요 + 다운로드 속도 감시 카메라 자동 항상 @@ -559,6 +684,7 @@ 장소 묘사 맵 다운로더 + 자동 - 속도 제한 초과 위험이 있을때 스피드캠에 대해 경고하기\n항상 - 스피드캠에 대해 항상 경고하기\n절대 아님 - 스피드캠에 대해 경고하지 않기 전력 절약 모드 자동 모드가 선택되면 어플리케이션은 현재 배터리 충전 정도에 따라 배터리를 많이 쓰는 기능이 불가하게 됩니다 안함 @@ -582,11 +708,44 @@ 유료 도로 피하기 비포장 도로 피하기 여객선 횡단길 피하기 + 가자 + 목적지 + 내 위치 조정하기 + 검색 결과 + 그 다음 + 루트를 재구축하길 원하시나요? + + 아니오 + 도착했습니다! + 운전 중에는 키보드를 사용할 수 없습니다 + 현재 위치에서 루트를 만들 수 없습니다 + 목적지 경로를 만들 수 없습니다. 다른 지점을 선택해주세요 + GPS 신호가 없습니다. 열린 장소로 이동해주세요 + 루트를 만들 수 없습니다. 또 다른 루트 지점을 지정해주세요 + 루트를 만들려면, 빠진 맵을 기기에 다운로드하세요 + 오류 발생. 어플리케이션을 재실행해주시길 바랍니다 + 루트가 귀하의 현재 위치로부터 재생성됩니다 + 루트가 차량에 맞춰 수정됩니다 OK + 비포장 도로 없음 + 비포장 도로 없음 + 여객선 없음 + 여객선 없음 + 유료 도로 없음 + 유료 도로 없음 + 속도단속 카메라 + 속도단속 카메라 + Organic Maps 앱 안의 지도들을 디바이스에 다운로드하세요 + %s번 출구 분류… 북마크 분류하기 + + 기본 값으로 분류 + 유형으로 분류 + 거리로 분류 + 날짜로 분류 기본 값 @@ -625,6 +784,10 @@ 지형 지형 레이어를 활성화하고 사용하려면 해당 지역의 지도를 업데이트하거나 다운로드하십시오 이 지역의 지형 레이어는 아직 사용할 수 없습니다 + 난이도 + 쉬움 + 보통 + 어려움 올라가기 내려가기 산 최소 높이 @@ -633,9 +796,22 @@ 거리: 소비 시간: 등치선 탐색을 위한 확대 + 업데이트 중 + 다운로드 중 + 핵심 정보 화면 절전 모드 허용 활성화되면 일정 시간 동안 활동이 없으면 화면이 절전 모드로 전환됩니다. + + 다운로드한 지도를 업데이트해야 합니다 + + 지도를 업데이트하면 개체에 대한 정보가 최신 상태로 유지됩니다. + + 업데이트(%s) + + 나중에 수동으로 업데이트 + + 케이블카 역 @@ -859,8 +1035,6 @@ 긴급 전화 입구 의료 연구실 - - 버스 정류장 공사 중 도로 @@ -959,22 +1133,6 @@ 거리 거리 거리 - - 거리 - 거리 - - 거리 - 거리 - 거리 - 거리 - 거리 - 거리 - - 거리 - 거리 - 거리 - - 발굴 @@ -1063,16 +1221,16 @@ 이동통신 사업자 도시 수도 - 도시 - 도시 + 수도 + 수도 수도 - 도시 - 도시 - 도시 - 도시 - 도시 - 도시 - 도시 + 수도 + 수도 + 수도 + 수도 + 수도 + 수도 + 수도 대륙 나라 카운티 diff --git a/android/res/values-nb/strings.xml b/android/res/values-nb/strings.xml index e1b47404ad..f095cd64e2 100644 --- a/android/res/values-nb/strings.xml +++ b/android/res/values-nb/strings.xml @@ -8,6 +8,8 @@ Tilbake Avbryt + + Avbryt nedlasting Slett Last ned kart @@ -17,6 +19,8 @@ Laster ned … Kilometer + + Legg inn en vurdering Kart @@ -31,14 +35,19 @@ Søk Søk kart + + Ja Du har for øyeblikket deaktivert alle posisjonstjenester for denne enheten eller applikasjonen. Slå dem på i «Innstillinger». Vis på kartet + + Last ned kart Laster ned mislyktes Prøv på nytt + Om Organic Maps Tilkoblingsinnstillinger Lukk En maskinvareakselerert OpenGL kreves. Dessverre støttes ikke enheten din. @@ -63,6 +72,8 @@ Bokmerk farge Bokmerk settnavn + + Bokmerk sett Bokmerker @@ -71,8 +82,8 @@ Navn Adresse - - Liste + + Sett Innstillinger @@ -87,43 +98,41 @@ Måleenheter Velg mellom miles og kilometer - - - + Spisesteder - + Dagligvarer - + Transport - + Drivstoff - + Parkering - + Shopping - + Hotell - + Severdigheter - + Underholdning - + Minibank - + Nattliv - + Familieferie - + Bank - + Apotek - + Sykehus - + Toalett - + Post - + Politi Merknader @@ -157,8 +166,12 @@ E-post Kopiert til utklippstavlen: %1$s + + Informasjon Ferdig + + Versjon: %s Er du sikker på at du ønsker å fortsette? @@ -187,6 +200,10 @@ Talespråk Ikke tilgjengelig + + Andre + + Siste rute Automatisk zooming Av 1 time @@ -194,6 +211,8 @@ 6 timer 12 timer 1 dag + Det lar deg lagre ruten du har reist i en spesifikk periode og se den på kartet. Merk: Aktivering av funksjonen øker batteriforbruket. Ruten fjernes automatisk fra kartet når tidsintervallet utløper. + Avstand Vis på kartet Nettside @@ -211,6 +230,12 @@ Opphavsrett Rapporter en feil + + E-postklienten har ikke blitt konfigurert. Konfigurer den eller bruk en annen måte å kontakte oss på %s + + Feil ved sending av e-post + + Kompasskalibrering WiFi @@ -219,12 +244,19 @@ Avbryt alle Lastet ned + + Tilgjengelig Lagt i kø I nærheten Kart Last ned alle Laster ned: + Funnet + + Oppdatering + + Mislyktes Stans navigeringen for å slette kartet. @@ -239,12 +271,22 @@ Oppdater kart Bruk Google Play Services for å hente din nåværende posisjon + + Jeg har nettopp vurdert appen + + Tusen takk! + + Del ideer med oss eller still spørsmål, slik at vi kan forbedre appen for deg. + + Send tilbakemelding Last ned kart langs ruten Når du skal opprette en rute må du ha oppdatert alle kartene fra ditt ståsted til din destinasjon. Ikke nok ledig minne + + bokmerk Aktiver posisjonstjenester Lagre @@ -297,6 +339,8 @@ Sjekk GPS-signalet. Resultatet blir mer nøyaktig når du bruker wi-fi. Aktiver stedstjenester Nåværende GPS-koordinater ble ikke funnet. Aktiver stedstjenester for å beregne en rute. + Last ned nødvendige filer + Last ned og oppdater all kart- og ruteinformasjon langs den foreslåtte veien for å beregne ruten. Kunne ikke finne rute Kunne ikke finne rute. Endre startpunkt eller bestemmelsessted. @@ -311,6 +355,7 @@ Systemfeil En applikasjonsfeil førte til at ruten ikke kunne opprettes. Vennligst prøv igjen + Ikke nå Vil du laste ned kartet og lage en mer optimal rute som går over flere kart? Last ned kartet for å opprette en mer optimal rute som går utenfor dette kartet. @@ -321,8 +366,17 @@ Vis Skjul + + Mislykket ruteplanlegging Ankomme: %s + + Hvis du vil oppprette en rute, last ned og oppdater alle kartene langs ruten. + Liker du appen? + Takk for at du bruker Organic Maps. Vi setter stor pris på om du rangerer appen. Tilbakemeldinger hjelper oss med å bli bedre. + Hurra! Vi elsker deg også! + Tusen takk, vi skal gjøre vårt beste! + Noen tanker om hvordan vi kan forbedre den? Kategorier Historikk Stengt @@ -353,6 +407,8 @@ Eksempelverdier Rett feil Plassering + Du har endret verdenskartet. Ikke skjul denne! Fortell vennene dine, og rediger det sammen. + Del med venner Beskriv problemet detaljert slik at OpenStreetMap-samfunnet kan fikse feilen. Eller gjør det selv på https://www.openstreetmap.org/ Send @@ -362,20 +418,29 @@ Duplisert sted Automatisk nedlasting + Lukket nå + Daglig Dag og natt Fridag i dag Fridag I dag + Legg til åpningstider Rediger åpningstider Har du ingen konto hos OpenStreetMap? Registrer deg + Passord (minimum 8 tegn) + Ugyldig brukernavn eller passord. Logg inn Passord Glemt passordet? + OSM-konto Logg ut + + Siste opplasting Takk skal du ha Rediger stedet + Stedsnavn Legg til et språk Gate @@ -390,16 +455,22 @@ Velg matrett E-postadresse eller brukernavn + Telefon + Vær oppmerksom på at Alle endringer i kartet vil slettes sammen med kartet. Oppdater kart For å opprette en reiserute må du oppdatere alle kartene og deretter planlegge reiseruten på nytt. Finn kartet + Nedlastningsfeil Kontroller innstillingene dine og sørg for at enheten din er koblet til internett. Ikke nok plass Fjern unødvendig data Innloggingsfeil. Bekreftede endringer Dra kartet for å velge riktig beliggenhet for objektet. + Velg kategori + Populære + Alle kategorier Redigerer Legger til Navn på stedet @@ -407,8 +478,13 @@ Detaljert beskrivelse av problemet Et annet problem Legg til organisasjon + Legg til nye steder i kartet og rediger eksisterende steder direkte fra appen. + Endre plassering Et objekt kan ikke plasseres her Logg inn slik at andre brukere kan se endringene du har utført. + + Du må frigjøre mer lagringsplass for å laste ned. Slett unødvendig data. + Jeg har forbedret Organic Maps kartene %1$d av %2$d Skriv riktig husnummer @@ -424,6 +500,7 @@ De foreslåtte endringene vil sendes til OpenStreetMap-gruppen. Beskriv detaljene som ikke kan redigeres i Organic Maps. Mer om OpenStreetMap Eier + Mine kart Du har ikke lastet ned noen kart Last ned kart for å finne plasseringen og navigere frakoblet. @@ -432,6 +509,14 @@ Gjeldende plassering er ukjent. Du kan være i en bygning eller en tunnel. Fortsett Stopp + Gjeldende plassering er ukjent. + Det oppstod en feil under søking etter plasseringen din. Kontroller at plasseringen din virker som den skal, og prøv på nytt senere. + Lokalisering er deaktivert + Tillat bruk av av geografisk lokalisering i enhetens innstillinger + 1. Åpne Innstillinger + 2. Trykk Lokalisering + + 3.Velg når appen er i bruk m km km/t @@ -446,29 +531,43 @@ Bestill Ring Rediger bokmerke + Bokmerkenavn + Personlige notater + Slett bokmerke + De foreslåtte endringene er sendt Kommentar… Nullstille alle lokale endringer? Nullstill Fjerne et tilføyd sted? Fjern Sted finnes ikke + …mer Skriv riktig telefonnummer Oppgi en gyldig nettadresse Oppgi en gyldig epostadresse + Oppdatere Legg til en plass på kartet Vil du sende det til alle brukere? Sørg for at du ikke har skrevet noe personlig informasjon. Vi vil sjekke endringene. Vi kontakter deg via e-post dersom vi har spørsmål. + stopp + + Deaktivere opptak av nylig reiste rute? + Deaktiver + + Sjekk ut + Organic Maps bruker geografiske funksjoner i bakgrunnen for å registrere din nylig reiste rute. Organic Maps er en gratis og åpen kildekode-app for offline kart. Ingen annonser. Ingen sporing. Hvis du ser en feil på kartet, må du rette den i OpenStreetMap. Prosjektet er laget av entusiaster på fritiden vår, så vi trenger din tilbakemelding og støtte. + Generelle innstillinger Godta Avvis - + Liste Bruke mobilt Internett til å vise detaljert informasjon? Bruk alltid @@ -481,6 +580,8 @@ For å vise trafikkdata må kartene i appen være oppdaterte. Forstørr skriften på kartet Vennligst oppdater Organic Maps + + Du må oppdatere applikasjonen for å kunne se trafikkdata. Trafikkdata er ikke tilgjengelig Aktiver loggføring @@ -497,8 +598,13 @@ Angi startpunkt for å planlegge rute Angi sluttpunkt for å planlegge rute Avslutt + Administrere rute + Planlegge Fjern + Dra hit for å fjerne Angi stopp + Start fra + Oops, en feil oppstod. Prøv å logge inn på nytt. Problemer med tilgang til lagring Ekstern lagring er ikke tilgjengelig. Sannsynligvis er SD-kortet fjernet eller skadet eller så er filsystemet skrivebeskyttet. Undersøk og kontakt oss på support\@organicmaps.app Emulere skadet lagring @@ -508,7 +614,14 @@ Skjul alle Vis alle + + %d bokmerker + Opprett ny liste + Skjul skjerm + %1$s (%2$s av %3$s) + Laster ned %s … + Bruker %s … Kan ikke dele på grunn av en programfeil Delingsfeil Kan ikke dele en tom liste @@ -517,42 +630,32 @@ Ny liste Dette navnet er allerede tatt Vennligst velg et annet navn + Dette navnet er for langt Vennligst vent… Telefonnummer OpenStreetMap profil + Nye filer oppdaget %d filen ble funnet. Du vil se dem etter konverteringen. %d filer funnet. Du vil se dem etter konverteringen. + Konvertere + Feil + Noen filer ble ikke konvertert. + Gjenopprett denne versjonen? Ingen internettforbindelse - - %d sted - - - %d steder - - - %d stier - - Turinnstillinger - Krasjrapport - Vi kan bruke dine data for å forbedre Organic Maps-opplevelsen. Endringer vil bli aktive når du restarter appen. - Personvernpolitikk - Bruksbetingelser - Trafikk - T-bane - Kartlag - T-banekart er utilgjengelig - Denne listen er tom - For å legge til et bokmerke, trykk et sted på kartet og trykk så stjerneikonet - …mer + En ukjent feil oppstod + Restaurere Eksporter fil Liste Innstillinger Slett liste + Skjul fra kart Offentlig tilgang Begrenset adgang Lag en beskrivelse (text or html) Privat + Det oppsto en feil under lasting av emneknagger, prøv igjen + Last ned Fartskamera Auto Alltid @@ -560,6 +663,7 @@ Plasser beskrivelse Nedlast kart + Auto - Advarsel om fartskamera hvis det er fare for å overskride fartsgrensen\nAlltid - Advar alltid om farskameraer\nAldri - Advar aldri om fartskameraer Strømsparemodus Når automatisk modus er valgt, begynner programmet å deaktivere batteridriftfunksjonene avhengig av det nåværende batterinivået Aldri @@ -583,11 +687,44 @@ Unngå bompengeveier Unngå uasfalterte veier Unngå fergeoverganger + La oss begynne + Destinasjon + Sentrer + Søkeresultater + Deretter + Vil du planlegge en rute på nytt? + Ja + Nei + Du har ankommet! + Tastatur er ikke tilgjengelig mens en kjører + Kan ikke planlegge rute fra din nåværende posisjon + Kan ikke planlegge rute til din nåværende posisjon. Vennligst velg en annen posisjon + Ingen GPS-signal. Vennligst gå til et åpent område + Kan ikke planlegge rute. Vennligst spesifiser en annen posisjon for rute + For å beregne rute last ned manglende kart på enheten din + Feil oppstod. Vennligst restart appen + Rute vil planlegges fra din nåværende posisjon + Rute vil oppdateres til kjørerute Ok + Ikke grusvei + Ikke uasfaltert + Ingen ferger + Unngå ferger + Ingen bomvei + Unngå bomvei + Kamera-info + Kamera-advarsel + Vennligst last ned kart i Organic Maps appen på enheten din + %s avkjøring Sortere… Sortere merker + + Sortere som standard + Sortere etter type + Sortere etter avstand + Sortere etter dato Som standard @@ -626,6 +763,10 @@ Høyder For å bruke høydekurver oppdater eller last opp kartet til nødvendig område Høydekurver er ikke tilgjengelige i dette området ennå + Vanskelighetsgrad + Lett + Middels + Vanskelig Stigning Nedstigning Min. høyde @@ -634,9 +775,22 @@ Avstand: I rute Forstørr kartet for å se høydekurver + Oppdatering + Nedlasting + Nøkkelinformasjon La skjermen sove Når den er aktivert, får skjermen lov til å sove etter en periode med inaktivitet. + + Oppdater dine nedlastede kart + + Ved å oppdatere kart holder du også informasjonen om ulike elementer oppdatert + + Oppdater (%s) + + Oppdater manuelt senere + + Rute Kabelbanestasjon @@ -856,8 +1010,6 @@ Nødtelefon Inngang Medisinsk laboratorium - - Busstopp Veikonstruksjon Sti @@ -957,22 +1109,6 @@ Gate Gate Gate - Sti - Gate - Gate - Sti - Gate - Gate - Gate - Gate - Gate - Gate - Sti - Gate - Gate - Gate - - Arkeologisk område Slott Slott @@ -1057,16 +1193,16 @@ Mobiloperatør By Hovedstad - By - By + Hovedstad + Hovedstad Hovedstad - By - By - By - By - By - By - By + Hovedstad + Hovedstad + Hovedstad + Hovedstad + Hovedstad + Hovedstad + Hovedstad Kontinent Land Fylke diff --git a/android/res/values-nl/strings.xml b/android/res/values-nl/strings.xml index 952a96fc24..85b96591f7 100644 --- a/android/res/values-nl/strings.xml +++ b/android/res/values-nl/strings.xml @@ -8,6 +8,8 @@ Terug Annuleren + + Downloaden annuleren Verwijderen Download kaarten @@ -17,6 +19,8 @@ Downloaden… Kilometers + + Laat een review achter Kaarten @@ -27,14 +31,19 @@ Zoeken Op de kaart zoeken + + Ja U heeft momenteel alle locatieservices voor dit apparaat of deze app uitgeschakeld. Schakel ze in bij Instellingen Op de kaart tonen + + Kaart downloaden Downloaden is mislukt Opnieuw proberen + Over Organic Maps Verbindingsinstellingen Sluiten Een hardware geaccellereerde OpenGL is nodig. Jammer genoeg wordt uw apparaat niet ondersteund. @@ -58,6 +67,8 @@ Bladwijzer-kleur Naam van bladwijzergroep + + Bladwijzergroepen Bladwijzers @@ -66,8 +77,8 @@ Naam Adres - - Lijst + + Groep Instellingen @@ -82,43 +93,41 @@ Afstandseenheid Kies tussen mijlen en kilometers - - - + Waar iets gaan eten - + Kruidenierswinkels - + Transport - + Benzine - + Parkeerplaats - + Winkelen - + Hotel - + Bezienswaardigheden - + Amusement - + Geldautomaat - + Nachtleven - + Gezinsvakantie - + Bank - + Apotheek - + Ziekenhuis - + Toilet - + Post - + Politie Notities @@ -153,8 +162,12 @@ E-mail Naar het klembord gekopieerd: %1$s + + Info Klaar + + Versie: %s Gegevensversie: %d @@ -189,6 +202,10 @@ Gesproken taal Niet beschikbaar + + Andere + + Recente track Automatisch zoomen Uit 1 uur @@ -196,6 +213,8 @@ 6 uur 12 uur 1 dag + Dit laat u toe het afgelegde traject voor een bepaalde periode te registreren en te bekijken op de kaart. Merk op: activatie van deze functie veroorzaakt een hoger batterijverbruik. Het traject wordt automatisch van de kaart verwijderd nadat het tijdsinterval verloopt. + Afstand Op kaart bekijken Website @@ -213,6 +232,12 @@ Auteursrechten Meld een fout + + De emailcliënt is niet ingesteld. Gelieve de cliënt te configureren of op een andere manier contact met ons op te nemen op %s + + Email verzendfout + + Kompascalibratie WiFi @@ -221,12 +246,19 @@ Alles annuleren Gedownload + + Beschikbaar In de wachtrij Bij mij in de buurt Kaarten Alles downloaden Aan het downloaden: + Gevonden + + Bijwerken + + Mislukt Stop de navigatie om de kaart te verwijderen. @@ -241,12 +273,22 @@ Kaart bijwerken Gebruik de diensten van Google Play om uw huidige locatie te bepalen + + Ik heb je app zojuist gewaardeerd + + Dank je! + + Deel alle ideeën of problemen zodat we de app voor je kunnen verbeteren. + + Feedback verzenden Download kaarten op de route Voor het creëren van een route is het nodig dat alle kaarten van uw locatie naar uw bestemming gedownload en bijgewerkt zijn. Niet genoeg ruimte + + markeren Schakel Locatie Services in Opslaan @@ -299,6 +341,8 @@ Controleer uw gps-signaal. Schakel wifi in voor een betere locatiebepaling. Schakel locatiediensten in De huidige gps-coördinaten kunnen niet worden gevonden. Schakel locatiediensten in om de route te berekenen. + Download vereiste bestanden + Download de kaart en route-informatie voor het ingestelde traject en werk deze bij om de route te berekenen. Route vinden mislukt Route samenstellen mislukt. Kies een ander startpunt of andere bestemming. @@ -313,6 +357,7 @@ Systeemfout Route samenstellen mislukt door een applicatiefout. Probeer het opnieuw + Niet nu Wilt u de kaart downloaden en een betere route samenstellen die meer dan één kaart beslaat? Download de kaart om een betere route samen te stellen die de grenzen van deze kaart overschrijdt. @@ -323,8 +368,17 @@ Tonen Verbergen + + Routeberekening mislukt Aankomst: %s + + Om een route te maken, download en update alle kaarten rondom de route. + Vindt u de app leuk? + Bedankt om Organic Maps te gebruiken. Gelieve de app te beoordelen. Uw feedback helpt ons beter te worden. + Hoera! Wij houden ook van u! + Bedankt, we zullen ons best doen! + Heeft u suggesties voor verbeteringen? Categorieën Geschiedenis Gesloten @@ -355,6 +409,8 @@ Voorbeeldwaarden Fout corrigeren Locatie + Je hebt de wereldkaart gewijzigd. Verberg dit niet! Vertel het je vrienden en bewerk het samen. + Deel met je vrienden Beschrijf het probleem gedetailleerd, zodat de OpenStreetMap-community de fout kan oplossen. Of doe het zelf op https://www.openstreetmap.org/ Verzenden @@ -364,20 +420,29 @@ Dubbele plaats Automatische download + Nu gesloten + Dagelijks Nacht en dag Vrije dag vandaag Vrije dag Vandaag + Openingsuren toevoegen Openingsuren bewerken Geen account bij OpenStreetMap? Registeren + Wachtwoord (minimaal 8 tekens) + Ongeldige gebruikersnaam of ongeldig wachtwoord. Log in Wachtwoord Wachtwoord vergeten? + OSM-account Uitloggen + + Laatste upload Dank je wel De locatie bewerken + Locatienaam Een taal toevoegen Straat @@ -392,16 +457,22 @@ Selecteer Keuken Emailadres of gebruikersnaam + Telefoonnummer + Opgelet Alle wijzigingen aan de kaart zullen samen met de kaart worden verwijderd. Kaarten updaten Om een route te creëren, moet je alle kaarten updaten en dan de route opnieuw plannen. Vind de kaart + Downloadfout Controleer je instellingen en zorg ervoor dat het apparaat is verbonden met het internet. Niet genoeg ruimte Verwijder overbodige gegevens Inlogfout. Gecontroleerde wijzigingen Trek aan de kaart om de juiste locatie van het object te selecteren. + Selecteer categorie + Populair + Alle categorieën Aan het aanpassen Aan het toevoegen Naam van de plaats @@ -409,8 +480,13 @@ Gedetailleerde probleemomschrijving Een ander probleem Een organisatie toevoegen + Voeg nieuwe plaatsen toe aan de kaart en bewerk de bestaande rechtstreeks vanuit de app. + Locatie wijzigen Hier kan geen object worden geplaatst Log in zodat andere gebruikers kunnen zien wat u hebt gewijzigd. + + Om te kunnen downloaden, heb je meer ruimte nodig. Verwijder overbodige gegevens. + Ik heb de Organic Maps-kaarten verbeterd %1$d van %2$d Downloaden via een mobiele gegevensverbinding? @@ -428,6 +504,7 @@ Uw voorgestelde wijzigingen worden verzonden naar de OpenStreetMap-community. Beschrijf de details die niet kunnen worden bewerkt in Organic Maps. Meer over OpenStreetMap Uitvoerder + Mijn kaarten U hebt geen kaarten gedownload Download kaarten om de locatie te zoeken en offline te navigeren. @@ -436,6 +513,14 @@ Huidige locatie is onbekend. Misschien bevindt u zich in een gebouw of tunnel. Doorgaan Stoppen + Huidige locatie is onbekend. + Er is een fout opgetreden tijdens het zoeken naar uw locatie. Controleer of uw apparaat goed werkt en probeer het later opnieuw. + Locatie-identificatie is uitgeschakeld + Schakel de toegang tot geolocaties in in de instellingen van het apparaat + 1. Instellingen openen + 2. Tik op locatie + + 3. Selecteer Terwijl Je de App Gebruikt m km km/h @@ -450,29 +535,43 @@ Boeken Bellen Bladwijzer bewerken + Bladwijzernaam + Persoonlijke aantekeningen + Bladwijzer verwijderen + Uw voorgestelde wijzigingen zijn verzonden Reactie… Alle lokale wijzigingen herstellen? Herstellen Een toegevoegde locatie verwijderen? Verwijderen Locatie bestaat niet + …meer Voer het juiste telefoonnummer in Voer een geldig webadres in Voer een geldig emailadres in + Updaten Een plek toevoegen aan de kaart Wil je het naar alle gebruikers sturen? Controleer dat je geen persoonlijke gegevens hebt ingevoerd. We zullen de wijzigingen controleren. Als we nog vragen hebben, zullen we contact met je opnemen via email. + stoppen + + Vastleggen van uw onlangs afgelegde route uitschakelen? + Uitschakelen + + Bekijk + Organic Maps gebruikt uw geografische positie op de achtergrond om uw onlangs afgelegde route vast te leggen. Organic Maps is een gratis en open-source offline kaartentoepassing. Geen advertenties. Geen volgen. Als je een fout op de kaart ziet, corrigeer deze dan in OpenStreetMap. Het project is gemaakt door enthousiastelingen in onze vrije tijd, dus we hebben uw feedback en ondersteuning nodig. + Algemene instellingen Aanvaarden Weigeren - + Lijst Mobiel internet gebruiken om gedetailleerde informatie weer te geven? Altijd Gebruiken @@ -485,6 +584,8 @@ Om verkeersgegevens weer te geven, moeten de kaarten bijgewerkt worden. Lettergrootte op de kaart vergroten Gelieve Organic Maps bij te werken + + Om de verkeersgegevens weer te geven, moet de applicatie bijgewerkt worden. Verkeersgegevens zijn niet beschikbaar Logboekregistratie inschakelen @@ -501,8 +602,13 @@ Voeg beginpunt toe om een route te plannen Voeg eindpunt toe om een route te plannen Verlaten + Route beheren + Plannen Verwijderen + Sleep hier om te verwijderen Tussenstop toevoegen + Start vanaf + Oeps, er is een fout opgetreden. Probeer opnieuw aan te melden. Probleem met opslagtoegang Externe opslag is niet beschikbaar, wellicht is de SD-kaart verwijderd, beschadigd of is het bestandssysteem alleen-lezen. Gelieve het te controleren en ons te contacteren via support\@organicmaps.app Slechte opslag emuleren @@ -512,7 +618,14 @@ Alles verbergen Alles weergeven + + %d bladwijzers + Nieuwe lijst maken + Scherm Verbergen + %1$s (%2$s van %3$s) + %s downloaden… + %s toepassen… Delen is onmogelijk wegens een toepassingsfout Deelfout Een lege lijst kan niet gedeeld worden @@ -521,14 +634,22 @@ Nieuwe lijst Deze naam is al in gebruik Kies alstublieft een andere naam + Deze naam is te lang Even geduld aub… Telefoonnummer OpenStreetMap-profiel + Nieuwe bestanden gedetecteerd %d bestand gevonden. Je ziet het na het converteren. Er zijn %d bestanden gevonden. Je zult ze na de conversie zien. + Omzetten + Fout + Sommige bestanden waren niet geconverteerd. + Deze versie herstellen? Geen internet verbinding + Er is een onbekende fout opgetreden + Herstellen %d plaats @@ -550,13 +671,17 @@ Deze lijst is leeg Om een bladwijzer toe te voegen, tikt u op een plaats op de kaart en vervolgens op het sterpictogram …meer + Er is een fout opgetreden Bestand exporteren Lijst Instellingen Lijst verwijderen + Van de kaart verbergen Publiek toegang Beperkte toegang Maak een beschrijving aan (tekst of html) Privé + Er is een fout opgetreden tijdens het laden van tags, probeer het opnieuw + Downloaden Snelheidscamera\'s Auto Altijd @@ -564,6 +689,7 @@ Plaats Beschrijving Kaart downloader + Auto - Waarschuw voor speedcams als er een risico bestaat dat de snelheidslimiet wordt overschreden\nAltijd - Waarschuw altijd voor flitspalen\nNooit - Waarschuw nooit over flitspalen Energiebesparende modus Als de energiebesparende modus is ingeschakeld, schakelt de app de energieverbruikende functies uit afhankelijk van de huidige lading van de mobiele telefoon Nooit @@ -587,11 +713,44 @@ Tolwegen vermijden Aardewegen vermijden Ferries vermijden + Kom op + Doel + Centreren + Zoekresultaten + Dan + Wilt u de route wijzigen? + Ja + Nee + U bent aangekomen! + Toetsenbord is niet beschikbaar tijdens het rijden + Kan route vanaf huidige positie niet opbouwen + Kan route naar het eindpunt niet opbouwen. Kies een andere punt + Geen GPS-signaal. Ga naar het open veld + Kan route niet bouwen. Selecteer andere tussenpunten + Om een route te bouwen, download u ontbrekende kaarten + Lets fout gegaan. Start de app opnieuw + De route wordt opnieuw opgebouwd vanaf uw huidige positie + De route wordt gewijzigd in de autoroute Goed + Geen aardew. + Geen aardewegen + Geen ferry\'s + Geen ferry\'s + Zonder tol + Zonder tol + Cameras + Over cameras + Download kaarten in de Organic Maps app op uw apparaat + Afrit nr. %s Sorteer… Bladwijzers sorteren + + Standaard sorteren + Sorteren op type + Sorteer op afstand + Sorteer op datum Standaard @@ -630,6 +789,10 @@ Hoogtes Als u gebruik wilt maken van hoogtelijnen, moet u een kaart van het gewenste gebied bijwerken of downloaden De hoogtelijnen zijn nog niet beschikbaar in deze regio + Moeilijkheidsgraad + Gemakkelijk + Middelmatig + Moeilijk Opstijging Afdaling Min. hoogte @@ -638,9 +801,22 @@ Afst.: Op weg Zoom in om isolijnen te bekijken + Updaten + Downloaden + Belangrijke informatie Laat het scherm slapen Indien ingeschakeld, mag het scherm slapen na een periode van inactiviteit. + + Werk uw gedownloade kaarten bij + + Kaarten bijwerken houdt de informatie over objecten actueel + + Bijwerken (%s) + + Later handmatig bijwerken + + Track Kabelwagenstation @@ -855,8 +1031,6 @@ Praatpaal Ingang Medisch laboratorium - - Bushalte Baan in aanbouw Pad @@ -892,7 +1066,7 @@ Pad Pad Pad - Pad + Tunnel Straat Straat Straat @@ -956,22 +1130,6 @@ Straat Straat Straat - Pad - Straat - Straat - Pad - Straat - Straat - Straat - Straat - Straat - Straat - Pad - Straat - Straat - Straat - - Archeologische site Kasteel Kasteel @@ -1071,16 +1229,16 @@ Mobiele provider Stad Hoofdstad - Stad - Stad + Hoofdstad + Hoofdstad Hoofdstad - Stad - Stad - Stad - Stad - Stad - Stad - Stad + Hoofdstad + Hoofdstad + Hoofdstad + Hoofdstad + Hoofdstad + Hoofdstad + Hoofdstad Land Graafschap Boerderij diff --git a/android/res/values-pl/strings.xml b/android/res/values-pl/strings.xml index 351ee87fab..22a1f0ef30 100644 --- a/android/res/values-pl/strings.xml +++ b/android/res/values-pl/strings.xml @@ -8,6 +8,8 @@ Wróć Anuluj + + Anuluj pobieranie Usuń Pobierz mapy @@ -17,6 +19,8 @@ Pobieranie… Kilometry + + Napisz recenzję Mapy @@ -29,14 +33,19 @@ Wyszukaj Wyszukaj mapy + + Tak Usługi lokalizacji są aktualnie wyłączone dla tego urządzenia lub aplikacji. Proszę włączyć je w ustawieniach. Wyświetl na mapie + + Pobierz mapę Nie udało się pobrać Spróbuj ponownie + O aplikacji Organic Maps Ustawienia połączenia Zamknij Wymagana jest sprzętowa akceleracja OpenGL. Aktualne urządzenie nie jest obsługiwane. @@ -61,6 +70,8 @@ Kolor zakładki Nazwa zestawu zakładek + + Zestawy zakładek Zakładki @@ -69,8 +80,8 @@ Nazwa Adres - - Lista + + Zestaw Ustawienia @@ -85,43 +96,41 @@ Jednostki miary Wybiera pomiędzy milami, a kilometrami - - - + Gdzie zjeść - + Produkty - + Transport - + Stacja benzynowa - + Parking - + Shopping - + Hotel - + Atrakcje turystyczne - + Rozrywka - + Bankomat - + Życie nocne - + Wypoczynek z dziećmi - + Bank - + Apteka - + Szpital - + Toaleta - + Poczta - + Policja Notatki @@ -156,8 +165,12 @@ Email Skopiowano do schowka: %1$s + + Informacje Gotowe + + Wersja: %s Wersja danych: %d @@ -192,6 +205,10 @@ Język komunikatów Niedostępne + + Inny + + Ostatnia trasa Automatyczne powiększanie Wyłączona 1 godzina @@ -199,6 +216,8 @@ 6 godzin 12 godzin 1 dzień + Umożliwia na pewien okres zapisanie przebytej trasy i obejrzenie jej na mapie. Uwaga: włączenie tej funkcji spowoduje większe zużycie baterii. Trasa zostanie usunięta z mapy automatycznie po upływie określonego czasu. + Dystans Wyświetl na mapie Strona internetowa @@ -216,6 +235,12 @@ Prawa autorskie Zgłoś błąd + + Email klienta nie został założony. Proszę skonfigurować adres email, bądź skorzystać z innych opcji, aby się z nami skontaktować na %s + + Błąd wysyłania wiadomości + + Kalibracja kompasu WiFi @@ -224,12 +249,19 @@ Anuluj wszystko Pobrane + + Dostępne W kolejce Blisko mnie Mapy Pobierz wszystkie Pobieranie: + Znaleziono + + Aktualizacja + + Nieudane Aby usunąć mapę, zatrzymaj nawigację. @@ -244,12 +276,22 @@ Aktualizuj mapę Używa usług Google Play do ustalenia aktualnego położenia + + Właśnie oceniłem Waszą aplikację + + Dziękujemy! + + Podziel się z nami pomysłami lub problemami, a pozwoli to nam usprawnić aplikację. + + Wyślij opinię Pobierz mapy wzdłuż trasy Tworzenie tras wymaga pobrania i zaktualizowania wszystkich map od Twojej lokalizacji do celu podróży. Brak wolnego miejsca + + zakładka Proszę włączyć usługi lokalizacji Zapisz @@ -302,6 +344,8 @@ Sprawdź sygnał GPS. Aktywacja Wi-Fi pomoże w precyzyjnym określeniu położenia. Włącz usługi określania lokalizacji Nie można ustalić współrzędnych GPS. Włącz usługi określania lokalizacji, aby wyznaczyć trasę. + Pobierz wymagane pliki + Pobierz i zaktualizuj dane mapy i wyznaczania trasy wzdłuż planowanej drogi, aby wyznaczyć trasę. Nie można zlokalizować trasy Nie można wyznaczyć trasy. Zmień punkt początkowy lub docelowy. @@ -316,6 +360,7 @@ Błąd systemowy Nie można wyznaczyć trasy z powodu błędu aplikacji. Spróbuj ponownie + Nie teraz Chcesz pobrać mapę i wyznaczyć lepszą trasę, obejmującą więcej map? Pobierz mapę i wyznacz lepszą trasę, wykraczającą poza granice bieżącej mapy. @@ -326,8 +371,17 @@ Pokaż Ukryj + + Planowanie trasy nieudane Przybycie: %s + + Aby utworzyć trasę, pobierz i zaktualizuj wszystkie właściwe dla niej mapy. + Lubisz tę aplikację? + Dziękujemy za korzystanie z Organic Maps. Prosimy wystawić aplikacji ocenę. Twoja opinia pozwoli nam udoskonalać nasze produkty. + Hurra! My też Cię uwielbiamy! + Dziękujemy, zrobimy co w naszej mocy! + Czy masz pomysł, w jaki sposób możemy dokonać ulepszeń? Kategorie Historia Zamknięte @@ -358,6 +412,8 @@ Przykładowe wartości Popraw błąd Lokalizacja + Dokonałeś zmian na mapie świata. Nie kryj się z tym! Powiadom znajomych i edytujcie mapę razem. + Udostępnij znajomym Prosimy o szczegółowe opisanie problemu, aby użytkownicy OpenStreetMap mogli naprawić błąd. Albo zrób to sam na https://www.openstreetmap.org/ Wyślij @@ -367,20 +423,29 @@ Powielone miejsce Automatyczne pobieranie + Nieczynne + Codziennie Dzień i noc Dziś nieczynne Nieczynne Dzisiaj + Dodaj godziny otwarcia Edytuj godziny otwarcia Nie masz konta w OpenStreetMap? Zarejestruj się + Hasło (minimum 8 znaków) + Nieprawidłowa nazwa użytkownika lub hasło. Zaloguj się Hasło Nie pamiętasz hasła? + Konto OSM Wyloguj + + Ostatnio przesłane Dziękujemy Edytuj miejsce + Nazwa miejsca Dodaj język Ulica @@ -395,17 +460,23 @@ Wybierz kuchnię Email lub nazwa użytkownika + Telefon Dodaj numer telefonu + Uwaga! Wszystkie zmiany dotyczące mapy zostaną usunięte wraz z nią. Aktualizuj mapy Aby utworzyć trasę, należy zaktualizować wszystkie mapy, a następnie ponownie zaplanować trasę. Znajdź mapę + Błąd pobierania Sprawdź swoje ustawienia i upewnij się, że urządzenie ma połączenie z Internetem. Brak wolnego miejsca Usuń niepotrzebne dane Błąd logowania. Zmiany zweryfikowane Przeciągnij mapę, aby wybrać poprawną lokalizację obiektu. + Wybierz kategorię + Popularne + Wszystkie kategorie Edycja Dodawanie Nazwa miejsca @@ -413,8 +484,13 @@ Szczegółowy opis problemu Inny problem Dodaj organizację + Dodawaj nowe miejsca do mapy i edytuj już istniejące bezpośrednio z poziomu aplikacji. + Zmień lokalizację Obiekt nie może znajdować się tutaj Zaloguj się, by inni użytkownicy mogli zobaczyć Twoje zmiany. + + Aby pobrać, potrzebujesz więcej miejsca. Usuń niepotrzebne dane. + Dokonałem poprawek map na Organic Maps %1$d z %2$d Czy pobrać, używając połączenia z siecią komórkową? @@ -432,6 +508,7 @@ Twoje sugestie zmian zostaną wysłane do społeczności OpenStreetMap. Opisz szczegóły, których nie można edytować w Organic Maps. Więcej o OpenStreetMap Operator + Moje mapy Nie pobrano żadnych map Aby znajdować miejsca i nawigować bez połączenia z internetem, musisz pobrać mapy. @@ -440,6 +517,14 @@ Aktualna lokalizacja jest nieznana. Może znajdujesz się w budynku lub tunelu. Kontynuuj Stop + Aktualna lokalizacja jest nieznana. + Podczas szukania twojej lokalizacji wystąpił błąd. Sprawdź czy twoje urządzenie działa poprawnie i spróbuj ponownie później. + Identyfikacja lokalizacji jest wyłączona + Włącz dostęp do geolokalizacji w ustawieniach urządzenia + 1. Uruchom ustawienia + 2. Dotknij „Lokalizacja” + + 3. Zaznacz Podczas korzystania z aplikacji m km km/h @@ -454,12 +539,17 @@ Zarezerwuj Zadzwoń Edytuj zakładkę + Nazwa zakładki + Notatki osobiste + Usuń zakładkę + Twoje sugestie zostały wysłane Komentarz… Usunąć wszystkie lokalne zmiany? Usuń Usunąć dodane miejsce? Usuń Takie miejsce nie istnieje + …więcej Wprowadź poprawny numer telefonu Wpisz prawidłowy adres strony internetowej @@ -468,19 +558,28 @@ Wprowadź poprawny link lub nazwę konta na Instagramie Wprowadź poprawny adres lub nazwę konta na Twitterze Wprowadź poprawny adres lub nazwę konta na VK + Uaktualnić Dodaj miejsce do mapy Czy chcesz wysłać je wszystkim użytkownikom? Upewnij się, że nie podałeś osobistych danych. Zapoznamy się ze zmianami. W przypadku pytań skontaktujemy się z Tobą przez email. + stop + + Wyłączyć rejestrowanie niedawno przebytej trasy? + Wyłącz + + Sprawdź + Organic Maps używa w tle geolokalizacji w celu rejestrowania niedawno przebytej trasy. Organic Maps to bezpłatna aplikacja do map offline typu open source. Bez reklam. Bez śledzenia. Jeśli zobaczysz błąd na mapie, napraw go w OpenStreetMap. Projekt jest tworzony przez entuzjastów w czasie wolnym, dlatego potrzebujemy Twojej opinii i wsparcia. + Ustawienia ogólne Zaakceptuj Odrzuć - + Lista Wykorzystać internet mobilny, aby wyświetlić dane szczegółowe? Stosuj zawsze @@ -493,6 +592,8 @@ Aby wyświetlić dane o ruchu, muszą zostać zaktualizowane mapy. Powiększ rozmiar czcionki na mapie Zaktualizuj Organic Maps + + Aby wyświetlić dane o ruchu, należy zaktualizować aplikację. Dane o ruchu są niedostępne Włącz logowanie @@ -509,8 +610,13 @@ Aby zaplanować trasę, dodaj punkt początkowy Aby zaplanować trasę, dodaj punkt końcowy Wyjdź + Zarządzaj trasą + Zaplanuj Usuń + Przeciągnij tu, aby usunąć Dodaj postój + Zacznij od + Ups, nastąpił błąd. Spróbuj zalogować się ponownie. Problem z dostępem do pamięci masowej Zewnętrzny nośnik pamięci masowej jest niedostępny. Prawdopodobnie usunięto lub uszkodzono kartę SD bądź jej system plików służy tylko do odczytu. Zweryfikuj to i skontaktuj się z nami pod adresem support\@organicmaps.app Emuluj wadliwą pamięć masową @@ -520,9 +626,16 @@ Ukryj wszystkie Pokaż wszystkie + + Zakładki: %d + Utwórz nową listę Import zakładek + Ukryj ekran + %1$s (%2$s z %3$s) + Pobieranie %s… + Stosowanie zmian %s… Nie można udostępnić z powodu błędu aplikacji Błąd udostępniania Nie można udostępnić pustej listy @@ -531,15 +644,23 @@ Nowa lista Ta nazwa jest już zajęta Wybierz inną nazwę + Ta nazwa jest za długa Proszę czekać… Numer telefonu Profil OpenStreetMap + Wykryto nowe pliki Znaleziono %d plik. Zobaczysz to po konwersji. Znaleziono %d plików. Zobaczysz je po konwersji. Znaleziono %d pliki. Zobaczysz je po konwersji. + konwertować + błąd + Sommige bestanden waren niet geconverteerd. + Przywróć tę wersję? Brak połączenia z internetem + Wystąpił nieznany błąd + Przywracać %d miejsce @@ -561,13 +682,18 @@ Lista jest pusta Aby dodać zakładkę, dotknij miejsca na mapie, a następnie dotknij ikony gwiazdy. …więcej + Wystąpił błąd + Popularne Eksportuj plik Ustawienia listy Usuń listę + Ukryj mapy Dostęp publiczny Dostęp prywatny Dodaj opis (tekst lub html) Osobisty + Wystąpił błąd podczas pobierania tagów, spróbuj ponownie + Pobierz Fotoradary Auto Zawsze @@ -575,6 +701,7 @@ Opis miejsca Pobieranie map + Auto – Ostrzegać o kamerach, jeśli istnieje ryzyko przekroczenia ograniczenia prędkości\nZawsze – Zawsze ostrzegaj o kamerach\nNigdy – Nigdy nie ostrzegaj o kamerach Tryb oszczędzania energii Jeśli jest włączony tryb oszczędzania energii, wtedy aplikacja wyłączy funkcje energochłonne, zależnie od bieżącego poziomu załadowania telefonu Nigdy @@ -598,11 +725,44 @@ Unikać dróg płatnych Unikać dróg gruntowych Unikać przepraw promowych + Jedźmy + Meta + Wyśrodkuj + Wyniki wyszukiwania + Dalej + Czy chcesz przebudować trasę? + Tak + Nie + Jesteś na miejscu! + Klawiatura nie jest dostępna podczas ruchu + Brak możliwości zbudowania trasy od bieżącej lokalizacji + Brak możliwości zbudowania trasy do punktu końcowego. Wybierz inny + Brak sygnału GPS. Dostań się do terenu otwartego + Brak możliwości zbudowania trasy. Wybierz inne punkty trasy + Aby wyznaczyć trasę, pobierz brakujące mapy na Twoim urządzeniu + Wystąpił błąd. Uruchom aplikację ponownie + Trasa zostanie przebudowana z Twojej bieżącej lokalizacji + Trasa zostanie zmieniona na samochodową Ok + Bez gruntow. + Bez gruntowych + Bez promów + Bez promów + Wył. płatne + Wyłącz płatne + Kamery + Info o kamerach + Pobierz mapy do aplikacji Organic Maps na swoje urządzenie + %s zjazd Sortuj… Sortuj znaczniki + + Sortuj domyślnie + Sortuj wg rodzaju + Sortuj wg odległości + Sortuj wg daty Domyślnie @@ -641,6 +801,10 @@ Wysokości Do skorzystania z linii wysokości, zaktualizuj lub pobierz mapę obszaru, który potrzebujesz W tej chwili nie są dostępne linie wysokości w tym regionie + Poziom trudności + Łatwy + Umiarkowany + Skomplikowany Wejście Zejście Min. wysokość @@ -649,12 +813,31 @@ Odległ.: Trasa: Powiększ mapę, aby zobaczyć izolinie + Aktualizacja + Pobieranie + Kluczowe informacje Pobierz mapę świata Błąd połączenia Odłącz kabel USB Pozwól ekranowi spać Po włączeniu ekran będzie mógł spać po okresie bezczynności. + + Zaktualizuj pobrane mapy + + Aktualizacja map umożliwia uzyskanie bieżących informacji o obiektach + + Zaktualizuj (%s) + + Zaktualizuj ręcznie później + + Usuwanie trasy + + Nazwa trasy + + Przenieś + + Trasa Transport linowy @@ -906,8 +1089,6 @@ Telefon alarmowy Wejście Laboratorium Medyczne - - Droga Droga dla koni Most drogowy dla koni @@ -932,7 +1113,7 @@ Tunel dla pieszych Bród Ulica w strefie zamieszkania - Ulica w strefie zamieszkania + Ulica Tunel ulicy Ulica Most drogowy @@ -1017,23 +1198,6 @@ Ulica Ulica Tunel drogowy - Droga rowerowa - Chodnik - Ulica w strefie zamieszkania - Ulica - Ścieżka - Pasaż pieszy - Ulica - Ulica - Ulica - Ulica - Ulica - Schody - Ulica - Ulica - Ulica - - Historyczne Odkrywka archeologiczna Miejsce historycznej bitwy @@ -1178,16 +1342,16 @@ Miejsce Miasto Stolica - Miasto - Miasto + Stolica + Stolica Stolica - Miasto - Miasto - Miasto - Miasto - Miasto - Miasto - Miasto + Stolica + Stolica + Stolica + Stolica + Stolica + Stolica + Stolica Kontynent Kraj Wieś diff --git a/android/res/values-pt-rBR/strings.xml b/android/res/values-pt-rBR/strings.xml index c1f55463f5..896619f28d 100644 --- a/android/res/values-pt-rBR/strings.xml +++ b/android/res/values-pt-rBR/strings.xml @@ -8,6 +8,8 @@ Voltar Cancelar + + Cancelar baixar Apagar Baixar mapas @@ -17,6 +19,8 @@ Baixando… Quilômetros + + Deixe uma avaliação Mapas @@ -29,14 +33,19 @@ Buscar Procurar mapa + + Sim Atualmente todos os Serviços de Localização para este dispositivo ou aplicação estão desativados. Por favor ative-os em Configurações. Mostrar no mapa + + Baixar mapa O download falhou Tentar novamente + Sobre o Organic Maps Configurações de conexão Fechar É necessário OpenGL acelerado por hardware. Infelizmente o seu dispositivo não é compatível. @@ -61,6 +70,8 @@ Cor do favorito Nome do conjunto de favoritos + + Conjuntos de favoritos Favoritos @@ -69,8 +80,8 @@ Nome Endereço - - Lista + + Conjunto Configurações @@ -85,43 +96,41 @@ Unidades de medida Escolha entre milhas e quilômetros - - - + Onde comer - + Mercados - + Transporte - + Combustível - + Estacionamento - + Compras - + Hotel - + Atrações - + Entretenimento - + Caixa eletrônico - + Vida Noturna - + Feriados em família - + Banco - + Farmácia - + Hospital - + Banheiros - + Correios - + Polícia Notas @@ -156,8 +165,12 @@ Email Copiado para a área de transferência: %1$s + + Info Feito + + Versão: %s Versão dos dados: %d @@ -192,6 +205,10 @@ Idioma da voz Não disponível + + Outro + + Percurso recente Zoom automático Desligado 1 hora @@ -199,6 +216,8 @@ 6 horas 12 horas 1 dia + Permite você salvar um caminho percorrido durante um determinado período e o ver no papa. Nota: esta funcionalidade usa mais bateria. A rota será automaticamente removida do mapa após o intervalo de tempo expirar. + Distância Ver no mapa Site @@ -214,6 +233,12 @@ Direitos autorais Relatar um problema + + O cliente de email não está configurado. Por favor, configure-o ou utilize qualquer outro modo para nos contatar através de %s + + Erro no envio de email + + Calibração da bússola WiFi @@ -222,12 +247,19 @@ Cancelar tudo Baixado + + Disponível Na fila Perto de mim Mapas Baixar tudo Baixando: + Encontrado + + Atualizar + + Falhou Favor parar a navegação para apagar o mapa. @@ -242,12 +274,22 @@ Atualizar mapa Usar Serviços do Google Play para determinar a sua localização atual + + Acabei de avaliar o seu app + + Obrigado! + + Compartilhe quaisquer ideias ou problemas para que possamos melhorar o app para você. + + Enviar comentário Baixar todos os mapas ao longo do trajeto É necessário baixar e atualizar todos os mapas entre a sua localização e o destino para criar uma rota. Espaço insuficiente + + favorito Por favor, ative os Serviços de Localização Salvar @@ -300,6 +342,8 @@ Verifique o sinal do GPS. Ative o Wi-Fi para melhorar a precisão da localização. Ative os serviços de localização Não foi possível localizar as coordenadas do GPS. Ative os serviços de localização para que a rota seja traçada. + Baixar os arquivos necessários + Baixe e atualize todos os dados de mapa e roteamento referentes ao trajeto desejado para que a rota seja traçada. Não foi possível encontrar uma rota Não foi possível gerar uma rota. Ajuste o ponto de partida ou o ponto de chegada. @@ -313,6 +357,7 @@ Erro de sistema Não foi possível traçar uma rota devido a um erro no aplicativo. Por favor, tente novamente + Agora não Deseja baixar o mapa e traçar uma rota melhor, mas que se estenda por mais de um mapa? Baixe o mapa para traçar uma rota melhor que vai além dos limites desse mapa. @@ -323,8 +368,17 @@ Mostrar Ocultar + + Falha no planejamento da rota Chegada: %s + + Para criar uma rota, por favor, baixe e atualize todos os mapas ao longo do trajeto. + Você gosta do aplicativo? + Obrigado por usar Organic Maps. Por favor, avalie o aplicativo. Seu feedback nos ajuda a melhorar. + Viva! Também amamos você! + Obrigado, faremos o nosso melhor! + Alguma ideia sobre como podemos melhorar? Categorias Histórico Fechado @@ -357,6 +411,8 @@ Valores de exemplo Corrigir erro Local + Você modificou o mapa-múndi. Não esconda isto! Diga aos seus amigos e editem-no juntos. + Compartilhar com amigos Por favor, descreva o problema em detalhes para que a comunidade OpenStreeMap possa corrigir o erro. Ou faça-o você mesmo em https://www.openstreetmap.org/ Enviar @@ -366,20 +422,29 @@ Lugar duplicado Download automático + Fechado agora + Diariamente 24 horas por dia Fechado hoje Fechado Hoje + Adicionar horário de funcionamento Editar horário de funcionamento Sem conta no OpenStreetMap? Cadastrar-se + Senha (mínimo de 8 caracteres) + Nome de usuário ou senha inválida. Login Senha Esqueceu sua senha? + Conta OSM Encerrar sessão + + Último upload Obrigado Editar o local + Nome do local Adicionar um idioma Rua @@ -394,16 +459,22 @@ Selecione a Culinária Email ou nome de usuário + Telefone + Aviso Todas as alterações ao mapa serão eliminadas juntamente com o mapa. Atualizar mapas Para criar um itinerário é necessário atualizar todos os mapas e, em seguida, planejá-lo novamente. Encontrar o mapa + Erro no download Por favor, verifique as suas configurações e certifique-se de que o dispositivo está conectado à Internet. Não há espaço suficiente Por favor, remova os dados desnecessários Erro no login. Alterações verificadas Mova o mapa para selecionar o lugar correto do objeto. + Selecionar categoria + Popular + Todas as categorias Edição Adicionando Nome do lugar @@ -411,8 +482,13 @@ Descrição detalhada do problema Um problema diferente Adicionar uma empresa + Adicione novos lugares ao mapa e edite os já existentes diretamente a partir do app. + Mudar local Nenhum objeto pode ser posicionado aqui Fazer login para que outros usuários vejam as mudanças que você fez. + + É necessário mais espaço para baixar. Por favor, elimine dados desnecessários. + Eu melhorei os mapas do Organic Maps %1$d de %2$d Baixar usando uma conexão de rede celular? @@ -430,6 +506,7 @@ Suas sugestões de mudança serão enviadas para a comunidade OpenStreetMap. Descreva em detalhes o que não pode ser editado com o Organic Maps. Mais sobre OpenStreetMap Operador + Meus mapas Você não fez o download de nenhum mapa Baixe mapas para pesquisar locais e usar navegação offline. @@ -438,6 +515,14 @@ A localização atual é desconhecida. Talvez você esteja em um edifício ou túnel. Continuar Parar + A localização atual é desconhecida. + Ocorreu um erro na busca por sua localização. Verifique se o seu dispositivo está funcionando corretamente e tente novamente mais tarde. + Serviços de localização estão desativados + Permita o acesso à geolocalização nas configurações do dispositivo + 1. Abra as configurações + 2. Toque em \"Localização\" + + 3. Selecione Durante Uso do Aplicativo m km km/h @@ -452,29 +537,43 @@ Reservar Ligar Editar favorito + Nome do favorito + Anotações pessoais + Apagar favorito + Suas sugestões de mudança foram enviadas Comentar… Descartar todas as modificações locais? Descartar Remover local adicionado? Remover O lugar não existe + …mais Insira o número correto do telefone Preencha com um endereço válido na internet Preencha com um endereço válido de email + Atualizar Adicionar um local ao mapa Deseja enviar para todos os usuários? Certifique-se de não ter incluído nenhum dado pessoal. Verificaremos as alterações. Se tivermos perguntas, entraremos em contato com você por email. + parar + + Desabilitar registro de sua rota recente? + Desabilitar + + Procure + O Organic Maps usa sua localização geográfica em segundo plano para registrar sua rota recente. Organic Maps é uma aplicação gratuita e de código aberto de mapas off-line. Sem anúncios. Sem rastreamento. Se você vir um erro no mapa, por favor, corrija em OpenStreetMap. O projeto é criado por entusiastas em nosso tempo livre, então precisamos de seu feedback e suporte. + Definições gerais Aceitar Declinar - + Lista Utilizar a internet móvel para mostrar informações detalhadas? Utilizar sempre @@ -487,6 +586,8 @@ Para ver os dados de tráfego, os mapas devem ser atualizados. Aumentar tamanho da fonte no mapa Atualize o Organic Maps + + Para mostrar os dados de tráfego, a aplicação deve ser atualizada. Não existem dados de tráfego Ativar o histórico @@ -502,8 +603,13 @@ Adicionar ponto de partida para planejar uma rota Adicionar final da viagem para planejar uma rota Sair + Gerir rota + Planejar Remover + Arraste aqui para remover Adicionar parada + Iniciar a partir de + Ups, ocorreu um erro. Tente iniciar sessão novamente. Problema de acesso ao armazenamento O armazenamento externo não está disponível, é provável que o cartão SD tenha sido removido, danificado ou o sistema de arquivo seja apenas para leitura. Verifique e entre em contato conosco em support\@organicmaps.app Emular memória ruim @@ -513,9 +619,17 @@ Ocultar tudo Exibir tudo + + %d favorito + %d favoritos + Criar nova lista Importar favoritos + Ocultar tela + %1$s (%2$s de %3$s) + Baixando %s… + Aplicando %s… Impossível compartilhar devido a um erro do aplicativo Erro de compartilhamento Impossível compartilhar uma lista vazia @@ -524,14 +638,22 @@ Nova lista Esse nome já está sendo usado Por favor, escolha outro nome - Espere, por favor… + Este nome é muito longo + Espere, por favor� Número de telefone Perfil do OpenStreetMap + Novos arquivos detectados %d arquivo foi encontrado. Você vai ver depois da conversão. %d arquivos foram encontrados. Você os verá depois da conversão. + Converter + Erro + Alguns arquivos não foram convertidos. + Restaurar esta versão? Sem conexão com a Internet + Ocorreu um erro desconhecido + Restaurar %d objeto %d objetos @@ -556,13 +678,18 @@ Esta lista está vazia Para adicionar um favorito, toque no mapa e então toque no ícone de estrela …mais + Um erro ocorreu + Popular Exportar arquivo Configurações de lista Deletar lista + Esconder do mapa Acesso público Acesso limitado Digite uma descrição (texto ou html) Privado + Um erro ocorreu enquanto carregava as etiquetas, por favor, tente novamente + Baixar Câmeras de trânsito Automático Sempre @@ -570,6 +697,7 @@ Descrição do lugar Downloader do mapa + Automático - Avisar sobre radar se houver risco de ultrapassar o limite de velocidade\nSempre - Sempre avisar sobre radares\nNunca - Nunca avisar sobre radares Modo de economia de energia Quando o modo automático é selecionado, o aplicativo começa a desativar as características que drenam a bateria dependendo do nível de energia atual Nunca @@ -593,11 +721,44 @@ Evitar pedágios Evitar pistas sem pavimentação Evitar balsas + Vamos + Destino + Re-centralizar + Resultados da busca + Então + Você deseja retraçar a rota? + Sim + Não + Você chegou! + O teclado não está disponível enquanto dirige + Desativar rota demarcada pela sua localização atual + Incapaz de traçar rota para o seu destino. Por favor, escolha outro ponto de destino + Sem sinal de GPS. Por favor, vá para uma região aberta + Incapaz de traçar rota. Por favor, especifique outros pontos para a rota + Para criar uma rota, baixe os mapas ausentes no seu dispositivo + Ocorreu um erro. Por favor, reinicie o aplicativo + A rota sera retraçada a partir de sua localização atual + A rota será alterada para uma de automóvel Tudo bem + Não pav. + Evitar não pav. + Sem balsas + Evitar balsas + Sem pedágio + Evitar pedágios + Radares + Alertas de vel. + Por favor, baixe mapas no app Organic Maps em seu dispositivo + %s saída Ordenar… Ordenar favoritos + + Ordenar por padrão + Ordenar por tipo + Ordenar por distância + Ordenar por data Por padrão @@ -636,6 +797,10 @@ Topográfica Para ativar e usar a camada topográfica, atualize ou baixe o mapa da região A camada topográfica ainda não está disponível para esta região + Nível de dificuldade + Fácil + Moderado + Difícil Subida Descida Altitude mínima @@ -644,11 +809,24 @@ Dist.: Tempo: Use o zoom para explorar as isolinhas + Atualizando + Baixando + Informação importante Baixar mapa mundial Falha na coneção Permitir que a tela hiberne Quando ativada, a tela poderá hibernar após um período de inatividade. + + Atualize os mapas no seu dispositivo + + A atualização de mapas mantém as informações sobre objetos atualizadas + + Atualizar (%s) + + Atualizar manualmente mais tarde + + Percurso Transporte aéreo @@ -666,7 +844,6 @@ Heliponto Pista de aeroporto ou aeródromo Pista de rolagem - Aerogare de passageiros Amenidades Centros de arte Caixa eletrônico @@ -866,7 +1043,6 @@ Cozinha grega Grelhada Heuriger - Cachorro-quente Cozinha húngara Sorvete Cozinha indiana @@ -919,8 +1095,6 @@ Telefone de emergência Entrada Laboratório médico - - Rodovia Caminho para cavaleiros Caminho para cavaleiros @@ -951,9 +1125,9 @@ Rodovia Rodovia Saída de rodovia - Rodovia - Rodovia - Rodovia + Estrada + Estrada + Estrada Caminho Caminho Caminho @@ -1030,23 +1204,6 @@ Estrada sem classificação Estrada sem classificação Estrada sem classificação - Ciclovia - Caminho pedonal - Zona de coexistência - Rodovia - Caminho - Rua pedonal - Estrada - Rua residencial - Estrada - Estrada de acesso ou serviço - Estrada - Escadas - Pista para desportos não motorizados - Via expressa - Estrada sem classificação - - Histórico Sítio arqueológico Campo de batalha @@ -1200,16 +1357,16 @@ Local Cidade Capital - Cidade - Cidade + Capital + Capital Capital - Cidade - Cidade - Cidade - Cidade - Cidade - Cidade - Cidade + Capital + Capital + Capital + Capital + Capital + Capital + Capital Continente País Condado @@ -1480,4 +1637,19 @@ Pista tipo nórdico Pista para trenós Parte de edifício + Ciclovia + Caminho pedonal + Zona de coexistência + Rodovia + Caminho + Rua pedonal + Estrada + Rua residencial + Estrada + Estrada de acesso ou serviço + Estrada + Escadas + Pista para desportos não motorizados + Via expressa + Estrada sem classificação diff --git a/android/res/values-pt/strings.xml b/android/res/values-pt/strings.xml index 03145d25a8..6da150e5fe 100644 --- a/android/res/values-pt/strings.xml +++ b/android/res/values-pt/strings.xml @@ -8,6 +8,8 @@ Voltar Cancelar + + Cancelar descarregamento Eliminar Descarregar mapas @@ -17,6 +19,8 @@ A descarregar… Quilómetros + + Faça uma avaliação Mapas @@ -29,14 +33,19 @@ Pesquisar Pesquisar mapa + + Sim Atualmente tem todos os serviços de localização para este dispositivo ou aplicação desativados. Por favor ative-os nas definições do sistema. Mostrar no mapa + + Descarregar mapa O descarregamento falhou Tentar novamente + Sobre o Organic Maps Definições de ligação Fechar É necessário a acelaração OpenGL por hardware. Infelizmente o seu dispositivo não é compatível. @@ -61,6 +70,8 @@ Cor do favorito Nome do conjunto de favoritos + + Conjuntos de favoritos Favoritos @@ -69,8 +80,8 @@ Nome Endereço - - Lista + + Conjunto Configurações @@ -85,43 +96,41 @@ Unidades de medida Escolha entre milhas e quilómetros - - - + Onde comer - + Lojas alimentares - + Transporte - + Combustível - + Estacionamento - + Compras - + Hotel - + Atrações turísticas - + Entretenimento - + Multibanco - + Vida noturna - + Passeios com crianças - + Banco - + Farmácia - + Hospital - + Casas de banho - + Correios - + Polícia Notas @@ -156,8 +165,12 @@ Email Copiado para a área de transferência: %1$s + + Informação Feito + + Versão: %s Versão dos dados: %d @@ -192,6 +205,10 @@ Idioma da voz Não disponível + + Outro + + Percurso recente Ampliação automática Desligado 1 hora @@ -199,6 +216,8 @@ 6 horas 12 horas 1 dia + Permite-lhe gravar um caminho percorrido durante um determinado período e vê-lo no papa. Nota: esta funcionalidade usa mais bateria. A rota será automaticamente removida do mapa após o intervalo de tempo expirar. + Distância Ver no mapa Site @@ -216,6 +235,12 @@ Direitos de autor Reportar um problema + + O programa de email não está configurado. Por favor, configure-o ou utilize qualquer outra forma de nos contactar através de %s + + Erro ao enviar o email + + Calibração da bússola WiFi @@ -224,12 +249,19 @@ Cancelar tudo Descarregado + + Disponível Na fila Perto de mim Mapas Descarregar tudo A descarregar: + Encontrado + + Atualizar + + Falhou Para eliminar o mapa, por favor pare a navegação. @@ -244,12 +276,22 @@ Atualizar mapa Use os Serviços Google Play para determinar a sua localização atual + + Acabei de avaliar a sua aplicação + + Obrigado! + + Partilhe quaisquer ideias ou problemas para que possamos melhorar a aplicação para todos. + + Enviar comentário Descarregar todos os mapas ao longo do trajeto É necessário descarregar e atualizar todos os mapas entre a sua localização e o destino para criar uma rota. Espaço insuficiente + + favorito Por favor ative os serviços de localização Guardar @@ -302,6 +344,8 @@ Verifique o sinal do GPS. Ative o Wi-Fi para melhorar a precisão da localização. Ative os serviços de localização Não foi possível localizar as coordenadas do GPS. Ative os serviços de localização para que a rota seja criada. + Descarregar os ficheiros necessários + Descarregue e atualize todos os dados do mapa e roteamento ao longo do trajeto desejado para que a rota seja criada. Não foi possível encontrar uma rota Não foi possível criar uma rota. Ajuste o ponto de partida ou o ponto de chegada. @@ -316,6 +360,7 @@ Erro de sistema Não foi possível criar uma rota devido a um erro na aplicação. Tente novamente + Agora não Quer descarregar o mapa e traçar uma rota melhor, mas que se estenda por mais de um mapa? Descarregue o mapa para traçar uma rota melhor que vai além dos limites deste mapa. @@ -326,8 +371,17 @@ Mostrar Ocultar + + Falha no planeamento da rota Chegada: %s + + Para criar uma rota, por favor, baixe e atualize todos os mapas ao longo do trajeto. + Gosta da aplicação? + Obrigado por usar o Organic Maps. Por favor avalie a aplicação. A sua resposta pode ajudar-nos a desenvolver a aplicação. + Viva! Também gostamos de si! + Obrigado, faremos o melhor possível! + Tem alguma ideia de como podemos melhorar? Categorias Histórico Fechado @@ -360,6 +414,8 @@ Valores de exemplo Corrigir erro Local + Alterou o mapa mundial. Não mantenha as alterações para si mesmo! Diga aos seus amigos e editem-no juntos. + Partilhar com amigos Por favor, descreva o problema ao pormenor para que a comunidade OpenStreeMap possa corrigir o erro. Ou faça-o em https://www.openstreetmap.org/ Enviar @@ -369,20 +425,29 @@ Lugar em duplicado Descarregamento automático + Fechado agora + Diariamente 24 horas por dia Fechado hoje Fechado Hoje + Adicionar horário de funcionamento Editar horário de funcionamento Não tem uma conta no OpenStreetMap? Crie uma conta no OSM + Palavra-chave (mínimo de 8 caracteres) + Nome de utilizador ou palavra-chave inválida. Iniciar sessão Palavra-chave Esqueceu-se da palavra-chave? + Conta OSM Terminar sessão + + Último envio Obrigado Editar o local + Nome do local Adicionar um idioma Rua @@ -397,16 +462,22 @@ Selecione a culinária Email ou nome de utilizador + Telefone + Aviso Todas as alterações ao mapa serão eliminadas juntamente com o mapa. Atualizar mapas Para criar um itinerário é necessário atualizar todos os mapas e, em seguida, planeá-lo novamente. Encontrar o mapa + Erro de descarregamento Por favor, verifique as suas opções e certifique-se que o dispositivo está ligado à Internet. Não tem espaço suficiente Por favor, remova os dados desnecessários Erro de início de sessão. Alterações verificadas Mova o mapa para selecionar o lugar correto do objeto. + Selecionar categoria + Popular + Todas as categorias Edição A adicionar Nome do lugar @@ -414,8 +485,13 @@ Descrição detalhada do problema Um problema diferente Adicionar uma organização + Adicione novos lugares ao mapa e edite os já existentes diretamente a partir da aplicação. + Mudar local Nenhum objeto pode ser posicionado aqui Inicie a sessão para que outros utilizadores vejam as alterações que fez. + + Para descarregar, é necessário mais espaço. Por favor, elimine os dados desnecessários. + Melhorei os mapas do Organic Maps %1$d de %2$d Descarregar utilizando uma conexão de rede de telemóveis? @@ -433,6 +509,7 @@ As suas alterações sugeridas irão ser enviadas para a comunidade OpenStreetMap. Descreva os dados que não podem ser editados no Organic Maps. Mais sobre o OpenStreetMap Operador + Os meus mapas Não descarregou quaisquer mapas Descarregar mapas para encontrar a localização e navegar offline. @@ -441,6 +518,14 @@ A localização atual é desconhecida. Talvez esteja num edifício ou num túnel. Continuar Parar + A localização atual é desconhecida. + Ocorreu um erro ao pesquisar a sua localização. Verifique se o seu dispositivo está a funcionar devidamente e volte a tentar mais tarde. + Os serviços de localização estão desativados + Conceda o acesso à geolocalização nas configurações do dispositivo + 1. Abra as configurações + 2. Toque em \"Localização\" + + 3. Selecione \"Durante a utilização da aplicação\" m Km km/h @@ -455,29 +540,43 @@ Reservas Telefonar Editar favorito + Nome do favorito + Notas pessoais + Eliminar favorito + As suas alterações sugeridas foram enviadas Comentário… Eliminar todas as alterações locais? Eliminar Eliminar o local adicionado? Eliminar O local não existe + …mais Introduza um número de telefone correto Preencha com um endereço válido na Internet Preencha com um endereço válido de email + Atualizar Adicionar um local ao mapa Quer enviar para todos os utilizadores? Certifique-se que não incluiu nenhuns dados pessoais. Vamos verificar as alterações. Se tivermos alguma pergunta, vamos contactá-lo por email. + parar + + Desativar gravação da sua rota recente? + Desativar + + Verificar + O Organic Maps usa a sua localização geográfica em segundo plano para gravar a sua rota recente. Organic Maps é uma aplicação gratuita e de código aberto de mapas offline. Sem anúncios. Sem seguimento. Se vir um erro no mapa, por favor repare-o em OpenStreetMap. O projecto é criado por entusiastas no nosso tempo livre, por isso precisamos do seu feedback e apoio. + Configurações gerais Aceitar Recusar - + Lista Utilizar os dados móveis para mostrar informações detalhadas? Utilizar sempre @@ -490,6 +589,8 @@ Para ver os dados de tráfego, os mapas têm de ser atualizados. Aumentar tamanho da fonte no mapa Atualize o Organic Maps + + Para mostrar os dados de tráfego, a aplicação tem de ser atualizada. Os dados de tráfego não estão disponíveis Ativar o histórico @@ -506,8 +607,13 @@ Adicionar ponto de partida para planear uma rota Adicionar final da viagem para planear uma rota Sair + Gerir rota + Planear Remover + Arraste aqui para remover Adicionar paragem + Iniciar a partir de + Ups, ocorreu um erro. Tente iniciar sessão novamente. Problema de acesso ao armazenamento O armazenamento externo não está disponível. Provavelmente porque o cartão SD foi removido, danificado ou o sistema de ficheiros é apenas para leitura. Verifique e contacte-nos através do email support\@organicmaps.app Emular o armazenamento defeituoso @@ -517,9 +623,17 @@ Ocultar tudo Mostrar tudo + + %d favorito + %d favoritos + Criar nova lista Importar favoritos + Ocultar ecrã + %1$s (%2$s de %3$s) + A transferir %s… + A aplicar %s… Não foi possível partilhar devido a um erro da aplicação Erro ao partilhar Não é possível partilhar uma lista vazia @@ -528,14 +642,22 @@ Nova lista Este nome já está a ser utilizado Por favor escolha outro nome - Por favor aguarde… + Este nome é muito longo + Por favor aguarde� Número de telefone Perfil no OpenStreetMap + Foram detetados novos ficheiros %d ficheiro encontrado. Pode vê-lo depois da conversão. %d ficheiros encontrados. Pode vê-los depois da conversão. + Converter + Erro + Alguns ficheiros não foram convertidos. + Restaurar esta versão? Sem ligação à Internet + Surgiu um erro desconhecido + Restaurar %d objeto %d objetos @@ -560,13 +682,18 @@ Esta lista está vazia Para adicionar um favorito, toque num lugar do mapa e em seguida toque no ícone da estrela …mais + Surgiu um erro + Popular Exportar o ficheiro Configurações de listas Eliminar lista + Remover do mapa Acesso público Acesso limitado Introduza uma descrição (texto ou html) Privado + Surgiu um erro ao carregar as etiquetas, por favor tente novamente + Descarregar Radares de velocidade Automático Sempre @@ -574,6 +701,7 @@ Descrição do local Descarregador de mapas + Automático - avisa sobre os radares de velocidade se houver risco de exceder o limite de velocidade\nSempre - avisa sempre sobre os radares\nNunca - nunca avisar sobre os radares Modo de economia de energia Se o modo automático estiver ativado, a aplicação vai desativar as funções que consomem energia, dependendo da carga atual do telemóvel Nunca @@ -597,11 +725,44 @@ Evitar estradas com portagem Evitar estradas não pavimentadas Evitar ferrys + Começar + Destino + Recentrar + Resultados da pesquisa + A seguir + Quer recalcular o percurso? + Sim + Não + Chegou ao destino! + O teclado não está disponível ao coduzir + Não foi possível calcular o percurso a partir da localização atual + Não foi possível calcular o percurso para o destino. Escolha outro + Sem sinal de GPS. Desloque-se para uma área sem obstáculos no céu + Não foi possível calcular o percurso. Escolha outros pontos do percurso + Para calcular o percurso é preciso descarregar primeiro os mapas + Surgiu um erro. Por favor reinicie a aplicação + O percurso será recalculado a partir da sua localização atual + O percurso será convertido num percurso para automóvel Ok + Só vias pavimentadas + Evitar vias não pavimentadas + Sem ferrys + Evitar ferrys + Sem portagens + Evitar portagens + Radares + Avisos de velocidade + Descarregue mapas da aplicação Organic Maps no seu dispositivo + %s saída Ordenar… Ordenar favoritos + + Ordenação predefinida + Ordenar por tipo + Ordenar por distância + Ordenar por data Predefinido @@ -640,6 +801,10 @@ Terreno Para ativar e usar a camada topográfica, por favor atualize ou descarregue o mapa da área A camada topográfica ainda não está disponível nesta área + Nível de dificuldade + Fácil + Moderado + Difícil Subida Descida Altura mínima @@ -648,11 +813,24 @@ Distância: Tempo: Amplie o mapa para ver as curvas de nível + A atualizar + A descarregar + Informação importante Descarregar o mapa mundial Falha na coneção Permitir que o ecrã desligue Quando ativado, o ecrá poderá desligar-se após um período de inatividade. + + Atualize os seus mapas descarregados + + Atualizar os mapas mantém atualizada a informação sobre os objetos + + Atualizar (%s) + + Atualizar manualmente mais tarde + + Percurso Transporte aéreo @@ -923,8 +1101,6 @@ Telefone de emergência Entrada Laboratório médico - - Rodovia Caminho para cavaleiros Caminho para cavaleiros @@ -1034,23 +1210,6 @@ Estrada sem classificação Estrada sem classificação Estrada sem classificação - Ciclovia - Caminho pedonal - Zona de coexistência - Autoestrada - Caminho - Rua pedonal - Estrada primária - Rua residencial - Estrada secundária - Estrada de acesso ou serviço - Estrada terciária - Escadas - Pista para desportos não motorizados - Via rápida - Estrada sem classificação - - Histórico Sítio arqueológico Campo de batalha @@ -1205,16 +1364,16 @@ Local Cidade Capital - Cidade - Cidade + Capital + Capital Capital - Cidade - Cidade - Cidade - Cidade - Cidade - Cidade - Cidade + Capital + Capital de região autónoma + Capital + Sede de distrito + Sede de município + Sede de freguesia + Capital Continente País Condado @@ -1485,4 +1644,19 @@ Pista tipo nórdico Pista para trenós Parte de edifício + Ciclovia + Caminho pedonal + Zona de coexistência + Autoestrada + Caminho + Rua pedonal + Estrada primária + Rua residencial + Estrada secundária + Estrada de acesso ou serviço + Estrada terciária + Escadas + Pista para desportos não motorizados + Via rápida + Estrada sem classificação diff --git a/android/res/values-ro/strings.xml b/android/res/values-ro/strings.xml index 834363587a..91a1e19d1e 100644 --- a/android/res/values-ro/strings.xml +++ b/android/res/values-ro/strings.xml @@ -8,15 +8,19 @@ Înapoi Renunță + + Anulează descărcarea Șterge Descarcă hărți - Descărcarea a eșuat. Încearcă din nou. + Descărcarea a eșuat. Apasă pentru a încerca din nou. Se descarcă… Kilometri + + Lasă un comentariu Hărţi @@ -24,19 +28,24 @@ Poziția mea - Mai tîrziu + Mai târziu Caută - Caută harta + Caută pe hartă + + Da - În prezent, toate serviciile de localizare pentru acest aparat sau aplicație sînt dezactivate. Dacă vrei, activează-le. + În prezent, toate serviciile de localizare pentru acest aparat sau aplicație sînt dezactivate. Te rugăm să le activezi în Setări. Arată pe hartă + + Descarcă harta Descărcarea nu a reușit - Mai încearcă + Încearcă din nou + Despre Organic Maps Opțiuni de conectare Închide Este necesară accelerarea hardware OpenGL. Din păcate, aparatul tău nu este compatibil. @@ -44,9 +53,9 @@ Deconectează cablul USB sau introdu cartela de memorie pentru a utiliza Organic Maps Eliberează spațiu pe cartela SD/memoria USB pentru a putea utiliza aplicația Memorie insuficientă pentru a porni aplicația - Înainte de a începe, trebuie descărcată harta generală a lumii în aparatul tău.\nSe vor descărca %s. + Înainte de a începe, trebuie descărcată harta generală a lumii în aparatul tău.\nAre nevoie de %s de date. Du-te la hartă - Se descarcă %s. Acum poți\ntrece la hartă. + Se descarcă %s. Poți\ntrece la hartă. Descarci %s? Actualizezi %s? @@ -56,124 +65,121 @@ Descărcarea %s nu a reușit - Adaugă o listă nouă + Adăugare la „Marcaje” - Culoare Loc preferat + Culoare marcaj - Dă un nume listei + Nume set marcaje + + Seturi marcaje - Locuri preferate + Marcaje Locurile mele Nume - Adresa - - Listă + Adresă + + Set - Preferințe + Setări - Salvează hărțile în + Salvare hărți în - Alege locul în care vrei să fie descărcate hărțile + Selectați locul în care doriți să fie descărcate hărțile. - Muți hărțile? + Mutare hărți? - Poate dura cîteva minute.\nAșteaptă… + Aceasta poate dura câteva minute.\nVă rugăm să așteptați… Unități de măsură - Alege între mile și kilometri - - - - Unde să mănînci - - Alimentare - + Alegeți între mile și kilometri + + Unde să mănânci + + Produse + Transport - - Benzinărie - + + Benzină + Parcare - - Magazine - + + Cumpărături + Hotel - + Obiective turistice - + Divertisment - + Bancomat - - Viață nocturnă - - Timp liber - + + Viața nocturnă + + Odihnă cu copii + Bancă - + Farmacie - + Spital - + Toaletă - + Poştă - - Poliția + + Poliție - Detalii + Note - Îți trimit locurile mele preferate - Bună!\n\nȚi-am atașat locurile mele preferate din aplicația Organic Maps. Deschide-le dacă ai instalat Organic Maps. Dacă nu, descarcă aplicația pentru iOS sau Android de aici: https://organicmaps.app/ + Marcaje Organic Maps partajate - Se încarcă locurile preferate + Se încarcă marcajele - Locuri preferate încărcate cu succes! Le poți găsi pe hartă sau în „Gestionare Locuri preferate”. + Marcaje încărcate cu succes! Le puteți găsi pe hartă sau pe ecranul „Gestionare marcaje”. - Încărcarea locurilor preferate a eșuat. Fișierul poate fi defect. + Încărcarea marcajelor a eșuat. Fișierul poate fi corupt sau defect. Modifică - Poziția ta nu a fost stabilită încă + Poziția ta nu a fost stabilită încă. - Opțiunile pentru stocarea hărților sînt dezactivate în acest moment. + Ne pare rău. Setările pentru stocarea hărților sunt dezactivate în acest moment. - Harta este în curs de descărcare. + Descărcarea hărților pentru țara dorită este în curs. - Poți vedea poziția mea pe harta Organic Maps! %1$s sau %2$s Nu ai descărcat aplicația? O poți descărca de aici: https://omaps.app/get + Hei, îmi poți vedea poziția actuală pe Organic Maps! %1$s sau %2$s Nu ai hărțile offline? Descarcă de aici: https://omaps.app/get - Poți vedea locul meu preferat pe harta Organic Maps! + Hei, poți vedea care este poziția mea pe harta Organic Maps! - Poți vedea poziția mea pe harta Organic Maps! + Hei, îmi poți vedea poziția actuală pe harta Organic Maps! - Bună,\n\nAcum sînt aici: %1$s. Apasă pe adresa %2$s sau pe %3$s pentru a vedea locul pe hartă.\n\nMulțumesc. + Bună,\n\nAcum sunt aici: %1$s. Apasă pe adresa %2$s sau pe %3$s pentru a vedea locul pe hartă.\n\nMulțumesc. - Trimite + Partajare E-mail - Copiat în notițe: %1$s + Copiat în clipboard: %1$s + + Informații Gata - - Versiune: %d + + Versiune: %s - Vrei să continui? + Sunteți sigur că doriți să continuați? - Trasee + Rute Lungime - Trimite poziția mea - - Opțiuni generale - - Informații - Navigare + Partajează-mi poziția + Navigație Butoane zoom - Arată pe hartă + Afișare pe ecran Mod nocturn @@ -183,7 +189,7 @@ Automat - Vedere în perspectivă + Vizualizare în perspectivă Clădiri 3D @@ -192,6 +198,10 @@ Limba ghidului vocal Nu există + + Alta + + Rute recente Zoom automat Oprit 1 oră @@ -199,61 +209,85 @@ 6 ore 12 ore 1 zi - Vezi pe hartă + Vă permite să înregistrați traseul parcurs pentru o anumită perioadă și să îl vedeți pe hartă. Rețineți: activarea acestei funcții crește consumul bateriei. Traseul va fi eliminat automat de pe hartă după expirarea intervalului de timp. + Distanță + Vizualizare pe hartă Sit web Părere - Evaluează aplicația + Votați-ne aplicația Ajutor - Întrebări frecvente + Intrebari si raspunsuri Cum să ne sprijiniți? Drepturi de autor Raportează o eroare + + Nu a fost stabilit programul de e-mail. Stabilește-l sau utilizează un alt mod de a ne contacta la %s. + + Eroare trimitere e-mail. + + Calibrare busolă - Wi-Fi + WiFi Actualizează tot Anulează tot Descărcate + + Disponibil - În așteptare - Lîngă mine + În lista de așteptare + Aproape de mine Hărți - Descarcă tot - Se descarcă: + Descărcați toate + Descărcare: + S-au găsit + + Actualizare + + Eșuată - Pentru a șterge harta, oprește navigarea. + Pentru a șterge harta, vă rugăm să opriți navigarea. - Se pot crea numai trasee cuprinse în întregime în cadrul unei hărți a unei singure regiuni. + Pot fi create doar rutele ce se află în întregime într-o singură hartă. - Descarcă harta + Descărcați harta - Mai încearcă + Repetare - Șterge harta + Ștergere hartă - Actualizează harta + Actualizare hartă - Folosește serviciile Google Play, pentru a obține poziția actuală + Utilizați serviciile Google Play, pentru a vă obține poziția actuală. + + Tocmai ți-am votat aplicația + + Îți mulțumim! + + Comunică-ne ideile tale și problemele aplicației, astfel încât să o putem îmbunătăți pentru tine. + + Trimitere feedback - Descarcă hărțile de pe traseu + Descarcă hărțile adiacente rutei - Crearea unui traseu necesită ca toate hărțile de la poziția ta pînă la destinație să fie descărcate și actualizate. + Crearea unui traseu necesită ca toate hărțile de la locația dvs. până la destinație să fie descărcate și actualizate. - Spațiu insuficient + Nu există spațiu suficient + + marcaj - Activează serviciile de localizare - Salvează - Descrierile tale (text sau html) + Vă rugăm să activați serviciile de localizare + Salvare creează Roșu @@ -264,7 +298,7 @@ Verde - Violet + Purpuriu Portocaliu @@ -272,15 +306,15 @@ Roz - Violet închis + Purpuriu închis Albastru deschis - Turcoaz + Albastru-verziu Smarald - Verde aprins + Var Portocaliu închis @@ -291,159 +325,197 @@ Da - Cînd parcurgi traseul, ai în vedere următoarele: - — Condiţiile de drum, legile şi semnele rutiere sînt mai importante decît indicațiile navigatorului; + Când urmaţi traseul, aveţi în vedere următoarele: + — Condiţiile de drum, legile şi semnele rutiere sunt mai prioritare decât sfaturile de navigaţie; — Harta poate să conţină greşeli şi traseul sugerat poate să nu fie cel mai bun pentru a ajunge la destinaţie; — Traseele sugerate au numai rol de recomandări; - — Ai grijă în zonele de graniță: traseele create de aplicația noastră ar putea, ocazional, să treacă granița prin locuri nepermise; - Fii vigilent şi condu în siguranţă! - Verifică semnalul GPS - Crearea traseului a eşuat. Coordonatele GPS actuale nu au putut fi identificate. - Verifică semnalul GPS. Pentru a îmbunătăţi precizia localizării, activează Wi-Fi. - Activează serviciile de localizare - Localizarea coordonatelor GPS curente a eşuat. Pentru a calcula traseul, activează serviciile de localizare. + — Aveți grijă în zonele de graniță: rutele create de aplicația noastră ar putea, ocazional, să treacă granița prin locuri nepermise; + Rămâneţi vigilenţi şi conduceţi în siguranţă! + Verificaţi semnalul GPS + Crearea traseului a eşuat. Coordonatele GPS curente nu au putut fi identificate. + Verificaţi semnalul GPS. Pentru a îmbunătăţi precizia localizării, activaţi Wi-Fi. + Activaţi serviciile de localizare + Localizarea coordonatelor GPS curente a eşuat. Pentru a calcula traseul, activaţi serviciile de localizare. + Descărcaţi fişierele necesare + Pentru calcularea traseului, descărcaţi şi actualizaţi toate hărţile şi informaţiile de stabilire a traseului pentru calea estimată. Localizarea traseului a eşuat Crearea traseului a eşuat. - Schimbă punctul de plecare sau destinaţia. - Schimbă punctul de plecare - Traseul nu a fost creat. Localizarea punctului de plecare a eşuat. - Alege un punct de plecare mai aproape de un drum. - Schimbă destinaţia + Ajustaţi punctul iniţial sau destinaţia. + Ajustaţi punctul iniţial + Traseul nu a fost creat. Localizarea punctului iniţial a eşuat. + Setaţi punctul iniţial mai aproape de un drum. + Ajustaţi destinaţia finală Traseul nu a fost creat. Localizarea destinaţiei a eşuat. - Alege un punct de destinaţie mai aproape de un drum. + Setaţi un punct de destinaţie mai aproape de un drum. Punctul intermediar nu poate fi localizat. - Schimbă punctul intermediar. - Eroare de sistem + Ajustați punctul intermediar. + Eroare sistem Crearea traseului a eşuat din cauza unei erori a aplicaţiei. - Încearcă din nou - Vrei să descarci harta şi să creezi un traseu mai bun care include mai multe hărți? - Descarcă hărți suplimentare pentru a crea un traseu mai bun care să traverseze limitele acestei hărți. + Încercaţi din nou + Nu acum + Doriţi să descărcaţi harta şi să creaţi un traseu mai direct care include mai mult decât o hartă? + Pentru a crea un traseu mai adecvat care trece de limita acestei hărţi, descărcaţi harta. - Pentru a putea începe căutarea și crearea unor trasee, descarcă harta, iar apoi nu vei mai avea nevoie de conexiune la internet. - Alege harta + Pentru a putea începe căutarea și crearea unor rute, vă rugăm să descărcați harta, iar apoi nu veți mai avea nevoie de conexiune la internet. + Selectați harta - Arată + Afișare - Ascunde + Ascundere + + Planificarea rutei a eșuat - Sosire la %s + Sosire: %s + + Pentru a crea o rută, vă rugăm să descărcați și să actualizați toate hărțile de pe parcursul rutei. + Vă place aplicația? + Vă mulțumim că folosiți Organic Maps. Vă rugăm să dați o notă aplicației. Comentariile dvs. ne ajută să devenim mai buni. + Ura! Și noi vă iubim! + Vă mulțumim, vom face tot ce ne stă în putință! + Aveți vreo idee prin care putem să îmbunătățim aplicația? Categorii - Cronologia + Istoric Închis - Nu s-a găsit nimic. - Caută altfel. - Cronologia căutărilor - Arată căutările recente. - Șterge cronologia căutărilor - - Wikipedia - Poziția ta - Pornește - De la - La - Navigația este disponibilă doar avînd ca punct de plecare poziția ta actuală. - Vrei să planificăm un traseu din poziția ta actuală? + Ne pare rău, nu s-au găsit rezultate. + Vă rugăm să încercați altă căutare. + Istoricul căutărilor + Accesare rapidă a căutărilor recente. + Ștergere istoric de căutare + Locația dvs. + Start + Din + Ruta la + Navigația este disponibilă doar având ca punct de pornire locațiacctuală. + Doriți să vă planificăm o rută având ca punct de pornire locația actuală? - Următorul - Adaugă planificare - Elimină planificarea + Următoarea + Adăugare planificare + Eliminare planificare - Toată ziua (24 ore) - Deschis - Închis - Adaugă ore de închidere - Ore de deschidere + Toată ziua (non-stop) + Deschidere + Închidere + Adăugare oră de închidere + Program Mod Avansat Mod Simplu - Ore de închidere - Exemple + Ora închiderii + Exemple de valori Corectare greșeală - Poziția - Descrie problema în detaliu, astfel încît comunitatea OpenStreeMap să poată remedia eroarea. - Sau corecteaz-o tu pe https://www.openstreetmap.org/ - Trimite + Locație + Ați modificat harta lumii. Nu ascundeți acest lucru! Spuneți-le prietenilor dvs. și modificați-o împreună. + Partajează cu prietenii + Vă rugăm să descrieți problema în detaliu, astfel încât comunitatea OpenStreeMap să poată remedia eroarea. + Sau faceți-o pe https://www.openstreetmap.org/ + Trimiteți Problemă - Acest loc nu există + Această locație nu există Închis pentru întreținere - Loc duplicat + Locație dublată Descărcare automată + Închis acum + Zilnic - 24/7 + Zi și noapte Astăzi închis Închis Azi - Modifică ore de funcționare - Nu ai un cont OpenStreetMap? - Înscrie-te + Adăugare ore de funcționare + Editare ore de funcționare + Nu aveți un cont în OpenStreetMap? + Înregistrați-vă + Parolă (minim 8 caractere) + Nume de utilizator sau parolă incorecte. Autentificare - Parola - Ai uitat parola? - Deconectare - Mulțumesc - Modifică locul - Adaugă o limbă + Parolă + Ați uitat parola? + Cont OSM + Ieșire + + Ultima încărcare + Vă mulțumim + Editați loc + Denumire loc + Adăugare limbă Stradă - Număr + Număr casă Detalii - Adaugă o stradă - - Introdu numele străzii - Alege o limbă - Alege o stradă - Cod poștal + Adăugare stradă + Alegeți o limbă + Alegeți o stradă + Cod postal Bucătărie - Alege bucătăria + Selectați tipul de bucătărie - E-mail sau nume de utilizator - Adaugă un număr - Toate modificările aduse hărții vor fi șterse împreună cu harta. - Actualizează hărțile - Pentru a crea un traseu, trebuie să actualizezi toate hărțile, iar apoi să planifici traseul încă o dată. - Caută harta - Verifică dacă aparatul tău este conectat la internet. + Adresa de email sau numele de utilizator + Telefon + Actualizați hărțile + Pentru a crea un traseu, trebuie să actualizați toate hărțile, iar apoi să planificați traseul încă o dată. + Actualizați hărțile + Pentru a crea un traseu, trebuie să actualizați toate hărțile, iar apoi să planificați traseul încă o dată. + Găsiți harta + Eroare de descărcare + Vă rugăm să vă verificați setările și să vă asigurați că dispozitivul dvs. este conectat la Internet. Spațiu insuficient - Șterge datele care nu sînt necesare + Vă rugăm să ștergeți datele care nu sunt necesare Eroare de conectare. Modificări confirmate - Trage de hartă pentru a alege poziția corectă a obiectului. - Modifică - Adaugă - Numele locului + Trageți de hartă pentru a selecta locația corectă a obiectului. + Selectați categoria + Popular + Toate categoriile + Editare + Adăugare + Denumirea locației Categorie - Descriere detaliată a problemei + Descrierea detaliată a problemei O problemă diferită - Adaugă o firmă - Niciun obiect nu poate fi poziționat aici - Autentifică-te pentru ca modificările pe care le-ai făcut să poată fi văzute și de alți utilizatori. + Adăugare organizație + Adăugați locuri noi pe hartă și modificați-le pe cele existente direct din aplicație. + Schimbare locație + În acest loc nu poate fi localizat un obiect + Autentificați-vă pentru ca modificările pe care le-ați efectuat să poată fi văzute și de alți utilizatori. + + Aveți nevoie de mai mult spațiu ca să descărcați. Vă rugăm să ștergeți toate informațiile inutile. + Am îmbunătățit hărțile Organic Maps %1$d din %2$d - Vrei să descarci prin rețeaua de telefonie mobilă? - Aceasta poate fi destul de costisitoare în cazul unor abonamente sau în roaming. - Introdu un număr corect - Număr de etaje (maximum %d) + Descărcați utilizând o conexiune prin rețeaua de telefonie mobilă? + Aceasta poate fi destul de costisitoare în cazul unor abonamente sau dacă sunteți pe roaming. + Introduceți numărul corect al casei + Număr de etaje (max %d) - Numărul de etaje nu trebuie să depășească 25 + Editare clădire cu maximum 25 de etaje Cod poștal - Introdu codul poștal corect + Introduceți codul poștal corect Loc necunoscut - Trimite un mesaj către OSM + Trimite o notă editorilor OSM Comentariu detaliat - Modificările aduse hărții, sugerate de tine, vor fi trimise comunității OpenStreetMap. Descrie orice detalii suplimentare care nu pot fi modificate în Organic Maps. + Modificările sugerate vor trimise către comunitatea OpenStreetMap. Descrieți detalii ce nu pot fi adăugate în be the details which cannot be edited in Organic Maps. Mai multe despre OpenStreetMap - Proprietar - Nu ai descărcat nicio hartă - Descarcă hărți pentru a căuta un loc și a naviga fără conectare la internet. + Operator + Hărțile mele + Nu ați descărcat nicio hartă + Descărcați hărți pt. a găsi locația și navigați offline. - Continui cu detectarea poziției tale actuale? + Continuați cu detectarea locației dvs. curente? - Poziția actuală este necunoscută. Poate te afli într-o clădire sau un tunel. - Continuă - Oprește + Locația curentă este necunoscută. Poate vă aflați într-o clădire sau un tunel. + Continuare + Oprire + Locația curentă este necunoscută. + S-a produs o eroare la căutarea locației. Verificați dacă dispozitivul funcționează corect și încercați din nou. + Geolocalizarea este dezactivată + Activaţi accesul la geolocalizare din setările dispozitivului + 1. Deschideți setările + 2. Apăsați pe Localizare + + 3. Selectați în timp ce folosiți aplicația m km km/h @@ -453,182 +525,244 @@ o min Descriere - Mai mult + Mai multe Mai multe recenzii Rezervare - Apelează - Modifică locul preferat + Apel + Editare marcaj + Nume marcaj + Note personale + Ștergere marcaj + Modificările sugerate au fost trimise Comentariu… - Ștergi toate modificările locale? - Șterge - Elimini locul adăugat? - Elimină + Resetați toate modificările locale? + Resetare + Eliminați locul adăugat? + Eliminare Locul nu există - - Indică motivul pentru care ai eliminat locul + …mai multe - Introdu un număr de telefon corect - Introdu o adresă web corectă - Introdu un e-mail valabil - Introdu o adresă web, un cont sau un nume de pagină Facebook valabil - Introdu o adresă web sau un nume de cont Instagram valabil - Introdu o adresă web sau un nume de utilizator Twitter valabil - Introdu o adresă web sau un nume de cont VK valabil - Introdu o adresă web LINE valabilă sau un ID LINE - Adaugă un loc pe hartă + Introduceți numărul de telefon corect + Introduceți o adresă web validă + Introduceți o adresă de email validă + Actualizați + Adăugați un loc pe hartă - Vrei să-l trimiți tuturor utilizatorilor? + Doriți să îl trimiteți tuturor utilizatorilor? - Asigură-te că nu ai introdus niciun fel de date personale. - Vom verifica modificările. Dacă vor apărea întrebări, te vom contacta prin e-mail. + Asigurați-vă că nu ați introdus niciun fel de date personale. + Vom verifica modificările. Dacă vor apărea întrebări, vă vom contacta prin email. + stop + + Dezactivați înregistrarea celui mai recent traseu urmat? + Dezactivare + + Aruncați o privire + Organic Maps folosește în fundal geo-locația pentru a înregistra cel mai recent traseu urmat. - Organic Maps este o aplicație gratuită și cod sursă public care permite descărcarea hărților și navigare fără internet. Fără reclame. Fără urmărire. Dacă vezi o eroare pe hartă, te rugăm să o corectezi în OpenStreetMap. Proiectul este creat de entuziaști în timpul nostru liber, așa că avem nevoie de părerea și sprijinul tău. + Organic Maps este o aplicație gratuită și open source pentru hărți offline. Fără reclame. Fără urmărire. Dacă vedeți o eroare pe hartă, remediați-o în OpenStreetMap. Proiectul este creat de entuziaști în timpul nostru liber, așa că avem nevoie de feedback-ul și asistența dvs.. + Setări generale - Acceptă + Acceptați - Refuză - + Refuzați + Listă - Folosești internetul mobil pentru a vedea informaţii detaliate? - Folosește mereu + Folosiți internetul mobil pentru a afişa informaţii detaliate? + Folosiți întotdeauna Doar astăzi - Nu folosi astăzi + Nu folosiți astăzi Internet mobil Internetul mobil este necesar pentru afişarea de informaţii detaliate despre locuri, precum fotografii, preţuri şi recenzii. - Nu utiliza niciodată - Întreabă mereu + Nu utilizați niciodată + Întrebați întotdeauna Pentru a afişa datele privind traficul, hărțile trebuie actualizate. - Mărește literele pe hartă - Actualizează Organic Maps + Măriți dimensiunea fontului pe hartă + Vă rugăm să actualizaţi Organic Maps + + Pentru a afişa datele privind traficul, aplicația trebuie actualizată. - Datele privind traficul nu sînt disponibile - Activează jurnalizarea + Datele privind traficul nu sunt disponibile + Activare jurnalizare - Părere generală - Pornit - Oprit - Pentru instrucțiuni vocale utilizăm sistemul TTS. Multe dispozitive cu Android folosesc Google TTS. Poți descărca sau actualiza aplicația din Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) - Pentru unele limbi trebuie să instalezi alt sintetizator de voce sau un pachet lingvistic suplimentar din Magazinul de aplicații (Google Play, Samsung Apps).\nDeschide reglările aparatului → Limbă → Transformare text în vorbire → Motor preferat.\nAici poți alege motorul de transformare a textului în vorbire și poți descărca o limbă pentru utilizare fără internet. - Consultă acest ghid pentru informații suplimentare. - Transcrie în alfabet latin + Feedback general + Activat + Dezactivat + Pentru instrucțiuni vocale utilizăm sistemul TTS. Multe dispozitive cu Android folosesc Google TTS. Puteți descărca sau actualiza aplicația din Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) + Pentru unele limbi trebuie să instalați alt sintetizator de voce sau un pachet lingvistic suplimentar din Magazinul de aplicații (Google Play Market, Samsung Apps).\nDeschideți setările aplicației → Limbă și introducere → Voce → Conversie text în voce.\nAici puteți administra setările pentru sintetizatoarele vocale (de exemplu, descărcați pachetul lingvistic pentru utilizare offline) și selectați alt motor de conversie din text în voce. + Consultați acest ghid pentru informații suplimentare. + Transcriere în alfabet latin Mai multe Ieșire - Adaugă un punct de plecare pentru a planifica un traseu - Adaugă un punct de sosire pentru a planifica un traseu + Adăugați punctul de plecare pentru a planifica un traseu + Adăugați punctul de sosire pentru a planifica un traseu Ieșire - Elimină - Adaugă oprire - Problemă de acces la spațiul de stocare - Spațiul de stocare extern nu este disponibil. Probabil cardul SD nu este introdus, este deteriorat sau sistemul de fișiere este doar pentru citire. Verifică sau contactează-ne la support\@organicmaps.app - Simulare arhivă deteriorată + Administrare traseu + Planificare + Eliminare + Trageți aici pentru a elimina + Adăugare oprire + Începând de la + Ups, a survenit o eroare. Încercați să vă conectați din nou. + Problemă de accesare spațiu de stocare + Spațiul de stocare extern nu este disponibil. Probabil cardul SD nu este introdus, este deteriorat sau sistemul de fișiere este read-only. Verifică și contactează-ne la support\@organicmaps.app + Emulare stocare eronată Intrare Introdu un nume corect Liste - Ascunde tot - Arată tot - Creează o listă nouă - - Importă locuri preferate - Imposibil de trimis din cauza unei erori a aplicației - Eroare la trimitere - Nu se poate trimite o listă goală - Numele este necesar - Introdu numele listei - Listă nouă - Acest nume este deja ales - Alege un alt nume - Așteaptă… - Număr de telefon - Profil OpenStreetMap - - A fost găsit %d fișier. Îl vei vedea după conversiune. - Au fost găsite %d fișiere. Le vei vedea după conversiune. + Ascundere toate + Afișare toate + + %d semne de carte - Nicio conexiune la internet + Creați o listă nouă + Ascundere ecran + %1$s (%2$s din %3$s) + Descărcare %s… + Aplicare %s… + Imposibil de distribuit din cauza unei erori a aplicației + Eroare la distribuire + Nu se poate distribui o listă goală + Numele nu poate fi gol + Introduceți numele listei + Lista nouă + Acest nume este deja luat + Alegeți un alt nume + Acest nume este prea lung + Te rog asteapta… + Numar de telefon + Profil OpenStreetMap + Au fost detectate fișiere noi + + %d fișier a fost găsit. Veți vedea după conversie. + Au fost găsite %d fișiere. Veți vedea după convertire. + + Convertit + Eroare + Unele fișiere nu au fost convertite. + Restabiliți această versiune? + Fără conexiune internet + O eroare necunoscută s-a întamplat + Restabili - %d obiect - %d obiecte + %d localitate - %d loc - %d locuri + %d localităti - %d traseu - %d trasee + %d bande - Opțiuni traseu - Raport de eroare - Putem folosi datele tale pentru a îmbunătăți Organic Maps. Modificările vor intra în vigoare după repornirea aplicației. - Confidențialitate + Setări de servire + Rapoarte de eroare + Putem folosi datele dvs. pentru a dezvolta și de a îmbunătăți Organic Maps. Modificările vor intra în vigoare după repornirea aplicației. + Politica de confidențialitate Termeni de utilizare - Trafic + Dopuri Metrou Straturile hărții Harta de metrou nu este disponibilă Lista este goală - Pentru a adăuga un loc preferat, ține apăsat un loc pe hartă și după aceea atinge simbolul în formă de stea + Pentru a adăuga un nou tag, faceți clic pe pictograma stea în fișa de obiect …mai mult - Exportă fișierul - Opțiunile listei - Șterge lista + A apărut o eroare + Exportați fișierul + Elaborarea listei + Ștergerea listei + Ascundeți de pe hartă Acces public Acces privat - Adaugă o descriere (text sau html) + Adăugați o descriere (text sau html) Personal - Radare + În timpul încărcării tag-urilor s-a produs o eroare, vă rugăm să încercați încă odată + Descărcați + Camere de supraveghere video a vitezei Auto Mereu Niciodată Descrierea locului - Descărcarea hărților - Economisire a energiei - Dacă este pornit modul de economisire a energiei, aplicația va deconecta caracteristicile care consumă multă energie în funcție de nivelul de încărcare a bateriei + Încărcarea hărților + Auto - De avertizat despre camerele video de înregistrare a vitezei, dacă există riscul depășirii limitei de viteză\nMereu - De avertizat întotdeauna despre camerele video\nNiciodată - De nu avertizat niciodată despre camerele video + Modul de economisire a energiei + Dacă este pornit modul de economisire a energiei, aplicația va deconecta funcțiile care consumă multă energie în dependență de încărcarea bateriei telefonice Niciodată - Automat + Auto Economisire maximă a energiei - Opțiunea activează jurnalizarea în scopuri de diagnosticare. Aceasta poate fi utilă pentru echipa noastră pentru a depana problemele cu aplicația. Activează temporar această opțiune pentru a înregistra și a ne trimite jurnale detaliate despre problema ta. - Modifică în internet - Opțiuni de ocolire + Aceasta opțiune se pornește pentru logarea acțiunii în scopul diagnosticării. Aceasta va ajuta echipei să găsească problemele legate de aplicație. Conectați opțiunea numai la solicitarea serviciului de suport Organic Maps. + Se editează online + Setarea ocolirii De evitat pe orice traseu Drumuri cu plată - Drum neasfaltat + Drum de țară Trecere cu bac - Autostrăzi - Imposibil de creat un traseu - Din păcate, nu reușim să elaborăm un traseu cu opțiunile alese. Modifică-le și încearcă din nou. - Stabilește drumurile de evitat - Opțiuni de ocolire activate + Magistrale + Imposibil de elaborat un traseu + Din păcate, nu reușim să elaborăm un traseu cu opțiunile alese. Modificați setările și încercați încă o dată + Setați căile de ocolire + Setarea ocolirii este activată Drum cu plată - Drum neasfaltat + Drum de țară Trecere cu bac - Evită drumurile cu plată - Evită drumurile neasfaltate - Evită trecerile cu bac - Bine + De evitat drumurile cu plată + De evitat drumurile de țară + De evitat trecerile cu bac + Mergem + Scop + Centrați + Rezultatul căutării + După + Doriți să refaceți traseul? + Da + Nu + Ați sosit! + Tastiera nu este accesibilă în timpul deplasării + Este imposibil de elabora traseul de la punctul de aflare + Este imposibil de elaborat traseu până la punctul de sosire. Selectați altul + Nu este semnal GPS. Mergeți la loc deschis + Este imposibil de elaborat un traseu. Selectați alte puncte ale traseului + Pentru noi trasee, încărcați hărțile lipsa pe dispozitivul dvs. + Eroare. Restartați aplicația + Traseul se va reface de la locul actual al aflării dvs + Traseul va fi modificat cu unul automobilistic + Ok + Fără neasfal + Fără neasfaltat + Fără bacuri + Fără bacuri + Gratis + Gratis + Cameră video + Info camere + Vă rugăm să descărcați hărțile în aplicația Organic Maps de pe dispozitivul dvs. + %s ieșire - Sortare… + Sortați… - Aranjează preferatele + Sortați inscripțiile + + Sortați la modul implicit + Sortați după dip + Sortați după distanță + Sortați după dată - Prestabilit + Mod implicit După tip După distanță După dată - Acum o săptămînă - Acum o lună - Acum mai mult de o lună - Cu peste un an în urmă - Lîngă mine + O săptămână în urmă + O lună în urmă + Mai mult de o lună în urmă + Mai mult de un an în urmă + Alături de mine Altele - Mîncare - Obiective turistice - Muzee + Mâncare + Locuri faimoase + Muzeu Parcuri Înot Munți @@ -640,30 +774,44 @@ Parcări Benzinării Apă - Farmacii - Caută în listă + Medicină + Căutați în listă Locuri sfinte - Alege lista + Alegeți lista Navigarea pentru metrou nu este încă disponibilă în această regiune - Traseul metroului nu a fost găsit - Alege un punct de plecare sau de sosire mai aproape de o stație de metrou + Ruta metroului nu a fost găsită + Selectați punctul de început sau de sfârșit al rutei mai aproape de stația de metrou Înălțimi - Pentru a activa și utiliza stratul topografic actualizează sau descarcă harta zonei - Stratul topografic nu este încă disponibil în această zonă + Pentru a utiliza liniile de înălțimi, actualizați sau descărcați harta zonei dorite + Liniile de înălțimi pană ce nu sunt disponibile în această regiune + Nivel de dificultate + Ușor + Mediu + Dificil Urcare - Coborîre - Înălțime minimă - Înălțime maximă + Coborâre + Înălțime min. + Înălțime max. Dificultate Dist.: Timp: - Mărește harta pentru a vedea contururile - Descarcă harta lumii - Eroare de conectare - Deconectează cablul USB - Lasă ecranul să se stingă + Măriți harta pentru a vedea contururile + Actualizare + Încărcare + Informații importante + Permiteți ecranului să doarmă - Cînd este activat, ecranul se va stinge după o perioadă de inactivitate. + Când este activat, ecranul va fi lăsat să doarmă după o perioadă de inactivitate. + + Actualizează hărțile descărcate + + Actualizarea hărților vă ajută să păstrați actualizate informațiile despre obiecte + + Actualizare (%s) + + Actualizare manuală mai târziu + + Rută Stație de teleferic @@ -877,8 +1025,6 @@ Telefon de urgență Intrare Laborator medical - - Stație de autobuz Drum în construcție Cale @@ -978,22 +1124,6 @@ Stradă Stradă Stradă - Cale - Stradă - Stradă - Cale - Stradă - Stradă - Stradă - Stradă - Stradă - Stradă - Cale - Stradă - Stradă - Stradă - - Sit arheologic Castel Castel @@ -1079,16 +1209,16 @@ Operator de telefonie mobilă Municipiu Capitală - Municipiu - Municipiu + Capitală + Capitală Capitală - Municipiu - Municipiu - Municipiu - Municipiu - Municipiu - Municipiu - Municipiu + Capitală + Capitală + Capitală + Capitală + Capitală + Capitală + Capitală Continent Județ Fermă diff --git a/android/res/values-ru/strings.xml b/android/res/values-ru/strings.xml index e9ee6ca931..88e6a6c2c8 100644 --- a/android/res/values-ru/strings.xml +++ b/android/res/values-ru/strings.xml @@ -8,6 +8,8 @@ Назад Отмена + + Отменить загрузку Удалить Загрузить карты @@ -17,6 +19,8 @@ Загружается… Километры + + Написать отзыв Карты @@ -32,14 +36,19 @@ Поиск Поиск на карте + + Да Геолокация выключена в настройках устройства. Пожалуйста, включите её для удобного использования программы. Показать на карте + + Загрузить карту Ошибка загрузки Попробуйте еще раз + О программе Настройки подключения Закрыть Для работы приложения необходим аппаратно ускоренный OpenGL. К сожалению, ваше устройство не поддерживается. @@ -59,11 +68,13 @@ Не удалось загрузить %s - Добавить список + Добавить группу Цвет метки - Название списка меток + Название группы + + Группы меток Метки @@ -72,8 +83,8 @@ Название Адрес - - Список + + Группа Настройки @@ -88,43 +99,41 @@ Единицы измерения Использовать километры или мили - - - + Где поесть - + Продукты - + Транспорт - + Заправка - + Парковка - + Шоппинг - + Гостиница - + Достопримечательность - + Развлечения - + Банкомат - + Ночная жизнь - + Отдых с детьми - + Банк - + Аптека - + Больница - + Туалет - + Почта - + Полиция Примечание @@ -159,8 +168,12 @@ Email Скопировано в буфер обмена: %1$s + + Информация Готово + + Версия: %s Версия данных: %d @@ -195,6 +208,10 @@ Язык подсказок Не доступны + + Другой + + Недавний путь Автозум Выключено 1 час @@ -202,6 +219,8 @@ 6 часов 12 часов 1 сутки + Эта функция позволяет записывать пройденный путь за определенный период времени и видеть его на карте. Внимание: активация этой функции может привести к повышенному расходу батареи. Записанный трек будет удален с карты по истечении этого срока. + Расстояние Посмотреть на карте Вебсайт @@ -219,6 +238,12 @@ Копирайт Сообщить о проблеме + + Почтовый клиент не настроен. Настройте его или используйте другие способы для связи. Наш адрес - %s. + + Ошибка при отправлении письма + + Калибровка компаса WiFi @@ -227,12 +252,19 @@ Отменить все Загруженные + + Доступные В очереди Возле меня Карт Загрузить все Загружается: + Найдено + + Обновить + + Ошибка Чтобы удалить карту, пожалуйста, остановите навигацию. @@ -247,12 +279,22 @@ Обновить карту Использовать Google Play Services для определения позиции + + Я только что оценил Organic Maps + + Спасибо! + + Что-то не так? Расскажите, что бы мы могли исправить или улучшить в приложении. + + Напишите нам Загрузите все карты по пути следования Для создания маршрута необходимо загрузить и обновить все карты на пути следования. Недостаточно места + + метка Пожалуйста, включите геолокацию Сохранить @@ -305,6 +347,8 @@ Пожалуйста, проверьте сигнал GPS. Для улучшения точности геопозиции включите Wi-Fi. Включите режим определения геопозиции Текущая геопозиция не определена. Для построения маршрута включите режим определения геопозиции. + Загрузите необходимые файлы + Для построения маршрута загрузите и обновите все карты и файлы маршрутов по пути следования. Маршрут не найден Не получилось построить маршрут. Пожалуйста, измените начальную или конечную точку маршрута. @@ -319,6 +363,7 @@ Системная ошибка Не удалось проложить маршрут из-за ошибки приложения. Попробуйте снова + Не сейчас Загрузить карту и построить более оптимальный маршрут с пересечением границы карты? Для построения более оптимального маршрута с пересечением границы требуется загрузить карту. @@ -329,8 +374,17 @@ Показать Скрыть + + Ошибка построения маршрута Прибытие в %s + + Для построения маршрута загрузите и обновите все карты по пути следования. + Нравится приложение? + Спасибо что пользуетесь картами Organic Maps. Пожалуйста, оцените приложение. Ваши оценки и отзывы помогают нам становиться лучше. + Ура! Мы вас тоже любим! + Спасибо, мы будем стараться! + Расскажите, что мы могли бы улучшить? Категории История Закрыто @@ -339,8 +393,6 @@ История поиска Быстрый доступ к последним поисковым запросам. Очистить историю поиска - - Википедия Ваше местоположение Начать Отсюда @@ -363,6 +415,8 @@ Примеры значений Исправьте ошибку Местоположение + Вы изменили карту мира. Не скрывайте это, расскажите друзьям и редактируйте вместе. + Поделиться с друзьями Пожалуйста, напишите подробно о проблеме, чтобы сообщество OpenStreetMap исправило ошибку. Или сделайте это самостоятельно на сайте https://www.openstreetmap.org/ Отправить @@ -372,20 +426,29 @@ Повторяющееся место Автоматическая загрузка + Сейчас закрыто + Ежедневно Круглосуточно Сегодня закрыто Закрыто Сегодня + Добавить время работы Редактировать время работы Не зарегистрированы в OpenStreetMap? Зарегистрироваться + Пароль (минимум 8 символов) + Неверное имя пользователя или пароль. Войти Пароль Забыли пароль? + OSM Аккаунт Выйти + + Последняя отправка Спасибо Редактировать место + Название Добавить язык Улица @@ -402,17 +465,23 @@ Выбрать кухню Эл. почта или имя пользователя + Телефон Добавить телефон + Обратите внимание Вместе с картой удалятся и внесенные вами правки на этой карте. Обновите карты Для построения маршрутов необходимо обновить все карты и построить маршрут заново. Найти карту + Ошибка загрузки Проверьте настройки и убедитесь, что устройство подключено к интернету. Недостаточно места Удалите ненужные данные Произошла ошибка при авторизации. Учтённые правки Потяните карту, чтобы выбрать правильное местоположение объекта. + Выбрать категорию + Популярные + Все категории Редактирование Добавление Название места @@ -420,8 +489,13 @@ Подробное описание проблемы Другая проблема Добавить организацию + Добавляйте новые объекты и редактируйте старые прямо из приложения. + Измените местоположение Объект не может находиться в этом месте Войдите, чтобы ваши изменения увидели другие пользователи. + + Для загрузки требуется больше свободного места. Пожалуйста, удалите ненужные данные. + Я улучшил карты Organic Maps %1$d из %2$d Загрузить через сотовую связь? @@ -439,6 +513,7 @@ Предложенные вами изменения на карте будут отправлены в OpenStreetMap. Опишите дополнительные сведения об объекте, которые Organic Maps не позволяет отредактировать. Подробнее об OpenStreetMap Владелец + Мои карты У вас нет загруженных карт Загрузите необходимые карты, чтобы находить места и пользоваться навигацией без интернета. @@ -447,6 +522,14 @@ Местоположение не найдено. Возможно, вы находитесь в помещении или в туннеле. Продолжить Стоп + Местоположение не найдено. + При поиске местоположения произошла неизвестная ошибка. Проверьте работоспособность устройства и попробуйте найти местоположение позднее. + Определение местоположения отключено + Разрешите доступ к геопозиции в настройках устройства. + 1. Откройте Настройки + 2. Нажмите Геопозиция + + 3. Выберите «При использовании программы» м км км/ч @@ -461,6 +544,10 @@ Забронировать Позвонить Редактировать метку + Название метки + Примечание + Удалить метку + Предложенные вами изменения отправлены Коментарий… Сбросить все локальные правки? Сбросить @@ -469,6 +556,7 @@ Места не существует Пожалуйста, укажите причину удаления + …ещё Введите корректный номер телефона Введите корректный веб-адрес @@ -478,19 +566,28 @@ Введите корректный веб-адрес Twitter страницы или имя пользователя Введите корректный веб-адрес VK страницы или имя пользователя Введите корректный веб-адрес LINE страницы или LINE ID + Обновить Добавить место на карту Отправить всем пользователям? Убедитесь, что вы не ввели личные данные. Если при проверке изменений возникнут вопросы, мы напишем вам на email. + стоп + + Выключить запись недавно пройденого пути? + Выключить + + Посмотри + Organic Maps использует вашу геопозицию в фоновом режиме для записи недавно пройденного пути. Organic Maps — бесплатные офлайновые карты с открытым исходным кодом, без рекламы и без сбора ваших персональных данных, созданные энтузиастами в свободное от основной работы время. Так как все данные мы берём из OpenStreetMap, то ошибки на карте нужно исправлять именно там. Будем рады вашей поддержке и обратной связи. + Общие настройки Принять Отклонить - + Список Загружать дополнительную информацию через мобильный интернет? Всегда @@ -503,6 +600,8 @@ Для отображения пробок необходимо обновить карты. Увеличить шрифт на карте Обновите Organic Maps + + Для отображения пробок необходимо обновить приложение. Данные о пробках недоступны Включить запись логов @@ -519,8 +618,13 @@ Добавьте стартовую точку, чтобы построить маршрут Добавьте конечную точку, чтобы построить маршрут Выход + Изменить маршрут + Построить Удалить + Перетяните сюда, чтобы удалить Заехать + Начать от + Упс, произошла ошибка. Попробуйте авторизоваться повторно. Проблема с доступом к хранилищу Внешняя память устройства недоступна, возможно SD карта была удалена, повреждена или файловая система доступна только для чтения. Проверьте это и свяжитесь, пожалуйста, с нами support\@organicmaps.app Эмуляция ошибки с внешней памятью @@ -530,9 +634,18 @@ Спрятать все Показать все + + %d метки + %d метка + %d меток + Создать новый список Импортировать метки + Скрыть + %1$s (%2$s из %3$s) + Загрузка %s… + Применение %s… Не удалось поделиться из-за ошибки приложения Ошибка при попытке поделиться Нельзя делиться пустыми списками @@ -541,29 +654,40 @@ Новый список Такое имя уже занято Выберите, пожалуйста, другое имя + Слишком длинное название Пожалуйста, подождите… Номер телефона Профиль OpenStreetMap + Обнаружены новые файлы - %d файла были найдены. Вы увидите их после конвертации. - %d файл был найден. Вы увидите его после конвертации. - %d файлов было найдено. Вы увидите их после конвертации. + %d файла были найдены. Вы увидете их после конвертации. + %d файл был найден. Вы увидете его после конвертации. + %d файлов было найдено. Вы увидете их после конвертации. + Конвертировать + Ошибка + Некоторые файлы не конвертировались. + Восстановить эту версию? Нет интернет соединения + Произошла неизвестная ошибка + Восстановить %d объекта %d объект %d объектов + %d объекта %d места %d место %d мест + %d места %d трека %d трек %d треков + %d трека Настройки сопровождения Отчеты об ошибках @@ -575,15 +699,20 @@ Слои карты Карта метро недоступна Список пустой - Чтобы добавить метку, нажмите на место на карте, а затем на иконку звёздочки + Чтобы добавить новую метку, нажмите на значок звездочки в карточке объекта …еще + Произошла ошибка + Популярно Экспортировать файл Настройки списка Удалить список + Скрыть с карты Публичный доступ Ограниченный доступ Добавьте описание (текст или html) Личный + Во время загрузки тегов произошла ошибка, пожалуйста, попробуйте еще раз + Скачать Камеры скорости Авто Всегда @@ -591,6 +720,7 @@ Описание места Загрузка карт + Авто - Предупреждать о камерах скорости, если есть риск превышения скоростного лимита\nВсегда - Всегда предупреждать о камерах\nНикогда - Никогда не предупреждать о камерах Режим энергосбережения Если режим энергосбережения включен, приложение будет отключать энергозатратные функции в зависимости от текущего заряда телефона Никогда @@ -614,11 +744,44 @@ Избегать платных дорог Избегать грунтовых дорог Избегать паромных переправ + Поехали + Цель + Отцентровать + Результаты поиска + Затем + Хотите перестроить маршрут? + Да + Нет + Вы прибыли! + Клавиатура недоступна во время движения + Невозможно построить маршрут от текущего местоположения + Невозможно построить маршрут до конечной точки. Выберите другую + Нет сигнала GPS. Проследуйте на открытую местность + Невозможно построить маршрут. Выберите другие точки маршрута + Чтобы построить маршрут, загрузите недостающие карты на своем устройстве + Произошла ошибка. Перезапустите приложение + Маршрут будет перестроен от вашего текущего местоположения + Маршрут будет изменен на автомобильный Ок + Без грунт. + Без грунтовых + Без паромов + Без паромов + Без платных + Без платных + Камеры + Инфо о камерах + Скачайте карты в приложении Organic Maps на своем устройстве + %s съезд Сортировать… Сортировать метки + + Сортировать по умолчанию + Сортировать по типу + Сортировать по расстоянию + Сортировать по дате По умолчанию @@ -657,6 +820,10 @@ Высоты Чтобы воспользоваться линиями высот, обновите или загрузите карту нужной местности Линии высот пока не доступны в этом регионе + Уровень сложности + Лёгкий + Умеренный + Сложный Подъём Спуск Мин. высота @@ -665,12 +832,31 @@ Расст.: В пути: Увеличьте карту, чтобы увидеть изолинии + Обновление + Загрузка + Ключевая информация Скачать карту мира Ошибка подключения Отсоедините USB кабель Разрешить экрану спать При включении экран может переходить в спящий режим после периода бездействия. + + Обновите ваши загруженные карты + + Обновление карт поддерживает информацию об объектах в актуальном состоянии + + Обновить (%s) + + Обновить вручную позже + + Удалить трек + + Название трека + + Переместить + + Трек Канатная дорога @@ -942,13 +1128,11 @@ Телефон для экстренных вызовов Вход Медицинская лаборатория - - Дорога - Конная дорожка - Конная дорожка - Конная дорожка - Конная дорожка + Дорога для всадников + Дорога для всадников + Дорога для всадников + Дорога для всадников Остановка Строящаяся дорога Велодорожка @@ -957,120 +1141,103 @@ Велодорожка Лифт Пешеходная дорожка - Тропа - Пешеходная зона + Пешеходная дорожка + Пешеходная дорожка Пешеходная дорожка - Тропа - Тропа - Тропа - Тропа - Тропа + Пешеходная дорожка + Пешеходная дорожка + Пешеходная дорожка + Пешеходная дорожка + Пешеходная дорожка Пешеходная дорожка Пешеходная дорожка Брод - Жилая зона - Жилая зона - Жилая зона - Автомагистраль - Автомагистраль - Автомагистраль + Улица + Улица + Улица + Улица + Улица + Улица Съезд - Съезд с автомагистрали - Съезд с автомагистрали - Съезд с автомагистрали - Тропа - Тропа - Велопешеходная дорожка - Тропа - Тропа - Тропа - Тропа - Тропа - Конная тропа - Тропа - Тропа - Тропа - Пешеходная улица - Пешеходная зона - Пешеходная улица - Пешеходная улица - Шоссе - Шоссе - Шоссе - Съезд с шоссе - Съезд с шоссе - Съезд с шоссе + Улица + Улица + Улица + Дорожка + Дорожка + Дорожка + Дорожка + Дорожка + Дорожка + Дорожка + Дорожка + Дорожка + Дорожка + Дорожка + Дорожка + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица Гоночный трек Улица Улица Улица Улица - Зона отдыха - Дорога - Дорога - Дорога - Автодорога - Автодорога - Автодорога - Съезд с автодороги - Съезд с автодороги - Съезд с автодороги - Проезд - Проезд - Проезд - Подъезд - Парковочный проезд - Проезд - Зона обслуживания + Зона отдыха на трассе + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + СТО Камера скорости - Лестница - Лестница - Лестница - Дорога - Дорога - Дорога - Съезд с дороги - Съезд с дороги - Съезд с дороги - Грунтовка - Грунтовка - Грунтовка - Грунтовка - Грунтовка - Грунтовка - Грунтовка - Грунтовка - Грунтовка - Грунтовка - Грунтовка + Дорожка + Дорожка + Дорожка + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица Светофор - Трасса - Трасса - Трасса - Съезд с трассы - Съезд с трассы - Съезд с трассы - Небольшая дорога - Небольшая дорога - Небольшая дорога - Небольшая дорога - Велодорожка - Пешеходная дорожка - Жилая зона - Автомагистраль - Тропа - Пешеходная улица - Шоссе - Улица - Автодорога - Проезд - Дорога - Лестница - Грунтовка - Трасса - Небольшая дорога - - + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица + Улица Исторический объект Археологический памятник Поле боя @@ -1159,7 +1326,6 @@ Плавательный бассейн Беговая дорожка Аквапарк - Пляжный курорт Искусственное сооружение Волнорез Тур @@ -1232,16 +1398,16 @@ Место Город Столица - Город - Город + Столица + Столица Столица - Город - Город - Город - Город - Город - Город - Город + Столица + Столица + Столица + Столица + Столица + Столица + Столица Континент Страна Округ @@ -1262,7 +1428,7 @@ Город Деревня Энергетика - Генератор + Генератор энергии Линия электропередач Подземная линия электропередач Линия электропередачи низкого напряжения @@ -1479,7 +1645,7 @@ Водный путь Канал Канал - Дамба + Плотина Канава Канава Причал @@ -1517,4 +1683,18 @@ Трасса для скандинавской ходьбы Трасса для саней Здание + Велодорожка + Дорожка + Улица + Автомагистраль + Дорожка + Улица + Улица + Улица + Улица + Улица + Улица + Лестница + Грунтовая дорога + Автомобильная трасса diff --git a/android/res/values-sk/strings.xml b/android/res/values-sk/strings.xml index e0183dd4bf..fb92e1bbb2 100644 --- a/android/res/values-sk/strings.xml +++ b/android/res/values-sk/strings.xml @@ -8,6 +8,8 @@ Späť Zrušiť + + Zrušiť sťahovanie Zmazať Stiahnuť mapy @@ -17,6 +19,8 @@ Sťahovanie… Kilometre + + Spätná väzba Mapy @@ -29,14 +33,19 @@ Hľadať Prehľadať mapu + + Áno Aktuálne máte všetky možnosti pre určovanie polohy vypnuté. Prosím, povoľte ich v Nastaveniach. Ukázať na mape + + Stiahnite si Mapu Sťahovanie zlyhalo Skúsiť znova + O aplikácii Organic Maps Nastavenie pripojenia Zavrieť Je vyžadovaná hardwarová akcelerácia OpenGL. Bohužial, vaše zariadenie nie je podporované. @@ -61,6 +70,8 @@ Farba záložky Meno záložky + + Skupiny záložiek Záložky @@ -69,8 +80,8 @@ Názov Adresa - - Zoznam + + Skupina Nastavenia @@ -85,43 +96,41 @@ Meracie jednotky Vyberte si míle alebo kilometre - - - + Kde sa najesť - + Potraviny - + Doprava - + Čerpacia stanica - + Parkovisko - + Nakupovanie - + Hotel - + Pamätihodnosť - + Zábava - + Bankomat - + Nočný život - + Rodinná dovolenka - + Banka - + Lekáreň - + Nemocnica - + Záchody - + Pošta - + Polícia Poznámky @@ -155,8 +164,12 @@ Email Skopírované do schránky: %1$s + + Viacej informácií Hotovo + + Verzia: %s Naozaj chcete pokračovať? @@ -185,6 +198,10 @@ Nastavenia jazyka povelov Nie je k dispozícii + + Iný + + Posledná trasa Automatický zoom Vypnúť 1 hodina @@ -192,6 +209,8 @@ 6 hodín 12 hodín 1 deň + Umožňuje zaznamenať precestovanú trasu za určité obdobie a zobraziť ju na mape. Upozornenie: zapnutie tejto funkcie spôsobí vyššiu spotrebu batérie. Trasa sa z mapy automaticky odstráni po uplynutí časového intervalu. + Vzdialenosť Zobraziť na mape Webové stránky @@ -209,6 +228,12 @@ Autorské práva Nahlásiť chybu + + Emailový klient nebol nastavený. Nakonfigurujte ho prosím alebo použite iný spôsob k tomu, abyste nás kontaktovali na %s + + Chyba pri odosielaní emailu + + Compass kalibrácia WiFi @@ -217,12 +242,19 @@ Zrušiť všetko Stiahnuté + + Dostupné V rade Neďaleko mňa Mapy Stiahnuť všetko Sťahovanie: + Nájdených + + Aktualizácia + + Zlyhalo Ak chcete odstrániť mapy, prosím, zastavte navigáciu. @@ -237,10 +269,20 @@ Aktualizovať mapu Pomocou Google Play služieb získajte svoju aktuálnu polohu + + Práve som hodnotil vašu aplikáciu + + Ďakujeme vám! + + Podeľte sa o svoje nápady alebo problémy, aby sme pre vás mohli vylepšiť aplikáciu. + + Odoslať spätnú väzbu Stiahnite si mapy pozdĺž trasy Nedostatok miesta + + záložka Prosím, povoľte Služby určovania polohy Uložiť @@ -293,6 +335,8 @@ Skontrolujte signál GPS. Zapnutie Wi-Fi zlepší presnosť vašej lokalizácie. Zapnite lokalizačné služby Aktuálne súradnice GPS sa nedajú lokalizovať. Aktivujte lokalizačné služby na výpočet trasy. + Prevezmite si požadované súbory + Prevezmite si a aktualizujte všetky mapy a informácie o trase pozdĺž naplánovanej trasy na výpočet trasy. Trasa sa nedá lokalizovať Trasa sa nedá vytvoriť. Prosím, upravte váš východiskový bod alebo cieľové miesto. @@ -307,6 +351,7 @@ Systémová chyba Nedá sa vytvoriť trasa z dôvodu aplikačnej chyby. Skúste znova, prosím + Nie teraz Chcete si prevziať mapu a vytvoriť optimálnejšiu trasu, ktorá si vyžaduje viac ako jednu mapu? Prevezmite si mapu na vytvorenie optimálnejšej trasy, ktorá prekračuje okraje tejto mapy. @@ -317,8 +362,17 @@ Ukázať Skryť + + Plánovanie trasy zlyhalo Pricestovať: %s + + Prosím, pre vytvorenie trasy si stiahnite a aktualizujte všetky mapy pozdĺž trasy. + Páči sa vám aplikácia? + Ďakujeme, že používate Organic Maps. Prosím, ohodnoťte aplikáciu. Vaše názory nám pomôžu zlepšiť sa. + Hurá! Aj my vás taky páči! + Ďakujeme vám, urobíme, čo bude v našich silách! + Nejaký nápad, ako ju môžeme vylepšiť? Kategórie Archív Zatvorené @@ -349,6 +403,8 @@ Príklady hodnôt Opraviť chybu Poloha + Zmenili ste mapu sveta. Nemusíte to skrývať! Povedzte o tom svojim priateľom a začnite ju spolu upravovať. + Zdieľaj s priateľmi Prosím, pridajte detailný popis problému, aby mohla komunita OpenStreetMap opraviť danú chybu. K oprave môžete prispieť aj vy na stránke https://www.openstreetmap.org/ Odoslať @@ -358,20 +414,29 @@ Duplicitné miesto Automaticky stiahnuť + Teraz zatvorené + Denne Deň a noc Dnes deň voľna Deň voľna Dnes + Pridať otváracie hodiny Upraviť otváracie hodiny Nemáte účet v OpenStreetMap? Zaregistrovať sa + Heslo (8 minimálne znakov) + Nesprávne používateľské meno alebo heslo. Prihlásiť sa Heslo Zabudli ste heslo? + OSM účet Odhlásiť sa + + Posledné nahrávanie Ďakujeme Vám Upraviť miesto + Názov miesta Pridať jazyk Ulica @@ -386,16 +451,22 @@ Vyberte si kuchyňu Email alebo používateľské meno + Telefón + Upozorňujeme vás, že Všetky zmeny týkajúce sa mapy budú vymazané spolu s mapou. Aktualizovať mapy Ak chcete vytvoriť cestu, musíte najskôr aktualizovať všetky mapy a potom odznova naplánovať trasu. Nájsť mapu + Chyba pri sťahovaní Prosím, skontrolujte svoje nastavenia a uistite sa, že váš počítač je pripojený k internetu. Nemáte dostatok miesta Prosím, odstráňte prebytočné dáta Pri prihlasovaní sa vyskytla chyba. Overené zmeny Ak chcete nastaviť správnu polohu objektu, posuňte mapu. + Vybrať kategóriu + Obľúbené + Všetky kategórie Úprava Nové Názov miesta @@ -403,8 +474,13 @@ Podrobný popis problému Iný problém Pridať organizáciu + Na mapu môžete pridávať nové miesta a upravovať tie, ktoré sú už pridané. + Zmeniť polohu Objekt sa tu nedá umiestniť Prihláste sa, aby mohli ostatní užívatelia vidieť Vami vykonané zmeny. + + Ak chcete pokračovať v sťahovaní, musíte uvoľniť viac miesta na ukladacom priestore. Prosím, odstráňte prebytočné dáta. + Vďaka mne sú mapy na Organic Maps lepšie %1$d z %2$d Sťahovať prostredníctvom pripojenia na mobilnú sieť? @@ -422,6 +498,7 @@ Vami navrhované zmeny sa odošlú do komunity OpenStreetMap. Popíšte detaily, ktoré sa nedajú upraviť v Organic Maps. Viac o OpenStreetMap Prevádzkovateľ + Moje mapy Neprevzali ste žiadne mapy Prevziať mapy na nájdenie pozície a navigovanie off-line. @@ -430,6 +507,14 @@ Súčasná pozícia je neznáma. Možno sa nachádzate v budove alebo v tuneli. Pokračovať Zastaviť + Súčasná pozícia je neznáma. + Počas vyhľadávania vašej pozície došlo k chybe. Skontrolujte, či zariadenie pracuje správne a skúste to znova. + Identifikácia lokality je zablokovaná + Povoliť prístup ku geolokalizácii v nastaveniach prístroja + 1. Otvorte Nastavenia + 2. Kliknite na položku Lokalita + + 3. Vyberte si počas používania aplikácie m km km/h @@ -444,29 +529,43 @@ Rezervovať Zavolať Upraviť záložku + Názov záložky + Osobné poznámky + Zmazať záložku + Vykonali sa vami odporúčané zmeny Poznámka… Resetovať všetky miestne časy? Resetovať Odstrániť pridané miesto? Odstrániť Miesto neexistuje + …viac Zadajte správne telefónne číslo Zadajte platnú webovú adresu Zadajte platný email + Aktualizovať Pridať miesto na mape Odoslať všetkým používateľom? Nezadávajte žiadne osobné udaje. Skontrolujeme zmeny. V prípade otázok vás budeme kontaktovať emailom. + stop + + Znemožniť nahrávanie vami nedávno precestovanej trasy? + Znemožniť + + Pozrite si + Organic Maps používa vašu geopozíciu na pozadí pre zaznamenávanie vami nedávno precestovanej trasy. Organic Maps je bezplatná offline aplikácia máp s otvoreným zdrojom. Žiadne reklamy. Žiadne sledovanie. Ak na mape vidíte chybu, opravte ju v OpenStreetMap. Projekt vytvárajú nadšenci v našom voľnom čase, preto potrebujeme vašu spätnú väzbu a podporu. + Všeobecné nastavenia Prijať Odmietnuť - + Zoznam Použiť mobilný internet na zobrazenie podrobnejších informácií? Vždy použiť @@ -479,6 +578,8 @@ Na zobrazenie dopravných informácií je potrebné aktualizovať mapy. Zväčšiť veľkosť písma na mape Aktualizujte si aplikáciu Organic Maps + + Ak chcete zobraziť dopravné informácie, musíte si aktualizovať aplikáciu. Dopravné informácie nie sú k dispozícii Zapnúť zaznamenávanie @@ -495,8 +596,13 @@ Pridaním počiatočného bodu začnite plánovať trasu Pridaním cieľového bodu naplánujete trasu Ukončiť + Spravovať trasu + Naplánovať Odstrániť + Presunutím sem odstránite Pridať zastávku + Začať od + Ups, vyskytla sa chyba. Skúste sa prihlásiť znova. Problém s prístupom k úložisku Externý úložný priestor nie je dostupný, pravdepodobne je vytiahnutá alebo poškodená SD karta alebo je systém súborov určený iba na čítanie. Skontrolujte to, prosím, a kontaktujte nás na support\@organicmaps.app Imitovať poškodené úložisko @@ -506,7 +612,14 @@ Skryť všetko Zobraziť všetko + + %d záložiek + Vytvoriť nový zoznam + Skryť obrazovku + %1$s (%2$s z %3$s) + Sťahovanie %s… + Použitie %s… Pre chybu aplikácie nie je zdieľanie možné Chyba zdieľania Prázdny zoznam nie je možné zdieľať @@ -515,15 +628,23 @@ Nový zoznam Tento názov už bol prijatý Vyberte iné meno + Tento názov je príliš dlhý Prosím čakajte… Telefónne číslo Profil OpenStreetMap + Zistené nové súbory Boli nájdené %d súbory. Uvidíte ich po konverzii. Bol nájdený %d súbor. Uvidíte to po konverzii. Bolo nájdených %d súborov. Uvidíte ich po konverzii. + Premeniť + Chyba + Niektoré súbory neboli konvertované. + Obnoviť túto verziu? Žiadne internetové pripojenie + Vyskytla sa neznáma chyba + Obnoviť %d miesto @@ -545,13 +666,17 @@ Tento zoznam je prázdny Pre pridanie záložky kliknite na miesto na mape a potom na ikonu hviezdy …viac + Vyskytla sa chyba Exportovať súbor Nastavenie zoznamu Vymazať zoznam + Skryť z mapy Verejný prístup Obmedzený prístup Zadajte popis (text alebo html) Súkromné + Počas načítavania značiek sa vyskytla chyba, skúste to znova + Stiahnuť Rýchlostné kamery Automaticky Vždy @@ -559,6 +684,7 @@ Popis miesta Sťahovač máp + Automaticky - Upozornenie na rýchlostné kamery, ak existuje riziko prekročenia rýchlostného limitu\nVždy - Vždy upozorniť na rýchlostné kamery\nNikdy - Nikdy neupozorňovať na rýchlostné kamery Úsporný režim Keď je zvolený automatický režim, aplikácia začne vypínať funkcie, ktoré vybíjajú batériu v závislosti od aktuálnej úrovne nabitia batérie Nikdy @@ -582,11 +708,44 @@ Vyhnúť sa spoplatneným cestám Vyhnúť sa nespevneným cestám Vyhnúť sa prechodom na trajekte + Poďme + Cieľ + Vycentrovať + Výsledky vyhľadávania + Potom + Chcete znova vytvoriť trasu? + Áno + Nie + Prišli ste do cieľa! + Počas jazdy nie je klávesnica k dispozícii + Z vašej aktuálnej polohy nie je možné vytvoriť trasu + Nie je možné vytvoriť trasu do cieľa. Prosím vyberte iný bod + Žiaden GPS signál. Presuňte sa na otvorené priestranstvo + Nie je možné vytvoriť trasu. Prosím zadajte iné body trasy + Pre vytvorenie trasy si stiahnite do zariadenia chýbajúce mapy + Vyskytla sa chyba. Prosím reštartujte aplikáciu + Trasa bude obnovená z vašej aktuálnej polohy + Trasa bude upravená na jazdu autom Ok + Nespevn. NIE + Nespevnené ÁNO + Trajekty NIE + Trajekty ÁNO + Spoplat. NIE + Spoplatnené ÁNO + Radary + Rýchl. upozorn. + Prosím stiahnite si mapy v aplikácii Organic Maps vo vašom zariadení + %s výjazd Zoradiť… Zoradiť záložky + + Zoradiť Predvolené + Zoradiť podľa typu + Zoradiť podľa vzdialenosti + Zoradiť podľa dátumu Podľa predvoleného @@ -625,6 +784,10 @@ Terén Ak chcete aktivovať a používať topografickú vrstvu, aktualizujte alebo stiahnite mapu oblasti Topografická vrstva ešte nie je v tejto oblasti k dispozícii + Level obtiažnosti + Jednoduchá + Mierna + Náročná Výstup Zostup Min. nadmorská výška @@ -633,9 +796,22 @@ Vzdial.: Čas: Priblížením preskúmajte izočiary + Aktualizovanie + Sťahovanie + Kľúčová informácia Nechajte obrazovku spať Ak je táto možnosť povolená, obrazovka bude môcť po určitej dobe nečinnosti spať. + + Aktualizujte svoje stiahnuté mapy + + Vďaka aktualizácii máp budú informácie o objektoch na mape aktualizované + + Aktualizovať (%s) + + Manuálne aktualizovať neskôr + + Šľapaj Stopy Lanovka @@ -858,8 +1034,6 @@ Tiesňového volania Vstup Lekárske laboratórium - - Autobusová zastávka Cesta vo výstavbe Cesta @@ -959,22 +1133,6 @@ Ulica Ulica Ulica - Cesta - Ulica - Ulica - Cesta - Ulica - Ulica - Ulica - Ulica - Ulica - Ulica - Cesta - Ulica - Ulica - Ulica - - Vykopávky Zámok Zámok @@ -1059,16 +1217,16 @@ Mobilný operátor Mesto Hlavné mesto - Mesto - Mesto + Hlavné mesto + Hlavné mesto Hlavné mesto - Mesto - Mesto - Mesto - Mesto - Mesto - Mesto - Mesto + Hlavné mesto + Hlavné mesto + Hlavné mesto + Hlavné mesto + Hlavné mesto + Hlavné mesto + Hlavné mesto Kontinent Krajina Krajina diff --git a/android/res/values-sv/strings.xml b/android/res/values-sv/strings.xml index 6761b959a2..e7e55c379e 100644 --- a/android/res/values-sv/strings.xml +++ b/android/res/values-sv/strings.xml @@ -8,6 +8,8 @@ Tillbaka Avbryt + + Avbryt nedladdning Ta bort Ladda ner kartor @@ -17,6 +19,8 @@ Laddar ner… Kilometer + + Skriv en recension Kartor @@ -29,14 +33,19 @@ Sök Sök karta + + Ja Du har inaktiverat alla platstjänster för denna enhet eller program. Vänligen aktivera dem i Inställningar. Visa på kartan + + Ladda ner karta Downloading har misslyckats Försök igen + Om Organic Maps Anslutningsinställningar Stäng Hårdvaruaccelererad OpenGL krävs. Din enhet stöds tyvärr inte. @@ -61,6 +70,8 @@ Bokmärkesfärg Bokmärkessamlingens namn + + Bokmärkessamlingar Bokmärken @@ -69,8 +80,8 @@ Namn Adress - - Lista + + Samling Inställningar @@ -85,43 +96,41 @@ Längdenheter Välj mellan mil och kilometer - - - + Var att äta - + Produkter - + Transport - + Bensin - + Parkering - + Shopping - + Hotell - + Sevärdheter - + Underhållning - + Bankomat - + Nattliv - + Semester med barn - + Bank - + Apotek - + Sjukhus - + Toalett - + Post - + Polis Anteckningar @@ -155,8 +164,12 @@ E-post Kopierat till urklippsbordet: %1$s + + Info Klar + + Version: %s Är du säker på att du vill fortsätta? @@ -185,6 +198,10 @@ Röstspråk Inte tillgängligt + + Övrigt + + Senaste resväg Automatisk zoom Av 1 timme @@ -192,6 +209,8 @@ 6 timmar 12 timmar 1 dag + Detta gör att du kan spara en resväg för en viss tidsperiod och visa den på kartan. Obs: aktivering av den här funktionen ökar batterianvändningen. Spåret tas bort automatiskt från kartan när tidsintervallet slutar gälla. + Avstånd Visa på kartan Webbplats @@ -209,18 +228,31 @@ Copyright Rapportera en bugg + + Emailklienten har inte konfigurerats. Konfigurera den eller använd ett annat sätt att kontakta oss på %s + + Fel när mailet skulle skickas + + Kompasskalibrering Uppdatera alla Avbryt alla Nedladdade + + Tillgänglig Köade Nära mig Kartor Ladda ned alla Ladda ner: + Hittat + + Uppdatera + + Misslyckades Avsluta navigering för att radera kartan. @@ -235,12 +267,22 @@ Uppdatera karta Använd Google Play Services för att bestämma din aktuella position + + Jag har precis betygsatt er app + + Tack! + + Dela med dig av dina idéer eller problem så att vi kan förbättra appen åt dig. + + Skicka återkoppling Ladda ned kartor längs vägen Att kunna skapa en navigeringsväg kräver att alla kartorna från din plats till din destination är nerladdade och uppdaterade. För lite utrymme kvar + + bokmärke Vänligen aktivera platstjänster Spara @@ -293,6 +335,8 @@ Kontrollera din GPS-signal. Aktivera Wi-Fi-anslutning för att förbättra platsprecisionen. Aktivera platstjänster Kan inte lokalisera nuvarande GPS-koordinater. Aktivera platstjänster för att beräkna väg. + Ladda ned nödvändiga filer + Ladda ned och uppdatera all kart- och väginformation längs den beräknade vägbanan för att beräkna vägen. Kan inte lokalisera väg Kan inte skapa väg. Justera din startpunkt eller din destination. @@ -307,6 +351,7 @@ Systemfel Kan inte skapa väg på grund av ett programfel. Försök igen + Inte nu Vill du ladda ned kartan och skapa en optimalare väg som sträcker sig över fler än en karta? Ladda ned kartan för att skapa en optimalare väg som sträcker sig utanför den här kartan. @@ -317,8 +362,17 @@ Visa Göm + + Ruttplanering misslyckades Ankomst: %s + + För att skapa en rutt, ladda ner och uppdatera alla kartor längs rutten. + Gillar du appen? + Tack för att du använder Organic Maps. Betygsätt gärna appen. Din feedback hjälper oss att bli bättre. + Hurra! Vi älskar dig också! + Tack, vi ska göra vårt bästa! + Har du någon idé om hur vi ska bli bättre? Kategorier Historik Stängt @@ -349,6 +403,8 @@ Exempelvärden Korrigera fel Plats + Du har ändrat världskartan. Dölj inte detta! Berätta för dina vänner och redigera den tillsammans. + Dela med vänner Beskriv problemet i detalj så att OpenStreeMaps community kan lösa felet. Eller gör det själv på https://www.openstreetmap.org/ Skicka @@ -358,20 +414,29 @@ Duplicerad plats Automatisk nedladdning + Stängt just nu + Dagligen dag och natt Stängt idag Stängt Idag + Lägg till öppettider Redigera öppettider Inget konto hos OpenStreetMap? Registrera + Lösenord (minst 8 tecken) + Fel användarnamn eller lösenord. Logga in Lösenord Glömt lösenord? + OSM-konto Logga ut + + Senast uppladdad Tack Ändra platsen + Platsens namn Lägg till ett språk Gata @@ -386,16 +451,22 @@ Välj kök E-postadress eller användarnamn + Telefon + Observera Alla kartändringar kommer att raderas tillsammans med kartan. Uppdatera kartor För att skapa en rutt måste du uppdatera alla kartor och sedan planera rutten igen. Hitta kartan + Nedladdningsfel Kontrollera dina inställningar och se till att din enhet är ansluten till internet. Ej tillräckligt utrymme Ta bort onödig data Inloggningsfel. Verifierade ändringar Dra på kartan för att välja objektets rätta plats. + Välj kategori + Populära + Alla kategorier Redigerar Lägger till Namn på platsen @@ -403,8 +474,13 @@ Detaljerad beskrivning av ett problem Ett annat problem Lägg till organisation + Lägg till nya platser till kartan och redigera de befintliga direkt från appen. + Ändra placering Ett objekt kan inte placeras här Logga in så att andra användare kan se de ändringar du gjort. + + Du behöver mer utrymme för att ladda ned. Radera onödig data. + Jag förbättrade kartorna hos Organic Maps %1$d av %2$d Ladda ned med mobildata? @@ -422,6 +498,7 @@ Dina föreslagna ändringar kommer att skcikas till OpenStreetMap-communityt. Beskriv detaljerna som inte kan redigeras i Organic Maps. Mer om OpenStreetMap Användare + Mina kartor Du har inte laddat ner några kartor Ladda ner kartor för att hitta platsen och navigera offline. @@ -430,6 +507,14 @@ Nuvarande plats okänd. Du kanske är i en byggnad eller tunnel. Fortsätt Stopp + Den nuvarande platsen är okänd. + Ett fel inträffade vid sökning efter din plats. Kontrollera att din enhet fungerar och försök igen senare. + Platsidentifiering avaktiverad + Aktivera tillgång till geografisk plats i enhetens inställningar + 1. Öppna inställningar + 2. Tryck på Plats + + 3. Välj Medan appen används m km km/h @@ -444,29 +529,43 @@ Boka Ring Redigera bokmärke + Namn bokmärke + Personlig anteckning + Radera bokmärke + Dina föreslagna ändringar har skickats kommentar… Återställ alla lokala ändringar? Återställ Ta bort en tillagd plats? Ta bort Platsen finns inte + …mer Ange korrekt telefonnummer Ange en giltig webadress Ange en giltig e-postadress + Uppdatera Lägg till en plats på kartan Vill du skicka det till alla användare? Se till att du inte angett någon personinformation Vi kommer att kontrollera ändringar. Om vi har några frågor kontaktar vi dig via e-post. + stopp + + Avaktivera inspelning av din senaste resta rutt? + Avaktivera + + Kolla in + Organic Maps använder din geografiska position i bakgrunden för att spela in din senaste resta rutt. Organic Maps är en gratis offlinekartapplikation med öppen källkod. Inga annonser. Ingen spårning. Om du ser ett fel på kartan, åtgärda det i OpenStreetMap. Projektet skapas av entusiaster på vår fritid, så vi behöver din feedback och support. + Allmänna inställningar Acceptera Neka - + Lista Använd mobilt nätverk för att visa detaljerad information? Använd alltid @@ -479,6 +578,8 @@ Kartor måste uppdateras för att visa trafikdata. Öka teckenstorlek på kartan Uppdatera Organic Maps + + Applikationen måste uppdateras för att trafikdata ska kunna visas. Trafikdata är inte tillgänglig Aktivera loggning @@ -495,8 +596,13 @@ Lägg till startpunkt för att planera en rutt Lägg till slutpunkt för att planera en rutt Avsluta + Hantera rutt + Planera Ta bort + Dra här för att ta bort Lägg till stopp + Starta från + Hoppsan, ett fel har inträffat. Försök att logga in igen. Lagringsåtkomstproblem Extern lagring är inte tillgänglig. SD-kortet är borttaget, skadat eller så är filsystemet är skrivskyddat. Kontrollera det och kontakta oss på support\@organicmaps.app Emulera dålig lagring @@ -506,7 +612,14 @@ Dölj alla Visa alla + + %d bokmärken + Skapa ny lista + Dölj skärm + %1$s (%2$s av %3$s) + Ladda ned %s… + Tillämpar %s… Kunde inte delas på grund av ett applikationsfel Delningsfel Kan inte dela en tom lista @@ -515,14 +628,22 @@ Ny lista Det här namnet är redan taget Vänligen välj ett annat namn + Det här namnet är för långt Vänligen vänta… Telefonnummer OpenStreetMap profil + Nya filer upptäcktes %d fil hittades. Du kommer att se den efter omvandlingen. %d filer har hittats. Du kommer att se dem efter omvandlingen. + Konvertera + Fel + Vissa filer konverterades inte. + Återställ den här versionen? Ingen internetanslutning + Ett okänt fel uppstod + Återställa %d plats @@ -544,13 +665,17 @@ Listan är tom För att lägga till bokmärken, tryck på kartan och sedan på stjärnikonen …mer + Ett fel har uppstått Exportera fil Listinställningar Radera listan + Dölj från kort Allmänhetens åtkomst Privat åtkomst Lägg till en beskrivning (text eller html) Personlig + Ett fel uppstod när du laddar taggarna, försök igen + Nedladdning Hastighetskameror Auto Alltid @@ -558,6 +683,7 @@ Beskrivning av platsen Kartladdning + Auto - Varna om fartkameror om det finns risk att överskrida hastighetsgränsen\nAlltid - Varna alltid om kameror\nAldrig - Varna aldrig om kameror Energisparläge Om energisparläget är på, ska appen stänga av energikrävande funktioner beroende på telefonens nuvarande laddning Aldrig @@ -581,11 +707,44 @@ Undvik betalvägar Undvik kärrvägar Undvik färjetrafik + Kom igen + Målet + Placera i mitten + Sökresultat + Vidare + Räknar om rutten? + Ja + Nej + Du är framme! + Tangentbordet är inte tillgängligt vid rörelsen + Det gick inte att bygga rutten från nuvarande plats + Det går inte att bygga rutten till slutpunkten. Välj en annan + Ingen GPS-signal. Följ till öppna området + Det går inte att bygga ruten. Välj andra rutenspunkter + För att skapa en rutt, ladda ner saknade kartor på din enhet + Ett fel uppstod. Starta om appen + Ruten kommer att byggas om från din nuvarande plats + Ruten kommer att ändras till bil Ok + Utan kärrväg + Utan kärrvägar + Utan färjor + Utan färjor + Utan betalda + Utan betalda + Kameror + Info om kameror + Ladda ner kartor i applikation Organic Maps på din enhet + %s utgången Sortera… Sortera bokmärken + + Sortera som standard + Sortera efter typ + Sortera efter avstånd + Sortera efter datum Som standard @@ -624,6 +783,10 @@ Terräng Om du vill använda höjdlinjer, uppdatera eller ladda ner en karta över önskat område Höjningslinjer är ännu inte tillgängligt i den här regionen + Svårighetsgrad + Lätt + Måttlig + Svår Stigning Backe Min. höjd @@ -632,9 +795,22 @@ Avst.: Tid: Förstora kartan för att se isolinjer + Uppdatering + Nedladdning + Nyckelinformation Låt skärmen sova När den är aktiverad får skärmen sova efter en period av inaktivitet. + + Uppdatera dina nedladdade kartor + + Uppdatering av kartor håller information om objekt uppdaterade + + Uppdatera (%s) + + Uppdatera senare manuellt + + Rutt Linbanestation @@ -854,8 +1030,6 @@ Nödtelefon Entré Medicinskt laboratorium - - Busshållplats Väg under uppförande Gångväg @@ -955,22 +1129,6 @@ Gata Gata Gata - Gångväg - Gata - Gata - Gångväg - Gata - Gata - Gata - Gata - Gata - Gata - Gångväg - Gata - Gata - Gata - - Arkeologisk plats Slott Slott @@ -1055,16 +1213,16 @@ Mobiloperatör Stad Huvudstad - Stad - Stad + Huvudstad + Huvudstad Huvudstad - Stad - Stad - Stad - Stad - Stad - Stad - Stad + Huvudstad + Huvudstad + Huvudstad + Huvudstad + Huvudstad + Huvudstad + Huvudstad Kontinent Land Län diff --git a/android/res/values-sw/strings.xml b/android/res/values-sw/strings.xml deleted file mode 100644 index 515c852ac3..0000000000 --- a/android/res/values-sw/strings.xml +++ /dev/null @@ -1,256 +0,0 @@ - - - - - - - - Hifadhi ramani kwenye - - - - Sehemu ya kula - - Migahawani - - Manunuzi - - Shughuli za usiku - - Mapumziko ya familia - - Hospitali - - Maswali na majibu - - Jinsi ya kutuunga mkono? - - Zambarau Iliyoiva - - Buluu Hafifu - - Siani - - Teal - - Chokaa - - Chungwa Iliyokoza - - Kijivu - - Kijivu Buluu - - - Imeshindwa kupata eneo la kati. - Tafadhali badilisha eneo lako la kati. - - - Tuma ujumbe kwenye vihariri vya OSM - Maoni Zaidi - - Organic Maps ni programu huria na ya chanzo huria ya ramani za nje ya mtandao. Hakuna matangazo. Hakuna ufuatiliaji. Ukiona hitilafu kwenye ramani, tafadhali irekebishe katika OpenStreetMap. Mradi huu umeundwa na wapendaji katika wakati wetu wa bure, kwa hivyo tunahitaji maoni na usaidizi wako. - - Maoni Jumla - Washa - Zima - Tunatumia maagizo ya sautii ya TTS ya mfumo. Vifaa vingi vya Android vinatumia Google TTS, unaweza kuipakua au kuisasisha kwenye Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) - Kwa baadhi ya lugha, utahitaji kusakinisha programu nyingine ya kusanidi usemi au kifurushi cha ziada cha lugha kutoka kwenye duka la programu-tumizi (Google Play Market, Samsung Apps).\nFungua mipangilio ya kifaa chako → Lugha na Ingizo → Usemi → Tokeo la maandishi kuwa usemi.\nHapa unaweza kusimamia usanidi wa usemi (kwa mfano, kupakua kifurushi cha lugha ili utumie nje ya mtandao) na uchague injini nyingine ya maandishi-kuwa-usemi. - Kwa maelezo zaidi tafadhali tazama mwongozo huu. - Tafsiri kwa lugha ya Kilatini - Jua mengi zaidi - Toka - Ongeza eneo la kuanzia ili kupanga njia ya kufuata - Ongeza eneo la kumalizia ili kupanga njia ya kufuata - Toka - Ondoa - Ongeza eneo la kusimama - Tatizo la kufikia hifadhi - Hifadhi ya nje haipatikani, pengine Kadi ya SD imeondolewa, imeharibika au mfumo wa faili ni wa kusoma pekee. Tafadhali ikague na uwasiliane nasi kwa kutumia support\@organicmaps.app - Onyeshana hifadhi mbaya - Kiingilio - Tafadhali, weka jina sahihi - Orodha - - Ficha zote - Onyesha zote - Unda orodha mpya - Haiwezekani kushiriki kutokana na hitilafu ya programu - Hitilafu ya kushiriki - Haiwezekani kushiriki orodha tupu - Jina halikuweza kuwa tupu - Tafadhali ingiza jina la orodha - Orodha mpya - Jina hili tayari limechukuliwa - Tafadhali chagua jina lingine - Tafadhali subiri… - Nambari ya simu - - Faili %d ilipatikana. Utaiona baada ya uongofu. - Files %d zimepatikana. Utawaona baada ya uongofu. - - Hakuna uhusiano wa internet - - Eneo %d - - - Maeneo %d - - - Njia %d - - Mipangilio ya ufuatiliaji - Ripoti ya kuharibika - Tunaweza kutumia data yako kuboresha uzoefu wa Organic Maps Mabadiliko yataanza kutumika baada ya kuwasha upya programu. - Sera ya faragha - Masharti ya matumizi - Trafiki - Njia ya chini - Tabaka za ramani - Ramani ya njia ya chini haipatikani - Orodha hii ni tupu - Ili kuongeza ramani, gusa mahali kwenye ramani na kisha gusa ikoni ya nyota - …zaidi - Tuma faili - Mipangilio ya Orodhesha - Futa Orodha - Matumizi ya umma - Matumizi yenye ukomo - Andika maelezo (maneno au html) - Faragha - Kamera za mwendo-kasi - Auto - Mara kwa Mara - Kamwe - Maelezo ya Eneo - - Kipakua Ramani - Mtindo wa kuokoa nishati - Pindi mtindo wa kiotomatiki unapochaguliwa programu tumizi inaanza kuzima sifa za kumaliza betri kulingana na kiwango cha chaji cha sasa cha betri - Kamwe - Kiotomatiki - Upeo wa kuhifadhi nishati - Chaguo huwasha data kwa madhumuni ya uchunguzi. Itakuwa muhimu kwa wafanyakazi wetu ambao wanatatua matatizo ya programu. Washa chaguo hili kwa maombi ya mhudumu wa Organic Maps tu. - Uhariri mtandaoni - Machaguo ya njia - Epuka kwenye kila njia - Barabara za kulipia - Barabara za vumbi - Vivuko cha feri - Barabara za mwendo kasi - Haiwezi kukokotoa njia - Bahati mbaya hatukuweza kupata njia labda kwa sababu ya machaguo msingi. Tafadhali badili mipangilio na jaribu tena - Fafanua njia za kuziepuka - Machaguo ya njia yamewezeshwa - Barabara ya kulipia - Barabara ya vumbi - Kivuko cha feri - Epuka barabara za kulipia - Epuka barabara za vumbi - Epuka vivuko vya feri - Sawa - - Ainisha… - - Ainisha alamisho - - Kwa chaguo-msingi - - Kwa aina - - Kwa umbali - - Kwa tarehe - Wiki moja iliyopita - Mwezi mmoja uliopita - Zaidi ya mwezi mmoja uliopita - Zaidi ya mwaka mmoja uliopita - Karibu yangu - Nyingine - Chakula - Vivutio - Makumbusho - Hifadhi - Kuogelea - Milima - Wanyama - Hoteli - Majengo - Fedha - Maduka - Maegesho - Kituo cha gesi - Maji - Dawa - Tafuta kwenye orodha - Sehemu za ibada - Chagua orodha - Uabiri wa njia ya chini kwa chini katika mkoa huu haupatikani bado - Njia ya chini kwa chini haipatikani - Chagua nyota au alama ya mwisho karibu ya kituo cha njia ya chini kwa chini - Topografia - Kuamilisha na kutumia tabaka la nchi tafadhali sasisha au pakua ramani ya eneo hilo - Tabaka la sura ya nchi bado haipatikani katika eneo hili - Upandaji - Ushukaji - Mwinuko wa chini kabisa - Mwinuko wa juu kabisa - Ugumu - Umbali: - Muda: - Vuta karibu kutalii mistari ya kontua - - - Kistawishi - Kituo cha sanaa - Sehemu ya maegesho - Sehemu ya maegesho - Sehemu ya maegesho - Sehemu ya maegesho - Ofisi ya posta - Mashine ya kuuzia tiketi za usafiri wa umma - Hifadhi ya taifa - Kahawa - Maabara ya Matibabu - - - Barabara inatengenezwa - - - Bonde la Maji - Sehemu ya kanisa - Shamba - Bustani - Shamba la Taka - Eneo la njia ya reli - Eneo la mbwa - Hifadhi - Hifadhi - Hifadhi - Hifadhi - Hifadhi - Jedwali la Picnic - Chumba cha mvuke - Rasi - Chemchem ya maji moto - Mto barafu - Shamba - Hifadhi - Bonde la Maji - Eneo la Vichaka - Mlango Bahari - Maeneo yenye majimaji - Tambuka Reli - Mfumo wa reli moja - Njia ya Reli - Lango la kuingilia stesheni ya reli - Duka la Video - Duka la Video za Michezo - Riadha - Mpira wa kikapu - Michezo ya Farasi - Wanja wa tenisi - Viti vya magurudumu vinaruhusiwa vichache - Viti vya magurudumu haviruhusiwi - Viti vya magurudumu vinaruhusiwa kabisa - diff --git a/android/res/values-th/strings.xml b/android/res/values-th/strings.xml index 029e03eafa..131e154252 100644 --- a/android/res/values-th/strings.xml +++ b/android/res/values-th/strings.xml @@ -8,6 +8,8 @@ กลับ ยกเลิก + + ยกเลิกการดาวน์โหลด ลบ ดาวน์โหลดแผนที่ @@ -17,6 +19,8 @@ กำลังดาวน์โหลด… กิโลเมตร + + ให้คำวิจารณ์ แผนที่ @@ -31,14 +35,19 @@ ค้นหา ค้นหาแผนที่ + + ใช่ ในปัจจุบันนี้มีการปิดการใช้งานการบริการตำแหน่งที่ตั้งสำหรับอุปกรณ์หรือแอปพลิเคชันนี้ โปรดเปิดใช้งานในการตั้งค่า แสดงบนแผนที่ + + ดาวน์โหลดแผนที่ การดาวน์โหลดล้มเหลว ลองอีกครั้ง + เกี่ยวกับ Organic Maps การตั้งค่าการเชื่อมต่อ ปิด จำเป็นต้องใช้ฮาร์ดแวร์ที่เพิ่มความเร็ว OpenGL โชคไม่ดีที่อุปกรณ์ของคุณไม่รองรับ @@ -63,6 +72,8 @@ สีของบุ๊กมาร์ก ชื่อของชุดบุ๊กมาร์ก + + ชุดของบุ๊กมาร์ก บุ๊กมาร์ก @@ -71,8 +82,8 @@ ชื่อ ที่อยู่ - - รายการ + + ชุด การตั้งค่า @@ -87,43 +98,41 @@ หน่วยการวัด เลือกระหว่างไมล์และกิโลเมตร - - - + กินร้านไหนดี - + ซื้อของกินของใช้ - + การขนส่ง - + ก๊าซ - + ที่จอดรถ - + ช็อปปิง - + โรงแรม - + สถานที่ท่องเที่ยว - + แหล่งบันเทิง - + เอทีเอ็ม - + ไนท์ไลฟ์ - + วันหยุดสำหรับครอบครัว - + ธนาคาร - + ร้านขายยา - + คลินิก - + ห้องน้ำ - + ไปรษณีย์ - + ตำรวจ บันทึก @@ -157,8 +166,12 @@ อีเมล คัดลอกไปยังคลิปบอร์ด: %1$s + + ข้อมูล เสร็จแล้ว + + เวอร์ชัน: %s คุณแน่ใจหรือไม่ว่าคุณต้องการดำเนินการต่อ? @@ -187,6 +200,10 @@ ภาษาสำหรับเสียง ไม่สามารถใช้ได้ + + อื่น ๆ + + เส้นทางล่าสุด ซูมอัตโนมัติ ปิด 1 ชั่วโมง @@ -194,6 +211,8 @@ 6 ชั่วโมง 12 ชั่วโมง 1 วัน + ช่วยให้คุณบันทึกเส้นทางที่คุณเดินทางในช่วงระยะเวลาหนึ่งแล้วดูบนแผนที่ได้ โปรดทราบว่า: การเปิดใช้งานฟังก์ชั่นนี้จะทำให้การใช้งานแบตเตอรี่เพิ่มมากขึ้น การติดตามจะถูกเอาออกไปโดยอัตโนมัติจากแผนที่หลังจากผ่านช่วงเวลาที่กำหนด + ระยะห่าง ดูบนแผนที่ เว็บไซต์ @@ -211,6 +230,12 @@ ลิขสิทธิ์ แจ้งข้อผิดพลาด + + อีเมลลูกค้ายังไม่ได้รับการจัดตั้งขึ้น กรุณาตั้งค่าหรือใช้วิธีอื่นที่จะติดต่อเราที่ %s + + จดหมายที่ส่งเกิดความผิดพลาด + + การปรับเทียบเข็มทิศ WiFi @@ -219,12 +244,19 @@ ยกเลิกทั้งหมด ดาวน์โหลดแล้ว + + มีให้ใช้ ต่อแถว ใกล้ฉัน แผนที่ ดาวน์โหลดทั้งหมด กำลังดาวน์โหลด: + พบ + + ปรับปรุง + + ล้มเหลว เพื่อลบแผนที่ โปรดหยุดใช้การนำทาง @@ -239,12 +271,22 @@ อัปเดตแผนที่ ใช้บริการ Google Play เพื่อรับตำแหน่งปัจจุบันของคุณ + + ฉันเพิ่งให้คะแนนแอปของคุณ + + ขอบคุณ! + + แชร์ความคิดเห็นหรือปัญหาใด ๆ เพื่อให้เราสามารถปรับปรุงแอปสำหรับคุณได้ + + ส่งข้อเสนอแนะ ดาวน์โหลดแผนที่ตามเส้นทาง การสร้างเส้นทางจำเป็นต้องใช้แผนที่จากสถานที่ตั้งของคุณไปยังปลายทางที่มีการดาวน์โหลดและอัปเดต มีพื้นที่ไม่เพียงพอ + + บุ๊กมาร์ก โปรดเปิดการใช้งานการบริการตำแหน่งที่ตั้ง บันทึก @@ -297,6 +339,8 @@ กรุณาตรวจสอบสัญญาณ GPS ของคุณ การเปิดใช้ Wi-Fi จะช่วยเพิ่มความแม่นยำในการระบุตำแหน่งของคุณ เปิดใช้บริการหาตำแหน่ง ไม่สามารถหาตำแหน่งพิกัด GPS ปัจจุบันได้ เปิดใช้บริการหาตำแหน่งเพื่อคำนวณเส้นทาง + ดาวน์โหลดไฟล์ที่จำเป็น + ดาวน์โหลดและอัปเดตแผนที่กับข้อมูลเส้นทางทั้งหมดตามเส้นทางที่คาดหมายเพื่อคำนวณเส้นทาง ไม่สามารถหาเส้นทางได้ ไม่สามารถสร้างเส้นทางได้ กรุณาปรับจุดเริ่มต้นหรือที่หมายของคุณ @@ -311,6 +355,7 @@ ระบบเกิดข้อผิดพลาด ไม่สามารถสร้างเส้นทางได้เนื่องจากเกิดข้อผิดพลาดของแอปพลิเคชัน กรุณาลองอีกครั้ง + ไว้คราวหลัง คุณต้องการดาวน์โหลดแผนที่และสร้างเส้นทางที่เหมาะสมกว่าซึ่งข้ามเกินหนึ่งแผนที่หรือไม่? ดาวน์โหลดแผนที่เพื่อสร้างเส้นทางที่เหมาะสมกว่าซึ่งข้ามเลยขอบของแผนที่นี้ @@ -321,8 +366,17 @@ แสดง ซ่อน + + การวางแผนเส้นทางล้มเหลว มาถึง: %s + + เพื่อสร้างเส้นทาง โปรดดาวน์โหลดและอัปเดตแผนที่ทั้งหมดตลอดเส้นทาง + ชอบแอปหรือไม่? + ขอบพระคุณสำหรับการใช้ Organic Maps โปรดให้คะแนนแอป ข้อเสนอแนะของคุณจะช่วยทำให้เราทำได้ดียิ่งขึ้น + ฮูเร่! เราก็รักคุณเช่นกัน! + ขอบพระคุณ เราจะทำให้ดีที่สุด! + มีไอเดียถึงวิธีที่จะทำให้เราสามารถทำให้มันดีขึ้นหรือไม่? หมวดหมู่ ประวัติ ปิด @@ -353,6 +407,8 @@ ตัวอย่างของค่าที่ตั้งไว้ แก้ไขข้อผิดพลาด ตำแหน่ง + คุณได้เปลี่ยนแผนที่โลก อย่าซ่อนมันไว้! บอกเพื่อนคุณ แล้วมาแก้ไขมันไปด้วยกัน + แชร์กับเพื่อน กรุณาอธิบายปัญหาโดยละเอียดเพื่อที่ชุมชน OpenStreeMap จะสามารถแก้ไขข้อผิดพลาดได้ หรือทำด้วยตัวคุณเองที่ https://www.openstreetmap.org/ ส่ง @@ -362,20 +418,29 @@ สถานที่ซ้ำ ดาวน์โหลดอัตโนมัติ + ปิดตอนนี้ + ทุกวัน ทั้งกลางวันและกลางคืน วันนี้ปิด ปิด วันนี้ + เพิ่มชั่วโมงทำการ แก้ไขชั่วโมงทำการ ไม่มีบัญชีใน OpenStreetMap? ลงทะเบียน + รหัสผ่าน (อย่างน้อย 8 ตัวอักษร) + ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง ล็อกอิน รหัสผ่าน ลืมรหัสผ่าน? + บัญชี OSM ออกจากระบบ + + อัปโหลดครั้งสุดท้าย ขอบพระคุณ แก้ไขสถานที่ + ชื่อสถานที่ เพิ่มภาษา ถนน @@ -390,16 +455,22 @@ เลือกประเภทอาหาร อีเมลหรือชื่อผู้ใช้ + โทรศัพท์ + โปรดทราบ การเปลี่ยนแปลงแผนที่ทั้งหมดจะถูกลบไปพร้อมกับแผนที่ อัปเดตแผนที่ ในการสร้างเส้นทาง คุณต้องอัปเดตแผนที่ทั้งหมดแล้ววางแผนเส้นทางอีกครั้ง ค้นหาแผนที่ + ข้อผิดพลาดในการดาวน์โหลด กรุณาตรวจสอบการตั้งค่าของคุณแล้วทำให้แน่ใจว่าอุปกรณ์ของคุณได้รับการเชื่อมต่ออินเทอร์เน็ต มีพื้นที่ไม่เพียงพอ กรุณาลบข้อมูลที่ไม่จำเป็น ข้อผิดพลาดในการล็อกอิน การเปลี่ยนแปลงที่อนุมัติแล้ว ดึงแผนที่เพื่อเลือกตำแหน่งวัตถุที่ถูกต้อง + เลือกหมวดหมู่ + ยอดนิยม + หมวดหมูทั้งหมด กำลังแก้ไข กำลังเพิ่ม ชื่อสถานที่ @@ -407,8 +478,13 @@ คำอธิบายปัญหาอย่างละเอียด ปัญหาอีกอย่างหนึ่ง เพิ่มองค์กร + เพิ่มสถานที่ใหม่ ๆ ไปยังแผนที่ และแก้ไขสถานที่ที่มีอยู่เดิมจากแอปโดยตรง + เปลี่ยนสถานที่ตั้ง ไม่สามารถตั้งวัตถุได้ที่นี่ ล็อกอินเพื่อให้ผู้ใช้คนอื่นสามารถเห็นการเปลี่ยนแปลงของคุณได้ + + ในการดาวน์โหลด คุณต้องมีพื้นที่มากขึ้น กรุณาลบเนื้อหาที่ไม่จำเป็นออกไป + ฉันได้ปรับปรุงแผนที่ Organic Maps %1$d จาก %2$d ดาวน์โหลดโดยใช้การเชื่อมต่อเครือข่ายมือถือ? @@ -426,6 +502,7 @@ คำแนะนำการเปลี่ยนแปลงของคุณจะถูกส่งไปยังกลุ่ม OpenStreetMap โปรดอธิบายรายละเอียดที่ Organic Maps ไม่สามารถแก้ไขได้ ข้อมูลเพิ่มเติมเกี่ยวกับ OpenStreetMap เจ้าของ + แผนที่ของฉัน คุณยังไม่ได้ดาวน์โหลดแผนที่ ดาวน์โหลดแผนที่เพื่อค้นหาสถานที่ และนำทางแบบออฟไลน์ @@ -434,6 +511,14 @@ ไม่ทราบชื่อสถานที่ปัจจุบัน คุณอาจจะอยู่ในอาคาร หรือ ในอุโมงค์ ดำเนินการต่อ หยุด + ไม่ทราบชื่อของที่ตั้งปัจจุบัน + มีข้อผิดพลาดเกิดขึ้นในขณะที่กำลังหาที่ตั้งที่คุณอยู่ โปรดตรวจสอบอุปกรณ์ของคุณว่าทำงานถูกต้อง และลองใหม่อีกครั้ง + ปิดการใช้งานการระบุตำแหน่งที่ตั้งแล้ว + เปิดใช้งานการเข้าถึงตำแหน่งภูมิศาสตร์ในการตั้งค่าอุปกรณ์ + 1. เปิดการตั้งค่า + 2. แตะตำแหน่งที่ตั้ง + + 3. เลือกในขณะใช้แอป ม. กม. กม./ชม. @@ -448,29 +533,43 @@ จอง โทร แก้ไข Bookmark + ชื่อของ Bookmark + ข้อความส่วนตัว + ลบ Bookmark + คำแนะนำการเปลี่ยนแปลงของคุณถูกส่งไปแล้ว ข้อคิดเห็น ตั้งค่าการเปลี่ยนแปลงท้องถิ่นทั้งหมด ตั้งค่าใหม่ ลบที่ที่เพิ่มออก ลบออก ไม่พบสถานที่นี้ + …เพิ่มเติม กรอกหมายเลขโทรศัพท์ที่ถูกต้อง กรอกที่อยู่เว็บที่ถูกต้อง กรอกอีเมลที่ถูกต้อง + อัปเดต เพิ่มสถานที่ไปยังแผนที่ คุณต้องการส่งมันให้ผู้ใช้ทั้งหมดหรือไม่? ตรวจสอบว่าคุณไม่ได้กรอกข้อมูลส่วนตัวใด ๆ เราจะตรวจสอบการเปลี่ยนแปลง หากเรามีคำถามใด ๆ เราจะติดต่อคุณผ่านทางอีเมล + หยุด + + ปิดการใช้งานการบันทึกเส้นทางที่คุณเดินทางเมื่อเร็ว ๆ นี้? + ปิดการใช้งาน + + ตรวจชม + Organic Maps ใช้ตำแหน่งทางภูมิศาสตร์ของคุณในพื้นหลังเพื่อบันทึกเส้นทางที่คุณเดินทางเมื่อเร็ว ๆ นี้ Organic Maps เป็นแอปพลิเคชันแผนที่ออฟไลน์แบบโอเพนซอร์สฟรี ไม่มีโฆษณา ไม่มีการติดตาม. หากคุณเห็นข้อผิดพลาดบนแผนที่ โปรดแก้ไขใน OpenStreetMap โครงการนี้สร้างขึ้นโดยผู้ที่ชื่นชอบในเวลาว่าง เราจึงต้องการความคิดเห็นและการสนับสนุนจากคุณ + การตั้งค่าทั่วไป ยอมรับ ปฏิเสธ - + รายการ ใช้อินเทอร์เน็ตมือถือแสดงข้อมูลโดยรายละเอียดหรือไม่? ใช้เสมอ @@ -483,6 +582,8 @@ ต้องอัปเดตแผนที่เพื่อแสดงข้อมูลการจราจร เพิ่มขนาดฟอนต์บนแผนที่ กรุณาอัปเดต Organic Maps + + ในการแสดงข้อมูลการจราจร แอปพลิเคชั่นจะต้องอัปเดตก่อน ไม่มีข้อมูลการจราจร เปิดใช้งานการเก็บล็อก @@ -499,8 +600,13 @@ เพิ่มจุดเริ่มต้นเพื่อวางแผนเส้นทาง เพิ่มจุดสิ้นสุดเพื่อวางแผนเส้นทาง ออก + จัดการเส้นทาง + วางแผน เอาออก + ลากมาที่นี่เพื่อเอาออก เพิ่มจุดแวะพัก + เริ่มจาก + โอ๊ะ มีข้อผิดพลาดเกิดขึ้น ลองลงชื่อเข้าใช้อีกครั้ง ปัญหาการเข้าถึงที่เก็บข้อมูล ที่เก็บข้อมูลภายนอกไม่พร้อมใช้งาน อาจเป็นเพราะการ์ด SD ถูกถอดออกไป ได้รับความเสียหาย หรือระบบไฟล์ให้เขียนได้อย่างเดียว กรุณาตรวจสอบและติดต่อเราได้ที่ support\@organicmaps.app จำลองแบบที่เก็บข้อมูลที่ไม่ดี @@ -510,7 +616,14 @@ ซ่อนทั้งหมด แสดงทั้งหมด + + %d บุ๊กมาร์ก + สร้างรายการใหม่ + ซ่อนหน้าจอ + %1$s (%2$s จาก %3$s) + กำลังดาวน์โหลด %s… + กำลังนำ %s ไปใช้งาน… ไม่สามารถแชร์ได้เนื่องจากเกิดข้อผิดพลาดในแอปพลิเคชัน ข้อผิดพลาดในการแชร์ ไม่สามารถแชร์รายการที่ว่างเปล่าได้ @@ -519,13 +632,21 @@ รายการใหม่ ชื่อนี้ถูกนำมาใช้แล้ว โปรดเลือกชื่ออื่น + ชื่อนี้ยาวเกินไป โปรดรอสักครู่ … หมายเลขโทรศัพท์ โปรไฟล์ OpenStreetMap + พบไฟล์ใหม่แล้ว %d ไฟล์ที่ค้นพบ คุณจะเห็นพวกเขาหลังจากการแปลง + แปลง + ความผิดพลาด + ไฟล์บางไฟล์ไม่ได้รับการแปลง + เรียกคืนเวอร์ชันนี้หรือไม่? ไม่มีการเชื่อมต่ออินเทอร์เน็ต + เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ + ฟื้นฟู %d สถานที่ @@ -547,13 +668,17 @@ รายการนี้ว่างเปล่า เพื่อเพิ่มบุ๊กมาร์ก โปรดแตะที่สถานที่บนแผนที่ แล้วจากนั้นแตะที่ไอคอนรูปดาว …เพิ่มเติม + มีข้อผิดพลาดเกิดขึ้น ส่งออกไฟล์ การตั้งค่ารายการ ลบรายการ + ซ่อนจากแผนที่ เข้าถึงได้โดยสาธารณะ จำกัดการเข้าถึง พิมพ์รายละเอียด (ข้อความหรือ html) ส่วนตัว + เกิดข้อผิดพลาดขณะโหลดแท็ก โปรดลองใหม่อีกครั้ง + ดาวน์โหลด กล้องตรวจจับความเร็ว อัตโนมัติ ทุกครั้ง @@ -561,6 +686,7 @@ รายละเอียดของสถานที่ ตัวดาวน์โหลดแผนที่ + อัตโนมัติ - เตือนเกี่ยวกับกล้องตรวจจับความเร็วหากมีความเป็นได้ว่าจะขับเร็วเกิดกำหนด\nทุกครั้ง - เตือนเกี่ยวกับกล้องตรวจจับความเร็วเสมอ\nไม่ต้องเตือน - ไม่เคยเตือนเกี่ยวกับกล้องตรวจจับความเร็ว โหมดประหยัดพลังงาน เมื่อโหมดอัตโนมัตินั้นถูกเลือก แอปพลิเคชันจะเริ่มหยุดการใช้พลังงานจากแบตเตอรีขึ้นอยู่กับจำนวนไฟในแบตเตอรีว่าเหลือเท่าไร ไม่ใช้ @@ -584,11 +710,44 @@ เลี่ยงทางที่ต้องเสียเงินทั้งหมด เลี่ยงถนนดินทั้งหมด เลี่ยงการข้ามฟากด้วยเรือ + ไปกันเลย + จุดหมาย + รีเซ็นเตอร์ + ผลการค้นหา + จากนั้น + ต้องการสร้างเส้นทางใหม่หรือไม่ + ใช่ + ไม่ใช่ + คุณมาถึงแล้ว! + คีย์บอร์ดไม่สามารถใช้งานได้ขณะขับขี่ + ไม่สามารถสร้างเส้นทางจากตำแหน่งปัจจุบันของคุณ + ไม่สามารถสร้างเส้นทางไปยังจุดหมายของคุณ โปรดเลือกจุดหมายใหม่ + ไม่มีสัญญาณจีพีเอส โปรดไปในที่โล่งเพื่อหาสัญญาณ + ไม่สามารถคำนวณเส้นทาง โปรดระบุตำแหน่งของเส้นทางอื่น + เพื่อสร้างเส้นทาง โปรดดาวน์โหลดแผนที่บนอุปกรณ์ของคุณ + พบข้อผิดพลาด โปรดปิดและเปิดแอปพลิเคชันใหม่อีกครั้ง + เส้นทางจะถูกสร้างอีกครั้งจากตำแหน่งปัจจุบันของคุณ + เส้นทางของรถยนต์อาจถูกปรับเปลี่ยน โอเค + ไม่มีลูกรัง + หลีกเลี่ยงทาง + ไม่มีเรือ + หลีกเลี่ยงเรือ + ไม่มีค่าผ่าน + เลี่ยงทางด่วน + จับความเร็ว + เตือนความเร็ว + โปรดดาวน์โหลดแผนที่ในแอพฯ Organic Maps บนอุปกรณ์ของคุณ + ทางออกที่ %s เรียง… เรียงบุ๊กมาร์ก + + เรียงตามค่าเริ่มต้น + เรียงตามประเภท + เรียงตามระยะทาง + เรียงตามวันที่ ตามค่าเริ่มต้น @@ -627,6 +786,10 @@ ความสูง ในการเปิดใช้งานเลเยอร์แผนที่ภูมิประเทศโปรดอัปเดตหรือดาวน์โหลดแผนที่ของบริเวณนั้น เลเยอร์แผนที่ภูมิประเทศยังใช้งานไม่ได้ในพื้นที่นี้ + ระดับความยาก + ง่าย + ปานกลาง + ยาก การขึ้น การลง ระดับความสูงต่ำสุด @@ -635,9 +798,22 @@ ระยะทาง เวลา: ขยายเข้าเพื่อสำรวจเส้นชั้นความสูง + การอัปเดต + การดาวน์โหลด + ข้อมูลหลัก อนุญาตให้หน้าจอเข้าสู่โหมดสลีป เมื่อเปิดใช้งานหน้าจอจะได้รับอนุญาตให้เข้าสู่โหมดสลีปหลังจากไม่มีการใช้งานเป็นระยะเวลาหนึ่ง + + อัปเดตแผนที่ที่คุณดาวน์โหลดมา + + การอัปเดตแผนที่จะคงข้อมูลเกี่ยวกับจุดหมายต่าง ๆ ให้ล่าสุดอยู่เสมอ + + อัปเดต (%s) + + อัปเดตด้วยตนเองภายหลัง + + ติดตาม สถานีกระเช้าลอยฟ้า @@ -862,8 +1038,6 @@ โทรศัพท์ฉุกเฉิน ทางเข้า ห้องปฏิบัติการทางการแพทย์ - - ป้ายรถเมล์ ทางกำลังอยู่ในการก่อสร้าง เส้นทาง @@ -963,22 +1137,6 @@ ถนน ถนน ถนน - เส้นทาง - ถนน - ถนน - เส้นทาง - ถนน - ถนน - ถนน - ถนน - ถนน - ถนน - เส้นทาง - ถนน - ถนน - ถนน - - โบราณสถาน ปราสาท ปราสาท diff --git a/android/res/values-tr/strings.xml b/android/res/values-tr/strings.xml index cbdf2d0dba..c0897cd93b 100644 --- a/android/res/values-tr/strings.xml +++ b/android/res/values-tr/strings.xml @@ -8,6 +8,8 @@ Geri İptal + + İndirme İşlemini İptal Et Sil Haritaları İndir @@ -17,6 +19,8 @@ İndiriliyor… Kilometre + + Bir Yorum Bırak Haritalar @@ -31,19 +35,24 @@ Ara Haritada Ara + + Evet - Şu anda bu cihaz veya uygulama için tüm Konum Hizmetleri devre dışı bırakılmış. Lütfen bunu ayarlardan etkinleştirin. + Şu anda bu cihaz için tüm Yer Hizmetleri veya uygulama devre dışı bırakılmış. Lütfen Ayarlar bölümünden etkinleştirin. Haritada göster + + Haritayı İndir Indirme işlemi başarısız oldu Tekrar Dene - Konum Ayarları + Organic Maps Hakkında + Bağlantı Ayarları Kapat Hızlı donanıma sahip bir OpenGL gerekli. Ne yazık ki cihazınız desteklenmiyor. İndir - Organic Maps’i kullanabilmeniz için lütfen USB kablosunun bağlantısını kesin veya hafıza kartı takın + Organic Maps’yi kullanabilmeniz için lütfen USB kablosunun bağlantısını kesin veya hafıza kartı takın Uygulamayı kullanabilmeniz için lütfen SD kart/USB depolama aygıtında biraz alan boşaltın Uygulamayı başlatmak için yeterli hafıza yok Başlamadan önce cihazınıza genel dünya haritasını indirelim.\nVerilerin %s’si gerekli. @@ -63,6 +72,8 @@ Yer İmi Rengi Yer İmi Listesi Adı + + Yer İmi Listeleri Yer İmleri @@ -71,7 +82,7 @@ Adı Adres - + Liste Ayarlar @@ -87,43 +98,41 @@ Ölçü birimleri Mil veya kilometre seçimini yap - - - + Nerede yenir - + Market - + Ulaşım - - Benzinlik - + + Yakıt + Otopark - + Alışveriş - + Otel - + Görülecek yerler - + Eğlence - + Bankamatik - + Gece hayatı - + Aile tatili - + Banka - + Eczane - + Hastane - + WC - + Posta - + Polis Notlar @@ -139,7 +148,7 @@ Düzenle - Konumunuz henüz belirlenmedi + Yeriniz henüz belirlenmedi Üzgünüz, Harita Depolama ayarları şu anda devre dışı. @@ -158,8 +167,12 @@ E-posta Panoya Kopyalandı: %1$s + + Bilgi Bitti + + Sürüm: %s Veri sürümü: %d @@ -185,15 +198,19 @@ Otomatik - Perspektif görünüş + Perspektif görünüm 3D yapılar - Sesli Yönlendirme + Sesli Talimatlar Ses Dili Mevcut değil + + Diğer + + En sonki kayıt Otomatik yakınlaştırma Kapalı 1 saat @@ -201,6 +218,8 @@ 6 saat 12 saat 1 gün + Bu özellik, belirli bir süre içinde katedilen yolu kaydetmenizi ve harita üzerinde izlemenizi sağlar. Lütfen unutmayın: bu işlevin etkinleştirilmesi pil tüketiminin artmasına neden olur. Takip, zaman aralığının sona ermesinin ardından otomatik olarak haritadan kaldırılacaktır. + Mesafe Haritada görüntüle Web Sitesi @@ -218,6 +237,12 @@ Telif hakkı Hata bildir + + E-posta istemcisi henüz kurulmamış. Lütfen e-posta istemcisini yapılandırın ya da bize %s adresinden ulaşmak için başka bir yöntem deneyin + + Posta gönderme hatası + + Pusula kalibrasyonu WiFi @@ -226,12 +251,19 @@ Tümünü İptal Et İndirildi + + Mevcut Sıraya alındı Yakınlarımda Haritalar Hepsini indir İndiriliyor: + Bulundu + + Güncelle + + Başarısız Haritayı silmek için lütfen navigasyonu durdurun. @@ -246,12 +278,22 @@ Haritayı Güncelle Şu anki konumunuzu almak için Google Play hizmetlerini kullanın + + Uygulamanıza az önce puan verdim + + Teşekkürler! + + Uygulamayı geliştirebilmemiz için fikirlerinizi veya sorunlarınızı paylaşın. + + Geribildirim gönder Rota üzerindeki haritaları indir Konumunuzdan bir rota oluşturmak bölgenizdeki tüm haritaların indirilmesini ve güncellenmesini gerektirir. Yeterli alan yok + + yer i̇mi Lütfen Konum Hizmetlerini etkinleştirin Kaydet @@ -293,33 +335,36 @@ Evet - Rotanızı takip ederken şunları lütfen unutmayın: + Güzergahınızı takip ederken şunları lütfen unutmayın: — Yol durumları, trafik kuralları ve trafik işaretleri, her zaman navigasyon tavsiyelerinden önceliklidir; - — Harita doğru olmayabilir, önerilen rota da hedefinize ulaşmak için en uygun yol olmayabilir; - — Önerilen rotalar yalnızca tavsiye olarak kabul edilmelidir; + — Harita doğru olmayabilir, önerilen güzergah da hedefinize ulaşmak için en uygun yol olmayabilir; + — Önerilen güzergahlar yalnızca tavsiye olarak kabul edilmelidir; — Sınır bölgelerinde rotalar konusunda dikkatli olun: uygulamamız tarafından oluşturulan rotalar bazen izin verilmeyen yerlerdeki ülke sınırlarını geçebilir; Lütfen yolda dikkatli ve emniyetli olun! GPS sinyalini kontrol edin - Rota oluşturulamıyor. Mevcut GPS koordinatları tanımlanamadı. + Güzergah oluşturulamıyor. Mevcut GPS koordinatları tanımlanamadı. Lütfen GPS sinyalinizi kontrol edin. Wi-Fi\'ı etkinleştirmek konum isabetini arttırır. Konum hizmetlerini etkinleştirin - Mevcut GPS koordinatları belirlenemiyor. Rota hesaplamak için konum hizmetlerini etkinleştirin. - Rota belirlenemiyor - Rota oluşturulamıyor. + Mevcut GPS koordinatları belirlenemiyor. Güzergah hesaplamak için konum hizmetlerini etkinleştirin. + Gerekli dosyaları indirin + Planlanan yoldaki tüm harita ve güzergah bilgilerini indirip güncelleyerek güzergahı hesaplayın. + Güzergah belirlenemiyor + Güzergah oluşturulamıyor. Lütfen başlangıç noktanızı veya hedefinizi ayarlayın. Başlangıç noktasını ayarlayın - Rota oluşturulamadı. Başlangıç noktası belirlenemiyor. + Güzergah oluşturulamadı. Başlangıç noktası belirlenemiyor. Lütfen yola daha yakın bir başlangıç noktası seçin. Hedefinizi ayarlayın - Rota oluşturulamadı. Hedef belirlenemiyor. + Güzergah oluşturulamadı. Hedef belirlenemiyor. Lütfen yola daha yakın bir hedef noktası seçin. Ara nokta bulunamadı. Lütfen ara noktanızı ayarlayın. Sistem hatası - Uygulama hatası nedeniyle rota oluşturulamadı. + Uygulama hatası nedeniyle güzergah oluşturulamadı. Lütfen daha sonra tekrar deneyin - Haritayı indirerek birden fazla haritaya uzanan daha uygun bir rota oluşturmak ister misiniz? - Bu haritanın bir kısmından geçen daha uygun bir rota oluşturmak için haritayı indirin. + Şimdi Değil + Haritayı indirerek birden fazla haritaya uzanan daha uygun bir güzergah oluşturmak ister misiniz? + Bu haritanın bir kısmından geçen daha uygun bir güzergah oluşturmak için haritayı indirin. Rotaları aramak ve oluşturmaya başlamak için lütfen haritayı indirin. İndirdikten sonra artık internet bağlantısına ihtiyacınız olmayacak. @@ -328,16 +373,25 @@ Göster Gizle + + Rota Planlaması Başarısız Varış: %s + + Bir rota oluşturmak için lütfen rota üzerindeki tüm haritaları indirin ve güncelleyin. + Uygulamayı beğendiniz mi? + Organic Maps’yi kullandığınız için teşekkür ederiz. Lütfen uygulamaya puan verin. Geri bildiriminiz daha iyi hale gelebilmemize yardımcı olur. + Yaşasın! Biz de sizi seviyoruz! + Teşekkür ederiz, elimizden geleni yapacağız! + Daha iyi hale getirebilmemiz için herhangi bir fikriniz var mı? Kategoriler Geçmiş Kapatıldı Üzgünüz, hiç bir şey bulamadık. Lütfen başka bir sorgu girin. Arama Geçmişi - Son aramaları görüntüleyin. - Arama Geçmişini Temizle + En son yapılan arama sorgularını görüntüle. + Arama Geçmişini temizle Vikipedi Konumunuz @@ -362,6 +416,8 @@ Örnek Değerler Hatayı düzelt Konum + Dünya haritasını değiştirdiniz. Bunu gizlemeyin! Arkadaşlarınıza anlatın ve birlikte düzenleyin. + Arkadaşlarınla paylaş OpenStreetMap topluluğunun hatayı düzeltmesi için lütfen problemi detaylı bir şekilde açıklayın. Veya bunu https://www.openstreetmap.org/ adresinden kendiniz yapın Gönder @@ -371,20 +427,29 @@ Kopyalanmış yer Otomatik indir + Şu anda kapalı + Günlük Gündüz ve gece Bugün kapalı Kapalı Bugün + İş saatlerini ekle İş saatlerini düzenle OpenStreetMap hesabın yok mu? Kaydol + Şifre (en az 8 karakter) + Geçersiz Kullanıcı Adı veya Şifre. Oturum aç Şifre Şifreni mi unuttun? + OSM Hesabı Oturumu kapat + + Son yükleme Teşekkür ederiz Yeri düzenle + Yerin Adı Bir dil ekle Sokak @@ -401,17 +466,23 @@ Mutfak Seç E-posta veya kullanıcı adı + Telefon Telefon Ekle + Lütfen dikkat Harita ile birlikte tüm harita değişiklikleri de silinecektir. Haritaları güncelle Bir rota oluşturmak için tüm haritaları güncellemeli ve ardından rotayı tekrar planlamalısınız. Harita bul + İndirme hatası Lütfen ayarlarınızı kontrol edin ve cihazınızın internete bağlı olduğundan emin olun. Yeterli alan yok Lütfen gereksiz verileri silin Giriş hatası Doğrulanan Değişiklikler Objenin doğru konumunu seçmek için haritayı sürükleyin. + Kategori seç + Popüler + Tüm kategoriler Düzenleme Ekleme Yerin adı @@ -419,8 +490,13 @@ Sorunun ayrıntılı açıklaması Farklı bir problem Kuruluş ekle + Doğrudan uygulamadan haritaya yeni yerler ekleyin ve mevcut yerleri düzenleyin. + Konumu değiştir Buraya bir nesne konumlandırılamıyor Diğer kullanıcıların yaptığınız değişiklikleri görebilmesi için oturum açın + + İndirmek için daha fazla alana ihtiyacınız var. Lütfen gereksiz verileri silin. + Organic Maps haritalarını geliştirdim %1$d/%2$d Hücresel bir ağ bağlantısı kullanarak indirilsin mi? @@ -438,6 +514,7 @@ Önerdiğiniz değişiklikler OpenStreetMap topluluğuna gönderilecek. Organic Maps’te düzenlenemeyen ayrıntıları açıklayın. OpenStreetMap hakkında ek bilgi İşletmeci + Haritalarım Hiç harita indirmediniz Çevrimdışı olarak adres bulmak ve gezinmek için haritaları indirin. @@ -446,6 +523,14 @@ Geçerli konum bilinmiyor. Muhtemelen bir binanın içinde veya tüneldesiniz. Devam Dur + Geçerli konum bilinmiyor. + Konumunuz aranırken bir hata oluştu. Cihazınızın düzgün çalışıp çalışmadığını kontrol edin ve daha sonra tekrar deneyin. + Konum servisleri devre dışı bırakıldı + Cihaz ayarlarında coğrafi konuma erişimi etkinleştirin + 1. Ayarları Açın + 2. Konuma Dokunun + + 3. \"Uygulamayı Kullanırken\"i Seçin m km km/s @@ -460,6 +545,10 @@ Rezervasyon Çağrı Yer İmini Düzenle + Yer İmi Adı + Kişisel notlar + Yer İmini Sil + Önerdiğiniz değişiklikler gönderildi Yorum… Tüm yerel değişiklikler sıfırlansın mı? Sıfırla @@ -468,6 +557,7 @@ Bu yer mevcut değil Lütfen bu yerin silinmesinin nedenini belirtin + …daha fazla Geçerli bir telefon numarası girin Geçerli bir web adresi girin @@ -477,22 +567,31 @@ Geçerli bir Twitter web adresi veya kullanıcı adı girin Geçerli bir VK web adresi veya hesap adı girin Geçerli bir Line web adresi veya Line ID\'si girin + Güncelleştirme Haritaya bir yer ekleyin Bunu tüm kullanıcılara göndermek ister misiniz? Herhangi bir kişisel bilgi girmediğinizden emin olun. Değişikliği kontrol edeceğiz. Eğer herhangi bir sorumuz olursa sizinle e-posta aracılığıyla iletişime geçeceğiz. + dur + + En son seyahat edilen rotanızı kaydetmeyi devre dışı bırakmak istiyor musunuz? + Devre Dışı Bırak + + İncele + Organic Maps, en son seyahat ettiğiniz rotayı kaydetmek için arka planda coğrafi konumunuzu kullanır. Organic Maps, ücretsiz ve açık kaynaklı bir çevrimdışı harita uygulamasıdır. Reklamsız. İzleme yok. Haritada bir hata görürseniz, lütfen OpenStreetMap\'te düzeltin. Proje meraklıları tarafından boş zamanlarımızda oluşturulduğundan geri bildiriminize ve desteğinize ihtiyacımız var. + Genel ayarlar Kabul et Reddet - + Liste Ayrıntılı bilgileri görüntülemek için mobil internet kullanılsın mı? - Her Zaman Kullan + Her zaman kullan Sadece Bugün Bugün Kullanma Mobil İnternet @@ -502,6 +601,8 @@ Trafik verilerini görüntülemek için haritaların güncellenmesi gerekiyor. Harita üzerindeki yazı tipi boyutunu artır Lütfen Organic Maps uygulamasını güncelleyin + + Trafik verilerini görüntülemek için uygulamanın güncellenmesi gerekiyor. Trafik verileri kullanılamıyor Günlüğü etkinleştir @@ -512,14 +613,19 @@ Sesli talimatlar için TTS sistemini kullanıyoruz. Çoğu Android cihaz, Google TTS\'yi kullanıyor. Uygulamayı, Google Play\'den indirebilir veya güncelleyebilirsiniz (https://play.google.com/store/apps/details?id=com.google.android.tts) Bazı diller için uygulama mağazasından (Google Play Market, Samsung Apps) farklı bir konuşma sentezleyicisi veya ek bir dil paketi yüklemeniz gerekebilir. Cihaz ayarları → Dil ve Giriş → Konuşma → Metin Okuma sekmelerini açın. Buradan konuşma sentezi ayarlarını yönetebilir (örneğin, çevrimdışı kullanım için bir dil paketini karşıdan yükleyebilir) ve başka bir metin okuma motorunu seçebilirsiniz. Daha fazla bilgi için lütfen bu kılavuzu inceleyin. - Latin harf çevirisi + Latin alfabesine çevirme Daha fazla bilgi edinin Çık Güzergâhı planlamak için bir başlangıç noktası ekleyin Güzergâhı planlamak için bir varış noktası ekleyin Çık + Güzergâhı yönet + Plan Kaldır + Kaldırmak için buraya sürükleyin Ara nokta ekle + Buradan başla + Üzgünüz, bir hata oluştu. Tekrar oturum açmayı deneyin. Depolama alanı erişim sorunu Harici bellek kullanılamıyor, muhtemelen SD Kart çıkarılmış, hasarlı veya dosya sistemi salt okunur. Lütfen kontrol edin veya support\@organicmaps.app adresinden bizimle iletişime geçin Bozuk depolama alanını taklit et @@ -529,9 +635,16 @@ Tümünü gizle Tümünü göster + + %d yer imi + Yeni liste oluştur Yer imlerini içe aktar + Ekranı Gizle + %1$s (%2$s / %3$s) + %s indiriliyor… + %s uygulanıyor… Bir uygulama hatasından dolayı paylaşılamıyor Paylaşma hatası Boş bir liste paylaşılamaz @@ -540,13 +653,21 @@ Yeni liste Bu isim zaten alınmış Lütfen başka bir isim seçin - Lütfen bekleyin… + Bu isim çok uzun + Lütfen bekleyin� Telefon numarası OpenStreetMap profili + Yeni dosyalar algılandı %d dosya bulundu. Dönüşümden sonra onları göreceksiniz. + Dönüştür + Hata + Bazı dosyalar dönüştürülmedi. + Bu sürümü geri yükle? İnternet bağlantısı yok + Bilinmeyen bir hata oluştu + Geri al %d obje @@ -568,13 +689,18 @@ Bu liste boş Yer imi eklemek için önce haritadaki bir yere sonrasında ise yıldız simgesine dokunun …daha fazla + Bir hata oluştu + Popüler Dosyayı dışa aktar Liste Ayarları Listeyi sil + Haritadan gizle Genel erişim Sınırlı erişim Bir açıklama yazın (metin veya html) Gizli + Etiketler yüklenirken bir hata oluştu, lütfen tekrar deneyin + İndir Hız kameraları Otomatik Her zaman @@ -582,6 +708,7 @@ Yer Açıklaması Harita indiricisi + Otomatik - Hız sınırını aşma riski varsa hız kameraları hakkında uyar\nHer zaman - Hız kameraları hakkında her zaman uyar\nAsla - Hız kameraları hakkında hiçbir zaman uyarma Güç tasarrufu modu Otomatik mod seçildiğinde, uygulama geçerli pil seviyesine bağlı olarak şarj harcayan özellikleri devre dışı bırakmaya başlar Asla @@ -605,11 +732,44 @@ Paralı yollardan kaçın Asfaltsız yollardan kaçın Feribot geçişlerinden kaçın + Hadi gidelim + Hedef + Tekrar ortala + Arama sonuçları + Sonra + Yeniden bir rota oluşturmak ister misiniz? + Evet + Hayır + Vardınız! + Klavye, sürüş sırasında kullanılamaz + Mevcut konumunuzdan rota oluşturulamıyor + Hedefinize rota oluşturulamıyor. Lütfen başka bir nokta seçin + GPS sinyali yok. Lütfen açık bir alana geçin + Rota oluşturulamıyor. Lütfen başka bir rota noktası belirtin + Rota oluşturmak için cihazınızdaki eksik haritaları indirin + Hata oluştu. Lütfen uygulamayı yeniden başlatın + Rota, mevcut konumunuzdan yeniden oluşturulacak + Rota, bir arabalı seyahat rotasına dönüştürülecek Tamam + Toprak yol yok + Asfaltsız hariç + Feribotsuz + Feribot hariç + Paralı yok + Paralı hariç + Hız kamerası + Hız uyarıları + Lütfen haritaları cihazınıza Organic Maps uygulamasından indirin + %s çıkış Sırala… Yer imlerini sırala + + Varsayılana göre sırala + Türe göre sırala + Mesafeye göre sırala + Tarihe göre sırala Varsayılana göre @@ -645,9 +805,13 @@ Metro navigasyonu bu bölgede henüz mevcut değil Metro güzergahı bulunamadı Metro istasyonuna en yakın rotanın başlangıç veya bitiş noktasını seçin - Arazi + Yükseklikler Yükseklik çizgilerini kullanmak için, istediğiniz arazinin haritasını güncelleyin veya indirin Bu bölgede henüz yükseklik çizgileri mevcut değil + Zorluk seviyesi + Kolay + Orta + Karmaşık Tırmanış İniş Min. rakım @@ -656,12 +820,29 @@ Mesafe: Süre: Konturları görmek için haritayı büyütün + Güncelleme + İndir + Anahtar bilgisi Dünya haritasını indir Bağlantı hatası USB kablosunu çıkarın Ekranın kapanmasına izin ver Etkinleştirildiğinde ekranın bir süre hareketsiz kaldıktan sonra kapanmasına izin verilir. + + İndirdiğiniz haritaları güncelleyin + + Haritaları güncellemek, nesnelerle ilgili bilgilerin güncel kalmasını sağlar + + Güncelle (%s) + + Daha sonra manüel olarak güncelle + + Kaydı Sil + + Kayıt Adı + + Rota Remontées mécaniques @@ -881,8 +1062,6 @@ Acil telefon Entrée Tıbbi laboratuvar - - Otobüs durağı Yol yapım aşamasında Yol @@ -982,22 +1161,6 @@ Cadde Cadde Cadde - Yol - Cadde - Cadde - Yol - Cadde - Cadde - Cadde - Cadde - Cadde - Cadde - Yol - Cadde - Cadde - Cadde - - Arkeolojik alan Kale Kale @@ -1071,7 +1234,6 @@ Boğaz Arbre Volcan - Su Sulak alan Ofis Şirket bürosu @@ -1083,16 +1245,16 @@ Cep telefonu operatörü Şehir Başkent - Şehir - Şehir + Başkent + Başkent Başkent - Şehir - Şehir - Şehir - Şehir - Şehir - Şehir - Şehir + Başkent + Başkent + Başkent + Başkent + Başkent + Başkent + Başkent Kıta Ülke Kırsal kesim diff --git a/android/res/values-uk/strings.xml b/android/res/values-uk/strings.xml index 13c7f97534..02dfe6789e 100644 --- a/android/res/values-uk/strings.xml +++ b/android/res/values-uk/strings.xml @@ -8,6 +8,8 @@ Назад Скасувати + + Вiдмiнити завантаження Видалити Завантажити мапи @@ -17,6 +19,8 @@ Завантажується… Кілометри + + Написати відгук Мапи @@ -32,14 +36,19 @@ Пошук Пошук на мапі + + Так Геолокація вимкнена в налаштуваннях пристрою. Будь ласка, увімкніть її для зручного використання програми. Показати на мапі + + Завантажити мапу Помилка завантаження Спробуйте ще раз + Про програму Налаштування підключення Закрити Для роботи програми необхідний апаратно прискорений OpenGL. На жаль, ваш пристрій не підтримується. @@ -59,11 +68,13 @@ Не вдалося завантажити %s - Додати список + Додати групу Колір мiтки - Назва списка мiток + Назва групи + + Групи мiток Мітки @@ -72,8 +83,8 @@ Iм\'я Адреса - - Список + + Група Налаштування @@ -88,43 +99,41 @@ Одиниці виміру Використовувати милі чи кілометри - - - + Де поїсти - + Продукти - + Транспорт - + Заправка - + Парковка - + Шопінг - + Готель - + Пам’ятні місця - + Розваги - + Банкомат - + Нічне життя - + Відпочинок з дітьми - + Банк - + Аптека - + Лікарня - + Туалет - + Пошта - + Поліція Примітка @@ -158,8 +167,12 @@ Ел. пошта Скопіювати в буфер обміну: %1$s + + Інфо Готово + + Версія: %s Продовжити? @@ -188,6 +201,10 @@ Мова підказок Не доступнi + + Інша + + Недавній маршрут Автозум Вимкнуто 1 година @@ -195,6 +212,8 @@ 6 годин 12 годин 1 день + Ця функція дозволяє прокласти подоланий маршрут протягом певного проміжку часу та переглянути його на мапі. Звертаємо вашу увагу, що вмикання цієї функції пришвидшить розрядження акумулятора. Щойно сплине заданий проміжок часу, прокладений маршрут буде видалено з мапи. + Відстань Подивитись на мапі Вебсайт @@ -212,6 +231,12 @@ Копірайт Сповістити про помилку + + Поштовий клієнт не налаштований. Налаштуйте його або скористайтеся іншими способами зв\'язку. Наша адреса – %s. + + Помилка при відправленні листа + + Калібрування компаса WiFi @@ -220,12 +245,19 @@ Скасувати всі Завантажено + + Доступні В черзі Поблизу Мапи Завантажити всі Завантажується: + Знайдено + + Oновити + + Помилка Щоб видалити мапу, будь ласка, зупините навiгацiю. @@ -240,12 +272,22 @@ Оновити мапу Щоб визначити ваше поточне місцезнаходження, використовуйте сервіси Google Play + + Я щойно оцінив вашу програму + + Дякуємо! + + Діліться будь-якими ідеями чи проблемами, щоб ми могли удосконалюватись. + + Надіслати відгук Завантажити мапи з дороги Для створення маршруту необхідно щоб всі мапи, починаючи від вашого місцезнаходження і до пункту призначення, були завантажені та оновлені. Недостатньо місця + + мітка Будь ласка, увімкніть геолокацію Зберегти @@ -298,6 +340,8 @@ Будь ласка, перевірте сигнал GPS. Для покращання точності геопозиції увімкніть Wi-Fi. Увімкніть режим визначення геопозиції Поточну геопозицію не визначено. Для побудови маршруту увімкніть режим визначення геопозиції. + Завантажте необхідні файли + Для побудови маршруту завантажте і обновіть всі мапи і файли маршрутів на шляху руху. Маршрут не знайдено Не вдалося побудувати маршрут. Будь ласка, змініть початкову або кінцеву точку маршруту. @@ -312,6 +356,7 @@ Системна помилка Не вдалося прокласти маршрут через помилки програми. Спробуйте знову + Не зараз Завантажити мапу і побудувати більш оптимальний маршрут з перетином межі мапи? Для побудови більш оптимального маршруту з перетином межі потрібно завантажити мапу. @@ -322,8 +367,17 @@ Показати Приховати + + Збій планування маршруту Прибуття в %s + + Для створення маршруту, будь ласка, скачайте та обновіть всі карти за ним. + Подобається програма? + Дякуємо за використання Organic Maps. Будь ласка, дайте їй оцінку. Ваш відгук допоможе нам стати краще. + Ура! Ми теж вас любимо! + Дякуємо, ми зробимо все можливе! + Є пропозиції щодо того, як ми можемо її вдосконалити? Категорії Історія Зачинено @@ -332,8 +386,6 @@ Історія пошуку Швидкий доступ до недавніх результатів пошуку. Очистити історію пошуку - - Вікіпедія Ваше місцезнаходження Почати рух Звідси @@ -356,6 +408,8 @@ Приклади значень Виправте помилку Місцезнаходження + Ви змінили карту світу. Не приховуйте це! Розкажіть своїм друзям і редагуйте разом. + Поділитися з друзями Будь-ласка, напишіть детально про проблему, щоб суспільство OpenStreetMap виправило помилку. Або зробіть це самостійно на сайті https://www.openstreetmap.org/ Надіслати @@ -365,20 +419,29 @@ Дубльовані місця Автоматичне завантаження + Зараз закрито + Щоденно Цілодобово Сьогодні зачинено Зачинено Сьогодні + Додати години роботи Редагувати години роботи Не зареєстровані в OpenStreetMap? Зареєструватися + Пароль (мінімум 8 символів) + Невірне ім\'я користувача або пароль. Увійти Пароль Забули пароль? + Обліковий запис OSM Вийти + + Остання вiдправка Дякуємо Редагувати місце + Назва Додати мову Вулиця @@ -395,16 +458,22 @@ Вибрати кухню Ел. пошта або ім\'я користувача + Телефон + Будь ласка, зверніть увагу Разом з мапою будуть видалені й внесені Вами правки на цій мапі. Оновити мапи Для побудови маршруту необхідно оновити усі мапи та побудувати маршрут заново. Знайти мапу + Помилка завантаження Будь ласка, перевірте свої налаштування і переконайтеся, що ваш пристрій підлючено до Інтернету. Недостатньо місця Видаліть непотрібні дані Виникла помилка при авторизації. Виправлення, що ураховані Потягніть мапу, щоб вибрати правильне місцезнаходження об’єкту. + Вибрати категорію + Популярні + Усі категорії Редагування Додовання Назва місця @@ -412,8 +481,13 @@ Детальний опис проблеми Інші проблема Додати організацію + Додати нові місця до мапи і редагувати існуючі місця прямо з програми. + Змініть розташування Об\'єкт не може перебувати в цьому місцезнаходженні Увійдіть, щоб ваші зміни побачили інші користувачі. + + Для завантаження потрібно більше вільного місця. Будь ласка, видаліть непотрібні дані. + Я покращив мапи Organic Maps %1$d з %2$d Завантажити за допомогою мобільної мережі? @@ -431,6 +505,7 @@ Зміни, що ви запропонували, буде відправлено до OpenStreetMap. Опишіть подробиці про об\'єкт, які не можна редагувати у Organic Maps. Більше про OpenStreetMap Власник + Мої мапи Ви не маєте завантажених мап Завантажте необхідні мапи, щоб знаходити місця та користуватися навігацією без iнтернету. @@ -439,6 +514,14 @@ Місцезнаходження не знайдено. Можливо, ви знаходитесь у приміщенні або тунелі. Продовжити Зупинити + Місцезнаходження не знайдено. + Під час пошуку місцезнаходження сталася невідома помилка. Перевірте працездатність пристрою та спробуйте відшукати місцеположення пізніше. + Ідентифікацію місцезнаходження відключено + Увімкніть доступ до геолокації в налаштуваннях цього пристрою + 1. Відкрийте «Налаштування» + 2. Клацніть «Місцезнаходження» + + 3. Оберіть \"Під час роботи програми\" м км км/год @@ -453,6 +536,10 @@ Забронювати Подзвонити Редагувати мiтку + Назва мiтки + Примітка + Видалити мiтку + Зміни, що ви запропонували, відправлено Коментар… Скинути всі локальні виправлення? Скинути @@ -461,6 +548,7 @@ Місце не існує Будь ласка, вкажіть причину видалення + …більше Введіть правильний номер телефону Введіть вірну адресу веб-сайту @@ -470,19 +558,28 @@ Введіть вірну веб-адресу Twitter сторінки або і\'мя користувача Введіть вірну веб-адресу VK сторінки або і\'мя користувача Введіть вірну веб-адресу LINE сторінки або LINE ID + Оновити Додати на мапу Надіслати усім користувачам? Переконайтеся, що ви не ввели особисті дані. Якщо при перевірці змін виникнуть питання, ми напишемо вам на email. + стоп + + Вимкнути запис нещодавно пройденого шляху? + Вимкнути + + Подивись, + Organic Maps використовує вашу геопозицію у фоновому режимі для запису нещодавно пройденого шляху. Organic Maps – це безкоштовні офлайнові карти із відкритим вихідним кодом. Без реклами. Без відстеження. Якщо ви бачите помилку на карті, виправте її в OpenStreetMap. Проект створюється ентузіастами у вільний час, тому нам потрібні ваші відгуки та підтримка. + Загальні налаштування Прийняти Відхилити - + Список Використовувати мобільні дані для перегляду докладної інформації? Завжди @@ -495,6 +592,8 @@ Для відображення інформації про трафік необхідно оновити мапи. Збільшити розмір шрифту на мапі Будь ласка, встановіть оновлення Organic Maps + + Для відображення даних про трафік оновіть додаток. Дані про трафік недоступні Включити логіювання @@ -511,8 +610,13 @@ Вкажіть початкову точку для побудови маршруту Вкажіть кінцеву точку для побудови маршруту Вихід + Редагування маршруту + Прокласти маршрут Видалити + Перетягніть сюди, щоб видалити Додати зупинку + Почати з + Ой, трапилася помилка. Спробуйте увійти знову. Не вдалося отримати доступ до сховища Зовнішнє сховище не доступно. Ймовірно, SD-картку пам\'яті було вилучено, пошкоджено, або система файлів доступна тільки для читання. Будь ласка, перевірте та зв\'яжіться з нами, написавши на адресу електронну пошту support\@organicmaps.app Емулювати проблемне сховище @@ -522,7 +626,14 @@ Приховати всі Показати всі + + %d закладок + Створити новий список + Приховати екран + %1$s (%2$s з %3$s) + Завантаження %s… + Застосування %s… Неможливо поділитися через помилку програми Помилка обміну Неможливо поділитися пустим списком @@ -531,15 +642,23 @@ Новий список Це ім\'я вже зайнято Виберіть інше ім\'я + Це ім\'я задовге Будь ласка, зачекайте… Номер телефону Профіль OpenStreetMap + Виявлено нові файли - %d файлу були знайдені. Ви побачите їх після конвертації. %d файл був знайдений. Ви побачите його після перетворення. %d файлів було знайдено. Ви побачите їх після конвертації. + %d файлу були знайдені. Ви побачите їх після конвертації. + Конвертувати + Помилка + Деякі файли не конвертувалися. + Відновити цю версію? Нема інтернет з\'єднання + Виникла невідома помилка + Відновити %d місце @@ -561,13 +680,17 @@ Список порожній Щоб додати нову позначку, натисніть на значок зірочки в картці об’єкта …ще + Виникла помилка Експортувати файл Налаштування списку Видалити список + Приховати з карти Публічний доступ Приватний доступ Додайте опис (текст чи html) Особистий + Під час завантаження тегів сталася помилка, будь ласка, спробуйте ще раз + Завантажити Камери швидкості Авто Завжди @@ -575,6 +698,7 @@ Опис місця Завантаження мап + Авто - Попереджати про камери швидкості, якщо є ризик перевищення швидкісного ліміту\nЗавжди - Завжди попереджати про камери\nНіколи - Ніколи не попереджати про камери Режим енергозбереження Якщо увімкнено режим енергозбереження, додаток буде відключати енерговитратні функції в залежності від поточного заряду телефону Ніколи @@ -598,11 +722,44 @@ Уникати платних доріг Уникати ґрунтових доріг Уникати поромних переправ + Поїхали + Ціль + Відцентрувати + Результати пошуку + Далі + Бажаєте перебудувати маршрут? + Так + Ні + Ви прибули! + Клавіатура недоступна під час руху + Неможливо побудувати маршрут від поточного місця розташування + Неможливо побудувати маршрут до кінцевої точки. Оберіть іншу + Немає сигналу GPS. Перейдіть на відкриту місцевість + Неможливо побудувати маршрут. Оберіть інші точки маршруту + Щоб побудувати маршрут, завантажте відсутні карти на своєму пристрої + Виникла помилка. Перезапустіть додаток + Маршрут буде перебудовано від вашого поточного місця розташування + Маршрут буде змінено на автомобільний Ок + Без ґрунт. + Без ґрунтових + Без поромів + Без поромів + Без платних + Без платних + Камери + Інфо о камерах + Завантажте карти в додатку Organic Maps на своєму пристрої + %s з’їзд Сортувати Сортувати мітки + + Сортувати за промовчанням + Сортувати за типом + Сортувати за відстанню + Сортувати за датою Усталено @@ -641,6 +798,10 @@ Висоти Щоб скористатися лініями висот, оновіть чи завантажте карту потрібної місцевості Лінії висот ще недоступні в цьому регіоні + Рівень складності + Простий + Помірний + Складний Підйом Спуск Мін. висота @@ -649,26 +810,31 @@ Відст.: Шлях: Збільште мапу, щоб побачити ізолінії + Оновлення + Завантаження + Ключова інформація Дозволити екрану вимкнутись При включенні екран може переходити в сплячий режим після певного періоду бездіяльності + + Оновити завантажені мапи + + Оновлення мап дозволяє підтримувати інформацію про об\'єкти в актуальному стані + + Оновити (%s) + + Оновити вручну пізніше + + Маршрут - Канатна дорога - Канатна дорога - Канатна дорога - Канатна дорога - Канатна дорога - Канатна дорога Канатна дорога - Аеропорт Аеропорт Міжнародний аеропорт Перон Вихід на посадку Майданчик для гелікоптерів Злітно-посадкова смуга - Рульова дорiжка Термінал Об’єкти інфраструктури Центр мистецтв @@ -916,13 +1082,6 @@ Аварійний телефон Вхід Медична лабораторія - - - Дорога - Кінна доріжка - Кінна доріжка - Кінна доріжка - Кінна доріжка Зупинка Дорога, що будується Велодоріжка @@ -931,120 +1090,102 @@ Велодоріжка Ліфт Пішохідна доріжка - Стежка - Пішохідна зона + Пішохідна доріжка + Пішохідна доріжка Пішохідна доріжка - Стежка - Стежка - Стежка - Стежка - Стежка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка Пішохідна доріжка Пішохідна доріжка Брід - Житлова зона - Житлова зона - Житлова зона - Автомагістраль - Автомагістраль - Автомагістраль + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця З\'їзд - З\'їзд з автомагістралі - З\'їзд з автомагістралі - З\'їзд з автомагістралі - Стежка - Стежка - Велопішохідна доріжка - Стежка - Стежка - Стежка - Стежка - Стежка - Кінна стежка - Стежка - Стежка - Стежка - Пішохідна вулиця - Пішохідна зона - Пішохідна вулиця - Пішохідна вулиця - Шосе - Шосе - Шосе - З\'їзд з шосе - З\'їзд з шосе - З\'їзд з шосе - Гоночний трек + Вулиця + Вулиця + Вулиця + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Автодром Вулиця Вулиця Вулиця Вулиця Зона відпочинку - Дорога - Дорога - Дорога - Автодорога - Автодорога - Автодорога - З\'їзд з автодороги - З\'їзд з автодороги - З\'їзд з автодороги - Проїзд - Проїзд - Проїзд - Під\'їзд - Паркувальний проїзд - Проїзд - Зона обслуговування + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця Камера швидкості - Сходи - Сходи - Сходи - Дорога - Дорога - Дорога - З\'їзд з дороги - З\'їзд з дороги - З\'їзд з дороги - Ґрунтівка - Ґрунтівка - Ґрунтівка - Ґрунтівка - Ґрунтівка - Ґрунтівка - Ґрунтівка - Ґрунтівка - Ґрунтівка - Ґрунтівка - Ґрунтівка + Пішохідна доріжка + Пішохідна доріжка + Пішохідна доріжка + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця Світлофор - Траса - Траса - Траса - З\'їзд з траси - З\'їзд з траси - З\'їзд з траси - Невелика дорога - Невелика дорога - Невелика дорога - Невелика дорога - Велодоріжка - Пішохідна доріжка - Житлова зона - Автомагістраль - Стежка - Пішохідна вулиця - Шосе - Вулиця - Автодорога - Проїзд - Дорога - Сходи - Ґрунтівка - Траса - Невелика дорога - - + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця + Вулиця Історичний об\'єкт Пам\'ятка археології Поле битви @@ -1062,24 +1203,19 @@ Руїни Корабель Гробниця - Християнський хрест Святиня Інтернет Інтернет Перехрестя Кільце - Землевикористання Земельні ділянки Резервуар - Земля для будiвництва Цвинтар - Християнський цвинтар + Цвинтар Церковний двір Комерційні ділянки Будівництво - Ферма Сільськогосподарська земля - Сільськогосподарська земля Поле Ліс Хвойний ліс @@ -1087,7 +1223,6 @@ Змішаний ліс Гаражі Газон - Земля для будiвництва Теплиці Промзона Звалище @@ -1096,7 +1231,6 @@ Сад Кар\'єр Залізничні споруди - База вiдпочинку Водоймище Житлова зона Зона торгівлі @@ -1104,7 +1238,6 @@ Парк Виноградник Місце відпочинку - Громадська земля Місце для вигулу собак Фітнес-зал Спортивні знаряддя @@ -1133,7 +1266,6 @@ Басейн для плавання Бігова доріжка Аквапарк - Пляжний курорт Штучна споруда Хвилеріз Тур @@ -1154,21 +1286,15 @@ Промислове виробництво Бункер Перевал - Природа - Скелi Затока Пляж Піщаний пляж Гальковий пляж Мис Печера - Обрив - Берегова лiнiя Гейзер Льодовик Поле - Пустище - Горяче джерело Озеро Ставок Водосховище @@ -1179,40 +1305,33 @@ Сад Гора Сідловина - Камiнь Зарості Джерело Протока Дерево - Ряд дерев - Виноградник Вулкан Водоймище Болотиста місцевість - Торф\'яне болото - Болотиста мiсцевiсть - Тупик Офіс Організація - Агенція нерухомості + Агенція нерухомості/ріелтор Держустанова Офіс страхової компанії Адвокат Офіс громадської організації Мобільний оператор - Мicце Місто Столиця - Місто - Місто + Столиця + Столиця Столиця - Місто - Місто - Місто - Місто - Місто - Місто - Місто + Столиця + Столиця + Столиця + Столиця + Столиця + Столиця + Столиця Континент Країна Округ @@ -1220,64 +1339,22 @@ Поселення Острів Острів - Житло Місцевість - Мiкрорайон Океан Район Море - Площа Штат Штат Район Місто Село - Енергія - Генератор - Лінія електропередач - Підземна лінія електропередач - Лінія електропередач низької напруги Стовп ЛЕП - Електростанція Підстанція Стовп ЛЕП - Громадський транспорт - Залізниця - Закинута залізниця - Закинутий залізничний міст - Закинутий залізничний тунель - Будівництво залізниці - Пішохідний перехід - Недійсна залізниця - Фунікулер - Фунікулер - Фунікулер Залізничний вокзал Залізничний переїзд - Швидкістний трамвай - Швидкістний трамвай - Швидкістний трамвай Монорейкова залізниця - Монорейкова залізниця - Монорейкова залізниця - Вузькоколійка - Вузькоколійка - Вузькоколійка - Залізнична платформа - Законсервована залізниця - Законсервована залізниця - Законсервована залізниця - Залізнична дорога - Залізничний міст - Залізниця - Залізничний тунель - Закинута залізниця - Гілка залізниці - Гілка залізниці - Гілка залізниці - Під\'їздна залізниця - Під\'їздна залізниця - Під\'їздна залізниця + Залізна дорога Залізничний вокзал Залізничний вокзал Залізничний вокзал @@ -1293,9 +1370,6 @@ Метро Метро Метро - Лінія метро - Лінія метро - Лінія метро Вхід до метро Метро Метро @@ -1308,21 +1382,13 @@ Метро Метро Метро - Трамвай - Трамвай - Трамвай Зупинка - Залізнична ділянка - Залізнична ділянка - Залізнична ділянка - Маршрут - Паромна переправа Крамниця Винний магазин Пекарня Салон краси Напої - Веломагазин + Веломагазін Букмекерська контора Книгарня М\'ясний магазин @@ -1340,9 +1406,9 @@ Копіювальний центр Косметика Універмаг - Господарськi товари + Будматеріали Хімчистка - Електротехнiка + Електротехнічний магазин Секс-шоп Крамниця Магазин квітів @@ -1350,7 +1416,7 @@ Магазин меблів Товари для саду Магазин сувенірів - Овочі та фрукти + Магазин овочів Перукарня Будматеріали Ювелірний магазин @@ -1369,51 +1435,32 @@ Ломбард Зоотовари Фототовари - Рибна лавка + Рибна крамниця Магазин взуття Спортивні товари - Канцелярськi товари + Магазин канцелярських товарів Супермаркет Тату-салон Крамниця - Квитковий кiоск + Білетна каса Магазин іграшок Турагентство Магазин шин - Магазин корисних товарів + Магазин господарських товарів Магазин відео Магазин відеоігор Винна крамниця - Спорт - Американський футбол - Стрiльба з лука Легка атлетика - Регбi - Бейсбол Баскетбол - Кеглi - Крикет - Керлiнг - Пiдводне плавання Кінний спорт - Гольф - Гiмнастика - Гандбол - Рiзноманiтнi типи спорту - Акваланг - Стрiльба - Лижi - Футбол - Плавання Тенісний корт - Туризм Гірський готель Апартаменти - Витвір мистецтва - Витвір мистецтва - Витвір мистецтва - Витвір мистецтва - Витвір мистецтва + Твір мистецтва + Твір мистецтва + Твір мистецтва + Твір мистецтва + Твір мистецтва Пам’ятка Пам’ятка Пам’ятка @@ -1433,23 +1480,12 @@ Музей Пікнік Будинок відпочинку - Парк розваг + Пам’ятні місця Оглядний майданчик Хибара Зоопарк - Лежачий полiцейський - Лежачий полiцейський - Лежачий полiцейський - Водяний шлях Канал Канал - Дамба - Канава - Канава - Причал - Водовiдвiд - Водовiдвiд - Шлюз Шлюз Річка Річка @@ -1459,26 +1495,8 @@ Річка Річка Водоспад - Гребля - Iнвалiдний вiзок Частково обладнано для інвалідів Не обладнано для інвалідів Обладнано для інвалідів - Пiдйомник - Пiдйомник - Стрiчковий конвеєр - Пiдйомник - Пiдйомник - Пiдйомник - Тип дороги - Гірськолижна траса - Доповнена гірськолижна траса - Легка гірськолижна траса - Гірськолижна траса для експертів - Гірськолижна траса вільного спуска - Гірськолижна траса середнього рівня - Гірськолижна траса для новеньких - Траса для скандинавської ходьби - Траса для санок Будівля diff --git a/android/res/values-vi/strings.xml b/android/res/values-vi/strings.xml index 65a6ee8fe5..4b24a466d4 100644 --- a/android/res/values-vi/strings.xml +++ b/android/res/values-vi/strings.xml @@ -8,6 +8,8 @@ Quay lại Huỷ bỏ + + Huỷ bỏ Tải xuống Xóa Tải xuống Bản đồ @@ -17,6 +19,8 @@ Đang tải xuống… Kilômét + + Để lại Đánh giá Bản đồ @@ -29,14 +33,19 @@ Tìm kiếm Tìm kiếm Bản đồ + + Bạn hiện đang tắt tất cả Dịch vụ Định vị cho thiết bị hoặc ứng dụng này. Bạn vui lòng bật lại chúng trong Thiết lập. Hiển thị trên bản đồ + + Tải xuống Bản đồ Tải xuống đã thất bại Thử lại + Giới thiệu về Organic Maps Thiết lập Kết nối Đóng Cần có OpenGL được tăng tốc phần cứng. Thật không may, thiết bị của bạn không được hỗ trợ. @@ -61,6 +70,8 @@ Đánh dấu Màu sắc Đánh dấu Tên Bộ + + Đánh dấu Bộ Đánh dấu @@ -69,8 +80,8 @@ Tên Địa chỉ - - Danh sách + + Đặt Thiết lập @@ -85,43 +96,41 @@ Đơn vị đo Chọn giữa dặm và kilômét - - - + Ăn ở đâu - + Cửa hàng tạp hóa - + Giao thông - + Khí đốt - + đỗ xe - + Đi mua sắm - + Khách sạn - + Diểm tham quan - + Giải trí - + ATM - + Cuộc sống về đêm - + Kỳ nghỉ gia đình - + Ngân hàng - + Hiệu thuốc - + Bệnh viện - + Nhà vệ sinh - + Bưu điện - + Cảnh sát Ghi chú @@ -155,8 +164,12 @@ Email Đã sao chép vào Bảng tạm: %1$s + + Thông tin Xong + + Phiên bản: %s Bạn có chắc muốn tiếp tục không? @@ -185,6 +198,10 @@ Ngôn ngữ Giọng nói Không có sẵn + + Khác + + Tìm kiếm gần đây Ống dòm tự động Tắt 1 giờ @@ -192,6 +209,8 @@ 6 giờ 12 giờ 1 ngày + Chức năng này cho phép bạn ghi lại đường đi trong một khoảng thời gian nhất định và xem nó trên bản đồ. Xin lưu ý: việc kích hoạt chức năng này sẽ tăng mức sử dụng pin. Đường đi sẽ tự động bị xóa khỏi bản đồ sau khi kết thúc khoảng thời gian nói trên. + Khoảng cách Xem trên bản đồ Trang web @@ -209,6 +228,12 @@ Bản quyền Báo cáo lỗi + + Trình khách email này chưa được thiết lập. Bạn vui lòng cấu hình nó hoặc sử dụng một cách khác để liên hệ với chúng tôi tại %s + + Lỗi gửi thư + + Chuẩn hóa la bàn WiFi @@ -217,12 +242,19 @@ Hủy tất cả Đã tải xuống + + Đã có Đã xếp hàng chờ Gần tôi Bản đồ Tải xuống tất cả Đang tải về: + Đã tìm thấy + + Cập nhật + + Thất bại Để xóa bản đồ, vui lòng dừng điều hướng. @@ -237,12 +269,22 @@ Cập nhật Bản đồ Sử dụng Dịch vụ Google Play để có được vị trí hiện tại của bạn + + Tôi vừa đánh giá ứng dụng của bạn + + Xin cám ơn! + + Hãy chia sẻ bất kỳ ý tưởng hay vấn đề nào, để chúng tôi cải tiến ứng dụng tốt hơn. + + Gửi phản hồi Tải xuống bản đồ theo tuyến đường Tạo một tuyến đường đòi hỏi tất cả các bản đồ từ vị trí của bạn đến điểm đến phải được tải xuống và cập nhật. Không đủ không gian + + yer i̇mi Bạn vui lòng bật Dịch vụ Định vị Lưu @@ -295,6 +337,8 @@ Hãy kiểm tra tín hiệu GPS của bạn. Việc kích hoạt Wi-Fi sẽ cải thiện độ chính xác vị trí của bạn. Bật các dịch vụ định vị Không thể xác định vị trí tọa độ GPS hiện tại. Bật các dịch vụ định vị để tính toán tuyến đường. + Tải xuống các tệp yêu cầu + Tải về và cập nhật tất cả các bản đồ và các thông tin tuyến đường dọc theo lộ trình dự kiến để tính toán tuyến đường. Không thể xác định tuyến đường Không thể tạo tuyến đường. Hãy điều chỉnh điểm bắt đầu hoặc điểm đến của bạn. @@ -309,6 +353,7 @@ Lỗi hệ thống Không thể tạo tuyến đường do lỗi ứng dụng. Vui lòng thử lại + Lúc khác Bạn có muốn tải về bản đồ và tạo một tuyến đường tối ưu hơn kéo dài trên nhiều hơn một bản đồ? Tải về bản đồ để tạo tuyến đường tối ưu hơn mà đi qua cạnh của bản đồ này. @@ -319,8 +364,17 @@ Hiện Ẩn + + Không thể Lập Lộ trình Đến: %s + + Để tạo đường đi, vui lòng tải về và cập nhật tất cả bản đồ dọc theo tuyến đường. + Bạn thích ứng dụng chứ? + Cám ơn bạn đã sử dụng Organic Maps. Vui lòng đánh giá ứng dụng. Phản hồi của bạn giúp chúng tôi trở nên tốt hơn. + Hoan hô! Chúng tôi cũng yêu bạn! + Cám ơn, chúng tôi sẽ nỗ lực hết mình! + Có bất kỳ ý tưởng nào về cách chúng tôi có thể giúp ứng dụng tốt hơn? Thể loại Lịch sử Đã đóng @@ -351,6 +405,8 @@ Giá trị ví dụ Sửa lỗi Vị trí + Bạn đã thay đổi bản đồ thế giới. Đừng giấu điều đó! Hãy cho các bạn khác biết và cùng nhau chỉnh sửa. + Chia sẻ với bạn bè Xin mô tả chi tiết vấn đề để cộng đồng OpenStreeMap có thể sửa lỗi đó. Hoặc bạn có thể tự sửa tại https://www.openstreetmap.org/ Gửi @@ -360,20 +416,29 @@ Địa điểm trùng lặp Tự động tải về + Hiện đã đóng + Hàng ngày ngày và đêm Nghỉ hôm nay Ngày nghỉ Hôm nay + Thêm giờ làm việc Sửa giờ làm việc Bạn chưa có tài khoản tại OpenStreetMap ư? Đăng ký + Mật khẩu (tối thiểu 8 ký tự) + Sai Tên người dùng hoặc Mật khẩu. Đăng nhập Mật khẩu Quên mật khẩu? + Tài khoản OSM Đăng xuất + + Tải lên mới nhất Cảm ơn bạn Chỉnh sửa địa điểm + Tên địa điểm Thêm ngôn ngữ Đường @@ -388,16 +453,22 @@ Chọn Ẩm thực Email hoặc tên người dùng + Điện thoại + Xin lưu ý Tất cả những thay đổi của bản đồ sẽ bị xóa cùng với bản đồ đó. Cập nhật các bản đồ Để tạo một tuyến đường, bạn cần cập nhật tất cả các bản đồ và sau đó lập lại tuyến đường. Tìm bản đồ + Lỗi tải xuống Xin kiểm tra các thiết lập và đảm bảo thiết bị của bạn có kết nối Internet. Không đủ dung lượng Xin xóa dữ liệu không cần thiết Lỗi đăng nhập. Các thay đổi đã được xác thực Kéo bản đồ để chọn vị trí chính xác của đối tượng + Chọn thể loại + Phổ biến + Mọi thể loại Chỉnh sửa Nhập Tên địa điểm @@ -405,8 +476,13 @@ Mô tả chi tiết của vấn đề Một vấn đề khác Thêm tổ chức + Nhập các địa điểm mới vào bản đồ, và trực tiếp chỉnh sửa những địa điểm hiện có trên ứng dụng. + Thay đổi địa điểm Một đối tượng không thể đặt được ở đây Đăng nhập để người dùng khác có thể nhìn thấy những thay đổi bạn đã thực hiện. + + Để tải xuống, bạn cần thêm dung lượng. Xin xóa mọi dữ liệu không cần thiết. + Tôi đã cải thiện các bản đồ Organic Maps %1$d trên %2$d Tải xuống qua kết nối mạng di động? @@ -424,6 +500,7 @@ Những thay đổi đề nghị của bạn sẽ được gửi đến cộng đồng OpenStreetMap. Mô tả các chi tiết không thể sửa trong Organic Maps. Thông tin bổ sung về OpenStreetMap Đơn vị điều hành + Bản đồ của tôi Bạn chưa tải về bất kỳ bản đồ nào Tải về bản đồ để tìm địa điểm và định hướng ngoại tuyến. @@ -432,6 +509,14 @@ Chưa biết địa điểm hiện tại. Có thể bạn đang ở trong một tòa nhà hoặc đường hầm. Tiếp tục Dừng + Chưa biết địa điểm hiện tại. + Có lỗi khi tìm kiếm địa điểm của bạn. Đảm bảo rằng thiết bị của bạn hoạt động tốt và thử lại sau. + Chức năng nhận biết địa điểm bị tắt + Bật truy cập định vị địa lý trong thiết lập thiết bị + 1. Mở Thiết lập + 2. Chạm mục Địa điểm + + 3. Chọn Khi Đang Dùng Ứng dụng m km km/giờ @@ -446,29 +531,43 @@ Đặt trước Gọi Sửa Dấu Trang + Tên Dấu Trang + Ghi chú cá nhân + Xóa Dấu Trang + Những thay đổi đề nghị của bạn đã được gửi Nhận xét… Cài đặt lại tất cả thay đổi cục bộ? Cài đặt lại Xóa một địa điểm đã thêm? Xóa Địa điểm không tồn tại + …thêm Nhập chính xác số điện thoại Nhập địa chỉ trang web hợp lệ Nhập email hợp lệ + Cập nhật Thêm địa điểm vào bản đồ Bạn có muốn gửi cho toàn bộ người dùng? Chắc chắn rằng bạn không nhập bất kỳ thông tin cá nhân nào. Chúng tôi sẽ kiểm tra những thay đổi. Nếu chúng tôi có câu hỏi nào, chúng tôi sẽ liên lạc với bạn qua email. + dừng + + Tắt ghi lại tuyến đường đã đi gần đây của bạn? + Tắt + + Xem + Organic Maps sử dụng định vị của bạn trong ứng dụng chạy nền để ghi lại tuyến đường đã đi gần đây của bạn. Organic Maps là một ứng dụng bản đồ ngoại tuyến mã nguồn mở và miễn phí. Không quảng cáo. Không theo dõi. Nếu bạn thấy lỗi trên bản đồ, hãy sửa lỗi đó trong OpenStreetMap. Dự án được tạo ra bởi những người đam mê trong thời gian rảnh của chúng tôi, vì vậy chúng tôi cần phản hồi và hỗ trợ của bạn. + Thiết lập chung Chấp nhận Từ chối - + Danh sách Sử dụng mạng Internet di động để hiển thị thông tin chi tiết? Luôn Sử dụng @@ -481,6 +580,8 @@ Để hiển thị dữ liệu giao thông, cần cập nhật bản đồ. Tăng kích cỡ phông chữ trên bản đồ Vui lòng cập nhật Organic Maps + + Để hiển thị dữ liệu giao thông, ứng dụng cần phải được cập nhật. Dữ liệu giao thông không khả dụng Bật nhật ký @@ -497,8 +598,13 @@ Bổ sung điểm bắt đầu để lập kế hoạch lộ trình Bổ sung điểm kết thúc để lập kế hoạch lộ trình Thoát + Quản lý lộ trình + Kế hoạch Xóa + Kéo vào đây để xóa Thêm điểm dừng + Bắt đầu từ + Rất tiếc, đã có lỗi xảy ra. Hãy thử đăng nhập lại. Vấn đề truy cập ổ lưu trữ Ổ lưu trữ bên ngoài không khả dụng, có thể Thẻ SD đã bị tháo, bị hỏng hoặc hệ thống tập tin được thiết lập chỉ đọc. Hãy kiểm tra và liên hệ với chúng tôi qua support\@organicmaps.app Giả lập ổ lưu trữ hỏng @@ -508,7 +614,14 @@ Ẩn tất cả Hiển thị tất cả + + %d dấu trang + Tạo danh sách mới + Ẩn Màn hình + %1$s (%2$s / %3$s) + Tải về %s… + Áp dụng %s… Không thể chia sẻ do lỗi ứng dụng Lỗi chia sẻ Không thể chia sẻ một danh sách trống @@ -517,14 +630,22 @@ Danh sách mới Tên này đã được sử dụng Vui lòng chọn một tên khác + Tên này quá dài Vui lòng chờ… Số điện thoại Hồ sơ OpenStreetMap + Đã phát hiện tệp mới %d dã tìm thấy một tệp. Bạn sẽ thấy nó sau khi chuyển đổi. %d tập tin đã được tìm thấy. Bạn sẽ thấy chúng sau khi chuyển đổi. + Chuyển đổi + Lỗi + Một số tệp không được chuyển đổi. + Khôi phục phiên bản này? Không có kết nối internet + Đã xảy ra lỗi không xác định + Khôi phục %d nơi @@ -546,13 +667,17 @@ Danh sách trống Để thêm dấu trang, hãy nhấn vào một địa điểm trên bản đồ và sau đó nhấn vào biểu tượng dấu sao …thêm + Đã xảy ra lỗi Xuất tập tin Cài đặt danh sách Xóa danh sách + Ẩn từ bản đồ Truy cập công khai Truy cập hạn chế Đánh vào một mô tả (văn bản hoặc html) Riêng tư + Đã xảy ra lỗi khi tải thẻ, vui lòng thử lại + Tải Tăn tốc độ máy ảnh Tự động Luôn luôn @@ -560,6 +685,7 @@ Mô tả Địa điểm Trình tải xuống bản đồ + Tự động - Cảnh báo về speedcam nếu có nguy cơ vượt quá giới hạn tốc độ\nLuôn luôn - Luôn cảnh báo về speedcams\nKhông bao giờ - Không bao giờ cảnh báo về speedcams Chế độ tiết kiệm năng lượng Nếu chế độ tiết kiệm năng lượng được bật, ứng dụng sẽ tắt các chức năng tiêu thụ năng lượng tùy thuộc vào mức pin hiện tại của điện thoại Không bao giờ @@ -583,11 +709,44 @@ Tránh đường trả phí Tránh đường đất Tránh bến phà + Đi nào + Mục đích + Định tâm + Kết quả tìm kiếm + Sau đó + Bạn có muốn tạo lại tuyến không? + + Không + Bạn đã tới nơi! + Bàn phím không khả dụng trong thời gian di chuyển + Không thể tạo tuyến đường từ địa điểm hiển tại + Không thể tạo tuyến đường tới điểm kết cuối. Hãy chọn điểm khác + Không có tín hiệu GPS. Hãy đến vị trí có không gian mở + Không thể tạo tuyến đường. Hãy chọn những điểm khác cho tuyến đường + Để tạo tuyến đường, hãy tải xuống các bản đồ còn thiếu về thiết bị + Đã xảy ra lỗi. Khởi động lại ứng dụng + Tuyến đường sẽ được tạo lại từ vị trí hiện tại của bạn + Tuyến đường sẽ được thay đổi thành tuyến dành cho xe ô tô Ok + Trừ đườg đất + Trừ khôg trnhựa + Không có phà + Trừ phà + Khôg đgcóphí + Trừ đg có phí + Сam tốc độ + Cảnh báo tốc độ + Vui lòng tải xuống bản đồ trong ứng dụng Organic Maps trên thiết bị của bạn + Lối ra %s của vòng xuyến Sắp xếp… Sắp xếp dấu trang + + Sắp xếp theo mặc định + Sắp xếp theo kiểu + Sắp xếp theo khoảng cách + Sắp xếp theo ngày Theo mặc định @@ -626,6 +785,10 @@ Độ cao Để sử dụng các đường chỉ độ cao, hãy cập nhật hoặc tải xuống bản đồ của khu vực bạn mong muốn Đường hiển thị độ cao hiện chưa khả dụng tại khu vực này + Mức độ phức tạp + Dễ + Trung bình + Khó Đi lên Đi xuống Độ cao tối thiểu @@ -634,9 +797,22 @@ Khoảng cách Giờ: Phóng bản đồ để nhìn rõ đường đồng mức + Cập nhật + Tải xuống + Thông tin chìa khóa Cho phép màn hình ở chế độ ngủ Khi được bật, màn hình sẽ được phép ở chế độ ngủ sau một thời gian không hoạt động. + + Cập nhật các bản đồ đã tải về của bạn + + Cập nhật bản đồ để cập nhật thông tin về các đối tượng trên đó + + Cập nhật (%s) + + Cập nhật thủ công sau + + Dấu chân Trạm Cáp Treo @@ -859,8 +1035,6 @@ Điện thoại khẩn cấp Lối vào Phòng thí nghiệm y tế - - Bến xe buýt Đường đang thi công Đường @@ -960,22 +1134,6 @@ Phố Phố Phố - Đường - Phố - Phố - Đường - Phố - Phố - Phố - Phố - Phố - Phố - Đường - Phố - Phố - Phố - - Điểm khảo cổ Pháo đài Pháo đài @@ -1062,16 +1220,16 @@ Điều hành di động Đất nước Thủ đô - Đất nước - Đất nước + Thủ đô + Thủ đô Thủ đô - Đất nước - Đất nước - Đất nước - Đất nước - Đất nước - Đất nước - Đất nước + Thủ đô + Thủ đô + Thủ đô + Thủ đô + Thủ đô + Thủ đô + Thủ đô Trường đại học Trường đại học Thị trấn diff --git a/android/res/values-zh-rTW/strings.xml b/android/res/values-zh-rTW/strings.xml index 0c031f59eb..577211b442 100644 --- a/android/res/values-zh-rTW/strings.xml +++ b/android/res/values-zh-rTW/strings.xml @@ -8,6 +8,8 @@ 返回 取消 + + 取消下載 刪除 下載地圖 @@ -17,6 +19,8 @@ 下載中… 公里 + + 撰寫評論 地圖 @@ -29,14 +33,19 @@ 搜尋 搜尋地圖 + + 您目前裝置所有的定位服務或相關應用程式是處於停用的狀態,請從系統設定中選擇啟用。 在地圖上顯示 + + 下載地圖 下載失敗 再試一次 + 關於 Organic Maps 連線設定 關閉 需要 OpenGL 硬體加速功能的支援。但很不幸的,您的裝置並不支援此功能! @@ -61,6 +70,8 @@ 書籤顏色 收藏夾名稱 + + 收藏夾 書籤 @@ -69,8 +80,8 @@ 名稱 地址 - - 清單 + + 收藏夾 設定 @@ -85,43 +96,41 @@ 測量單位 請選擇公里或英哩 - - - + 在哪兒吃 - + 食物 - + 運輸 - + 加油站 - + 停車場 - + 購物 - + 旅館 - + 旅遊景點 - + 娛樂 - + 自動櫃員機 - + 夜生活 - + 親子休閒 - + 銀行 - + 藥局 - + 醫院 - + 廁所 - + 郵局 - + 警察局 描述說明 @@ -156,8 +165,12 @@ 電子郵件 已複製到剪貼簿:%1$s + + 簡介 完成 + + 版本: %s 資料版本: %d @@ -192,6 +205,10 @@ 語音語言 無法使用 + + 其他 + + 最近的軌跡 自動縮放 關閉 1小時 @@ -199,6 +216,8 @@ 6小時 12小時 1天 + 它可讓您記錄特定期間所行經的路徑,並在地圖上看到該路徑。請注意:啟用此項功能會增加電池使用量。在時間間隔過期後,會從地圖中自動移除行進路線。 + 距离 在地圖上查看 網站 @@ -222,6 +241,12 @@ 版權 報告錯誤 + + 電子郵件客戶端尚未建立。請設定或使用任何其他方式與我們聯絡%s + + 電子郵件發送錯誤 + + 指南針校準 無線網路 @@ -230,12 +255,19 @@ 全部取消 已下載 + + 可用 已佇列 在我附近 地圖 下載全部 正在下載: + 已找到 + + 更新 + + 失敗 如欲刪除地圖,請停止導航。 @@ -250,12 +282,22 @@ 更新地圖 使用 Google Play 服務來獲得您的目前位置 + + 我剛剛評價了您的應用程式 + + 謝謝您! + + 分享任何主意或問題,這樣我們可以為您改善應用程式。 + + 發送回饋 下載沿線地圖 建立路線需要下載並更新好所有從您的位置到目的地的地圖。 空間不足 + + 書籤 請啟用定位服務 儲存 @@ -308,6 +350,8 @@ 請確認您的 GPS 訊號。啟用無線網路將提升地理位置定位準確度。 啟用定位服務 無法定位目前 GPS 座標。請啟用定位服務以產生路線。 + 下載所需檔案 + 若要產生路線,請下載並更新所有地圖及沿路線的路線檔案。 路線未找到 無法產生路線。 請變更起點或最終目的地。 @@ -322,6 +366,7 @@ 系統錯誤 由於此錯誤,尚未建立路線。 請再試一次 + 現在不要 您是否要下載地圖,產生跨越邊界的更好路線? 若要產生跨越邊界的更理想路線,您需要下載地圖。 @@ -332,8 +377,17 @@ 顯示 隱藏 + + 路線計劃失敗 抵達:%s + + 要建立路線,請下載並更新所有沿線的地圖。 + 喜歡這個應用程式嗎? + 感謝您使用 Organic Maps。請評價此應用程式。您的回饋幫助我們改善我們的產品。 + 太棒了!我們也愛您! + 謝謝您,我們會盡可能做好! + 有沒有想法我們能怎麽把它變得更好? 類別 記錄 已關閉 @@ -366,6 +420,8 @@ 範例值 修正錯誤 位置 + 您已經改變了世界地圖。別藏私!告訴您的朋友們一起來編輯。 + 和朋友分享 請詳細描述此問題以便 OpenStreeMap 社群修復此錯誤。 或者在 https://www.openstreetmap.org/ 上親自修復此錯誤 發送 @@ -375,20 +431,29 @@ 重複的地點 自動下載 + 現在關門 + 每天 全天候 今天沒有營業 沒有營業 今天 + 新增營業時間 編輯營業時間 沒有 OpenStreeMap 帳號嗎? 註冊 + 密碼(最少8個字母) + 無效的使用者名稱或密碼。 登入 密碼 忘記密碼 + OSM 帳號 登出 + + 上次上傳 謝謝您 編輯地點 + 地點名稱 新增語言 街道 @@ -403,17 +468,23 @@ 選擇料理 電子郵件或使用者名稱 + 電話 新增電話 + 請註意 所有對地圖的修改都將與地圖一起被刪除。 更新地圖 為了建立路線,您需要更新全部地圖並重新規劃路線。 尋找地圖 + 下載錯誤 請檢查您的設定並確保您的設備已連接至網路。 無足夠的空間 請刪除不必要的資料 登入錯誤。 已驗證的變更 拖動地圖以選擇此物件的正確位置。 + 選擇類別 + 受歡迎的 + 所有類別 編輯中 新增中 該地點的名稱 @@ -421,8 +492,13 @@ 問題的詳細描述 不同的問題 添加組織 + 新增新地點到該地圖,並直接通過此應用程式編輯已存在的地點。 + 改變位置 物件無法設置在這裡 登入來讓其他使用者能看到您所作出的修改。 + + 為了下載,您需要更多的空間。請刪除不必要的資料。 + 我改進了 Organic Maps 地圖 %1$d個/共%2$d個 用手機網路連線下載嗎? @@ -440,6 +516,7 @@ 您建議的變更將傳送至 OpenStreetMap 社群。說明無法在 Organic Maps 中編輯的詳細資料。 關於 OpenStreetMap 的更多資訊 營運者 + 我的地圖 您尚未下載任何地圖 下載地圖來尋找位置和離線瀏覽。 @@ -448,6 +525,14 @@ 目前位置未知,可能您在建築物內或隧道內。 繼續 停止 + 目前位置未知。 + 搜尋您的位置時發生錯誤。請檢查您的裝置是否正常運作,然後重試。 + 地點定位被禁用 + 啟用設備設置中的地理位置定位 + 1. 開啟設定 + 2. 點一下位置 + + 3. 使用應用時選擇 公尺 公里 公里每小時 @@ -462,12 +547,17 @@ 預約 呼叫 編輯書籤 + 書籤名稱 + 個人備註 + 刪除書籤 + 您的建議已傳送 註解… 重設所有本機變更? 重設 移除已新增的位置? 移除 位置不存在 + …更多 輸入正確的電話號碼 輸入有效網址 @@ -476,19 +566,28 @@ 輸入有效 Instagram 網址或帳號名稱 輸入有效推特網址或使用者名稱 輸入有效 VK 網益止或帳號名稱 + 更新 增加地點到地圖上 您想要發給所有用戶嗎? 確保您沒有輸入任何個人資料。 我們會檢查更改。如果我們有任何問題,我們會郵件與您聯絡。 + 停止 + + 禁止記錄您最近去過的路徑? + 禁用 + + 看一看 + Organic Maps使用背景中的地理位置記錄您最近去過的路徑。 Organic Maps 是一款免費的開源離線地圖 app。沒有廣告,不會追蹤。如果您在地圖上看到錯誤,請在 OpenStreetMap 中修復吧。這個專案由愛好者在我們的空閒時間創建,因此我們需要您的回饋和支援。 + 一般設定 接受 拒絕 - + 清單 使用手機網路顯示詳細資訊? 一律使用 @@ -501,6 +600,8 @@ 若要顯示交通資料,必須更新地圖。 增加地圖上的字體大小 請更新 Organic Maps + + 若要顯示交通資訊,必須更新 app。 無法使用交通資訊 啟用記錄 @@ -517,8 +618,13 @@ 新增起點以計劃路線 新增終點以計劃路線 退出 + 管理路線 + 計畫 移除 + 在此拖曳以移除 新增停靠站 + 起點 + 噢,發生錯誤。請嘗試再次登入。 儲存空間存取問題 外部儲存空間不可用,很可能是因為 SD 卡已移除、毀損,或檔案系統處於唯讀狀態。請進行檢查,然後以 support\@organicmaps.app 方式聯繫我們 模擬不良儲存空間 @@ -528,9 +634,16 @@ 隱藏全部 顯示全部 + + %d 個書籤 + 創建新列表 匯入書籤 + 隱藏畫面 + %1$s (%2$s,共%3$s) + 下載 %s 中…… + 應用 %s 中…… 由於 app 出錯而無法分享 分享錯誤 無法分享空的列表 @@ -539,13 +652,21 @@ 新的列表 這個名字已經被使用了 請選擇其他名稱 + 這個名字太長了 請稍候… 電話號碼 OpenStreetMap 資料 + 檢測到新文件 找到%d個文件。 轉換後你會看到它。 + 兌換 + 錯誤 + 有些文件未被轉換。 + 還原這個版本? 沒有網路連線 + 出現未知錯誤 + 恢復 %d 地點 @@ -567,13 +688,18 @@ 列表為空 要增加新標籤,請點一下對象卡片中的星型圖標 …更多 + 發生錯誤 + 受歡迎的 導出文件 列表設定 刪除列表 + 從卡中隱藏 開放空間 私人空間 增加說明(文字或html) 私人 + 載入標籤時出錯,請重試 + 下載 超速照相機 自動 總是 @@ -581,6 +707,7 @@ 地點說明 載入地圖 + 自動 - 如果存在超出速度限制的風險,則對速度照相機發出警告\n總是 - 始終提醒照相機\n從不 - 永遠不會對照相機發出警告 省電模式 如果開啟省電模式,應用程序將根據手機的當前電量關閉耗電功能 從不 @@ -604,11 +731,44 @@ 規避收費公路 規避土路 規避渡輪渡口 + 前往 + 目標 + 重新設定中心點 + 搜尋結果 + 接下來 + 想重建路線? + + + 您已經到達了! + 開車時鍵盤不可用 + 無法從當前位置構建路線 + 無法建立到終點的路線。請選擇其他(路線) + 無GPS信號。請沿著空曠區域行駛 + 無法建立路線。請選擇其他路線點 + 爲了創建線路,請在您的設備中下載所缺少的地圖 + 發生錯誤,請重新啟動 app + 該路線將從您的當前位置重建 + 該路線將改為汽車(路線) + 無土路路段 + 無土路路段 + 無渡船 + 無渡船 + 無付費路段 + 無付費路段 + 測速照相機 + 超速警告 + 將Organic Maps app 中的地圖下載至個人設備中 + %s號坡道 分類…… 分類書籤 + + 按預設值排序 + 按類型排序 + 按距離排序 + 按日期排序 採用預設值 @@ -647,6 +807,10 @@ 高度 如需使用等高線,請更新或下載所需區域的地圖 暫時無法獲取該地區的等高線 + 難度等級 + 容易 + 中等 + 困難 上坡 下坡 最小高度 @@ -655,10 +819,29 @@ 距離: 時間: 放大地圖以查看等高線 + 更新 + 載入 + 關鍵資訊 拔除 USB 線 允许螢幕進入休眠狀態 啟用後,螢幕將在一段時間不活動後進入休眠狀態。 + + 更新您下載的地圖 + + 更新地圖以讓物件資訊保持在最新狀態 + + 更新 (%s) + + 稍後手動更新 + + 刪除路徑 + + 路徑名稱 + + 移動 + + 追踪 纜車 @@ -885,8 +1068,6 @@ 緊急電話 入口 醫學實驗室 - - 巴士站 在建道路 人行步道 @@ -987,22 +1168,6 @@ 道路 道路 道路 - 人行步道 - - 高速公路 - 人行步道 - - 主要道路 - 住宅區道路 - 次要道路 - 輔助道路 - 三级道路 - 人行步道 - 土路 - 主幹道 - 道路 - - 考古遺址 城堡 城堡 @@ -1091,16 +1256,16 @@ 行動電話業者 城市 首府 - 城市 - 城市 - 首府 - 城市 - 城市 - 城市 - 城市 - 城市 - 城市 - 城市 + 首府 + 首府 + 首都 + 首都 + 首府 + 首府 + 首府 + 首府 + 首府 + 首府 大陸 國家/地區 diff --git a/android/res/values-zh/strings.xml b/android/res/values-zh/strings.xml index 083d7a4e1f..6c83119600 100644 --- a/android/res/values-zh/strings.xml +++ b/android/res/values-zh/strings.xml @@ -8,6 +8,8 @@ 返回 取消 + + 取消下载 删除 下载地图 @@ -17,6 +19,8 @@ 下载… 千米 + + 发表评论 地图 @@ -29,14 +33,19 @@ 搜索 搜索地图 + + 您目前有此设备的所有位置服务或应用已禁用。请在设置中启用它们。 在地图上显示 + + 下载地图 下载失败 重试 + 关于 Organic Maps 连接设置 关闭 硬件加速的 OpenGL 是必需的。遗憾的是您的设备不支持此功能。 @@ -61,6 +70,8 @@ 书签颜色 书签集名称 + + 书签集 书签 @@ -69,8 +80,8 @@ 名字 地址 - - 列表 + + 集合 设置 @@ -85,43 +96,41 @@ 测量单位 选择英里或公里 - - - + 在哪儿吃 - + 食品 - + 交通 - + 汽油 - + 停车 - + 购物 - + 旅店 - + 景点 - + 娱乐 - + 自动取款机 - + 夜生活 - + 亲子休闲 - + 银行 - + 药店 - + 医院 - + 厕所 - + 邮政 - + 警察 注释 @@ -155,8 +164,12 @@ 邮件 复制到剪贴板:%1$s + + 信息 完成 + + 版本:%s 资料版本: %d @@ -191,6 +204,10 @@ 语音语言 无法使用 + + 其他 + + 最近的路径 自动缩放 关闭 1小时 @@ -198,6 +215,8 @@ 6小时 12小时 1天 + 它允许您记录一定时间段内的旅行路径,并在地图上查看。请注意:激活此功能会导致电量消耗加快。过期后,轨迹将从地图中自动移除。 + 距离 在地图上查看 网站 @@ -219,6 +238,12 @@ 版权 报告漏洞 + + 电子邮件客户端尚未建立。请配置或使用任何其他方式与我们联系%s + + 电子邮件发送错误 + + 指南针校准 无线网络 @@ -227,12 +252,19 @@ 全部取消 已下载 + + 可用 已排队 在我附近 地图 下载全部 正在下载: + 找到 + + 更新 + + 失败 要删除地图,请停止导航。 @@ -247,12 +279,22 @@ 更新地图 使用Google Play服务以获取您的当前位置。 + + 我刚刚评价了您的应用 + + 谢谢您! + + 分享任何主意或问题,这样我们可以为您改善应用。 + + 发送反馈 下载沿线地图 创建路线需要下载并更新好所有从您的位置到目的地的地图。 空间不足 + + 书签 请启用位置服务 保存 @@ -305,6 +347,8 @@ 请检查您的 GPS 信号。启用无线网络将改善您的定位精度。 启用定位服务 无法定位当前 GPS 坐标。请启用定位服务以计算路线。 + 下载所需文件 + 下载和更新所有地图和预定路径沿途的路线信息,以计算路线。 无法定位路线 无法创建路线。 请调整您的起点或目的地。 @@ -319,6 +363,7 @@ 系统错误 由于应用程序错误,无法创建路线。 请重试 + 现在不用 您是否要下载地图并创建一条跨越多张地图的更佳路线? 下载地图,创建一条跨越此地图边缘的更佳路线。 @@ -329,8 +374,17 @@ 显示 隐藏 + + 路线计划失败 抵達:%s + + 要创建路线,请下载并更新所有沿路线的地图。 + 喜欢这个应用吗? + 感谢您使用 Organic Maps。请评价此应用。您的反馈帮助我们改善我们的产品。 + 太棒了!我们也爱您! + 谢谢您,我们会尽可能做好! + 有没有想法我们能怎么把它变得更好? 类别 历史 已关闭 @@ -363,6 +417,8 @@ 示例值 纠正错误 位置 + 您已经改变了世界地图。请不要隐藏这一点!告诉您的朋友们并一起编辑它。 + 与朋友分享 请详细描述此问题以便OpenStreeMap社区能够修复此错误。 或者在https://www.openstreetmap.org/上亲自修复此错误。 发送 @@ -372,20 +428,29 @@ 重复的地点 自动下载 + 现在关门 + 每天 全天候 今天没有营业 没有营业 今天 + 添加工作时间 编辑工作时间 在OpenStreetMap上没有账户吗? 注册 + 密码(最少8个字符) + 无效的用户名或密码。 登录 密码 忘记密码 + OSM账户 登出 + + 上次上传 谢谢您 编辑地点 + 地点名 添加语言 街道 @@ -400,16 +465,22 @@ 选择菜肴 邮箱或用户名 + 电话 + 请注意 所有对地图的修改都将与地图一起被删除。 更新地图 为了创建路线,您需要更新全部地图并重新规划路线。 找到地图 + 下载错误 请检查您的设置并确保您的设备已连接至网络。 无足够的空间 请删除不必要的数据 登录错误。 已验证的更改 拖动地图以选择此对象的正确位置。 + 选择类别 + 受欢迎的 + 所有类别 编辑中 添加中 该地点的名称 @@ -417,8 +488,13 @@ 问题的详细描述 一个不同的问题 添加组织 + 添加新地点到该地图,并直接通过此应用编辑已存在的地点。 + 改变位置 对象无法设置在这里 登录,让其他用户能看到您所作出的修改。 + + 为了下载,您需要更多的空间。请删除不必要的数据。 + 我改进了Organic Maps地图 %1$d个/共%2$d个 用手机网络连接下载吗? @@ -436,6 +512,7 @@ 您建议的更改将发送至 OpenStreetMap 社区。说明无法在 Organic Maps 编辑的详情。 关于 OpenStreetMap 的更多信息 运营者 + 我的地图 您尚未下载任何地图 下载地图来查找位置和离线浏览 @@ -444,6 +521,14 @@ 当前位置未知,可能您在建筑内或隧道内。 继续 停止 + 当前位置未知 + 搜索您的位置时发生错误。请检查您的设备是否工作正常,然后重试。 + 地点定位被禁用 + 启用设备设置中的地理位置定位 + 1. 打开设置 + 2. 点击位置 + + 3. 使用应用时选择 公里 公里每小时 @@ -458,29 +543,43 @@ 预約 呼叫 编辑书签 + 书签名称 + 个人备注 + 删除书签 + 您的建议已发送 备注… 重置所有本地更改? 重置 删除已添加的位置? 删除 位置不存在 + …更多 输入正确的电话号码 输入有效网址 输入有效电子邮箱 + 更新 添加地点到地图上 您想要发给所有用户吗? 确保您没有输入任何个人数据。 我们会检查更改。如果我们有任何问题,我们会邮件与您联系。 + 停止 + + 禁止记录您最近去过的路径? + 禁用 + + 来看看 + Organic Maps使用背景中的地理位置记录您最近去过的路径。 Organic Maps 是一款免费的开源离线地图应用程序。无广告。没有跟踪。如果您在地图上看到错误,请在 OpenStreetMap 中修复它。该项目由爱好者在我们的空闲时间创建,因此我们需要您的反馈和支持。 + 常规设置 接受 拒绝 - + 列表 使用移动网络显示详细信息? 始终使用 @@ -493,6 +592,8 @@ 要显示交通数据,必须更新地图。 增大地图上的字体大小 请更新 Organic Maps + + 要显示交通数据,必须更新应用。 交通数据不可用 启用记录 @@ -509,8 +610,13 @@ 添加起点以规划路线 添加终点以规划路线 退出 + 管理路线 + 规划 移除 + 拖动到此处以移除 添加经停点 + 起点 + 糟糕,出错了。请尝试重新登录。 存储空间访问问题 外部存储空间不可用,可能是存储卡已移除、损坏,或者文件系统为只读。请检查,然后通过以下方式联系我们:support\@organicmaps.app 模拟不良存储空间 @@ -520,7 +626,14 @@ 全部隱藏 全部顯示 + + %d 個書籤 + 创建新的列表 + 隱藏屏幕 + %1$s (%2$s / %3$s) + 正在下載 %s… + 正在套用 %s… 由于应用程序出错而无法分享 分享错误 无法分享空列表 @@ -529,13 +642,21 @@ 新的列表 这个名字已经被使用了 请选择其他名称 + 这个名字太长了 请稍候… 电话号码 OpenStreetMap 资料 + 检测到新文件 找到%d个文件。 转换后你会看到它。 + 兑换 + 错误 + 有些文件未被转换。 + 还原这个版本? 没有互联网连接 + 出现未知错误 + 恢复 %d 地点 @@ -557,13 +678,17 @@ 该列表为空 要添加新标签,请单击对象卡中的星形图标 …更多 + 发生错误 导出文件 列表设置 删除列表 + 从卡中隐藏 公共访问 私人访问 请添加说明(文字或html) 私人 + 加载标签时出错,请重试 + 下载 高速摄像机 自动 总是 @@ -571,6 +696,7 @@ 地点说明 加载地图 + 自动 - 如果存在超出速度限制的风险,则对速度摄像头发出警告\n总是 - 始终提醒摄像头\n从不 - 永远不会对摄像头发出警告 省电模式 如果开启省电模式,应用程序将根据手机的当前电量关耗电功能 从不 @@ -594,11 +720,44 @@ 规避收费公路 规避土路 规避渡輪渡口 + 前往 + 目标 + 定好中心 + 搜索结果 + 接下来 + 想重建路线? + + + 您已到达! + 移动时键盘不可用 + 无法从当前位置构建路线 + 无法建立到终点的路线。请选择其他(路线) + 无GPS信号。请沿着空旷区域行驶 + 无法建立路线。请选择其他路线点 + 为了创建线路,请在您的设备中下载所缺少的地图 + 发生了错误。请重新启动程序 + 该路线将从您的当前位置重建 + 该路线将改为汽车(路线) 好的 + 无土路路段 + 无土路路段 + 无渡船 + 无渡船 + 无付费路段 + 无付费路段 + 摄像头 + 摄像头信息 + 将Organic Maps软件中的地图下载至个人设备中 + %s号坡道 分类…… 分类标签 + + 默认排序 + 按类型排序 + 按距离排序 + 按日期排序 默认情况下 @@ -637,6 +796,10 @@ 高度 如需使用高度线,请更新或下载所需区域的地图 暂时无法获取该地区的高低线 + 难度等级 + 容易 + 中等 + 困难 上坡 下坡 最小高度 @@ -645,9 +808,22 @@ 距离: 在路上: 放大地图以查看等高线 + 更新 + 加载 + 关键信息 允许屏幕进入休眠状态 启用后,屏幕将在一段时间不活动后进入休眠状态。 + + 更新已下载的地图 + + 更新地图可以让对象的信息保持最新状态 + + 更新 (%s) + + 稍后手动更新 + + 追踪 缆车要素 @@ -915,8 +1091,6 @@ 紧急电话 入口 医学实验室 - - 公路要素 马道 马道 @@ -1026,23 +1200,6 @@ 道路 道路 道路 - 自行车道 - 步行道路 - 生活性街道 - 高速公路 - 小道 - 步行街 - 主要道路 - 住宅区道路 - 次要道路 - 辅助道路 - 三级道路 - 阶梯 - 土路 - 干线道路 - 道路 - - 历史地点 考古地点 古战场 @@ -1185,16 +1342,16 @@ 地点 城市 首府 - 城市 - 城市 - 首府 - 城市 - 城市 - 城市 - 城市 - 城市 - 城市 - 城市 + 首府 + 首府 + 首都 + 首都 + 首府 + 首府 + 首府 + 首府 + 首府 + 首府 大陆 国家/地区 diff --git a/android/res/values/strings.xml b/android/res/values/strings.xml index cb88765ebf..59b1555ff1 100644 --- a/android/res/values/strings.xml +++ b/android/res/values/strings.xml @@ -8,6 +8,8 @@ Back Cancel + + Cancel Download Delete Download Maps @@ -17,6 +19,8 @@ Downloading… Kilometers + + Leave a Review Maps @@ -32,14 +36,19 @@ Search Search Map + + Yes You currently have all Location Services for this device or application disabled. Please enable them in Settings. Show on the map + + Download Map Download has failed Try Again + About Organic Maps Connection Settings Close The app requires hardware accelerated OpenGL. Unfortunately, your device is not supported. @@ -64,6 +73,8 @@ Bookmark Color Bookmark List Name + + Bookmark Lists Bookmarks @@ -72,7 +83,7 @@ Name Address - + List Settings @@ -88,43 +99,41 @@ Measurement units Choose between miles and kilometers - - - + Where to eat - + Groceries - + Transport - + Gas - + Parking - + Shopping - + Hotel - + Sights - + Entertainment - + ATM - + Nightlife - + Family holiday - + Bank - + Pharmacy - + Hospital - + Toilet - + Post - + Police Notes @@ -159,8 +168,12 @@ Email Copied to clipboard: %1$s + + Info Done + + Version: %s Data version: %d @@ -195,6 +208,10 @@ Voice Language Not Available + + Other + + Recent track Auto zoom Off 1 hour @@ -202,6 +219,8 @@ 6 hours 12 hours 1 day + This option allows you to record traveled path for a certain period and see it on the map. Please note: activation of this function causes increased battery usage. The track will be removed automatically from the map after the time interval will expire. + Distance View on map Website @@ -235,6 +254,12 @@ Copyright Report a bug + + The email client has not been set up. Please configure it or use any other way to contact us at %s + + Mail sending error + + Compass calibration WiFi @@ -243,12 +268,19 @@ Cancel All Downloaded + + Available Queued Near me Maps Download All Downloading: + Found + + Update + + Failed To delete map, please stop navigation. @@ -263,12 +295,22 @@ Update Map Use Google Play Services to determine your current location + + I’ve just rated your app + + Thank you! + + Share any ideas or issues so we can improve the app for you. + + Send feedback Download all of the maps along your route In order to create a route, we need to download and update all the maps from your location to your destination. Not enough space + + bookmark Please enable Location Services Save @@ -321,6 +363,8 @@ Please check your GPS signal. Enabling Wi-Fi will improve your location accuracy. Enable location services Unable to locate current GPS coordinates. Enable location services to calculate route. + Download required files + Download and update all map and routing information along the projected path to calculate route. Unable to locate route Unable to create route. Please adjust your starting point or your destination. @@ -335,6 +379,7 @@ System error Unable to create route due to an application error. Please try again + Not Now Would you like to download the map and create a more optimal route spanning more than one map? Download additional maps to create a better route that crosses the boundaries of this map. @@ -345,8 +390,17 @@ Show Hide + + Route Planning Failed Arrival at %s + + Download and update all map along the projected path to calculate route. + Like the app? + Thank you for using Organic Maps. Please rate the app. Your feedback helps us improve our product. + Hooray! We love you, too! + Thank you, we will do our best! + Any idea how we can make it better? Categories History Closed @@ -379,6 +433,8 @@ Example Values Correct mistake Location + You’ve changed the world map. Do not keep it to yourself! Tell your friends, and edit it together. + Share with friends Please describe the problem in detail so that the OpenStreeMap community can fix the error. Or do it yourself at https://www.openstreetmap.org/ Send @@ -388,20 +444,29 @@ Duplicated place Auto-download + Closed now + Daily 24/7 Closed today Closed Today + Add opening hours Edit business hours Don\'t have an OpenStreetMap account? Register at OSM + Password (8 characters minimum) + Invalid username or password. Log In Password Forgot your password? + OSM Account Log Out + + Last upload Thank You Edit Place + Place Name Add a language Street @@ -418,17 +483,23 @@ Select cuisine Email or username + Phone Add Phone + Please note All of your map edits will be deleted together with the map. Update Maps To create a route, you need to update all maps and then plan the route again. Find map + Download error Please check your settings and make sure your device is connected to the Internet. Not enough space Please delete any unnecessary data Login error. Verified Changes Drag the map to select the correct location of the object. + Select category + Popular + All Categories Editing Adding Name of the place @@ -436,8 +507,13 @@ Detailed description of the issue Different problem Add business + Add new places to the map, and edit existing ones directly from the app. + Change location No object can be located here Log in so other users can see the changes that you have made + + To download, you need more space. Please delete any unnecessary data. + I improved the Organic Maps maps %1$d of %2$d Download over a cellular network connection? @@ -455,6 +531,7 @@ Your suggested map changes will be sent to the OpenStreetMap community. Describe any additional details that cannot be edited in Organic Maps. More about OpenStreetMap Owner + My maps You haven\'t downloaded any maps Download maps to search for a location and use navigation offline. @@ -463,6 +540,14 @@ Current location is unknown. Maybe you are in a building or in a tunnel. Continue Stop + Current location is unknown. + An error occurred while searching for your location. Check that your device is working properly and try again later. + Location services are disabled + Enable access to geolocation in the device settings + 1. Open Settings + 2. Tap Location + + 3. Select While Using the App m km km/h @@ -477,6 +562,10 @@ Book Call Edit Bookmark + Bookmark Name + Personal notes + Delete Bookmark + Your suggested changes have been sent Comment… Discard all local changes? Discard @@ -485,6 +574,7 @@ Place does not exist Please indicate the reason for deleting the place + …more Enter a valid phone number Enter a valid web address @@ -494,19 +584,28 @@ Enter a valid Twitter web address or username Enter a valid VK web address or account name Enter a valid LINE web address or LINE ID + Update Add a place to the map Do you want to send it to all users? Make sure you did not enter any personal data. We will check the changes. If we have any questions we will contact you via email. + stop + + Disable recording of your recently traveled route? + Disable + + Check out + Organic Maps uses your geoposition in the background for recording your recently traveled route. Organic Maps is a free and open-source offline maps application. No ads. No tracking. If you see an error on the map, please fix it in OpenStreetMap. The project is created by enthusiasts in our free time, so we need your feedback and support. + General settings Accept Decline - + List Use mobile internet to show detailed information? Use Always @@ -519,6 +618,8 @@ To display traffic data, maps must be updated. Increase font size on the map Please update Organic Maps + + To display traffic data, the application must be updated. Traffic data is not available Enable logging @@ -535,8 +636,13 @@ Add a starting point to plan a route Add a destination to plan a route Exit + Manage Route + Plan Remove + Drag here to remove Add Stop + Start from + Oops, there was an error. Try to sign in again. Storage access problem External storage is not accessible. The SD Card may have been removed, damaged, or the file system is read-only. Please, check your SD Card or contact us at support\@organicmaps.app Emulate bad storage @@ -546,9 +652,17 @@ Hide all Show all + + %d bookmark + %d bookmarks + Create new list Import bookmarks + Hide Screen + %1$s (%2$s of %3$s) + Downloading %s… + Applying %s… Unable to share due to an application error Sharing error Cannot share an empty list @@ -557,14 +671,22 @@ New list This name is already taken Please choose another name - Please wait… + This name is too long + Please wait� Phone number OpenStreetMap profile + New files detected %d file was found. You can see it after conversion. %d files were found. You can see them after conversion. + Convert + Error + Some files were not converted. + Restore this version? No internet connection + An unknown error occurred + Restore %d object %d objects @@ -589,13 +711,18 @@ This list is empty To add a bookmark, tap a place on the map and then tap the star icon …more + An error occurred + Popular Export file List Settings Delete list + Hide from map Public access Limited access Type a description (text or html) Private + An error occurred while loading tags, please try again + Download Speed cameras Auto Always @@ -603,6 +730,7 @@ Place Description Map downloader + Auto - Warn about speedcams if there is a risk of exceeding the speed limit\nAlways - Always warn about speedcams\nNever - Never warn about speedcams Power saving mode When automatic mode is selected the application starts to disable battery draining features depending on the current battery charge level Never @@ -626,11 +754,44 @@ Avoid toll roads Avoid unpaved roads Avoid ferry crossings + Let\'s go + Destination + Re-center + Search results + Then + Do you want to rebuild the route? + Yes + No + You have arrived! + Keyboard is not available while driving + Unable to build a route from your current location + Unable to build a route to your destination. Please choose another point + No GPS signal. Please move to an open area + Unable to build a route. Please specify other route points + To create a route, download missing maps on your device + An error occurred. Please restart the application + The route will be rebuilt from your current location + The route will be converted into an automobile one Ok + No dirt road + Avoid unpaved + No ferries + Avoid ferries + No toll road + Avoid toll road + Speedсams + Speed warnings + Please download maps in Organic Maps app on your device + %s exit Sort… Sort bookmarks + + Sort by default + Sort by type + Sort by distance + Sort by date By default @@ -669,6 +830,10 @@ Terrain To activate and use the topographic layer please update or download the map of the area The topographic layer is not yet available in this area + Difficulty level + Easy + Moderate + Hard Ascent Descent Min. altitude @@ -677,12 +842,31 @@ Dist.: Time: Zoom in to explore isolines + Updating + Downloading + Key information Download the world map Connection failure Disconnect USB cable Allow screen to sleep When enabled the screen will be allowed to sleep after a period of inactivity. + + Update your downloaded maps + + Updating maps keeps the information about objects up to date + + Update (%s) + + Manually update later + + Delete Track + + Track Name + + Move + + Track Aerialway @@ -954,137 +1138,118 @@ Emergency Phone Entrance Medical Laboratory - - Highway - Bridle Path - Bridle Path - Bridle Path - Bridle Path + Rider\'s Path + Rider\'s Path + Rider\'s Path + Rider\'s Path Bus Stop - Road Under Construction - Cycle Path - Cycle Path - Cycle Path - Cycle Path + Road under Construction + Bike Path + Bike Path + Bike Path + Bike Path Elevator - Foot Path + Path Path - Pedestrian Zone - Foot Path + Path + Path Path Path Path Path Path - Foot Path - Foot Path + Path + Path Ford - Living Street - Living Street - Living Street - Motorway - Motorway - Motorway - Road Exit - Motorway Ramp - Motorway Ramp - Motorway Ramp + Street + Street + Street + Street + Street + Street + Exit + Street + Street + Street Path Path - Cycle & Foot Path + Path Path Path Path Path Path - Bridle Path + Path Path Path Path - Pedestrian Street - Pedestrian Zone - Pedestrian Street - Pedestrian Street - Primary Road - Primary Road - Primary Road - Primary Road Ramp - Primary Road Ramp - Primary Road Ramp + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street Racetrack Street Street Street Street - Rest Area - Road - Road - Road - Secondary Road - Secondary Road - Secondary Road - Secondary Road Ramp - Secondary Road Ramp - Secondary Road Ramp - Service Road - Service Road - Service Road - Driveway - Parking Aisle - Service Road - Service Area + Highway Rest Area + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Service on the Road Speed Camera - Stairs - Stairs - Stairs - Tertiary Road - Tertiary Road - Tertiary Road - Tertiary Road Ramp - Tertiary Road Ramp - Tertiary Road Ramp - Track - Track - Track - Track - Track - Track - Track - Track - Track - Track - Track + Path + Path + Path + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street Traffic Lights - National Highway - National Highway - National Highway - National Highway Ramp - National Highway Ramp - National Highway Ramp - Minor Road - Minor Road - Minor Road - Minor Road - Cycle Path - Foot Path - Living Street - Motorway - Path - Pedestrian Street - Primary Road - Street - Secondary Road - Service Road - Tertiary Road - Stairs - Track - National Highway - area:highway-unclassified + Street + Street + Street + Street + Street + Street + Street + Street + Street + Street highway-world_level highway-world_towns_level - - Historic Archaeological Site Battlefield @@ -1186,7 +1351,6 @@ Swimming Pool Track Water Park - Beach Resort Man Made Breakwater Cairn @@ -1244,7 +1408,7 @@ Tree Row Vineyard Volcano - Waterbody + Water body Wetland Wetland Wetland @@ -1261,16 +1425,16 @@ place City Capital - City - City + Capital + Capital Capital - City - City - City - City - City - City - City + Capital + Capital + Capital + Capital + Capital + Capital + Capital Continent Country County @@ -1309,9 +1473,9 @@ Railway Abandoned railway Abandoned railway - Abandoned Railway - Railway\'s Construction - Railway Crossing + Abandoned railway + Railway\'s construction + Railway crossing Disused railway Funicular Funicular @@ -1546,4 +1710,19 @@ piste:type-nordic piste:type-sled Building + Bike Path + Path + Street + area:highway-motorway + Path + Street + Street + Street + Street + Street + Street + Steps + area:highway-track + area:highway-trunk + area:highway-unclassified diff --git a/android/res/xml/prefs_main.xml b/android/res/xml/prefs_main.xml index 4b64e686c9..62336791ac 100644 --- a/android/res/xml/prefs_main.xml +++ b/android/res/xml/prefs_main.xml @@ -166,6 +166,7 @@ android:key="@string/pref_help" android:title="@string/help" android:order="1"> + diff --git a/android/src/com/mapswithme/maps/editor/EditorFragment.java b/android/src/com/mapswithme/maps/editor/EditorFragment.java index c5600439f5..428e898b3d 100644 --- a/android/src/com/mapswithme/maps/editor/EditorFragment.java +++ b/android/src/com/mapswithme/maps/editor/EditorFragment.java @@ -439,8 +439,7 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe { final Timetable[] timetables = OpeningHours.nativeTimetablesFromString(openingHours); String content = timetables == null ? openingHours - : TimeFormatUtils.formatTimetables(getResources(), - openingHours, + : TimeFormatUtils.formatTimetables(requireContext(), timetables); UiUtils.hide(mEmptyOpeningHours); UiUtils.setTextAndShow(mOpeningHours, content); diff --git a/android/src/com/mapswithme/maps/editor/data/TimeFormatUtils.java b/android/src/com/mapswithme/maps/editor/data/TimeFormatUtils.java index 64e0c77782..d174e03889 100644 --- a/android/src/com/mapswithme/maps/editor/data/TimeFormatUtils.java +++ b/android/src/com/mapswithme/maps/editor/data/TimeFormatUtils.java @@ -72,6 +72,30 @@ public class TimeFormatUtils return builder.toString(); } + public static String formatTimetables(@NonNull Context context, @NonNull Timetable[] timetables) + { + final Resources resources = MwmApplication.from(context).getResources(); + + if (timetables[0].isFullWeek()) + { + return timetables[0].isFullday ? resources.getString(R.string.twentyfour_seven) + : resources.getString(R.string.daily) + " " + timetables[0].workingTimespan; + } + + final StringBuilder builder = new StringBuilder(); + for (Timetable tt : timetables) + { + String workingTime = tt.isFullday ? resources.getString(R.string.editor_time_allday) + : tt.workingTimespan.toString(); + + builder.append(String.format(Locale.getDefault(), "%-21s", formatWeekdays(tt))).append(" ") + .append(workingTime) + .append("\n"); + } + + return builder.toString(); + } + public static String formatNonBusinessTime(Timespan[] closedTimespans, String hoursClosedLabel) { StringBuilder closedTextBuilder = new StringBuilder(); @@ -87,7 +111,7 @@ public class TimeFormatUtils return closedTextBuilder.toString(); } - public static String formatTimetables(@NonNull Resources resources, String ohStr, Timetable[] timetables) + public static String generateCopyText(Resources resources, String ohStr, Timetable[] timetables) { if (timetables == null || timetables.length == 0) return ohStr; @@ -98,16 +122,12 @@ public class TimeFormatUtils Timetable tt = timetables[0]; if (tt.isFullday) return resources.getString(R.string.twentyfour_seven); - if (tt.closedTimespans == null || tt.closedTimespans.length == 0) - return resources.getString(R.string.daily) + " " + tt.workingTimespan.toWideString(); - return resources.getString(R.string.daily) + " " + tt.workingTimespan.toWideString() + - "\n" + formatNonBusinessTime(tt.closedTimespans, resources.getString(R.string.editor_hours_closed)); + return resources.getString(R.string.daily) + " " + tt.workingTimespan.toWideString(); } // Generate full week multiline string. E.g. // "Mon-Fri HH:MM - HH:MM - // Sat HH:MM - HH:MM - // Non-business Hours HH:MM - HH:MM" + // Sat HH:MM - HH:MM" StringBuilder weekSchedule = new StringBuilder(); boolean firstRow = true; for (Timetable tt : timetables) @@ -121,10 +141,6 @@ public class TimeFormatUtils tt.workingTimespan.toWideString(); weekSchedule.append(weekdays).append(' ').append(openTime); - if (tt.closedTimespans != null && tt.closedTimespans.length > 0) - weekSchedule.append('\n') - .append(formatNonBusinessTime(tt.closedTimespans, resources.getString(R.string.editor_hours_closed))); - firstRow = false; } diff --git a/android/src/com/mapswithme/maps/routing/RoutingBottomMenuController.java b/android/src/com/mapswithme/maps/routing/RoutingBottomMenuController.java index a4d99cb141..cc4b26b8cb 100644 --- a/android/src/com/mapswithme/maps/routing/RoutingBottomMenuController.java +++ b/android/src/com/mapswithme/maps/routing/RoutingBottomMenuController.java @@ -311,10 +311,10 @@ final class RoutingBottomMenuController implements View.OnClickListener SpannableStringBuilder builder = new SpannableStringBuilder(); initTimeBuilderSequence(context, time, builder); - String dot = "\u00A0• "; + String dot = " • "; initDotBuilderSequence(context, dot, builder); - String dist = routingInfo.distToTarget + "\u00A0" + routingInfo.targetUnits; + String dist = routingInfo.distToTarget + " " + routingInfo.targetUnits; initDistanceBuilderSequence(context, dist, builder); return builder; diff --git a/android/src/com/mapswithme/maps/routing/RoutingController.java b/android/src/com/mapswithme/maps/routing/RoutingController.java index 21676383fc..81113a60c2 100644 --- a/android/src/com/mapswithme/maps/routing/RoutingController.java +++ b/android/src/com/mapswithme/maps/routing/RoutingController.java @@ -1042,7 +1042,7 @@ public class RoutingController implements Initializable String.valueOf(hours), hour); SpannableStringBuilder displayedM = Utils.formatUnitsText(context, textSize, unitsSize, String.valueOf(minutes), min); - return hours == 0 ? displayedM : TextUtils.concat(displayedH + "\u00A0", displayedM); + return hours == 0 ? displayedM : TextUtils.concat(displayedH + " ", displayedM); } static String formatArrivalTime(int seconds) diff --git a/android/src/com/mapswithme/maps/settings/SettingsPrefsFragment.java b/android/src/com/mapswithme/maps/settings/SettingsPrefsFragment.java index b797564d04..127f5fe59d 100644 --- a/android/src/com/mapswithme/maps/settings/SettingsPrefsFragment.java +++ b/android/src/com/mapswithme/maps/settings/SettingsPrefsFragment.java @@ -28,7 +28,6 @@ import com.mapswithme.maps.R; import com.mapswithme.maps.downloader.MapManager; import com.mapswithme.maps.downloader.OnmapDownloader; import com.mapswithme.maps.editor.ProfileActivity; -import com.mapswithme.maps.help.HelpActivity; import com.mapswithme.maps.location.LocationHelper; import com.mapswithme.maps.location.LocationProviderFactory; import com.mapswithme.maps.sound.LanguageData; @@ -377,10 +376,6 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment { startActivity(new Intent(getActivity(), ProfileActivity.class)); } - else if (preference.getKey() != null && preference.getKey().equals(getString(R.string.pref_help))) - { - startActivity(new Intent(getActivity(), HelpActivity.class)); - } return super.onPreferenceTreeClick(preference); } diff --git a/android/src/com/mapswithme/maps/sound/AudioFocusManager.java b/android/src/com/mapswithme/maps/sound/AudioFocusManager.java index 954ed6c48d..d1ab0c4e00 100644 --- a/android/src/com/mapswithme/maps/sound/AudioFocusManager.java +++ b/android/src/com/mapswithme/maps/sound/AudioFocusManager.java @@ -1,51 +1,38 @@ package com.mapswithme.maps.sound; import android.content.Context; -import android.media.AudioAttributes; import android.media.AudioFocusRequest; import android.media.AudioManager; import android.os.Build; import androidx.annotation.Nullable; -import static android.media.AudioManager.AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK; +import static android.media.AudioManager.AUDIOFOCUS_GAIN_TRANSIENT_EXCLUSIVE; public class AudioFocusManager { @Nullable - private AudioManager mAudioManager = null; - @Nullable - private AudioManager.OnAudioFocusChangeListener mOnFocusChange = null; - @Nullable - private AudioFocusRequest mAudioFocusRequest = null; + private AudioManager audioManager = null; public AudioFocusManager(@Nullable Context context) { if (context != null) - mAudioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE); - - if (Build.VERSION.SDK_INT < 26) - mOnFocusChange = focusGain -> {}; - else - mAudioFocusRequest = new AudioFocusRequest.Builder(AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK).setAudioAttributes( - new AudioAttributes.Builder() - .setUsage(AudioAttributes.USAGE_ASSISTANCE_NAVIGATION_GUIDANCE) - .setContentType(AudioAttributes.CONTENT_TYPE_SPEECH) - .build() - ).build(); + audioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE); } public boolean requestAudioFocus() { boolean isMusicActive = false; - if (mAudioManager != null) + if (audioManager != null) + isMusicActive = audioManager.isMusicActive(); + + if (audioManager != null) { - isMusicActive = mAudioManager.isMusicActive(); - if (Build.VERSION.SDK_INT < 26) - mAudioManager.requestAudioFocus(mOnFocusChange, AudioManager.STREAM_VOICE_CALL, AUDIOFOCUS_GAIN_TRANSIENT_MAY_DUCK); + if (Build.VERSION.SDK_INT >= 26) + audioManager.requestAudioFocus(new AudioFocusRequest.Builder(AUDIOFOCUS_GAIN_TRANSIENT_EXCLUSIVE).build()); else - mAudioManager.requestAudioFocus(mAudioFocusRequest); + audioManager.requestAudioFocus(focusChange -> {}, AudioManager.STREAM_VOICE_CALL, AUDIOFOCUS_GAIN_TRANSIENT_EXCLUSIVE); } return isMusicActive; @@ -53,12 +40,12 @@ public class AudioFocusManager public void releaseAudioFocus() { - if (mAudioManager != null) + if (audioManager != null) { - if (Build.VERSION.SDK_INT < 26) - mAudioManager.abandonAudioFocus(mOnFocusChange); + if (Build.VERSION.SDK_INT >= 26 ) + audioManager.abandonAudioFocusRequest(new AudioFocusRequest.Builder(AUDIOFOCUS_GAIN_TRANSIENT_EXCLUSIVE).build()); else - mAudioManager.abandonAudioFocusRequest(mAudioFocusRequest); + audioManager.abandonAudioFocus(focusChange -> {}); } } } diff --git a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java index 9a06451abc..0f6140f8d5 100644 --- a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java +++ b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java @@ -1475,7 +1475,7 @@ public class PlacePageView extends NestedScrollViewClickFixed case R.id.ll__place_schedule: final String ohStr = mMapObject.getMetadata(Metadata.MetadataType.FMD_OPEN_HOURS); final Timetable[] timetables = OpeningHours.nativeTimetablesFromString(ohStr); - items.add(TimeFormatUtils.formatTimetables(getResources(), ohStr, timetables)); + items.add(TimeFormatUtils.generateCopyText(getResources(), ohStr, timetables)); break; case R.id.ll__place_operator: items.add(mTvOperator.getText().toString()); diff --git a/android/src/com/mapswithme/util/Utils.java b/android/src/com/mapswithme/util/Utils.java index 16194394c2..88678b0d5f 100644 --- a/android/src/com/mapswithme/util/Utils.java +++ b/android/src/com/mapswithme/util/Utils.java @@ -355,7 +355,7 @@ public class Utils public static SpannableStringBuilder formatUnitsText(Context context, @DimenRes int size, @DimenRes int units, String dimension, String unitText) { - final SpannableStringBuilder res = new SpannableStringBuilder(dimension).append("\u00A0").append(unitText); + final SpannableStringBuilder res = new SpannableStringBuilder(dimension).append(" ").append(unitText); res.setSpan(new AbsoluteSizeSpan(UiUtils.dimen(context, size), false), 0, dimension.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); res.setSpan(new AbsoluteSizeSpan(UiUtils.dimen(context, units), false), dimension.length(), res.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); return res; @@ -611,21 +611,6 @@ public class Utils return Build.MODEL; } - @NonNull - public static String getVersion() - { - return BuildConfig.VERSION_NAME; - } - - @NonNull - public static int getIntVersion() - { - // Please sync with getVersion() in build.gradle - // - % 100000000 removes prefix for special markets, e.g Huawei. - // - / 100 removes the number of commits in the current day. - return (BuildConfig.VERSION_CODE % 1_00_00_00_00) / 100; - } - @NonNull public static T[] concatArrays(@Nullable T[] a, T... b) { diff --git a/android/src/fdroid/play/listings/it-IT/full-description.txt b/android/src/fdroid/play/listings/it-IT/full-description.txt deleted file mode 100644 index 75249845c7..0000000000 --- a/android/src/fdroid/play/listings/it-IT/full-description.txt +++ /dev/null @@ -1,52 +0,0 @@ -‣ La nostra app gratuita non traccia gli utenti e non ha pubblicità. -‣ Viene costantemente migliorata dal nostro piccolo team, nel nostro tempo libero, utilizzando i nostri soldi e le donazioni/contributi dei nostri utenti. -‣ Se qualcosa non va o manca sulla mappa, correggilo in OpenStreetMap e osserva le modifiche nel successivo aggiornamento delle mappe. -‣ Se la navigazione o la ricerca non funzionano, inviaci un'e-mail. Rispondiamo a OGNI email e risolveremo al più presto! - -Il tuo feedback e le recensioni a 5 stelle sono di grande motivazione per noi! - -Funzionalità principali: -• Gratuita, open-source, senza pubblicità, non traccia l'utente -• Mappe offline dettagliate con luoghi che non esistono su Google Maps, grazie alla community OpenStreetMap -• Percorsi ciclabili, sentieri escursionistici e percorsi pedonali -• Curve di livello, profili altimetrici, picchi e pendenze -• Navigazione passo-passo a piedi, in bicicletta e SPERIMENTALE per auto con assistente vocale -• Ricerca offline veloce -• Esportazione e importazione di segnalibri nei formati KML/KMZ (GPX sarà presto disponibile) -• Modalità notte per proteggere i tuoi occhi - -Non ci sono ancora Android Auto, trasporti pubblici, mappe satellitari e altre fantastiche funzioni in Organic Maps. Ma con il tuo aiuto e supporto, possiamo migliorare questo mondo passo dopo passo. - -Organic Maps è puro e organico, fatto con amore: - -• Esperienza offline incredibilmente veloce -• Rispetta la tua privacy -• Risparmia la batteria -• Nessun addebito imprevisto per i dati mobili -• Semplice da usare, con solo le funzioni più importanti incluse - -Libero da tracker e altre cose cattive: - -• Nessuna pubblicità -• Nessun tracker -• Nessuna raccolta dati -• Non ti chiama a casa -• Nessuna registrazione fastidiosa -• Nessun tutorial obbligatorio -• Nessuno spam e-mail rumoroso -• Nessuna notifica push -• Niente schifezze -• N̶o̶ ̶p̶e̶s̶t̶i̶c̶i̶d̶e̶s̶ Puramente biologico - -Qui da Organic Maps crediamo che la privacy sia un diritto umano fondamentale: - -• Organic Maps è un progetto open source guidato da una community indipendente -• Proteggiamo la privacy dagli occhi indiscreti di Big Tech -• Stai al sicuro ovunque tu sia - -Zero tracker e solo autorizzazioni minime richieste, come richiesto dall' Exodus Privacy Report. - -Visita il sito Web organicmaps.app per ulteriori dettagli e domande frequenti e contattaci direttamente all'indirizzo @OrganicMapsApp su Telegram. - -Rifiuta la sorveglianza: abbraccia la tua libertà. -Prova le mappe organiche! diff --git a/android/src/fdroid/play/listings/it-IT/short-description.txt b/android/src/fdroid/play/listings/it-IT/short-description.txt deleted file mode 100644 index d5c51235c1..0000000000 --- a/android/src/fdroid/play/listings/it-IT/short-description.txt +++ /dev/null @@ -1 +0,0 @@ -Mappe open-source gestite dalla comunità per viaggiatori, turisti, ciclisti ecc diff --git a/android/src/fdroid/play/listings/it-IT/title.txt b/android/src/fdroid/play/listings/it-IT/title.txt deleted file mode 100644 index 5b21bf094b..0000000000 --- a/android/src/fdroid/play/listings/it-IT/title.txt +++ /dev/null @@ -1 +0,0 @@ -Organic Maps: Mappe Offline diff --git a/android/src/fdroid/play/version.yaml b/android/src/fdroid/play/version.yaml index 6124d0cb69..cbb339e654 100644 --- a/android/src/fdroid/play/version.yaml +++ b/android/src/fdroid/play/version.yaml @@ -1 +1 @@ -version: 2022.01.15-3-FDroid+22011503 +version: 2021.12.01-4-FDroid+21120104 diff --git a/android/src/google/play/listings/it-IT/full-description.txt b/android/src/google/play/listings/it-IT/full-description.txt deleted file mode 120000 index 91afd862ed..0000000000 --- a/android/src/google/play/listings/it-IT/full-description.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../fdroid/play/listings/it-IT/full-description.txt \ No newline at end of file diff --git a/android/src/google/play/listings/it-IT/short-description.txt b/android/src/google/play/listings/it-IT/short-description.txt deleted file mode 120000 index dec9332dfc..0000000000 --- a/android/src/google/play/listings/it-IT/short-description.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../fdroid/play/listings/it-IT/short-description.txt \ No newline at end of file diff --git a/android/src/google/play/listings/it-IT/title.txt b/android/src/google/play/listings/it-IT/title.txt deleted file mode 120000 index 8baebeef84..0000000000 --- a/android/src/google/play/listings/it-IT/title.txt +++ /dev/null @@ -1 +0,0 @@ -../../../../fdroid/play/listings/it-IT/title.txt \ No newline at end of file diff --git a/android/src/google/play/release-notes/en-US/default.txt b/android/src/google/play/release-notes/en-US/default.txt index 0dda51bdd2..c7f7ded091 100644 --- a/android/src/google/play/release-notes/en-US/default.txt +++ b/android/src/google/play/release-notes/en-US/default.txt @@ -1,11 +1,10 @@ -• New OSM maps data as of January 3, 2022 -• Improved search results ranking -• Fixed hundreds of "capitals" on the World map -• Fixed invalid inter-region routes -• Search recognizes rd/st/ct=road/street/court synonyms -• Duck played music when announcing directions -• Copy most of the POI info using a long tap -• Fix non-working FAQ on Android 5 and 6 -• Consistent naming for Bookmark Lists -• Added Bulgarian, incomplete Hebrew, and Swahili translations -• Updated de, it, ro, ru, uk, tr translations +• New OSM maps data as of November 22 +• Fixed routing between map regions, please test and report to us any issues! +• Type "water" or "drinking water" in search to find it around yourself +• Long tap on a POI/bookmark name/address to copy them into clipboard +• Reworked opening hours UI +• Restored "maps update is available" indicator +• Added LINE contacts to the place page +• Reduced APK size +• Updated Vulkan driver libraries +• Updated be, de, es, fi, ru, ua and zh translations diff --git a/base/base_tests/math_test.cpp b/base/base_tests/math_test.cpp index 2be6f69c5b..047cd0f08b 100644 --- a/base/base_tests/math_test.cpp +++ b/base/base_tests/math_test.cpp @@ -51,8 +51,8 @@ UNIT_TEST(AlmostEqualULPs_double) TEST_ALMOST_EQUAL_ULPS(3.0, 3.0, ()); TEST_ALMOST_EQUAL_ULPS(+0.0, -0.0, ()); - double constexpr eps = std::numeric_limits::epsilon(); - double constexpr dmax = std::numeric_limits::max(); + double const eps = std::numeric_limits::epsilon(); + double const dmax = std::numeric_limits::max(); TEST_ALMOST_EQUAL_ULPS(1.0 + eps, 1.0, ()); TEST_ALMOST_EQUAL_ULPS(1.0 - eps, 1.0, ()); @@ -96,8 +96,8 @@ UNIT_TEST(AlmostEqualULPs_float) UNIT_TEST(AlmostEqual_Smoke) { - double constexpr small = 1e-18; - double constexpr eps = 1e-10; + double const small = 1e-18; + double const eps = 1e-10; TEST(base::AlmostEqualAbs(0.0, 0.0 + small, eps), ()); TEST(!base::AlmostEqualRel(0.0, 0.0 + small, eps), ()); diff --git a/base/base_tests/newtype_test.cpp b/base/base_tests/newtype_test.cpp index 680c5ce759..317e6067b3 100644 --- a/base/base_tests/newtype_test.cpp +++ b/base/base_tests/newtype_test.cpp @@ -6,7 +6,7 @@ #include #include -namespace newtype_test +namespace { NEWTYPE(int, Int); @@ -112,4 +112,4 @@ UNIT_TEST(NewType_SimpleOutPut) sstr << Int(20); TEST_EQUAL(sstr.str(), "20", ()); } -} // namespace newtype_test +} // namespace diff --git a/base/base_tests/stl_helpers_tests.cpp b/base/base_tests/stl_helpers_tests.cpp index 523696b2cf..cc76540a42 100644 --- a/base/base_tests/stl_helpers_tests.cpp +++ b/base/base_tests/stl_helpers_tests.cpp @@ -10,7 +10,7 @@ using namespace base; -namespace stl_helpers_test +namespace { class Int { @@ -153,7 +153,7 @@ UNIT_TEST(IgnoreFirstArgument) } } -namespace +namespace { struct EqualZero { @@ -326,4 +326,4 @@ UNIT_TEST(AccumulateIntervals) CheckAccumulateIntervals(idTest, arr1, arr2, res); } } -} // namespace stl_helpers_test +} // namespace diff --git a/base/base_tests/thread_safe_queue_tests.cpp b/base/base_tests/thread_safe_queue_tests.cpp index 0d796fa403..d1d18c928b 100644 --- a/base/base_tests/thread_safe_queue_tests.cpp +++ b/base/base_tests/thread_safe_queue_tests.cpp @@ -13,7 +13,7 @@ using namespace base::thread_pool::delayed; UNIT_TEST(ThreadSafeQueue_ThreadSafeQueue) { - threads::ThreadSafeQueue queue; + base::threads::ThreadSafeQueue queue; TEST(queue.Empty(), ()); TEST_EQUAL(queue.Size(), 0, ()); @@ -22,7 +22,7 @@ UNIT_TEST(ThreadSafeQueue_ThreadSafeQueue) UNIT_TEST(ThreadSafeQueue_Push) { size_t const kSize = 100; - threads::ThreadSafeQueue queue; + base::threads::ThreadSafeQueue queue; ThreadPool pool(2, ThreadPool::Exit::ExecPending); for (size_t i = 0; i < kSize; ++i) { @@ -39,7 +39,7 @@ UNIT_TEST(ThreadSafeQueue_Push) UNIT_TEST(ThreadSafeQueue_WaitAndPop) { using namespace std::chrono_literals; - threads::ThreadSafeQueue queue; + base::threads::ThreadSafeQueue queue; size_t const value = 101; size_t result; auto thread = std::thread([&]() { @@ -57,7 +57,7 @@ UNIT_TEST(ThreadSafeQueue_WaitAndPop) UNIT_TEST(ThreadSafeQueue_TryPop) { using namespace std::chrono_literals; - threads::ThreadSafeQueue queue; + base::threads::ThreadSafeQueue queue; size_t const value = 101; size_t result; auto thread = std::thread([&]() { @@ -75,7 +75,7 @@ UNIT_TEST(ThreadSafeQueue_TryPop) UNIT_TEST(ThreadSafeQueue_ExampleWithDataWrapper) { size_t const kSize = 100000; - threads::ThreadSafeQueue> queue; + base::threads::ThreadSafeQueue> queue; auto thread = std::thread([&]() { while (true) @@ -85,6 +85,7 @@ UNIT_TEST(ThreadSafeQueue_ExampleWithDataWrapper) if (!dw.has_value()) return; + ASSERT_GREATER_OR_EQUAL(*dw, 0, ()); ASSERT_LESS_OR_EQUAL(*dw, kSize, ()); } }); diff --git a/base/stl_iterator.hpp b/base/stl_iterator.hpp index 9ea9c0be53..a409f08b5f 100644 --- a/base/stl_iterator.hpp +++ b/base/stl_iterator.hpp @@ -2,25 +2,25 @@ #include -namespace stl_iterator_detail +namespace detail { struct Dummy { template Dummy & operator=(T const &) { return *this; } }; -} // namespace stl_iterator_detail +} class CounterIterator : - public boost::iterator_facade + public boost::iterator_facade { size_t m_count; public: CounterIterator() : m_count(0) {} size_t GetCount() const { return m_count; } - stl_iterator_detail::Dummy & dereference() const + detail::Dummy & dereference() const { - static stl_iterator_detail::Dummy dummy; + static detail::Dummy dummy; return dummy; } void increment() { ++m_count; } diff --git a/base/thread_safe_queue.hpp b/base/thread_safe_queue.hpp index b0e3cae8ef..7198b65fbe 100644 --- a/base/thread_safe_queue.hpp +++ b/base/thread_safe_queue.hpp @@ -5,6 +5,8 @@ #include #include +namespace base +{ namespace threads { template @@ -74,3 +76,4 @@ private: std::condition_variable m_cond; }; } // namespace threads +} // namespace base diff --git a/base/thread_utils.hpp b/base/thread_utils.hpp index 8a7dc17e29..b0857b246a 100644 --- a/base/thread_utils.hpp +++ b/base/thread_utils.hpp @@ -5,6 +5,8 @@ #include "base/macros.hpp" +namespace base +{ namespace threads { template > @@ -75,3 +77,4 @@ private: DISALLOW_COPY(FunctionWrapper); }; } // namespace threads +} // namespace base diff --git a/build_version.hpp.in b/build_version.hpp.in index 373ebbcbb9..14fb883592 100644 --- a/build_version.hpp.in +++ b/build_version.hpp.in @@ -1,9 +1,18 @@ +// A helper file that may be used to inject the git commit hash and the build time into a binary. #pragma once #include +namespace @PROJECT_NAME@ +{ namespace build_version { -constexpr uint64_t kCode = @OM_VERSION_CODE@; -constexpr char const * const kName = "@OM_VERSION@ (@OM_GIT_HASH@)"; +namespace git +{ +constexpr char const * const kHash = "@GIT_HASH@"; +constexpr char const * const kTag = "@GIT_TAG@"; +constexpr uint64_t kTimestamp = @GIT_TIMESTAMP@; +constexpr char const * const kProjectName = "@PROJECT_NAME@"; +} // namespace git } // namespace build_version +} // namespace @PROJECT_NAME@ diff --git a/cmake/BuildVersion.cmake b/cmake/BuildVersion.cmake new file mode 100644 index 0000000000..f990750267 --- /dev/null +++ b/cmake/BuildVersion.cmake @@ -0,0 +1,60 @@ +function(get_last_git_commit_hash result_name) + execute_process(COMMAND + "${GIT_EXECUTABLE}" describe --match="" --always --abbrev=40 --dirty + WORKING_DIRECTORY "${OMAPS_CURRENT_PROJECT_ROOT}" + OUTPUT_VARIABLE GIT_HASH + RESULT_VARIABLE status + ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) + + if (status STREQUAL "0") + set(${result_name} ${GIT_HASH} PARENT_SCOPE) + else() + message(WARNING "Failed to get hash for last commit from git.") + endif() +endfunction() + +function(get_last_git_commit_timestamp result_name) + execute_process(COMMAND + "${GIT_EXECUTABLE}" show -s --format=%ct HEAD + WORKING_DIRECTORY "${OMAPS_CURRENT_PROJECT_ROOT}" + OUTPUT_VARIABLE GIT_TIMESTAMP + RESULT_VARIABLE status + ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) + + if (status STREQUAL "0") + set(${result_name} ${GIT_TIMESTAMP} PARENT_SCOPE) + else() + message(WARNING "Failed to get timestamp for last commit from git.") + endif() +endfunction() + +function(get_git_tag_name result_name) + execute_process(COMMAND + "${GIT_EXECUTABLE}" tag --points-at HEAD + WORKING_DIRECTORY "${OMAPS_CURRENT_PROJECT_ROOT}" + OUTPUT_VARIABLE GIT_TAG + RESULT_VARIABLE status + ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) + + if (status STREQUAL "0") + set(${result_name} ${GIT_TAG} PARENT_SCOPE) + else() + message(WARNING "Failed to get tag for last commit from git.") + endif() +endfunction() + +function(configure_build_version_hpp) + message(STATUS "Configure build version ...") + set(GIT_HASH "") + set(GIT_TIMESTAMP "0") + set(GIT_TAG "") + find_package(Git) + if (GIT_FOUND) + get_last_git_commit_hash(GIT_HASH) + get_last_git_commit_timestamp(GIT_TIMESTAMP) + get_git_tag_name(GIT_TAG) + endif() + configure_file("${PATH_WITH_BUILD_VERSION_HPP}/build_version.hpp.in" "${OMAPS_CURRENT_PROJECT_ROOT}/build_version.hpp" @ONLY) +endfunction() + +configure_build_version_hpp() diff --git a/cmake/OmimHelpers.cmake b/cmake/OmimHelpers.cmake index f242afaf47..6e9a018d06 100644 --- a/cmake/OmimHelpers.cmake +++ b/cmake/OmimHelpers.cmake @@ -25,7 +25,7 @@ endfunction() # Functions for using in subdirectories function(omim_add_executable executable) add_executable(${executable} ${ARGN}) - + add_dependencies(${executable} BuildVersion) # Enable warnings for all our binaries. target_compile_options(${executable} PRIVATE ${OMIM_WARNING_FLAGS}) target_include_directories(${executable} PRIVATE ${OMIM_INCLUDE_DIRS}) @@ -71,7 +71,7 @@ endfunction() function(omim_add_library library) add_library(${library} ${ARGN}) - + add_dependencies(${library} BuildVersion) # Enable warnings for all our libraries. target_compile_options(${library} PRIVATE ${OMIM_WARNING_FLAGS}) target_include_directories(${library} PRIVATE ${OMIM_INCLUDE_DIRS}) diff --git a/coding/CMakeLists.txt b/coding/CMakeLists.txt index 82ca04ba16..7950ee1850 100644 --- a/coding/CMakeLists.txt +++ b/coding/CMakeLists.txt @@ -93,11 +93,14 @@ set(SRC omim_add_library(${PROJECT_NAME} ${SRC}) target_link_libraries(${PROJECT_NAME} + PUBLIC + ICU::uc + ICU::i18n # For transliteration. + PRIVATE base expat jansson succinct - icu # For transliteration. oauthcpp # For base64_encode and base64_decode minizip ${LIBZ} diff --git a/coding/coding_tests/file_data_test.cpp b/coding/coding_tests/file_data_test.cpp index 8aa76dfaaf..7244aec6d8 100644 --- a/coding/coding_tests/file_data_test.cpp +++ b/coding/coding_tests/file_data_test.cpp @@ -5,25 +5,28 @@ #include "base/logging.hpp" -#include +#include +#include #include #include -namespace file_data_test -{ - std::string const name1 = "test1.file"; - std::string const name2 = "test2.file"; +using namespace std; - void MakeFile(std::string const & name) +namespace +{ + string const name1 = "test1.file"; + string const name2 = "test2.file"; + + void MakeFile(string const & name) { base::FileData f(name, base::FileData::OP_WRITE_TRUNCATE); f.Write(name.c_str(), name.size()); } - void MakeFile(std::string const & name, size_t const size, const char c) + void MakeFile(string const & name, size_t const size, const char c) { base::FileData f(name, base::FileData::OP_WRITE_TRUNCATE); - f.Write(std::string(size, c).c_str(), size); + f.Write(string(size, c).c_str(), size); } #ifdef OMIM_OS_WINDOWS @@ -39,6 +42,7 @@ namespace file_data_test TEST ( equal(name.begin(), name.end(), buffer.begin()), () ); } #endif +} UNIT_TEST(FileData_ApiSmoke) { @@ -218,35 +222,3 @@ UNIT_TEST(EmptyFile) // Delete copy file. TEST(DeleteFileX(copy), ()); } - -// Made this 'obvious' test for getline. I had (or not?) behaviour when 'while (getline)' loop -// didn't get last string in file without trailing '\n'. -UNIT_TEST(File_StdGetLine) -{ - std::string const fName = "test.txt"; - - for (std::string buffer : { "x\nxy\nxyz\nxyzk", "x\nxy\nxyz\nxyzk\n" }) - { - { - base::FileData f(fName, base::FileData::OP_WRITE_TRUNCATE); - f.Write(buffer.c_str(), buffer.size()); - } - - { - std::ifstream ifs(fName); - std::string line; - size_t count = 0; - while (std::getline(ifs, line)) - { - ++count; - TEST_EQUAL(line.size(), count, ()); - } - - TEST_EQUAL(count, 4, ()); - } - - TEST(base::DeleteFileX(fName), ()); - } -} - -} // namespace file_data_test diff --git a/coding/coding_tests/url_tests.cpp b/coding/coding_tests/url_tests.cpp index 13e1013202..98e6f2a6e9 100644 --- a/coding/coding_tests/url_tests.cpp +++ b/coding/coding_tests/url_tests.cpp @@ -2,17 +2,14 @@ #include "coding/url.hpp" -#include "base/math.hpp" - #include #include #include -namespace url_tests -{ using namespace std; -using namespace url; +namespace +{ double const kEps = 1e-10; class TestUrl @@ -30,7 +27,7 @@ public: ~TestUrl() { - Url url(m_url); + url::Url url(m_url); TEST_EQUAL(url.GetScheme(), m_scheme, ()); TEST_EQUAL(url.GetPath(), m_path, ()); TEST(!m_scheme.empty() || !url.IsValid(), ("Scheme is empty if and only if url is invalid!")); @@ -38,7 +35,7 @@ public: } private: - void AddTestValue(Param const & param) + void AddTestValue(url::Param const & param) { TEST(!m_keyValuePairs.empty(), ("Failed for url = ", m_url, "Passed KV = ", param)); TEST_EQUAL(m_keyValuePairs.front().first, param.m_name, ()); @@ -51,6 +48,7 @@ private: string m_path; queue> m_keyValuePairs; }; +} // namespace namespace url_encode_testdata { @@ -64,6 +62,8 @@ char const * orig4 = "#$%^&@~[]{}()|*+`\"\'"; char const * enc4 = "%23%24%25%5E%26%40~%5B%5D%7B%7D%28%29%7C%2A%2B%60%22%27"; } // namespace url_encode_testdata +namespace url +{ UNIT_TEST(Url_Join) { TEST_EQUAL("", Join("", ""), ()); @@ -251,4 +251,4 @@ UNIT_TEST(UrlComprehensive) .KV("key2", "").KV("key2", "") .KV("key3", "value1").KV("key3", "").KV("key3", "value2"); } -} // namespace url_tests +} // namespace url diff --git a/coding/internal/file64_api.hpp b/coding/internal/file64_api.hpp index 9ed9acb3b2..3b12db7f2f 100644 --- a/coding/internal/file64_api.hpp +++ b/coding/internal/file64_api.hpp @@ -2,8 +2,6 @@ #include "base/base.hpp" -#include "std/target_os.hpp" - #if defined(OMIM_OS_WINDOWS_NATIVE) #define fseek64 _fseeki64 #define ftell64 _ftelli64 @@ -15,13 +13,8 @@ #else // POSIX standart. #include - - // TODO: Always assert for 8 bytes after increasing min Android API to 24+. - // See more details here: https://android.googlesource.com/platform/bionic/+/master/docs/32-bit-abi.md - #if defined(OMIM_OS_ANDROID) && (defined(__arm__) || defined(__i386__)) - static_assert(sizeof(off_t) == 4, "32-bit Android NDK < API 24 has only 32-bit file operations support"); - #else - static_assert(sizeof(off_t) == 8, "Our FileReader/Writer require 64-bit file operations"); + #ifndef OMIM_OS_ANDROID + static_assert(sizeof(off_t) == 8, ""); #endif #define fseek64 fseeko #define ftell64 ftello diff --git a/coding/transliteration.hpp b/coding/transliteration.hpp index a6e8c16838..48311447b6 100644 --- a/coding/transliteration.hpp +++ b/coding/transliteration.hpp @@ -6,11 +6,11 @@ #include #include #include +#include -namespace icu -{ +U_NAMESPACE_BEGIN class UnicodeString; -} // namespace icu +U_NAMESPACE_END class Transliteration { diff --git a/configure.sh b/configure.sh index 7d4742767d..90ed4bee13 100755 --- a/configure.sh +++ b/configure.sh @@ -129,7 +129,7 @@ if [ ! -d "$BASE_PATH/3party/boost/tools" ]; then echo "Try 'git submodule update --init --recursive'" exit 1 fi -cd "$BASE_PATH/3party/boost/" +cd $BASE_PATH/3party/boost/ ./bootstrap.sh ./b2 headers -cd "$BASE_PATH" +cd $BASE_PATH diff --git a/data/World.mwm b/data/World.mwm index 8220205c58..1753de42d7 100644 Binary files a/data/World.mwm and b/data/World.mwm differ diff --git a/data/WorldCoasts.mwm b/data/WorldCoasts.mwm index a3b806a632..6375640f90 100644 Binary files a/data/WorldCoasts.mwm and b/data/WorldCoasts.mwm differ diff --git a/data/categories.txt b/data/categories.txt index 894eb3fcd1..4b5469fca6 100644 --- a/data/categories.txt +++ b/data/categories.txt @@ -48,7 +48,6 @@ @eat en:Where to eat|eat|Food ru:Где поесть|Поесть|Еда -be:Дзе паесці|паесці|ежа bg:Места за хапване|ядене|храна ar:طعام|مكان لتناول الطعام cs:Kde se najíst|Jídlo @@ -82,9 +81,8 @@ sw:Sehemu ya kula fa:غذا|کجا غذا بخوریم @food -en:4Groceries|Food|Shop -ru:4Продукты|Еда|4Магазин -be:Прадукты|Ежа|Магазін +en:Groceries|Food|Shop +ru:Продукты|Еда|Магазин bg:Продукти|Храна|Магазин ar:طعام|متجر|المشتريات cs:Potraviny|Jídlo|Obchod @@ -95,18 +93,18 @@ fr:Les courses|Nourriture|Magasin de:Lebensmittel|Essen|Geschäft|Laden hu:Élelmiszer|Ennivaló|Bolt|Üzlet id:Toserba|Makanan|Toko -it:4Alimentari|Cibo|Negozio +it:Alimentari|Cibo|Negozio ja:食料雑貨|飲食|買い物 ko:식료품들|음식|쇼핑 nb:Dagligvarer|Mat|Butikk pl:Produkty|Jedzenie|Sklep pt:Mercearias|Minimercados|Supermercados|Hipermercados|Comida|Alimentos|Loja pt-BR:Mercados|Alimentação|Loja -ro:4Alimentare|Produse|Alimentație|Magazin +ro:Produse|Alimentație|Magazin es:Productos|Comer|Tienda sv:Produkter|Mat|Butik|Affär th:ซื้อของกินของใช้|อาหาร|ร้านค้า -tr:4Market|Bakkaliye|Yemek|Mağaza +tr:Bakkaliye|Yemek|Mağaza uk:Продукти|Їжа|Крамниця|магазин vi:Cửa hàng tạp hóa|ẩm thực|Cửa hàng zh-Hans:食品|食物|商店 @@ -120,7 +118,6 @@ fa:غذا|فروشگاه|عطاری @transport en:Transport ru:Транспорт -be:Транспарт bg:Транспорт ar:مواصلات|نقل cs:Doprava @@ -154,8 +151,7 @@ fa:حمل و نقل @fuel en:2Gas -ru:3Заправка|3бензин -be:3Запраўка|3бензін +ru:3Заправка bg:Гориво|Бензиностанция ar:1وقود|بنزين|سولار|ديزل|غاز cs:2Čerpací stanice|Benzinová pumpa|benzinka @@ -166,19 +162,19 @@ fr:3Essence de:3Tankstelle hu:Benzinkút id:Bahan bakar -it:4Benzinaio|3Stazione di rifornimento +it:3Stazione di rifornimento ja:1ガソリンスタンド ko:연료|주유소 nb:Drivstoff pl:3Stacja benzynowa pt:3Combustível pt-BR:Combustível -ro:4Benzinărie|Benzină +ro:Benzină es:3Gasolinera sv:3Bensin th:ก๊าซ -tr:3Benzinlik|Yakıt -uk:Заправка|бензин +tr:Benzin +uk:Заправка vi:Khí đốt zh-Hans:汽油 zh-Hant:加油站 @@ -189,9 +185,8 @@ sw:Sheli fa:سوخت|بنزین|دیزل|گازوئیل @parking -en:4Parking -ru:4Парковка -be:4Паркоўка +en:Parking +ru:Парковка bg:Паркинг ar:موقف سيارات cs:Parkoviště @@ -226,7 +221,6 @@ fa:پارکینگ @shopping en:Shopping|Shop ru:Шоппинг|Магазин -be:4Закупы|магазін bg:Шопинг|Магазин ar:متجر|التسوق cs:Nákupy|Obchod @@ -262,7 +256,6 @@ fa:فروشگاه|خرید کردن @hotel en:Hotel|hotels ru:Гостиница|гостиницы|отель|отели -be:Гатель|гателі bg:Хотел|хотели ar:فندق|الفنادق cs:Hotel|Hotely @@ -297,7 +290,6 @@ fa:هتل|هتل ها @tourism en:Attractions|3Tourism|Sights ru:Туризм|Достопримечательность|достопримечательности -be:Славутасці|турызм bg:Туризъм|Забележителности ar:سياحة cs:Pamětihodnost @@ -308,7 +300,7 @@ fr:Tourisme|Attraction|Sites touristiques de:Attraktion|Tourismus|Touristenattraktion|Sehenswürdigkeit hu:Túrizmus|Látnivaló id:Pemandangan -it:Luoghi turistici|Turistico +it:Turistico ja:観光 ko:관광 nb:Severdigheter @@ -327,12 +319,11 @@ zh-Hant:旅遊景點 el:Αξιοθέατο he:נקודות עיניין sk:Pamätihodnosť -fa:منظره|گردشگری +fa:گردشگری @entertainment en:Entertainment ru:Развлечения -be:Забавы bg:Развлечение ar:ترفيه وتسلية cs:Zábava @@ -366,8 +357,7 @@ fa:سرگرمی @nightlife en:Nightlife -ru:Ночная жизнь|С друзьями|Вечер с друзьями|потусить -be:Начное жыццё|патусіць +ru:Ночная жизнь|С друзьями|Вечер с друзьями bg:Нощен живот|С приятели ar:أنشطة ترفيه ليلية cs:Noční život @@ -402,7 +392,6 @@ fa:تفریحات شبانه @children en:Family holiday ru:Отдых с детьми -be:Сямейны адпачынак bg:Семейна почивка ar:عطلة عائلية cs:Dovolená s dětmi @@ -413,14 +402,14 @@ fr:Vacances en famille de:Freizeit mit Kindern hu:Pihenés a gyerekekkel id:Liburan keluarga -it:Tempo libero|Vacanze bambini +it:Vacanze bambini ja:家族の休日 ko:가족 기념일|명절 nb:Familieferie pl:Wypoczynek z dziećmi pt:Atividades com crianças pt-BR:Feriados em família -ro:Timp liber|Odihnă cu copii +ro:Odihnă cu copii es:Descanso con niños sv:Semester med barn th:วันหยุดสำหรับครอบครัว @@ -437,7 +426,6 @@ fa:تعطیلات خانوادگی @atm en:ATM|Cash machine ru:3Банкомат -be:3Банкамат bg:Банкомат ar:ماكينة صرافة آلية|صراف|صراف آلي cs:3Bankomat @@ -468,7 +456,7 @@ el:ATM he:כספומט sk:3Bankomat sw:Benki|fedha -fa:خود پرداز +fa:خودپرداز amenity-atm|@atm en:money|U+1F3E7|U+1F4B2|U+1F4B3|U+1F4B4|U+1F4B5|U+1F4B6|U+1F4B7 @@ -506,7 +494,6 @@ fa:دستگاه خودپرداز @bank en:3Bank ru:3Банк -be:3Банк bg:3Банка ar:بنك cs:3Banka @@ -573,7 +560,6 @@ fa:بانک @recycling en:Recycling|Waste utilization|Recyclables|Separate garbage collection|Waste sorting|Reuse ru:Переработка|Переработка отходов|Утилизация отходов|Прием вторсырья|Раздельный сбор мусора|Сортировка мусора|Повторное использование|утиль -be:Перапрацоўка|Перапрацоўка адходаў|Утылізацыя адходаў|Прыём другаснай сыравіны|Паасобны збор смецця|Сартаванне смецця|Паўторнае выкарыстанне|утыль bg:Рециклиране|Преизползване|Разделно събиране|Сепаратор ar:إعادة تدوير|استغلال المخلفات|المواد القابلة لإعادة التدوير|جمع القمامة بشكل منفصل|فرز النفايات|إعادة الاستخدام cs:Recyklace|Využití odpadu|Recyklovatelné|Oddělený sběr odpadků|Třídění odpadu|Opětovné použití @@ -793,7 +779,7 @@ pt-BR:3Posto de combustível|3gasolina ro:3Benzinărie sv:3Bensinstation|3bränsle|2gas th:3ปั๊มน้ำมัน|เชื้อเพลิง -tr:3Yakıt|3Benzin istasyonu|2gaz +tr:3Benzin istasyonu|2gaz uk:3бензин|газ vi:Trạm xăng zh-Hans:1加油站|燃料 @@ -3371,7 +3357,6 @@ fa:قبرستان @hospital en:4Hospital ru:4Больница -be:4Бальніца bg:Болница ar:مستشفى cs:4Nemocnice @@ -3692,7 +3677,6 @@ el:Στάθμευση @pharmacy en:3Pharmacy ru:3Аптека -be:3Аптэка bg:Аптека|лекарства|дрогерия ar:صيدلية cs:3Lékárna @@ -3786,7 +3770,6 @@ fa:صندوق پست @post en:3Post ru:3Почта -be:3Пошта bg:Поща|пощенска кутия ar:بريد cs:3Pošta @@ -4321,8 +4304,7 @@ fa:تلفن خانه @toilet en:3Toilet -ru:3Туалет|4уборная -be:4Прыбіральня|3Туалет +ru:3Туалет bg:Тоалетна ar:حمام cs:3Záchody @@ -5708,7 +5690,6 @@ fa:ساختمان @police en:4Police ru:4Полиция -be:4Паліцыя bg:Полиция ar:شرطة cs:4Policie @@ -5845,7 +5826,7 @@ fa:خلیج @water en:3Water|water source ru:3Вода|источник воды -be:3Вада|крыніца +be:3Вада bg:3Вода ar:ماء cs:3Voda @@ -6060,7 +6041,6 @@ fa:شیراب # as they are quite big and obvious terrain features on the map anyway. @waterbody en:Water body|water surface -be:Вадаём ru:Водоём ar:مسطح مائي be:Вадаём @@ -6911,7 +6891,6 @@ fa:اقیانوس @wifi en:WiFi|Wi-Fi ru:WiFi|Wi-Fi -be:WiFi|Wi-Fi bg:WiFi|Wi-Fi ar:وايفاي|واي-فاي cs:WiFi|Wi-Fi diff --git a/data/countries.txt b/data/countries.txt index 66fa912d79..fb2c67b372 100644 --- a/data/countries.txt +++ b/data/countries.txt @@ -1,5 +1,5 @@ { - "v": 220103, + "v": 211122, "id": "Countries", "g": [ { @@ -12,8 +12,8 @@ "\u10d0\u10e4\u10ee\u10d0\u10d6\u10d4\u10d7\u10d8\u10e1 \u10d0\u10d5\u10e2\u10dd\u10dc\u10dd\u10db\u10d8\u10e3\u10e0\u10d8 \u10e0\u10d4\u10e1\u10de\u10e3\u10d1\u10da\u10d8\u10d9\u10d0 - \u0410\u04a7\u0441\u043d\u044b \u0410\u0432\u0442\u043e\u043d\u043e\u043c\u0442\u04d9 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430", "\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd" ], - "s": 11053149, - "sha1_base64": "ig1KPRjMUT22iM7OHqxLjAsdYT4=" + "s": 11045197, + "sha1_base64": "rlanORlHqK+u6brdxb3kYor6+b8=" }, { "id": "Afghanistan", @@ -57,8 +57,8 @@ "\u0648\u0644\u0627\u06cc\u062a \u063a\u0648\u0631", "\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646" ], - "s": 95138305, - "sha1_base64": "2UuHWAb8/BR1+KMYl0a93vWl0MY=" + "s": 95016137, + "sha1_base64": "5YhuJu+CfKPDva9KPY6q73eZTXk=" }, { "id": "Albania", @@ -68,8 +68,8 @@ "affiliations": [ "Shqip\u00ebria" ], - "s": 43227088, - "sha1_base64": "LdAfnvITIA94+xvmU41+J7a66IM=" + "s": 43148680, + "sha1_base64": "ASOSIc9BYShg33qq9IM5/BVCD9U=" }, { "id": "Algeria", @@ -99,8 +99,8 @@ "Tindouf \u2d5c\u2d49\u2d4f\u2d37\u2d53\u2d3c \u062a\u0646\u062f\u0648\u0641", "T\u00e9bessa - \u062a\u0628\u0633\u0629" ], - "s": 34967621, - "sha1_base64": "KzIa3hna2YacbChAtbdJwO+EmRA=" + "s": 33495181, + "sha1_base64": "cwggGZjmlhR+MdnDjmD3VZJuHp0=" }, { "id": "Algeria_Coast", @@ -141,8 +141,8 @@ "Tizi Ouzou - \u2d5c\u2d49\u2d63\u2d49 \u2d53\u2d63\u2d63\u2d53 - \u062a\u064a\u0632\u064a \u0648\u0632\u0648", "Tlemcen - \u062a\u0644\u0645\u0633\u0627\u0646" ], - "s": 87936452, - "sha1_base64": "MyGQJWuKGstOiEfBkYimejWVCbU=" + "s": 85584156, + "sha1_base64": "ZetywCz1NR2ozLWV3l6H/VZ6LAI=" } ] }, @@ -154,8 +154,8 @@ "affiliations": [ "Andorra" ], - "s": 2619780, - "sha1_base64": "quyJcmXPxwadWXHSjdg3RT9npDE=" + "s": 2613060, + "sha1_base64": "zj8lryHgPnr5nTu9h+9GYJ15kss=" }, { "id": "Angola", @@ -183,8 +183,8 @@ "Namibe", "Zaire" ], - "s": 50038145, - "sha1_base64": "7ZQc6BkGOtOMrhZo3rXQufOMT78=" + "s": 49598913, + "sha1_base64": "dFJQxa3xu1Ld41NacjorWcpbBrE=" }, { "id": "Anguilla", @@ -194,8 +194,8 @@ "affiliations": [ "Anguilla" ], - "s": 642185, - "sha1_base64": "gOsu1wcSP0XK0phUIUoEYPchCUQ=" + "s": 641689, + "sha1_base64": "fM2osyt8cTl6RL+rTCm1APNzRzw=" }, { "id": "Antigua and Barbuda", @@ -206,8 +206,8 @@ "Antigua and Barbuda", "Montserrat" ], - "s": 2258097, - "sha1_base64": "XBAiEX8Tr+pkWE0XG5niEVJ/Tr8=" + "s": 2247441, + "sha1_base64": "zosn2XjAs0peah9Pj+IamCP5I6U=" }, { "id": "Barbados", @@ -217,8 +217,8 @@ "affiliations": [ "Barbados" ], - "s": 5601908, - "sha1_base64": "tJTWONDwzObLV/YUrlQr3LAEb2Y=" + "s": 5598700, + "sha1_base64": "h5F3I23JWeKkFIVtGGm6vj9NRok=" }, { "id": "British Virgin Islands", @@ -228,8 +228,8 @@ "affiliations": [ "British Virgin Islands" ], - "s": 924554, - "sha1_base64": "IUdbJQ/IcN3R/1cXGz+UlYSeBqY=" + "s": 923874, + "sha1_base64": "UDMINNB+yDJPxvMbvO+y5PJGp6c=" }, { "id": "Caribisch Nederland", @@ -247,8 +247,8 @@ "Aruba", "Curacao" ], - "s": 6671981, - "sha1_base64": "JFafF8JUI1M9eOTlDtPwyL/CJ24=" + "s": 6642581, + "sha1_base64": "CKodrN70Fo7FunAi/fua2Qy+WuQ=" }, { "id": "Dominica", @@ -268,8 +268,8 @@ "Saint Joseph Parish", "Saint Peter Parish" ], - "s": 3277080, - "sha1_base64": "ImDYE5WPB29GIDnD6M57id/JQtI=" + "s": 3276672, + "sha1_base64": "u4s6wm1HxB2nEFrikDUqu09todY=" }, { "id": "Grenada", @@ -279,8 +279,8 @@ "affiliations": [ "Grenada" ], - "s": 2324007, - "sha1_base64": "JdJmhW/svsv2CnBiZTF4+k87f64=" + "s": 2321767, + "sha1_base64": "7VKFfrw1eHHM0lpCxtoprVrLVdY=" }, { "id": "Guadeloupe", @@ -292,8 +292,8 @@ "Guadeloupe", "Montserrat" ], - "s": 14420231, - "sha1_base64": "NCD9Q8zzYS54oafUe2ig13BodB0=" + "s": 14146927, + "sha1_base64": "QY0r49prASDZpRaaPdPdbEl44tY=" }, { "id": "Martinique", @@ -305,8 +305,8 @@ "Martinique", "Saint Lucia" ], - "s": 12155085, - "sha1_base64": "M88S2RZB9V5Dh2iT0LLc277U30Q=" + "s": 12144325, + "sha1_base64": "6kAsLXpu0VlNvsnrLZzUs21eBL8=" }, { "id": "Montserrat", @@ -316,8 +316,8 @@ "affiliations": [ "Montserrat" ], - "s": 459400, - "sha1_base64": "ox6jbp9zVkIgO2peDZ+bEv2svA8=" + "s": 458336, + "sha1_base64": "plyZD03fan3TZm7bKfA/POkexxw=" }, { "id": "Saint Barthelemy", @@ -327,8 +327,8 @@ "affiliations": [ "France" ], - "s": 406768, - "sha1_base64": "+ZawWMb3osfRPFOu5+yO6GhwZPw=" + "s": 404168, + "sha1_base64": "MP0fAMvsFDKRy6bQiwZeHD8A7+M=" }, { "id": "Saint Kitts and Nevis", @@ -338,8 +338,8 @@ "affiliations": [ "Saint Kitts and Nevis" ], - "s": 1289685, - "sha1_base64": "bIG80UcigspxbuBMuxRq6kEDNmQ=" + "s": 1287997, + "sha1_base64": "cm22aogN0/UNfYeDnY5u9iFrY9I=" }, { "id": "Saint Lucia", @@ -350,8 +350,8 @@ "Saint Lucia", "Saint Vincent and the Grenadines" ], - "s": 3038745, - "sha1_base64": "s90SoWqaArjm2cgdul65pGrqFYc=" + "s": 3016465, + "sha1_base64": "Egf12wjlqLL1ctnBVzFn8l893a0=" }, { "id": "Saint Martin", @@ -368,8 +368,8 @@ "Saint Martin (Dutch part)", "Sint Maarten (Netherlands)" ], - "s": 1995678, - "sha1_base64": "UEypS423m53/cwMvDrpFLZ0wotI=" + "s": 1994606, + "sha1_base64": "rqbnaozKgYLF1jKSpV38HKImhIk=" }, { "id": "Saint Vincent and the Grenadines", @@ -379,8 +379,8 @@ "affiliations": [ "Saint Vincent and the Grenadines" ], - "s": 2418802, - "sha1_base64": "7xKDNxSmoT+srxJ4dzmhAAfyg8Y=" + "s": 2383138, + "sha1_base64": "fDZRQcDXmN3hjIaSSgN3H0rDavU=" }, { "id": "Trinidad and Tobago", @@ -390,8 +390,8 @@ "affiliations": [ "Trinidad and Tobago" ], - "s": 15790464, - "sha1_base64": "KsAfx3aVz9B1ZqC4BfSrGsVcdeA=" + "s": 15787200, + "sha1_base64": "TE4Hrzslnj+/wnT5McitflTHuJA=" }, { "id": "United States Virgin Islands", @@ -406,8 +406,8 @@ "VI", "United States of America" ], - "s": 2775887, - "sha1_base64": "5tAl6TnJQNMw9LZc1w7itKKjVYc=" + "s": 2770999, + "sha1_base64": "cWssA3OkDVPFlf1zTwLWJ2uCMEo=" }, { "id": "Argentina", @@ -417,8 +417,8 @@ "affiliations": [ "Acuerdo de Campos de Hielo" ], - "s": 7276172, - "sha1_base64": "KaWTWHwhvI5AaGfdX5A+Pn/SXPo=" + "s": 7276164, + "sha1_base64": "Q4qkmuRt9knv6rkoswDihqN6Dds=" }, { "id": "Argentina_Buenos Aires_Buenos Aires", @@ -430,8 +430,8 @@ "Ciudad Aut\u00f3noma de Buenos Aires", "Buenos Aires" ], - "s": 38760192, - "sha1_base64": "ehHssdlrR+EyEJvivhL/8dJesLk=" + "s": 38619728, + "sha1_base64": "RFLqIzRuNG4mWj6wSQ+YhSkfKDI=" }, { "id": "Argentina_Buenos Aires_North", @@ -442,8 +442,8 @@ "Argentina", "Buenos Aires" ], - "s": 26743527, - "sha1_base64": "oOBTpDrrafWl27yTsf4tB388nuk=" + "s": 26600647, + "sha1_base64": "k6zMqxPb/CiUkl9ShZtgIrjN+V4=" }, { "id": "Argentina_Buenos Aires_South", @@ -454,8 +454,8 @@ "Argentina", "Buenos Aires" ], - "s": 43190571, - "sha1_base64": "f7LBujx3ENl/ng0E2BfWApNFGCk=" + "s": 43123195, + "sha1_base64": "/S+HXB8yQ4fTrd0X5g6wZmmz+ro=" }, { "id": "Argentina_Patagonia", @@ -470,8 +470,8 @@ "Santa Cruz", "Tierra del Fuego" ], - "s": 65022427, - "sha1_base64": "CWtko+qhNC42oezC5o55/N3gbaM=" + "s": 64595355, + "sha1_base64": "z53Ioau9O7LkFS85yOuxlnFnHI0=" }, { "id": "Argentina_Cuyo", @@ -485,8 +485,8 @@ "San Juan", "San Luis" ], - "s": 35424976, - "sha1_base64": "0EgIorLc++AvXC42NjvXpnJLYVk=" + "s": 35135728, + "sha1_base64": "XpzHwavGOC6BixOkewC5CBGQBP0=" }, { "id": "Argentina_Mesopotamia", @@ -507,8 +507,8 @@ "Itap\u00faa", "Misiones" ], - "s": 57444100, - "sha1_base64": "BZBxGTi7cqxlIvGQFxChL0v9OfQ=" + "s": 56830396, + "sha1_base64": "Gj57v5lUKc1v8XNP+w5Xo5r7gJg=" }, { "id": "Argentina_Northwest", @@ -525,8 +525,8 @@ "Santiago del Estero", "Tucum\u00e1n" ], - "s": 45298074, - "sha1_base64": "2gI3GBCJwSKkf5tFtOBd3/qFsO8=" + "s": 44963786, + "sha1_base64": "+hYfx2jvBcrzo2X4G7XmIgjtk2E=" }, { "id": "Argentina_Pampas", @@ -538,8 +538,8 @@ "C\u00f3rdoba", "La Pampa" ], - "s": 47848653, - "sha1_base64": "qARbW67/qBA5db/ukqglEu6HsaE=" + "s": 47172341, + "sha1_base64": "HfmvGsIG5oH3Jj/lyextidBvU7o=" }, { "id": "Argentina_Santa Fe", @@ -550,8 +550,8 @@ "Argentina", "Santa Fe" ], - "s": 28450858, - "sha1_base64": "8QGzggDE8wka0l3NAoTdLbre8zk=" + "s": 27976866, + "sha1_base64": "Jsc39Gwu8qku7nolWKx0TYySDB4=" } ] }, @@ -576,8 +576,8 @@ "\u0531\u0580\u0561\u0563\u0561\u056e\u0578\u057f\u0576\u056b \u0574\u0561\u0580\u0566", "\u0533\u0565\u0572\u0561\u0580\u0584\u0578\u0582\u0576\u056b\u0584" ], - "s": 40294655, - "sha1_base64": "BjGM4I6ilSIoxE5FYjXz4gfkRwY=" + "s": 39945302, + "sha1_base64": "Rt7314A/eTmIqu73cbzxXnSaF7w=" }, { "id": "Austria", @@ -591,8 +591,8 @@ "Burgenland", "\u00d6sterreich" ], - "s": 35308161, - "sha1_base64": "eeRSeavjxYuCg3xaU7KjDOA+mJc=" + "s": 35222247, + "sha1_base64": "7ofwwEwgkDxgfDVcQhsswt0lyn0=" }, { "id": "Austria_Carinthia", @@ -603,8 +603,8 @@ "K\u00e4rnten", "\u00d6sterreich" ], - "s": 56801339, - "sha1_base64": "FHFHMJPsY5kuPuZ9i4jPFwGpGT0=" + "s": 56492779, + "sha1_base64": "jU6sa7UQdf+lhq7LU3/EKZvUsF0=" }, { "id": "Austria_Lower Austria_Wien", @@ -616,8 +616,8 @@ "Nieder\u00f6sterreich", "Wien" ], - "s": 106184326, - "sha1_base64": "kCj2j5w3ySERotflXA8wu69BXqo=" + "s": 105758919, + "sha1_base64": "/MJL6cFkOqIkWIsUQCuMpzZq14M=" }, { "id": "Austria_Styria_Graz", @@ -628,8 +628,8 @@ "\u00d6sterreich", "Steiermark" ], - "s": 78335429, - "sha1_base64": "XG3GAwk5/deaYnSktXomCpaVAe8=" + "s": 78207949, + "sha1_base64": "nefpKad9HcVV+sQROOUcX8oUBwk=" }, { "id": "Austria_Styria_Leoben", @@ -640,8 +640,8 @@ "\u00d6sterreich", "Steiermark" ], - "s": 47920114, - "sha1_base64": "6wnL2mqhWmRnFI3CiZplCLDUBUA=" + "s": 47992346, + "sha1_base64": "mXbSbganC0x6LMKoAkLpTbIrqdI=" }, { "id": "Austria_Upper Austria_Linz", @@ -652,8 +652,8 @@ "\u00d6sterreich", "Ober\u00f6sterreich" ], - "s": 43634337, - "sha1_base64": "Rvkqh27peCTrXrw873ubOKho/us=" + "s": 43261273, + "sha1_base64": "UPCkfiRWYF7epynrQqe2Sxa8VJM=" }, { "id": "Austria_Upper Austria_Wels", @@ -664,8 +664,8 @@ "\u00d6sterreich", "Ober\u00f6sterreich" ], - "s": 57740131, - "sha1_base64": "2TDpGY9GbUlRUfsnIcBog3EsTa8=" + "s": 57465035, + "sha1_base64": "wCE5thA1iD0qqrkLG4VdaisnmtA=" }, { "id": "Austria_Lower Austria_West", @@ -676,8 +676,8 @@ "\u00d6sterreich", "Nieder\u00f6sterreich" ], - "s": 100446815, - "sha1_base64": "ypB7l/3zdHCCL3IXI64hIWnmTpg=" + "s": 99034604, + "sha1_base64": "7Vtq+fUlkp0UakHFO8/OInmVgEs=" }, { "id": "Austria_Tyrol", @@ -688,8 +688,8 @@ "\u00d6sterreich", "Tirol" ], - "s": 67600542, - "sha1_base64": "6A2stvuqG/aqTrRMRg3toaX5ABs=" + "s": 67576934, + "sha1_base64": "vS7J49OlkKdQZ7IvrHYYJz11mF0=" }, { "id": "Austria_Salzburg", @@ -700,8 +700,8 @@ "\u00d6sterreich", "Salzburg" ], - "s": 51821738, - "sha1_base64": "7mYPtmBnI9loMgvMcJki5gLrsJs=" + "s": 51614178, + "sha1_base64": "jW+N6yv9WH6HQKZ2vJWXcD/KOGI=" }, { "id": "Austria_Vorarlberg", @@ -712,8 +712,8 @@ "\u00d6sterreich", "Vorarlberg" ], - "s": 28326337, - "sha1_base64": "z8o8EKPiOb5aKkcL8BA5oGBCgA0=" + "s": 28205537, + "sha1_base64": "jWkM6MWGyVc/Cam6lwMJNtvdpzw=" } ] }, @@ -727,8 +727,8 @@ "Coral Sea Islands Territory", "Willis Island" ], - "s": 169329, - "sha1_base64": "yBnVG9pk5fp24vO/y6Bj5sW46MU=" + "s": 169305, + "sha1_base64": "oPzdU6st5Rc48OSHSDsvuHsbfuc=" }, { "id": "Australia_Melbourne", @@ -739,8 +739,8 @@ "Australia", "Victoria" ], - "s": 64354684, - "sha1_base64": "EmQkyO2AZZ74ChthtB/88Kv1xHU=" + "s": 63309820, + "sha1_base64": "TtZrJ1XgR7TGw/sQC1ciAdXxZY0=" }, { "id": "Australia_New South Wales", @@ -754,8 +754,8 @@ "New South Wales", "Norfolk Island" ], - "s": 63698957, - "sha1_base64": "l/q/Ch01Z0OlkBhVOErBNWseImw=" + "s": 62675125, + "sha1_base64": "Fdtt6UfyVW6zI21E0YLtELR8T3k=" }, { "id": "Australia_Northern Territory", @@ -766,8 +766,8 @@ "Australia", "Northern Territory" ], - "s": 12793033, - "sha1_base64": "iWix0YiwjmTHb1ZCfVwR+rW20L0=" + "s": 12681169, + "sha1_base64": "gXE5oz5SbAKASJpQhvjjn7RpU6Y=" }, { "id": "Australia_Queensland", @@ -779,8 +779,8 @@ "Coral Sea Islands Territory", "Queensland" ], - "s": 34903205, - "sha1_base64": "hLaL83my0Y2o6xFNzuFBPKLl3xI=" + "s": 34761053, + "sha1_base64": "wYTPgJ7YdPHkz0kCsK4DMIXJRiY=" }, { "id": "Australia_South Australia", @@ -791,8 +791,8 @@ "Australia", "South Australia" ], - "s": 50953126, - "sha1_base64": "8huANp2zd8ZUgv07KjX0IHimWu4=" + "s": 50687621, + "sha1_base64": "w2CIJqbbnz7Ta1kz0cXWMj+n5k4=" }, { "id": "Australia_Tasmania", @@ -803,8 +803,8 @@ "Australia", "Tasmania" ], - "s": 43537599, - "sha1_base64": "4EwUbw85TMXhKw+KyLgJbQ7nRBk=" + "s": 42965415, + "sha1_base64": "Zyt3fz4eKxSVWY3TFzwY2CLcVKE=" }, { "id": "Australia_Victoria", @@ -815,8 +815,8 @@ "Australia", "Victoria" ], - "s": 76014822, - "sha1_base64": "72Enjtg/Ml5YcjAxHGMe5AqnTRs=" + "s": 75629110, + "sha1_base64": "vjgQldpA2P6lak9qRyMSVu+PQ5w=" }, { "id": "Australia_Western Australia", @@ -832,8 +832,8 @@ "Cocos (Keeling) Islands", "Western Australia" ], - "s": 71057140, - "sha1_base64": "hBhIB7HbPeTWYIU1Z4Jkv9OGwrE=" + "s": 70699988, + "sha1_base64": "xM/i47m3+uCJmLQlZLWg3fRwizM=" }, { "id": "Australia_Brisbane", @@ -846,8 +846,8 @@ "France, Nouvelle-Cal\u00e9donie, R\u00e9cifs de Bellone (eaux territoriales)", "Queensland" ], - "s": 84664400, - "sha1_base64": "2R0KQGEgSR6d+sBTOa0H/O34hC4=" + "s": 83824520, + "sha1_base64": "0HedvHeI4YBJg36u5Ovh1nDQqDM=" }, { "id": "Australia_Sydney", @@ -860,8 +860,8 @@ "Jervis Bay Territory", "New South Wales" ], - "s": 108898783, - "sha1_base64": "qda52gm2XX+Tu1mLlF496CX2Xj0=" + "s": 107441759, + "sha1_base64": "MYDNmsl5uyH7TBYgPnUiGe05Du8=" } ] }, @@ -884,8 +884,8 @@ "\u0544\u0561\u0580\u057f\u0578\u0582\u0576\u0578\u0582 \u0577\u0580\u057b\u0561\u0576 (Martuni Province)", "\u054d\u057f\u0565\u0583\u0561\u0576\u0561\u056f\u0565\u0580\u057f (Stepanakert - Khankendi)" ], - "s": 8623977, - "sha1_base64": "LJOAbloemaSiewhH6AlXlO3B/W0=" + "s": 8618913, + "sha1_base64": "HVOFatbyenRQAgY67w/zfSgD9Wo=" }, { "id": "Azerbaijan", @@ -965,8 +965,8 @@ "\u015e\u0259mkir rayonu", "\u015e\u0259rur rayonu" ], - "s": 37277238, - "sha1_base64": "yHOnuXhzXJzNVfwm6MlDqbcm8Q4=" + "s": 36915478, + "sha1_base64": "3S/HVHKsNH2VUrRpOOXQ1JDN/cE=" } ] }, @@ -983,8 +983,8 @@ "\u0627\u0644\u0645\u062d\u0627\u0641\u0638\u0629 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629", "\u0627\u0644\u0645\u062d\u0627\u0641\u0638\u0629 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629" ], - "s": 5812663, - "sha1_base64": "u48bNHppiLq3ZP7CDQLc3h4ry8s=" + "s": 5739391, + "sha1_base64": "0lCqUzwI5qgQagtkPs8OXX3U2QM=" }, { "id": "Bangladesh", @@ -1002,8 +1002,8 @@ "\u09ac\u09be\u0982\u09b2\u09be\u09a6\u09c7\u09b6", "\u099a\u099f\u09cd\u099f\u0997\u09cd\u09b0\u09be\u09ae \u09ac\u09bf\u09ad\u09be\u0997" ], - "s": 267255525, - "sha1_base64": "gqNk4FYWeIm/Et2KMOggvWtyWzA=" + "s": 266544381, + "sha1_base64": "Wm3CP1hII1xbXfFxb5srTudn1iM=" }, { "id": "Belarus", @@ -1020,8 +1020,8 @@ "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c", "\u0412\u0438\u0442\u0435\u0431\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 55830949, - "sha1_base64": "RP/H7sYBHA0UlBWK2QrK+mEEYM0=" + "s": 55577213, + "sha1_base64": "NvHOZAp5cX3EQ0xnTXt+GQgVbus=" }, { "id": "Belarus_Hrodna Region", @@ -1032,8 +1032,8 @@ "\u0413\u0440\u043e\u0434\u043d\u0435\u043d\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c" ], - "s": 45001772, - "sha1_base64": "YODEPGVtGgVBLffFSPnhQa+B84k=" + "s": 44760164, + "sha1_base64": "HwK2i0aUs/sspIRpiG5cvcJ+638=" }, { "id": "Belarus_Brest Region", @@ -1044,8 +1044,8 @@ "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c", "\u0411\u0440\u0435\u0441\u0442\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 41351788, - "sha1_base64": "Q1JPjQd0lGL48hXLTpj+PJl5VyI=" + "s": 40830363, + "sha1_base64": "vCpgI0IP/I/zcESSFqKMz7rmLQE=" }, { "id": "Belarus_Homiel Region", @@ -1056,8 +1056,8 @@ "\u0413\u043e\u043c\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c" ], - "s": 38412017, - "sha1_base64": "RaRQejSuAWBNnpfB41plOm0092E=" + "s": 37684905, + "sha1_base64": "+E3Yxk4inzB0MummYhEVjYlntE4=" }, { "id": "Belarus_Maglieu Region", @@ -1068,8 +1068,8 @@ "\u041c\u043e\u0433\u0438\u043b\u0451\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c" ], - "s": 31902223, - "sha1_base64": "gccH1NO9MLXoPrDFx4iT1jZfqlE=" + "s": 31531607, + "sha1_base64": "leG3mZKOvczHynpbHeR7h+hEnuA=" }, { "id": "Belarus_Minsk Region", @@ -1084,8 +1084,8 @@ "\u041a\u043e\u043b\u043e\u0434\u0438\u0449\u0438", "\u041d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0430\u044d\u0440\u043e\u043f\u043e\u0440\u0442 \"\u041c\u0438\u043d\u0441\u043a\"" ], - "s": 69725940, - "sha1_base64": "4mLWCx799/euWTEUq1RM9mOQZN8=" + "s": 69170876, + "sha1_base64": "Q+rxblBJSrY6Qd5+OLn5MHUUun0=" } ] }, @@ -1102,8 +1102,8 @@ "Belgi\u00eb - Belgique - Belgien", "Vlaanderen" ], - "s": 48748483, - "sha1_base64": "QTIhYKAR4WSHBipSdd1yQSUoWUo=" + "s": 48176675, + "sha1_base64": "udhqv8rOyCHMSk33ZS1SAgVprpg=" }, { "id": "Belgium_Antwerp", @@ -1115,8 +1115,8 @@ "Nederland - Belgique / Belgi\u00eb / Belgien", "Vlaanderen" ], - "s": 58190266, - "sha1_base64": "c4766asO0CIW06PCffFI9+IUmXk=" + "s": 57972050, + "sha1_base64": "QXqV+xYchCYcS2eerCIr5UhCAkY=" }, { "id": "Belgium_East Flanders", @@ -1127,8 +1127,8 @@ "Belgi\u00eb - Belgique - Belgien", "Vlaanderen" ], - "s": 46973892, - "sha1_base64": "saLshiLFIByBT8/55NZMywixYSI=" + "s": 46637468, + "sha1_base64": "UFA4ODXMyf8sjdotHN1WhrJuKa4=" }, { "id": "Belgium_Hainaut", @@ -1139,8 +1139,8 @@ "Belgi\u00eb - Belgique - Belgien", "Wallonie" ], - "s": 39805803, - "sha1_base64": "tWMe5ojkWwj9DbW2ZvsKt6WJLWo=" + "s": 38968563, + "sha1_base64": "FpqM7s6wef6N82a/XPl+OqJasuE=" }, { "id": "Belgium_Walloon Brabant", @@ -1151,8 +1151,8 @@ "Belgi\u00eb - Belgique - Belgien", "Wallonie" ], - "s": 11844860, - "sha1_base64": "2BOhcVP71kII0fDHOeF2GRs7KjM=" + "s": 11482940, + "sha1_base64": "qy6/FCgiz6F04aQJf7TkTnrEntY=" }, { "id": "Belgium_Namur", @@ -1163,8 +1163,8 @@ "Belgi\u00eb - Belgique - Belgien", "Wallonie" ], - "s": 23692007, - "sha1_base64": "tFic++BcrNuZ2NJ/fpm4Y35aS5g=" + "s": 23562847, + "sha1_base64": "izTArIazdaBOWNt0JQyxhWYfsHs=" }, { "id": "Belgium_Limburg", @@ -1175,8 +1175,8 @@ "Belgi\u00eb - Belgique - Belgien", "Vlaanderen" ], - "s": 43223753, - "sha1_base64": "oABkBEWTEXGrvncS7HIY46pYBjQ=" + "s": 42636233, + "sha1_base64": "A3Hvbv/gjGQZVu+yXxFQsAqlEoc=" }, { "id": "Belgium_Luxembourg", @@ -1187,8 +1187,8 @@ "Belgi\u00eb - Belgique - Belgien", "Wallonie" ], - "s": 28964534, - "sha1_base64": "RJJlP4OEWEnpRAHXTXQkvvAU7WU=" + "s": 28775214, + "sha1_base64": "FNZgI4VqUJ0nWXC8U+QyBqMoA0A=" }, { "id": "Belgium_Flemish Brabant", @@ -1200,8 +1200,8 @@ "R\u00e9gion de Bruxelles-Capitale - Brussels Hoofdstedelijk Gewest", "Vlaanderen" ], - "s": 59032418, - "sha1_base64": "SPuX7r2tARY/HWY0+o5xJkLJv0U=" + "s": 58338066, + "sha1_base64": "WZaiXGUFbWnRvfa+Eccr+Ay3F3Q=" }, { "id": "Belgium_Liege", @@ -1212,8 +1212,8 @@ "Belgi\u00eb - Belgique - Belgien", "Wallonie" ], - "s": 46076892, - "sha1_base64": "4vSfj/qbIPTUeTQEiaZMP78U23c=" + "s": 45597252, + "sha1_base64": "tLOlTm8ccMHpPq5Ny5svwfwvZeg=" } ] }, @@ -1233,8 +1233,8 @@ "Stann Creek", "Toledo" ], - "s": 16835097, - "sha1_base64": "vrO3/i9qUdMyBDRviQOhzJckdZY=" + "s": 16527873, + "sha1_base64": "UZ1zOBYoDAjru9SK0dYSh5KusQw=" }, { "id": "Benin", @@ -1256,8 +1256,8 @@ "Plateau", "Zou" ], - "s": 43109429, - "sha1_base64": "X8uy4en1nvNq7YzYkq04GoSNWU0=" + "s": 43031509, + "sha1_base64": "eCN+ubVcS7+b1nsoUwZqqdtVTkg=" }, { "id": "Bermuda", @@ -1267,8 +1267,8 @@ "affiliations": [ "Bermuda" ], - "s": 1562229, - "sha1_base64": "jXZ4Jp3+X90lLzo9oDIY5kegQLE=" + "s": 1559789, + "sha1_base64": "VfzHHOKXwUwx8eFJh74Bz6Ax9zo=" }, { "id": "Bhutan", @@ -1298,8 +1298,8 @@ "\u0f51\u0f56\u0f44\u0f0b\u0f60\u0f51\u0f74\u0f66\u0f0b\u0f55\u0f7c\u0f0b\u0f56\u0fb2\u0f44\u0f0b\u0f62\u0fab\u0f7c\u0f44\u0f0b\u0f41\u0f42\u0f0b", "\u0f56\u0f66\u0f58\u0f0b\u0f42\u0fb2\u0f74\u0f56\u0f0b\u0f63\u0f97\u0f7c\u0f44\u0f66\u0f0b\u0f58\u0f41\u0f62\u0f0b\u0f62\u0fab\u0f7c\u0f44\u0f0b\u0f41\u0f42\u0f0b" ], - "s": 27511916, - "sha1_base64": "l7W2ObRGJw+NntZe67B9AAE0xy0=" + "s": 26074532, + "sha1_base64": "+NgXLB3kJjvMpG5D6JUPi6jn5SE=" }, { "id": "Bolivia", @@ -1316,8 +1316,8 @@ "Pando", "Santa Cruz" ], - "s": 55590157, - "sha1_base64": "Iu1pO79CIxlkyze7Lw6ZOMUalp4=" + "s": 55448093, + "sha1_base64": "iildYnxwQ7P5PBIO6R0SVA8rK+M=" }, { "id": "Bolivia_South", @@ -1332,8 +1332,8 @@ "Potos\u00ed", "Tarija" ], - "s": 61790787, - "sha1_base64": "6IB6fqHcRpMmXTjSF1TsB+gD6Qo=" + "s": 61214451, + "sha1_base64": "gKWVExou0rVLaQyPMOMfV1mDaFk=" } ] }, @@ -1349,8 +1349,8 @@ "Bosna i Hercegovina", "Federacija Bosne i Hercegovine" ], - "s": 60842258, - "sha1_base64": "joUsWc9rixeiusLe6uQAijmxqCs=" + "s": 60572290, + "sha1_base64": "VYSj5Qw9NCYtBWFNK7LImsR4TEM=" }, { "id": "Bosnia and Herzegovina_Brcko district of Bosnia and Herzegowina", @@ -1362,8 +1362,8 @@ "Bosna i Hercegovina", "Republika Srpska" ], - "s": 2098639, - "sha1_base64": "eMsFO+t4SN73KOOqCDURxsLiM30=" + "s": 2078054, + "sha1_base64": "V1m4ot8McF9E/YlOwPrEBCsIOMM=" }, { "id": "Bosnia and Herzegovina_Republic of Srpska", @@ -1374,8 +1374,8 @@ "Bosna i Hercegovina", "Republika Srpska" ], - "s": 62731945, - "sha1_base64": "4eK4WMDf3EKDWHeAB3mARCz9Glk=" + "s": 61821689, + "sha1_base64": "W6WrFU7fFv9B116jKjkLvY/kf0Q=" } ] }, @@ -1396,8 +1396,8 @@ "South-East District", "Southern District" ], - "s": 78693544, - "sha1_base64": "jRHsK3N6si//OkJt1N15DWrkxFg=" + "s": 78418360, + "sha1_base64": "XCbnj30hrCP51PEIGvK/49+6Cjk=" }, { "id": "Brazil", @@ -1411,8 +1411,8 @@ "Bahia", "Brasil" ], - "s": 74239660, - "sha1_base64": "xuNYsgKbbSNYfIcApJdWf3S551w=" + "s": 72822229, + "sha1_base64": "kyxu2eoePGnM7bBgJsX8HhOkD24=" }, { "id": "Brazil_Goias_North", @@ -1423,8 +1423,8 @@ "Brasil", "Goi\u00e1s" ], - "s": 28403991, - "sha1_base64": "gDNkMCErLan4qXkHAkol81pMpEo=" + "s": 28200215, + "sha1_base64": "jKRwm/vxL/xYoItl79s/EV+Og3A=" }, { "id": "Brazil_Goias_Brasilia", @@ -1436,8 +1436,8 @@ "Distrito Federal", "Goi\u00e1s" ], - "s": 48112097, - "sha1_base64": "5o/14t8y0pmKi9gpNSWshsXfuOg=" + "s": 47815145, + "sha1_base64": "OWbplpCMt7gB2Hw+NkW6OrawYK8=" }, { "id": "Brazil_Mato Grosso Do Sul", @@ -1448,8 +1448,8 @@ "Brasil", "Mato Grosso do Sul" ], - "s": 25121183, - "sha1_base64": "vplKMCwwBKAkxQL9b5NdyAHNMaI=" + "s": 25097887, + "sha1_base64": "B9p3XyOR5G4Hsg64KTsu1PJm9JI=" }, { "id": "Brazil_Mato Grosso", @@ -1460,8 +1460,8 @@ "Brasil", "Mato Grosso" ], - "s": 30768166, - "sha1_base64": "zJPZhhE2upC1gEmCS85yLAlW+OY=" + "s": 30943326, + "sha1_base64": "5Z/eNObUFsscJDfaTL4JeoZCOys=" }, { "id": "Brazil_North Region_East", @@ -1474,8 +1474,8 @@ "Par\u00e1", "Tocantins" ], - "s": 52036201, - "sha1_base64": "GXzwgE/kjmsf3J+6ZJLkC3xTaHE=" + "s": 52026505, + "sha1_base64": "YQVBe8t6nEuLD+iV0QwrzJZcdT8=" }, { "id": "Brazil_North Region_West", @@ -1489,8 +1489,8 @@ "Rond\u00f4nia", "Roraima" ], - "s": 46070080, - "sha1_base64": "ArAMBA0CDqE/C6to5Z/aRtxVMMM=" + "s": 45918648, + "sha1_base64": "rT/b3LtlbjMb+h4fzFtE/SbLi+s=" }, { "id": "Brazil_Northeast Region_East", @@ -1503,8 +1503,8 @@ "Pernambuco", "Sergipe" ], - "s": 69309100, - "sha1_base64": "ctr9MEPcPYGZivBKKnxsznRrqxw=" + "s": 68597980, + "sha1_base64": "N616/RPboJl9KTlUsmmi4Rvogx0=" }, { "id": "Brazil_Northeast Region_West", @@ -1518,8 +1518,8 @@ "Pernambuco", "Piau\u00ed" ], - "s": 118333834, - "sha1_base64": "v/0XwFUwmlVw2pmjwz1emeZXJUs=" + "s": 116458241, + "sha1_base64": "GIfgabv8SptAIl+GshWP706WavA=" }, { "id": "Brazil_Paraiba", @@ -1530,8 +1530,8 @@ "Brasil", "Para\u00edba" ], - "s": 38225048, - "sha1_base64": "w2OxyhnTjoNderHOLA2/5z95FJc=" + "s": 37989248, + "sha1_base64": "0kSuBkU2IrFabRJQUlmiyKLvSLk=" }, { "id": "Brazil_Parana_East", @@ -1542,8 +1542,8 @@ "Brasil", "Paran\u00e1" ], - "s": 54372717, - "sha1_base64": "GBsotr5gxZSznLd5zFL3prPolDY=" + "s": 54396109, + "sha1_base64": "hJUcVooF0IMMN2eXDCaSvlVTNuU=" }, { "id": "Brazil_Parana_West", @@ -1554,8 +1554,8 @@ "Brasil", "Paran\u00e1" ], - "s": 74026279, - "sha1_base64": "2FcEMzQe7EieJTdV8jFBhMUv4QU=" + "s": 73415743, + "sha1_base64": "OO8uo5wIq/B1z6iN0fh7zyaeKXc=" }, { "id": "Brazil_Rio Grande do Norte", @@ -1567,8 +1567,8 @@ "Pernambuco", "Rio Grande do Norte" ], - "s": 23517771, - "sha1_base64": "cmEImGWlKL9MoEN+5ldUkgBq+N4=" + "s": 23462349, + "sha1_base64": "FzBvhanRwRWlJtXSom7hLG5syaU=" }, { "id": "Brazil_Santa Catarina", @@ -1579,8 +1579,8 @@ "Brasil", "Santa Catarina" ], - "s": 96370544, - "sha1_base64": "GiWAV6nY2mbgdj405iBilboJFJA=" + "s": 94347088, + "sha1_base64": "k4B8drWwGfwup73y6OO0M6HD5io=" }, { "id": "Brazil_South Region_East", @@ -1591,8 +1591,8 @@ "Brasil", "Rio Grande do Sul" ], - "s": 74120045, - "sha1_base64": "toWWtj0Sk+4sq7d+WNz5s15w470=" + "s": 74095189, + "sha1_base64": "Y9E/G+URU0MsuOH5hdtkLuoUFTw=" }, { "id": "Brazil_South Region_West", @@ -1603,8 +1603,8 @@ "Brasil", "Rio Grande do Sul" ], - "s": 65354533, - "sha1_base64": "t8AGUC0RhQtOjW3Lk4lmWtdIfSs=" + "s": 65340182, + "sha1_base64": "bjIEUogmeX79NHzdvjWRl2Eo7hk=" }, { "id": "Brazil_Southeast Region_Espirito Santo", @@ -1615,8 +1615,8 @@ "Brasil", "Esp\u00edrito Santo" ], - "s": 199261368, - "sha1_base64": "X6XepDs3Wh1C9Jkmvf3OWhA8eTM=" + "s": 198159528, + "sha1_base64": "Ms7hOXEzCv2omevgUTs5Fp9YVpI=" }, { "id": "Brazil_Southeast Region_Minas Gerais_Contagem", @@ -1627,8 +1627,8 @@ "Brasil", "Minas Gerais" ], - "s": 132951608, - "sha1_base64": "e9ibn6XMvnqjlmZuMRx6zND66Mw=" + "s": 132619464, + "sha1_base64": "+ZzoC5vwNuSgyaPw+wbUNwnddXk=" }, { "id": "Brazil_Southeast Region_Minas Gerais_North", @@ -1639,8 +1639,8 @@ "Brasil", "Minas Gerais" ], - "s": 80960311, - "sha1_base64": "gnQyBZ8juNKtR0PRb/om4aojTRQ=" + "s": 78804046, + "sha1_base64": "np5H5SOrpmcH6eUGVyzRYc16NEM=" }, { "id": "Brazil_Southeast Region_Rio de Janeiro", @@ -1651,8 +1651,8 @@ "Brasil", "Rio de Janeiro" ], - "s": 66157421, - "sha1_base64": "uCOgDsrCJSsnB3Yf9FGIW02m3AA=" + "s": 65646629, + "sha1_base64": "ZdKnLkqE/H4CbYwT9wf3oY/FFNU=" }, { "id": "Brazil_Southeast Region_Sao Paulo_Campinas", @@ -1663,8 +1663,8 @@ "Brasil", "S\u00e3o Paulo" ], - "s": 75443341, - "sha1_base64": "gAH9XVTPnj/gtp24YTGI97x8G30=" + "s": 74909245, + "sha1_base64": "QHlKCwvjmKBwcxMFD8xM9hdLHkI=" }, { "id": "Brazil_Southeast Region_Sao Paulo_City", @@ -1675,8 +1675,8 @@ "Brasil", "S\u00e3o Paulo" ], - "s": 145389949, - "sha1_base64": "wJz8fdOG+n8eOzrhvSOP1GUA7w4=" + "s": 145007101, + "sha1_base64": "PdSu7DGnJUXBmB/+AouP0TjQZD8=" }, { "id": "Brazil_Southeast Region_Sao Paulo_West", @@ -1687,8 +1687,8 @@ "Brasil", "S\u00e3o Paulo" ], - "s": 58036975, - "sha1_base64": "avEquf2NeJEdvLE0oV7uAyTtPFE=" + "s": 58034727, + "sha1_base64": "/5IGN+fxXmqk3rJRaTVUg0CVLWo=" } ] }, @@ -1700,8 +1700,8 @@ "affiliations": [ "Brunei Darussalam" ], - "s": 9044528, - "sha1_base64": "yI5ruAK7apsaWVMogLakZgbaqQw=" + "s": 8910608, + "sha1_base64": "8/77dc6cwdxSIyue82eHY3XArJc=" }, { "id": "Bulgaria", @@ -1714,8 +1714,8 @@ "affiliations": [ "\u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f" ], - "s": 42885635, - "sha1_base64": "HoyhvGInOzlXg5XvJFghuQQwHUA=" + "s": 42623427, + "sha1_base64": "yqSBPsc7+dDgcxdlUVEIG2IHkZg=" }, { "id": "Bulgaria_West", @@ -1725,8 +1725,8 @@ "affiliations": [ "\u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f" ], - "s": 81632214, - "sha1_base64": "Zqo/COuK0N1obbbVBUoFglgDMWU=" + "s": 81324182, + "sha1_base64": "0Ji2GNL431sMjafJo3M06u+xxec=" } ] }, @@ -1751,8 +1751,8 @@ "Sahel", "Sud-Ouest" ], - "s": 69771160, - "sha1_base64": "WACShvY0qkzqiIt8mz/65zNNZbU=" + "s": 69297704, + "sha1_base64": "oje3oskxy9WAIM6Jzx+vj7j0PkI=" }, { "id": "Burundi", @@ -1779,8 +1779,8 @@ "Rutana", "Ruyigi" ], - "s": 38857580, - "sha1_base64": "aH4C51ckMeokYUi96AaIWfbkCfU=" + "s": 38413116, + "sha1_base64": "nzij9Zw2Eb7IbT43IYGhcRktRmU=" }, { "id": "Cambodia", @@ -1815,8 +1815,8 @@ "Tbong Khmum", "\u1796\u17d2\u179a\u17c7\u179a\u17b6\u1787\u17b6\u178e\u17b6\u1785\u1780\u17d2\u179a\u1780\u1798\u17d2\u1796\u17bb\u1787\u17b6 (Cambodia)" ], - "s": 42640335, - "sha1_base64": "AJVhqDk8MQPjR0XE7LnVIjpbKO8=" + "s": 42521263, + "sha1_base64": "cToaqggRO2q5edjlqkvSZBm8ASc=" }, { "id": "Cameroon", @@ -1835,8 +1835,8 @@ "Nord", "Sud" ], - "s": 133222846, - "sha1_base64": "ciLYQwQ3Uz9uiEudXANUeZlx9Qs=" + "s": 133274590, + "sha1_base64": "CFUZgQlFOu7u6NPJBh5B7Zn6FTo=" }, { "id": "Cameroon_West", @@ -1850,8 +1850,8 @@ "Ouest", "Sud-Ouest" ], - "s": 88582933, - "sha1_base64": "0uP8gMKKkbmK6/7A33mopmHJNG4=" + "s": 88642277, + "sha1_base64": "UCE0M+lwym3bUc8YXsPdfQadNVU=" } ] }, @@ -1870,8 +1870,8 @@ "Alberta", "Canada" ], - "s": 83228508, - "sha1_base64": "/RCBE1vB7W8JRkscaE0npabDtR8=" + "s": 83004356, + "sha1_base64": "aYv+N7JfLkK3i1Mjv3tIaBBvKis=" }, { "id": "Canada_Alberta_North", @@ -1882,8 +1882,8 @@ "Alberta", "Canada" ], - "s": 46688183, - "sha1_base64": "yPXxewlDeSfGRCorCApBs90dTkA=" + "s": 46707807, + "sha1_base64": "UUWqHZwKt7BNKIWeYnb7E8CHFRY=" }, { "id": "Canada_Alberta_South", @@ -1894,8 +1894,8 @@ "Alberta", "Canada" ], - "s": 61489438, - "sha1_base64": "H1AMWMCo+LbEuwrj4hJnWQHZgaA=" + "s": 61144462, + "sha1_base64": "NjZhhQumVPCNApsCTT3arxxxi5c=" } ] }, @@ -1911,8 +1911,8 @@ "British Columbia", "Canada" ], - "s": 57608135, - "sha1_base64": "I1zIIU3NcitqlkLWGwfid0fGI34=" + "s": 57597063, + "sha1_base64": "AeBAVNxZJgyyuNpgAc7TknUgdwM=" }, { "id": "Canada_British Columbia_Far_North", @@ -1923,8 +1923,8 @@ "British Columbia", "Canada" ], - "s": 36065892, - "sha1_base64": "IeJSX8z4ciA/W9+Ge0/FkIlip9o=" + "s": 36071284, + "sha1_base64": "XltCGdMFeyF3PgFozo+TSlvr0lY=" }, { "id": "Canada_British Columbia_Islands", @@ -1935,8 +1935,8 @@ "British Columbia", "Canada" ], - "s": 65951073, - "sha1_base64": "l/lJqppQ4w52U4EThLnaVXmnOM0=" + "s": 65829393, + "sha1_base64": "0GHmN+oD9N2O8aLgc0mpCsZ0Fao=" }, { "id": "Canada_British Columbia_North", @@ -1947,8 +1947,8 @@ "British Columbia", "Canada" ], - "s": 58994640, - "sha1_base64": "0K+AiLmoCQHyZ7gybUGnQ9C9/wM=" + "s": 59000296, + "sha1_base64": "nD0FaF7bVEfD2DlCnzvzHhyVwbM=" }, { "id": "Canada_British Columbia_Northeast", @@ -1959,8 +1959,8 @@ "British Columbia", "Canada" ], - "s": 49970844, - "sha1_base64": "rT5BKHzdFU586ZBDEd2qzbQQhSo=" + "s": 49974492, + "sha1_base64": "5dYCrbB3fBROjjufAUvHK2X4Afo=" }, { "id": "Canada_British Columbia_Southeast", @@ -1971,8 +1971,8 @@ "British Columbia", "Canada" ], - "s": 73770626, - "sha1_base64": "kWJ3+9UJlLV3tkMcq5y1y8V88DE=" + "s": 72988306, + "sha1_base64": "wzI8p+BWWitLZQTN5U5qD8DK1bw=" }, { "id": "Canada_British Columbia_Vancouver", @@ -1983,8 +1983,8 @@ "British Columbia", "Canada" ], - "s": 79868251, - "sha1_base64": "IW/2N+9rTaIUeOZcth1nEg8sqxA=" + "s": 79351771, + "sha1_base64": "wUaElqeYXHi+nX9QxEPjymwwFKE=" } ] }, @@ -2001,8 +2001,8 @@ "Newfoundland and Labrador", "\u14c4\u14c7\u1557\u1466 Nunavut" ], - "s": 62455281, - "sha1_base64": "iukSKPDROLC8GoX+zfCxDBX4mK8=" + "s": 62455193, + "sha1_base64": "B97f216bVRxAZadlqZlqEEwgD5A=" }, { "id": "Canada_Labrador_South", @@ -2013,8 +2013,8 @@ "Canada", "Newfoundland and Labrador" ], - "s": 48703687, - "sha1_base64": "X29GXeARiO9CeMIVlx50aGdjWWU=" + "s": 51494463, + "sha1_base64": "7WlEVihw5wNhN7zh9rXXITP5ApA=" }, { "id": "Canada_Labrador_West", @@ -2025,8 +2025,8 @@ "Canada", "Newfoundland and Labrador" ], - "s": 57228891, - "sha1_base64": "tbb67VN9VIP24152yFhIfqFODhg=" + "s": 57208443, + "sha1_base64": "qQNMOuHasWKZMEk1jE9hXoWSLQw=" } ] }, @@ -2044,8 +2044,8 @@ "Manitoba", "\u14c4\u14c7\u1557\u1466 Nunavut" ], - "s": 61285408, - "sha1_base64": "7tIaUHkVMusa4DUVROIb6FAo77E=" + "s": 61221120, + "sha1_base64": "eF7Y65+KNiNjSL29RQ+bwZJmnYg=" }, { "id": "Canada_Manitoba_Northwest", @@ -2056,8 +2056,8 @@ "Canada", "Manitoba" ], - "s": 51261885, - "sha1_base64": "qQRkdhpLrHMrtiOjaq+SJTA8bWg=" + "s": 51249021, + "sha1_base64": "Lbtkb5P+0QMD+pSWYvOUH7a0IUo=" }, { "id": "Canada_Manitoba_South", @@ -2068,8 +2068,8 @@ "Canada", "Manitoba" ], - "s": 48800063, - "sha1_base64": "7uVuPJS/HbwQ70eSa29Nvt40LhM=" + "s": 48662983, + "sha1_base64": "awB6dO6z3QPF1iABf+lkRtnJsoE=" }, { "id": "Canada_Manitoba_Winnipeg", @@ -2080,8 +2080,8 @@ "Canada", "Manitoba" ], - "s": 40287568, - "sha1_base64": "QSY5HZj4/ptXeSF3+iSpmejFDS0=" + "s": 40187800, + "sha1_base64": "ntAF4ECL6VTzeLMvdj7a9F47eqI=" } ] }, @@ -2096,8 +2096,8 @@ "New Brunswick", "Oromocto Indian Reserve NO. 26" ], - "s": 60704665, - "sha1_base64": "yCkQb/swL0yhAEkpEJgB83tCxrA=" + "s": 62630305, + "sha1_base64": "zypwIgeDLPi6qAQgqBVY4DgAy70=" }, { "id": "Canada_Newfoundland", @@ -2111,8 +2111,8 @@ "Canada", "Newfoundland and Labrador" ], - "s": 25662605, - "sha1_base64": "Vi0eSd/QTZQMG4uW4Qg36QVXlvM=" + "s": 25403837, + "sha1_base64": "7heB0819cHeSb6KNq2RLLlF8Hx0=" }, { "id": "Canada_Newfoundland_North", @@ -2123,8 +2123,8 @@ "Canada", "Newfoundland and Labrador" ], - "s": 32984779, - "sha1_base64": "5eNVWtOGSdxS2bGQ+WyBd8zQpwA=" + "s": 34946539, + "sha1_base64": "kU4ok6oBvm9F1tdg/YVJWWcDOZg=" }, { "id": "Canada_Newfoundland_South", @@ -2138,8 +2138,8 @@ "Newfoundland and Labrador", "\u00cele Verte" ], - "s": 25159049, - "sha1_base64": "Xz/0oZpbfyY0rRUkQyc5xoAcCFw=" + "s": 25112113, + "sha1_base64": "VRd+M/HcF+pNgd+UwhHoAXQoD3Q=" }, { "id": "Canada_Newfoundland_West", @@ -2150,8 +2150,8 @@ "Canada", "Newfoundland and Labrador" ], - "s": 26169210, - "sha1_base64": "nhTxiPa2kPe7/WOjQodmRWT64fc=" + "s": 28168946, + "sha1_base64": "41g4byEqe3XhazKe3JlLXsfr+n0=" } ] }, @@ -2167,8 +2167,8 @@ "Canada", "Northwest Territories" ], - "s": 20168083, - "sha1_base64": "uTQtaN3yt3V8asIPjBB6zvzZc08=" + "s": 20135571, + "sha1_base64": "rvhh1g7e+Nx4D2eBej2XYg6DETM=" }, { "id": "Canada_Northwest Territories_North", @@ -2179,8 +2179,8 @@ "Canada", "Northwest Territories" ], - "s": 39377052, - "sha1_base64": "JWIMEzW/kbMljTzcneX5zWcBj+8=" + "s": 39284020, + "sha1_base64": "KOaM2ExNEhwdDrnS8Ztlh9lL3vA=" }, { "id": "Canada_Northwest Territories_Yellowknife", @@ -2191,8 +2191,8 @@ "Canada", "Northwest Territories" ], - "s": 62986822, - "sha1_base64": "0QdgBGg0xJx6VJCHMWNjapYnpfk=" + "s": 62905637, + "sha1_base64": "+upp8Gc2Owx+a3RDYL1UpHdqPak=" } ] }, @@ -2208,8 +2208,8 @@ "Canada", "Nova Scotia" ], - "s": 59873199, - "sha1_base64": "vOmH2stDgIGTzUTUIlKPB1IA/QQ=" + "s": 62433031, + "sha1_base64": "obitibdj8Fzxu4KUghLd8srRdqQ=" }, { "id": "Canada_Nova Scotia_Sydney", @@ -2221,8 +2221,8 @@ "Nova Scotia", "Prince Edward Island" ], - "s": 28832756, - "sha1_base64": "3DdrJUiEbxLtXKhuZgW5kcfCX4A=" + "s": 30788292, + "sha1_base64": "2M4CELpE5BhHejrvBTElJ+Zsjvo=" } ] }, @@ -2238,8 +2238,8 @@ "Canada", "\u14c4\u14c7\u1557\u1466 Nunavut" ], - "s": 37858883, - "sha1_base64": "sFti4oihSSOiqAgjPSlbD+9PCbk=" + "s": 37906715, + "sha1_base64": "Igz5JkbwKNsTp+OCGxlE9oCuPCo=" }, { "id": "Canada_Nunavut_South", @@ -2250,8 +2250,8 @@ "Canada", "\u14c4\u14c7\u1557\u1466 Nunavut" ], - "s": 79459902, - "sha1_base64": "m7yrlMNT81Li53/vQznxMYPm2gw=" + "s": 79006950, + "sha1_base64": "87ubjMVNOw1GJIadEbHn9wwhzgk=" } ] }, @@ -2267,8 +2267,8 @@ "Canada", "Ontario" ], - "s": 63305952, - "sha1_base64": "o91TdQqgceKQq+gIqVlhcvvrX38=" + "s": 63258464, + "sha1_base64": "1vH8DniASzXDtEs843pSUF4weUE=" }, { "id": "Canada_Ontario_Kingston", @@ -2279,8 +2279,8 @@ "Canada", "Ontario" ], - "s": 103252196, - "sha1_base64": "5X4FwyRRqJQGuXkN0U2aRTZ6YdM=" + "s": 102786012, + "sha1_base64": "JY34A3AJuHU55mU10y2/kDxyJ5A=" }, { "id": "Canada_Ontario_London", @@ -2291,8 +2291,8 @@ "Canada", "Ontario" ], - "s": 76762931, - "sha1_base64": "uJLk67udaJZ793X8LR6v9j2KjUE=" + "s": 76511195, + "sha1_base64": "HMjEhOjLfwac0lUtTdzPr16YXmw=" }, { "id": "Canada_Ontario_Northeastern_Central", @@ -2303,8 +2303,8 @@ "Canada", "Ontario" ], - "s": 36430997, - "sha1_base64": "rUsNyjobJKGmrdZzN1oUoCU3+SI=" + "s": 36407709, + "sha1_base64": "zkwnjJlaMBc+HK6FMd0KHF7fOmU=" }, { "id": "Canada_Ontario_Northeastern_North", @@ -2317,8 +2317,8 @@ "Ontario", "\u14c4\u14c7\u1557\u1466 Nunavut" ], - "s": 46802712, - "sha1_base64": "gfpPUn6K3HndN1i2Yy19OjReino=" + "s": 46802392, + "sha1_base64": "sM4t2kLjiJTYtv8RPzUrmPAxC50=" }, { "id": "Canada_Ontario_Northeastern_S", @@ -2329,8 +2329,8 @@ "Canada", "Ontario" ], - "s": 43431980, - "sha1_base64": "CQb1REbSJddlKx7Dl46mlFfatp0=" + "s": 43391708, + "sha1_base64": "uNyHWupVJ/KGoG8bsgsWhZ/bZxY=" }, { "id": "Canada_Ontario_Northeastern_SE", @@ -2341,8 +2341,8 @@ "Canada", "Ontario" ], - "s": 29042692, - "sha1_base64": "UffwlW76gzCW3Zh+hIV97SXUhww=" + "s": 28986292, + "sha1_base64": "JpF4fOJQQiMxYvDGIbDmmiiprFI=" }, { "id": "Canada_Ontario_Northeastern_SW", @@ -2353,8 +2353,8 @@ "Canada", "Ontario" ], - "s": 48466092, - "sha1_base64": "IP00jTZ0gvZCewfDgXnr3Q10ymc=" + "s": 47369180, + "sha1_base64": "J96C1agGqCIF5wVmTcdib2AoOXk=" }, { "id": "Canada_Ontario_Northeastern_Wawa", @@ -2365,8 +2365,8 @@ "Canada", "Ontario" ], - "s": 32703098, - "sha1_base64": "HB4j++r2Y60E9UgcP0cKPkJNKYg=" + "s": 31539538, + "sha1_base64": "3yW4KY9MvgwoO9j41Wc26Fb1dDs=" }, { "id": "Canada_Ontario_Northern", @@ -2377,8 +2377,8 @@ "Canada", "Ontario" ], - "s": 48419877, - "sha1_base64": "3Cwk1PEi3pn+Do28LSvVzvZpSEo=" + "s": 47360573, + "sha1_base64": "kbb+01W9CZRY2ZyR+7/jYA4H1qs=" }, { "id": "Canada_Ontario_Northwestern", @@ -2392,8 +2392,8 @@ "Ontario", "\u14c4\u14c7\u1557\u1466 Nunavut" ], - "s": 127619840, - "sha1_base64": "mTh4EvxWBWjSWrystZa9mkfIIY8=" + "s": 127729736, + "sha1_base64": "WgVLQsZ1Met/ue3rhN1uvxKA+uo=" }, { "id": "Canada_Ontario_Toronto", @@ -2404,8 +2404,8 @@ "Canada", "Ontario" ], - "s": 97168900, - "sha1_base64": "OEvqgotUt6VENvE+hqXoZ3zqBTk=" + "s": 96654388, + "sha1_base64": "zk2k6W045arkYAAoK2NzsHs+T1g=" } ] }, @@ -2418,8 +2418,8 @@ "Canada", "Prince Edward Island" ], - "s": 10617577, - "sha1_base64": "ToEycL8DdlDa03nHvrBbMR0knGs=" + "s": 12621777, + "sha1_base64": "uu8WScSxoKhJATjzt1sQVtYb1P0=" }, { "id": "Canada_Quebec", @@ -2433,8 +2433,8 @@ "Canada", "Qu\u00e9bec" ], - "s": 67187911, - "sha1_base64": "Hl1CF3Q8pMcyQUWm/+hhp74fly4=" + "s": 66918047, + "sha1_base64": "qJTelzLdAbe3FBzDnGbJO3pumlA=" }, { "id": "Canada_Quebek_Far North", @@ -2448,8 +2448,8 @@ "Qu\u00e9bec", "\u14c4\u14c7\u1557\u1466 Nunavut" ], - "s": 67521403, - "sha1_base64": "HW2QRVV49s4SeAcTepANrYe1G54=" + "s": 67214187, + "sha1_base64": "OvZ6bYTRXbtqoiDBPxmuDd/nhfM=" }, { "id": "Canada_Quebek_Montreal", @@ -2460,8 +2460,8 @@ "Canada", "Qu\u00e9bec" ], - "s": 56225116, - "sha1_base64": "5bR5MrKkVP/AeAi84gDkeC+m3xk=" + "s": 55265340, + "sha1_base64": "IJicXUMaH4Xn6XCECYrKY2EMUT0=" }, { "id": "Canada_Quebek_Lachute", @@ -2472,8 +2472,8 @@ "Canada", "Qu\u00e9bec" ], - "s": 50974002, - "sha1_base64": "mvSKbofDJkqEGDWXhFWwMa2bei4=" + "s": 50901474, + "sha1_base64": "PXa2g/EThOJnlUHauzTrMUJNRF0=" }, { "id": "Canada_Quebek_North", @@ -2484,8 +2484,8 @@ "Canada", "Qu\u00e9bec" ], - "s": 86765599, - "sha1_base64": "Dia56Ac30u/WPeHK6gTDf6Qi5B0=" + "s": 88794807, + "sha1_base64": "3bkfcIr03cNzU04PgDsutiwaRl0=" }, { "id": "Canada_Quebek_Southeast_Rimouski", @@ -2496,8 +2496,8 @@ "Canada", "Qu\u00e9bec" ], - "s": 30823302, - "sha1_base64": "ul7UPTD84kTH8/7M33038g2udpk=" + "s": 32896406, + "sha1_base64": "SF7GEEMEgUvX+NhioYAylmvQy0s=" }, { "id": "Canada_Quebek_Southeast_Saguenay", @@ -2508,8 +2508,8 @@ "Canada", "Qu\u00e9bec" ], - "s": 63429863, - "sha1_base64": "iU99MUhWKAbMRWtasggdJ80qdHA=" + "s": 63538095, + "sha1_base64": "dJr5VOYbHoj3Pjc51p7kSPIHduY=" }, { "id": "Canada_Quebek_West_Chibougamau", @@ -2520,8 +2520,8 @@ "Canada", "Qu\u00e9bec" ], - "s": 63508189, - "sha1_base64": "m197RVcafd/SoTpn3IOiwoA8pVo=" + "s": 63487685, + "sha1_base64": "Qc9zukeRgbdGG04EUNv4acTTH+0=" }, { "id": "Canada_Quebek_West_Rouyn-Noranda", @@ -2532,8 +2532,8 @@ "Canada", "Qu\u00e9bec" ], - "s": 56452647, - "sha1_base64": "ek1xU5QNBbkjPd8P7HAEmJJsXm0=" + "s": 56443895, + "sha1_base64": "vu4uMdRsRqnzHUsIGkKmGbTUH5I=" } ] }, @@ -2549,8 +2549,8 @@ "Canada", "Saskatchewan" ], - "s": 64683248, - "sha1_base64": "6mok9fQsUzUOOQiQOcuhUW6NmQM=" + "s": 64629304, + "sha1_base64": "2ZdE9tP2OppU/of30/5fux3THgY=" }, { "id": "Canada_Saskatchewan_Saskatoon", @@ -2561,8 +2561,8 @@ "Canada", "Saskatchewan" ], - "s": 40196055, - "sha1_base64": "/VrAjj4R747cNM9iijM126uYJps=" + "s": 40186031, + "sha1_base64": "0AO2NQm35pvK7FSa+aa49IikgWU=" }, { "id": "Canada_Saskatchewan_Regina", @@ -2573,8 +2573,8 @@ "Canada", "Saskatchewan" ], - "s": 51717387, - "sha1_base64": "ZzxSB2JSWtdTSXqko8SZMv4uTKM=" + "s": 51651475, + "sha1_base64": "su3IldPiFn/CBBeHiB1q+fwvlw4=" } ] }, @@ -2590,8 +2590,8 @@ "Canada", "Yukon" ], - "s": 48655370, - "sha1_base64": "XWz7hP4sPoAh+fE/qxw1PSLBZY8=" + "s": 48635498, + "sha1_base64": "iVwWp88tD4LlAyBkK3z4qbpD/+c=" }, { "id": "Canada_Yukon_Whitehorse", @@ -2602,8 +2602,8 @@ "Canada", "Yukon" ], - "s": 53198693, - "sha1_base64": "TIpRmWrDYOgA8xfv0DrBzk9hzZc=" + "s": 53215189, + "sha1_base64": "xVvyTOoyXlBFNUYA46kggMN92RE=" } ] } @@ -2620,8 +2620,8 @@ "country_name_synonyms": [ "Cabo Verde" ], - "s": 12543199, - "sha1_base64": "20WROzCHj2/yMYzSnhAmen5GZo4=" + "s": 12440975, + "sha1_base64": "CeVi+mn2QKbwZSo5Vek/1qBsdiY=" }, { "id": "Cayman Islands", @@ -2631,8 +2631,8 @@ "affiliations": [ "Cayman Islands" ], - "s": 900908, - "sha1_base64": "r/gyrupk+VMAMsbB5HUv419WowA=" + "s": 899676, + "sha1_base64": "CiYoap3kp/j7fr8xjoH1mMI7yNM=" }, { "id": "Central African Republic", @@ -2658,8 +2658,8 @@ "Sangha-Mba\u00e9r\u00e9", "Vakaga" ], - "s": 91961341, - "sha1_base64": "2ubJrMUja5j+6eNewg5u+COi6zU=" + "s": 89108765, + "sha1_base64": "oa+oEUa+GiOLYi8tu32Y8h4bfmE=" }, { "id": "Chad", @@ -2691,8 +2691,8 @@ "Tibesti Region", "Wadi Fira Region" ], - "s": 58378095, - "sha1_base64": "R2dbgC8p6MmkYhN8aGCEBedhMeY=" + "s": 58152103, + "sha1_base64": "Uqk7JpCzx21C2zxM8vn6tPdXZfA=" }, { "id": "Colombia", @@ -2717,8 +2717,8 @@ "Santander", "Sucre" ], - "s": 90443373, - "sha1_base64": "R5MqcyZ18f1yC5KQbFgDvF5t9PA=" + "s": 88057365, + "sha1_base64": "asfKzlLdd6GvXwdY0h+HSKf/FNE=" }, { "id": "Colombia_West", @@ -2741,8 +2741,8 @@ "Tolima", "Valle del Cauca" ], - "s": 90940863, - "sha1_base64": "r6CuOxGsp83vuuymXJYAEmQbDqQ=" + "s": 89887743, + "sha1_base64": "xDiSQw+Ana+xb9S8ITrs/3fbhmk=" }, { "id": "Colombia_East", @@ -2762,8 +2762,8 @@ "Vaup\u00e9s", "Vichada" ], - "s": 26671666, - "sha1_base64": "nXnTc6wa7qMlN+6Xult2Nyf1Xvo=" + "s": 26727946, + "sha1_base64": "qCo7SMeALWVzuTi4mZek7JoNOTo=" } ] }, @@ -2778,8 +2778,8 @@ "Mwali", "Nzwani / \u0623\u0646\u062c\u0648\u0627\u0646" ], - "s": 4584922, - "sha1_base64": "TGMZlAzeMgEgjv4p8vBViVP6yCY=" + "s": 4544690, + "sha1_base64": "qPOMaLBo4BzGdIkLB3d9NDBR4io=" }, { "id": "Congo-Brazzaville", @@ -2804,8 +2804,8 @@ "country_name_synonyms": [ "Republic of the Congo" ], - "s": 27351676, - "sha1_base64": "lNEa0twlPW29glFQyo82VAKF6wM=" + "s": 27218460, + "sha1_base64": "dwfU1keqwpbizCLqJT/Lk0rT7g8=" }, { "id": "Congo-Kinshasa", @@ -2845,8 +2845,8 @@ "Tshuapa", "\u00c9quateur" ], - "s": 184510434, - "sha1_base64": "7x98bz1DjYPhU1PZemDy6SI2Rt8=" + "s": 180425794, + "sha1_base64": "NTAiiQH9J2jcKJytc6QHpeML5kg=" }, { "id": "Congo-Kinshasa_Kivu", @@ -2858,8 +2858,8 @@ "Nord-Kivu", "Sud-Kivu" ], - "s": 127415023, - "sha1_base64": "AbEdaT4k/6+M5zpNFa7w1pGGR1A=" + "s": 124700311, + "sha1_base64": "U40BUO2Q6HDTWw1+5a6AbJm21AQ=" } ] }, @@ -2871,8 +2871,8 @@ "affiliations": [ "Cook Islands" ], - "s": 1207626, - "sha1_base64": "iEzYhQebbwWOZVgjKeLbehR19tw=" + "s": 1207658, + "sha1_base64": "XeoVijnHlVMoEnD7PVklCKt46m0=" }, { "id": "Costa Rica", @@ -2891,8 +2891,8 @@ "Puntarenas", "San Jos\u00e9" ], - "s": 38590201, - "sha1_base64": "MACuN+2r7c67h1Xlf9cWbXwolUs=" + "s": 37421505, + "sha1_base64": "l/SdCnkFGO6JQ8ZjkuawI1Nhzls=" }, { "id": "Croatia", @@ -2905,8 +2905,8 @@ "affiliations": [ "Hrvatska" ], - "s": 70317077, - "sha1_base64": "0eLYrCmFEHCaVGyutQ8ftHSqi9U=" + "s": 69876565, + "sha1_base64": "bGc14rZqbIOMOnFhb8QtytewHdU=" }, { "id": "Croatia_West", @@ -2917,8 +2917,8 @@ "Hrvatska", "Italia" ], - "s": 68628286, - "sha1_base64": "J/kQGjlhfvnmGqJkIx/BgQ8gNNQ=" + "s": 68327150, + "sha1_base64": "+ZMSBG3F6Xcj/gR+KA1B29GFvU0=" } ] }, @@ -2944,8 +2944,8 @@ "Santiago de Cuba", "Villa Clara" ], - "s": 56584378, - "sha1_base64": "wsiz9dHsL332DQgDj5JlyuvG6tQ=" + "s": 56260090, + "sha1_base64": "peu87NeQjVd4PbjQyDFdODTzK5s=" }, { "id": "Cyprus", @@ -2956,8 +2956,8 @@ "British Sovereign Base Areas", "\u039a\u03cd\u03c0\u03c1\u03bf\u03c2 - K\u0131br\u0131s" ], - "s": 26436043, - "sha1_base64": "2qS82x1qPgR/upYoP198KuaX5o8=" + "s": 26159547, + "sha1_base64": "WCz86sJvO0lDSdjL3V8r578xMAM=" }, { "id": "Czech Republic", @@ -2974,8 +2974,8 @@ "Praha", "\u010cesko" ], - "s": 25854293, - "sha1_base64": "dPhuORb5FF5LGmWY00/Rs0cXoHY=" + "s": 25753613, + "sha1_base64": "PuBSWwhl9zkUWWhmnF6GBdBTlMU=" }, { "id": "Czech_Severovychod_Pardubicky kraj", @@ -2986,8 +2986,8 @@ "Severov\u00fdchod", "\u010cesko" ], - "s": 38589104, - "sha1_base64": "RK5NPg8ofL5BT6d4A+w/ZntxAn0=" + "s": 38361272, + "sha1_base64": "azf1CFYjXfQ+n/ak9Zn6l8yl6mU=" }, { "id": "Czech_Karlovasky kraj", @@ -2998,8 +2998,8 @@ "Severoz\u00e1pad", "\u010cesko" ], - "s": 21743813, - "sha1_base64": "xt39IcM8OaHeVJCOO5UcsKFoeUk=" + "s": 21652381, + "sha1_base64": "MyDXuvO/S+G/ywrykS534XhxMmg=" }, { "id": "Czech_Ustecky kraj", @@ -3010,8 +3010,8 @@ "Severoz\u00e1pad", "\u010cesko" ], - "s": 47601820, - "sha1_base64": "lkr7CU+zDr1dSbZeczpYcQyyuQw=" + "s": 47445380, + "sha1_base64": "G+buKKZWh9VDwqFxHNAFl9Dgez4=" }, { "id": "Czech_Jihozapad_Plzensky kraj", @@ -3022,8 +3022,8 @@ "Jihoz\u00e1pad", "\u010cesko" ], - "s": 51203739, - "sha1_base64": "5Xl7jfYGVj9hdIhlnqQ5aOuOtcE=" + "s": 51001562, + "sha1_base64": "VoTmQ9B0YfziJaAvC4h2RZoF9gc=" }, { "id": "Czech_Severovychod_Kralovehradecky kraj", @@ -3034,8 +3034,8 @@ "Severov\u00fdchod", "\u010cesko" ], - "s": 41373425, - "sha1_base64": "SR9B0o7Z4Ib76iXcTCfeSWTmGso=" + "s": 40965872, + "sha1_base64": "vBSUXpuY7UeJ+hPlNFV/4Xs/QHQ=" }, { "id": "Czech_Olomoucky kraj", @@ -3046,8 +3046,8 @@ "St\u0159edn\u00ed Morava", "\u010cesko" ], - "s": 44411137, - "sha1_base64": "8QGm+xh0yIdxqCWf75xhocy3LpU=" + "s": 44206985, + "sha1_base64": "ypTcZM4OkRaS9V6U5AanpqpR++U=" }, { "id": "Czech_Zlinsky Kraj", @@ -3058,8 +3058,8 @@ "St\u0159edn\u00ed Morava", "\u010cesko" ], - "s": 37651319, - "sha1_base64": "+cKjFFBYmF8fJo/igIgWsghUHBE=" + "s": 37484159, + "sha1_base64": "M9jm3XNdcBMKWxiD9bUCPbMfisM=" }, { "id": "Czech_Stredni Cechy_East", @@ -3070,8 +3070,8 @@ "St\u0159edn\u00ed \u010cechy", "\u010cesko" ], - "s": 55588060, - "sha1_base64": "vq8gK82pX43G1Eaid0Bv3lrSEtk=" + "s": 55412348, + "sha1_base64": "T64Wdq/z/dCLXnbWdrB5RjcKEIo=" }, { "id": "Czech_Jihozapad_Jihocesky kraj", @@ -3082,8 +3082,8 @@ "Jihoz\u00e1pad", "\u010cesko" ], - "s": 70658373, - "sha1_base64": "TrDa1ekc5qD3yaCQlbkrP8/k6jk=" + "s": 70379517, + "sha1_base64": "1rwlEqp1STKLnexXFceQwBlDCds=" }, { "id": "Czech_Jihovychod_Kraj Vysocina", @@ -3094,8 +3094,8 @@ "Jihov\u00fdchod", "\u010cesko" ], - "s": 52709946, - "sha1_base64": "Rp+ORZOKZ5ppGfTivMOLxkPZOAQ=" + "s": 52606210, + "sha1_base64": "C7h4tPyVUQYblwgsYvk8BUDgvfo=" }, { "id": "Czech_Severovychod_Liberecky kraj", @@ -3106,8 +3106,8 @@ "Severov\u00fdchod", "\u010cesko" ], - "s": 33559631, - "sha1_base64": "y4N/f/M2TF+NHDTnQQRiJlS688s=" + "s": 33540678, + "sha1_base64": "2bJvGPfVznz8gT1nngcvH+ku1zY=" }, { "id": "Czech_Stredni Cechy_West", @@ -3118,8 +3118,8 @@ "St\u0159edn\u00ed \u010cechy", "\u010cesko" ], - "s": 48401170, - "sha1_base64": "DD02DqDK4NMqP5L5Pc5YpIett5I=" + "s": 48239106, + "sha1_base64": "fhj9TsJ2jYsjhLLa4wkU0vSXhIc=" }, { "id": "Czech_Moravskoslezsko", @@ -3130,8 +3130,8 @@ "Moravskoslezsko", "\u010cesko" ], - "s": 56491982, - "sha1_base64": "7eYZR3uzdnVSzLjY5xYNtatme44=" + "s": 56163182, + "sha1_base64": "fwaatXVVtR5JAhygSW8B/ICDhso=" }, { "id": "Czech_Jihovychod_Jihomoravsky kraj", @@ -3142,8 +3142,8 @@ "Jihov\u00fdchod", "\u010cesko" ], - "s": 70754838, - "sha1_base64": "VsCpfJqNRvF4IW4hHpS9QToGgfE=" + "s": 70534886, + "sha1_base64": "fsnN+zQUZaSdxXhA8lvgpBA+RrM=" } ] }, @@ -3173,8 +3173,8 @@ "C\u00f4te d'Ivoire", "Ivory Coast" ], - "s": 45466633, - "sha1_base64": "vXQzg6emXL/pDKuvCKKKzJ1BhOg=" + "s": 45107081, + "sha1_base64": "w3InCOOs5olzt3iN8GbxuppNLzE=" }, { "id": "Denmark", @@ -3188,8 +3188,8 @@ "Danmark", "Region Nordjylland" ], - "s": 46651184, - "sha1_base64": "m5scsd4wg7Y1KigR274suwsiPQw=" + "s": 46297520, + "sha1_base64": "M18zQIiUDAYfCBVmSou2CrtGnmo=" }, { "id": "Denmark_Central Denmark Region", @@ -3200,8 +3200,8 @@ "Danmark", "Region Midtjylland" ], - "s": 90386805, - "sha1_base64": "RBCEjnHu9zS2N0sFG6K5cq/3G+s=" + "s": 88974725, + "sha1_base64": "73WoRJRG4D2zYZK/rD0c6Rk3lPU=" }, { "id": "Denmark_Capital Region of Denmark", @@ -3213,8 +3213,8 @@ "Region Hovedstaden", "Territorial waters of Bornholm" ], - "s": 60221095, - "sha1_base64": "n4DTNFL2eKyzMw3DkXrYPhiS8ZM=" + "s": 59987935, + "sha1_base64": "j8F+IA3OL0BJNpSnWPGi1BrMq3U=" }, { "id": "Denmark_Region Zealand", @@ -3225,8 +3225,8 @@ "Danmark", "Region Sj\u00e6lland" ], - "s": 61675331, - "sha1_base64": "b1kZimTnzdBvYXLTo7vyBaQWoN0=" + "s": 61589299, + "sha1_base64": "Lucxl39pNDN2uTUa7Ct4H8GudcE=" }, { "id": "Denmark_Region of Southern Denmark", @@ -3237,8 +3237,8 @@ "Danmark", "Region Syddanmark" ], - "s": 89705189, - "sha1_base64": "Lb4bkJQfKVtAWwJWsmJdC+Bch7Q=" + "s": 89413037, + "sha1_base64": "vfBFg0LQN6r0VkzaOtKureErIsE=" } ] }, @@ -3256,8 +3256,8 @@ "Obock", "Tadjourah" ], - "s": 10971455, - "sha1_base64": "HY2IRQxDolK6oW1Ug97+LyLy1sw=" + "s": 10954231, + "sha1_base64": "c4ndFfDL/uJ7M2d7nX8UZTLoQhU=" }, { "id": "Dominican Republic", @@ -3299,8 +3299,8 @@ "S\u00e1nchez Ram\u00edrez", "Valverde" ], - "s": 30515717, - "sha1_base64": "LGrH2nGBIUT8WbLi/oRoa6z/Nx0=" + "s": 30401581, + "sha1_base64": "e5mRx9yhcYwMgCRDw4O0H95QubM=" }, { "id": "East Timor", @@ -3326,8 +3326,8 @@ "Tim\u00f3r Loro Sa'e", "Viqueque" ], - "s": 9899048, - "sha1_base64": "1bTclvnXRpQpxr2t4e8UOgW2Y/0=" + "s": 9885216, + "sha1_base64": "FwfGbVDx2yrajJY+1a1cmbBLaIM=" }, { "id": "Chile", @@ -3337,8 +3337,8 @@ "affiliations": [ "Acuerdo de Campos de Hielo" ], - "s": 7276172, - "sha1_base64": "KaWTWHwhvI5AaGfdX5A+Pn/SXPo=" + "s": 7276164, + "sha1_base64": "Q4qkmuRt9knv6rkoswDihqN6Dds=" }, { "id": "Chile_Central", @@ -3355,8 +3355,8 @@ "VI Regi\u00f3n del Libertador General Bernardo O'Higgins", "VII Regi\u00f3n del Maule" ], - "s": 82140086, - "sha1_base64": "q2ZqHLs2fQzAZt17gkQrK9392Jc=" + "s": 81432461, + "sha1_base64": "w+WM42EBeb2FcL2XeLBKXIl/Zn4=" }, { "id": "Chile_North", @@ -3372,8 +3372,8 @@ "V Regi\u00f3n de Valpara\u00edso", "XV Regi\u00f3n de Arica y Parinacota" ], - "s": 36017425, - "sha1_base64": "6MMPj/gHOO4AhM4tYRYyPIj4eOo=" + "s": 35928681, + "sha1_base64": "VsKAdjyV8xS/rnx2YGPFpCUbja4=" }, { "id": "Chile_South", @@ -3389,8 +3389,8 @@ "XII Regi\u00f3n de Magallanes y de la Ant\u00e1rtica Chilena", "XIV Regi\u00f3n de Los R\u00edos" ], - "s": 144065564, - "sha1_base64": "A33z2UZrGFVjARaEJ7fbzPed8P8=" + "s": 143462660, + "sha1_base64": "99I45WeIfgFL8Oq3rmLlNTLoImw=" } ] }, @@ -3420,8 +3420,8 @@ "Tungurahua", "Zamora Chinchipe" ], - "s": 42687403, - "sha1_base64": "zktB7X/9jI8NjMTVVreH+/+LqeY=" + "s": 42409762, + "sha1_base64": "rXR4HosCaHht3Gzr36ryLsafd1I=" }, { "id": "Ecuador_West", @@ -3448,8 +3448,8 @@ "Santa Elena", "Santo Domingo de los Ts\u00e1chilas" ], - "s": 63413508, - "sha1_base64": "us/LE0vCL/K3FW8Yn2ALkiNY1e4=" + "s": 63283756, + "sha1_base64": "TbFFja0LScr20xbXczyaBM0klqg=" } ] }, @@ -3487,8 +3487,8 @@ "\u200f\u0627\u0644\u0628\u062d\u064a\u0631\u0629\u200e", "\u0627\u0644\u0625\u0633\u0643\u0646\u062f\u0631\u064a\u0629" ], - "s": 218457660, - "sha1_base64": "itffRQ/fW2H+p4nPHR0t+E/1rYo=" + "s": 216485172, + "sha1_base64": "l6wBviKUg3MB7gVODRDRP9JaiXU=" }, { "id": "El Salvador", @@ -3512,8 +3512,8 @@ "Departemento de Chalatenango", "El Salvador" ], - "s": 19473029, - "sha1_base64": "l9nAvB9p0ACS/AGCkAa4n567J9s=" + "s": 19241181, + "sha1_base64": "YlYoseCqOGWLEB5QqWJrryo4XtY=" }, { "id": "Equatorial Guinea", @@ -3530,8 +3530,8 @@ "Litoral", "Wele-Nzas" ], - "s": 9796999, - "sha1_base64": "cQw12VxWY8xfA74KPA3el1yAC44=" + "s": 9753727, + "sha1_base64": "gg4FAluzfK6erRN75MN+rma7mHM=" }, { "id": "Eritrea", @@ -3547,8 +3547,8 @@ "\u12de\u1263 \u12d3\u1295\u1230\u1263", "\u130b\u123d-\u1263\u122d\u12ab" ], - "s": 21765658, - "sha1_base64": "7pNi0eXtACAPb/gsc/8cwfiO4dM=" + "s": 21589450, + "sha1_base64": "cSHixtar90lW9wVQihCK0hiVGdI=" }, { "id": "Estonia", @@ -3561,8 +3561,8 @@ "affiliations": [ "Eesti" ], - "s": 48408113, - "sha1_base64": "cFq6+Iy4sjMjsy/14LDf6huWxac=" + "s": 48105065, + "sha1_base64": "UU8aWJ0Z4BCcqeEgP75s9ejUjj0=" }, { "id": "Estonia_East", @@ -3572,8 +3572,8 @@ "affiliations": [ "Eesti" ], - "s": 59844884, - "sha1_base64": "TQAzbdpcdk9ClzHjsYc22WSgd9E=" + "s": 59733044, + "sha1_base64": "EwcjwStXUtTu3rC0U0uJ7iYJLak=" } ] }, @@ -3598,8 +3598,8 @@ "Tigray", "\u12a2\u1275\u12ee\u1335\u12eb Ethiopia" ], - "s": 82797169, - "sha1_base64": "8rEEoUa/Bxp7+Owwdbs8AdDeh5Y=" + "s": 81333041, + "sha1_base64": "X8VI9AQw7TjkZ0EvNlql5YRlxBc=" }, { "id": "Faroe Islands", @@ -3616,8 +3616,8 @@ "Territorial waters of Faroe Islands", "V\u00e1ga s\u00fdsla" ], - "s": 7974798, - "sha1_base64": "ed0LLdIVRZdS0u8f2Qn/bEJJKDM=" + "s": 7964358, + "sha1_base64": "Zqee8mJGhPiA1ewVbtA5ftK0yY0=" }, { "id": "Federated States of Micronesia", @@ -3632,8 +3632,8 @@ "Pohnpei", "Yap" ], - "s": 2056700, - "sha1_base64": "rev1ltNp0dPxCbWyd6iB4uYgDNQ=" + "s": 2054532, + "sha1_base64": "u1P66l88o3lJLmPKL6tG9Hl3zOQ=" }, { "id": "Fiji", @@ -3646,8 +3646,8 @@ "Northern", "Viti" ], - "s": 17551096, - "sha1_base64": "JyD70qF5ABAvM3/taIdUHkUQak8=" + "s": 17285536, + "sha1_base64": "29bkRqA+f4pZel6SMhz9inM3i98=" }, { "id": "Finland", @@ -3661,8 +3661,8 @@ "L\u00e4nsi-Suomi", "Suomi" ], - "s": 44645024, - "sha1_base64": "nLd+WCuRvsqvqRAN/NCODNvlPTo=" + "s": 44456424, + "sha1_base64": "yS1An/kylliC5t9vJ2BotGqjoAY=" }, { "id": "Finland_Western Finland_Tampere", @@ -3673,8 +3673,8 @@ "L\u00e4nsi-Suomi", "Suomi" ], - "s": 73022144, - "sha1_base64": "TKYkDPj0kUWJuwt8qXwSwaPRZnA=" + "s": 72692392, + "sha1_base64": "af91Ad47aTOBGHnrNRombAHRgWY=" }, { "id": "Finland_Northern Finland", @@ -3685,8 +3685,8 @@ "Pohjois-Suomi", "Suomi" ], - "s": 95125968, - "sha1_base64": "9gvazbso9ITqO8+iSJltsf11lB8=" + "s": 94382736, + "sha1_base64": "5RPSpxQcxJ86pplL6hmPd4ZHUr8=" }, { "id": "Finland_Eastern Finland_North", @@ -3697,8 +3697,8 @@ "It\u00e4-Suomi", "Suomi" ], - "s": 100822139, - "sha1_base64": "2T4PdbxBX3eWBxbP6MnSd5lzPSk=" + "s": 99734787, + "sha1_base64": "DLT65ODxzwIGrYiPHQ+1vTF9zBQ=" }, { "id": "Finland_Eastern Finland_South", @@ -3709,8 +3709,8 @@ "It\u00e4-Suomi", "Suomi" ], - "s": 76084860, - "sha1_base64": "rLF5vZPiqQxQiqYTXX6OrBmSyDg=" + "s": 71697772, + "sha1_base64": "packugkVqU6rqEpZtTsBArDpxHM=" }, { "id": "Finland_Southern Finland_West", @@ -3722,8 +3722,8 @@ "Suomi", "\u00c5land" ], - "s": 71835600, - "sha1_base64": "NHsRry3OZSfB1tly3X55MFjTVwA=" + "s": 70888216, + "sha1_base64": "JStbm11X0ow5fWRS+Q862xD0he0=" }, { "id": "Finland_Southern Finland_Helsinki", @@ -3734,8 +3734,8 @@ "Etel\u00e4-Suomi", "Suomi" ], - "s": 96273134, - "sha1_base64": "IkXZYLo8cF6lbOFTvJzwA0MDsjY=" + "s": 94708446, + "sha1_base64": "cvhZD0dhiKCHReiHLFwd8v+x5q4=" }, { "id": "Finland_Southern Finland_Lappeenranta", @@ -3746,8 +3746,8 @@ "Etel\u00e4-Suomi", "Suomi" ], - "s": 55112738, - "sha1_base64": "9D9QOg76O7mi/BE4XSjx6W7dXCE=" + "s": 53333376, + "sha1_base64": "zj830Hzh+az+Z2S/I+G8Zhwaq9Y=" } ] }, @@ -3766,8 +3766,8 @@ "Alsace-Champagne-Ardenne-Lorraine", "France" ], - "s": 52912700, - "sha1_base64": "WqAgEk6KcRDhDzTaOXvUgP8a/7Y=" + "s": 52756860, + "sha1_base64": "YduOOrJdIyYnGmV7HXRZPymU3X8=" }, { "id": "France_Alsace_Haut-Rhin", @@ -3778,8 +3778,8 @@ "Alsace-Champagne-Ardenne-Lorraine", "France" ], - "s": 39156017, - "sha1_base64": "p0uKUP13U2z14bHujdahZz7Jjdg=" + "s": 39103849, + "sha1_base64": "Nsa4wfknT0lYlfz3LALWS4aWmMY=" } ] }, @@ -3795,8 +3795,8 @@ "Aquitaine-Limousin-Poitou-Charentes", "France" ], - "s": 43362266, - "sha1_base64": "6ns3rhcAZsMLlvtI9AQRUtYXvX4=" + "s": 43257178, + "sha1_base64": "XLKYNRhQCWqwR4QvrHZfyKXHWew=" }, { "id": "France_Aquitaine_Gironde", @@ -3807,8 +3807,8 @@ "Aquitaine-Limousin-Poitou-Charentes", "France" ], - "s": 63863475, - "sha1_base64": "12crSQhJsQtKvXjXpateJwpUVVQ=" + "s": 63750827, + "sha1_base64": "qrdjAeytynW//zdbbOw6Pp0Kh7w=" }, { "id": "France_Aquitaine_Landes", @@ -3819,8 +3819,8 @@ "Aquitaine-Limousin-Poitou-Charentes", "France" ], - "s": 35257007, - "sha1_base64": "MmwZYFtb3fYGSR5eOFV2Ek9qrio=" + "s": 35205895, + "sha1_base64": "NzlDMtPDJ0D3HQiNn8Y2W8e1f1k=" }, { "id": "France_Aquitaine_Lot-et-Garonne", @@ -3831,8 +3831,8 @@ "Aquitaine-Limousin-Poitou-Charentes", "France" ], - "s": 30363015, - "sha1_base64": "F/P8RWAflLo498hECgzbouS8KOM=" + "s": 30259567, + "sha1_base64": "UxIr/aGsYOb45dGqPEGKECU9f18=" }, { "id": "France_Aquitaine_Pyrenees-Atlantiques", @@ -3843,8 +3843,8 @@ "Aquitaine-Limousin-Poitou-Charentes", "France" ], - "s": 51034242, - "sha1_base64": "n/y+G1/2txkePMzGvWu8BwopAs4=" + "s": 50935826, + "sha1_base64": "vsyttj/ihDyEd4ZpLrUvxA6++6k=" } ] }, @@ -3860,8 +3860,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 34051534, - "sha1_base64": "g6dtowFnTMzwhwj3blaexRqifeY=" + "s": 34005414, + "sha1_base64": "NGv+vFnBswbwgEQLopTemYwyY8w=" }, { "id": "France_Auvergne_Cantal", @@ -3872,8 +3872,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 22283604, - "sha1_base64": "Lb4Bjst4EFUgNEgehlPjOSHk7uo=" + "s": 22250348, + "sha1_base64": "LHctbhIfntxCamV143tDAAfItW8=" }, { "id": "France_Auvergne_Haute-Loire", @@ -3884,8 +3884,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 29211871, - "sha1_base64": "bPJmHOT4vIrDyeAYSq2BTKPjWOU=" + "s": 29108311, + "sha1_base64": "yyvKv7xEpnITzS/kJJpZMtQ8noc=" }, { "id": "France_Auvergne_Puy-de-Dome", @@ -3896,8 +3896,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 48711002, - "sha1_base64": "4wD8/alwMlqpHpASphHppZapbHM=" + "s": 48389562, + "sha1_base64": "yJFfn0aGpXZ9g0W3ZC4EJjaFsxw=" } ] }, @@ -3915,8 +3915,8 @@ "Guernsey", "Jersey" ], - "s": 45078162, - "sha1_base64": "9IKkaI1kIHG6ISL5uT4lZMlTmYY=" + "s": 44926594, + "sha1_base64": "ayELLLDHIUqEYBGmLaY7vho+3ek=" }, { "id": "France_Brittany_Finistere", @@ -3927,8 +3927,8 @@ "Bretagne", "France" ], - "s": 59164172, - "sha1_base64": "27vHwEKHGfYoWITPCtmQy66mboE=" + "s": 58986116, + "sha1_base64": "OaiGRRBQrSQIdsFxyfixZXFfjJU=" }, { "id": "France_Brittany_Ille-et-Vilaine", @@ -3940,8 +3940,8 @@ "France", "Jersey" ], - "s": 54662626, - "sha1_base64": "6v2dnYbLsz2JtJm26sunKruBHi8=" + "s": 54424666, + "sha1_base64": "yincfgpmTAotnwPs4g9Ha4gI0oI=" }, { "id": "France_Brittany_Morbihan", @@ -3952,8 +3952,8 @@ "Bretagne", "France" ], - "s": 47875460, - "sha1_base64": "iB3BEduo1fen7Gq9/OBivhgH3uM=" + "s": 47740764, + "sha1_base64": "lOOsvDZbeeYOFZB5XzDq2kszJQ8=" } ] }, @@ -3969,8 +3969,8 @@ "Bourgogne-Franche-Comt\u00e9", "France" ], - "s": 36281808, - "sha1_base64": "QQEHmTIcphGqCyNUFKNi1YWqoow=" + "s": 35899456, + "sha1_base64": "3NNonNrJZmsqqhINZiCdAq/9mzk=" }, { "id": "France_Burgundy_Nievre", @@ -3981,8 +3981,8 @@ "Bourgogne-Franche-Comt\u00e9", "France" ], - "s": 23098045, - "sha1_base64": "3247L6G/FJgCsDsF2wkyP3jleCA=" + "s": 22733181, + "sha1_base64": "Tp+008yBY+BJzzN0GmAwVoH2anI=" }, { "id": "France_Burgundy_Saone-et-Loire", @@ -3993,8 +3993,8 @@ "Bourgogne-Franche-Comt\u00e9", "France" ], - "s": 77045500, - "sha1_base64": "2Lvx9fzr4nCLniAOHPL6c28qjnk=" + "s": 75362436, + "sha1_base64": "KHcaVbtG+QCRgaOMS58AzyH4BQY=" }, { "id": "France_Burgundy_Yonne", @@ -4005,8 +4005,8 @@ "Bourgogne-Franche-Comt\u00e9", "France" ], - "s": 37152504, - "sha1_base64": "i8XXdqSebVEARj+RvRQLrRkXntY=" + "s": 36921520, + "sha1_base64": "pNce08f8uALbS80ZHWmi8uMERQ0=" } ] }, @@ -4022,8 +4022,8 @@ "Centre-Val de Loire", "France" ], - "s": 24832510, - "sha1_base64": "A+Q6M3Sq7cSRGtkxH5h/FG72YlI=" + "s": 24775334, + "sha1_base64": "CDloCf6jzkH0dAeCs7r1Az/wklo=" }, { "id": "France_Centre-Val de Loire_Eure-et-Loir", @@ -4034,8 +4034,8 @@ "Centre-Val de Loire", "France" ], - "s": 25522406, - "sha1_base64": "8VVRy/HRZ/1qCMD/OXWVQaW/RnM=" + "s": 25439550, + "sha1_base64": "w0NJMRhb9HPxHVzmS+rmcKDIsfk=" }, { "id": "France_Centre-Val de Loire_Indre", @@ -4046,8 +4046,8 @@ "Centre-Val de Loire", "France" ], - "s": 35673023, - "sha1_base64": "Fc9HU9pn6lSM9fLhLbBzfF2gybw=" + "s": 35510343, + "sha1_base64": "kpDDbWjeoX4EePGfBXuHLceHtk8=" }, { "id": "France_Centre-Val de Loire_Indre-et-Loire", @@ -4058,8 +4058,8 @@ "Centre-Val de Loire", "France" ], - "s": 45398057, - "sha1_base64": "r8Ozbl4oz2vsTIZHr5g/M0o4YM8=" + "s": 45217217, + "sha1_base64": "h4rRxdCxjqQC5mW7HSNfvqK0GAE=" }, { "id": "France_Centre-Val de Loire_Loir-et-Cher", @@ -4070,8 +4070,8 @@ "Centre-Val de Loire", "France" ], - "s": 30210375, - "sha1_base64": "UKew1hnnUg64774skqbcxTWcFic=" + "s": 29982830, + "sha1_base64": "X7kScoQ3MV93hxg1Uqxw1hVs6TI=" }, { "id": "France_Centre-Val de Loire_Loiret", @@ -4082,8 +4082,8 @@ "Centre-Val de Loire", "France" ], - "s": 43560592, - "sha1_base64": "V1NU5NkmGnFXQP57SCAet85h5ko=" + "s": 43419224, + "sha1_base64": "iVhp3/w57HVYfUzuGNJMS6GMgr8=" } ] }, @@ -4096,8 +4096,8 @@ "Alsace-Champagne-Ardenne-Lorraine", "France" ], - "s": 101599805, - "sha1_base64": "JnIjaGsisZeugzJHLZHTdaOcpqY=" + "s": 100327309, + "sha1_base64": "l7HkNHoS+ehyO5YoYJdQsCPv+UI=" }, { "id": "France_Corsica", @@ -4111,8 +4111,8 @@ "Italia", "Monaco" ], - "s": 24855389, - "sha1_base64": "qysBEuCt2XAaqShZMOgqTLXPnWI=" + "s": 24749077, + "sha1_base64": "PvwloDNY2dpNXrBT4rl0gFoy1D0=" }, { "id": "France_Free County_North", @@ -4123,8 +4123,8 @@ "Bourgogne-Franche-Comt\u00e9", "France" ], - "s": 54838964, - "sha1_base64": "zcduydSe/d/BXe6/RKUeXnn+Mto=" + "s": 54576796, + "sha1_base64": "f9Lmv5j7Cmc/tVcuc5dQrKbl/6o=" }, { "id": "France_Free County_South", @@ -4135,8 +4135,8 @@ "Bourgogne-Franche-Comt\u00e9", "France" ], - "s": 46808064, - "sha1_base64": "eihgre1q+jV3HPkGVjxMRKDnO5I=" + "s": 46500872, + "sha1_base64": "CLhHetWHELLW5+l8xJsum8yRLxg=" }, { "id": "France_French Guiana", @@ -4147,8 +4147,8 @@ "France", "Guyane" ], - "s": 27129620, - "sha1_base64": "osZ/yWCEdJKH8cbUiqKYWe+2Gso=" + "s": 27090364, + "sha1_base64": "5yOCKiK7e4LhkhCwB+VESwJF/OM=" }, { "id": "France_Ile-de-France", @@ -4162,8 +4162,8 @@ "France", "\u00cele-de-France" ], - "s": 33464502, - "sha1_base64": "WvBrZ6XEnE6sbjTArXEtUkS9GT0=" + "s": 33383996, + "sha1_base64": "We9hRsg7m0AbEeTvFoTKm1k7N9k=" }, { "id": "France_Ile-de-France_Hauts-de-Seine", @@ -4174,8 +4174,8 @@ "France", "\u00cele-de-France" ], - "s": 16316973, - "sha1_base64": "UGLibB5CbyW9LyUWpSupuFcM3Fo=" + "s": 16209307, + "sha1_base64": "Frsh+rUqm1H97SvcDBbteFMJuMI=" }, { "id": "France_Ile-de-France_Paris", @@ -4186,8 +4186,8 @@ "France", "\u00cele-de-France" ], - "s": 17924249, - "sha1_base64": "5AYdI4WxFlDwHK2Hw1HFi7E0KBE=" + "s": 17824963, + "sha1_base64": "LWfH7PTkOp/bU1YQaChLJ5ZbGl4=" }, { "id": "France_Ile-de-France_Seine-Saint-Denis", @@ -4198,8 +4198,8 @@ "France", "\u00cele-de-France" ], - "s": 19239078, - "sha1_base64": "Ah3YWBLBD9C5X95jQeWb8WhzU3o=" + "s": 19148347, + "sha1_base64": "HEwWj0CXqwN+7DXMyswDUd9aFWw=" }, { "id": "France_Ile-de-France_Seine-et-Marne", @@ -4210,8 +4210,8 @@ "France", "\u00cele-de-France" ], - "s": 47951455, - "sha1_base64": "WQPF5hc2g0TDcsUrna7gd5UkPKo=" + "s": 47299249, + "sha1_base64": "u0ngv35A97HaHGUMAc7jyWRA48A=" }, { "id": "France_Ile-de-France_Val-dOise", @@ -4222,8 +4222,8 @@ "France", "\u00cele-de-France" ], - "s": 24088268, - "sha1_base64": "qfBtcii8+c/L6clK/sMbrteR++I=" + "s": 24023857, + "sha1_base64": "Hp7wE/+izvcbOLhrIsVKbNtXcs0=" }, { "id": "France_Ile-de-France_Val-de-Marne", @@ -4234,8 +4234,8 @@ "France", "\u00cele-de-France" ], - "s": 19327879, - "sha1_base64": "qr6gYi/rIejefgvzaQakvWiEbFw=" + "s": 19243599, + "sha1_base64": "pmJPYsVsKhI5PrwRx6A9iHMsxAY=" }, { "id": "France_Ile-de-France_Yvelines", @@ -4246,8 +4246,8 @@ "France", "\u00cele-de-France" ], - "s": 36463505, - "sha1_base64": "PGBkBGsyx4jaujQA0QHC/IU2EDA=" + "s": 36358905, + "sha1_base64": "xFv/s4QSI5JJEHQ6yUT3iys1VPg=" } ] }, @@ -4263,8 +4263,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 36643414, - "sha1_base64": "/d0ZabRFtFkb/IVEdMQpkxWjiKU=" + "s": 35689102, + "sha1_base64": "RRkRfoJYkdOR5KJg6tbdsVb2aLs=" }, { "id": "France_Languedoc-Roussillon_Gard", @@ -4275,8 +4275,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 44274057, - "sha1_base64": "b8/yMxw53B4m5Ft9oaNmuIBKPUg=" + "s": 44006945, + "sha1_base64": "qjAiAiqnD6BMrmP8RxMWkTUxxj8=" }, { "id": "France_Languedoc-Roussillon_Herault", @@ -4287,8 +4287,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 61991827, - "sha1_base64": "RNTg5qtYDa3TS8IxthFrki9e5BM=" + "s": 61542435, + "sha1_base64": "pIAK5WKkVhA+tcKxpLWzUQa+6Yk=" }, { "id": "France_Languedoc-Roussillon_Lozere", @@ -4299,8 +4299,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 20114091, - "sha1_base64": "dZvmEqHR8QUk3DfiMo2x5d316W8=" + "s": 20045371, + "sha1_base64": "PKjVcGyFdNJzg6SJVAXwvM5bXHc=" }, { "id": "France_Languedoc-Roussillon_Pyrenees-Orientales", @@ -4311,8 +4311,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 33060127, - "sha1_base64": "6dR33fgV4jpF5vMje0YL36fnmxs=" + "s": 32883839, + "sha1_base64": "xS18EQOXKKSc+wMFpwW7XQ9TyyI=" } ] }, @@ -4325,8 +4325,8 @@ "Aquitaine-Limousin-Poitou-Charentes", "France" ], - "s": 80383350, - "sha1_base64": "TS1cziy/JX1bYGFl8d1zMYaDgL0=" + "s": 79939214, + "sha1_base64": "smqM0LhgMg/UGClzfEvpC0roEs0=" }, { "id": "France_Lorraine", @@ -4340,8 +4340,8 @@ "Alsace-Champagne-Ardenne-Lorraine", "France" ], - "s": 36880160, - "sha1_base64": "roPfRcsSNOspEGpo9wNHR07uTy0=" + "s": 36380032, + "sha1_base64": "qRf9LJuggrNVs106Lf/PN3QTyB4=" }, { "id": "France_Lorraine_Meuse", @@ -4352,8 +4352,8 @@ "Alsace-Champagne-Ardenne-Lorraine", "France" ], - "s": 20014516, - "sha1_base64": "ASmPg/tBPaTErgihFjLsJ399dx8=" + "s": 20002660, + "sha1_base64": "IBGKbOILQNR1w8UeErnJ2uNdGfo=" }, { "id": "France_Lorraine_Moselle", @@ -4364,8 +4364,8 @@ "Alsace-Champagne-Ardenne-Lorraine", "France" ], - "s": 52045650, - "sha1_base64": "KkQv5ihFMrwj9hBC7QXqZt4qPBU=" + "s": 51542202, + "sha1_base64": "YtKEMARifL6aIHN7jFtSX0WGkC8=" }, { "id": "France_Lorraine_Vosges", @@ -4376,8 +4376,8 @@ "Alsace-Champagne-Ardenne-Lorraine", "France" ], - "s": 34608024, - "sha1_base64": "pAqHB81dg8ztvhqMu8ai50BvTKc=" + "s": 34428064, + "sha1_base64": "4hE0/RqwqEWbRZCWbu1VZAq+Ulo=" } ] }, @@ -4393,8 +4393,8 @@ "France", "Normandie" ], - "s": 35747042, - "sha1_base64": "R1ca3orU+1hWMbd84EZwHHKhLYY=" + "s": 34630593, + "sha1_base64": "DbCF8ty6QUYgrULEjzN0n5hJkIU=" }, { "id": "France_Lower Normandy_Manche", @@ -4406,8 +4406,8 @@ "Jersey", "Normandie" ], - "s": 32484431, - "sha1_base64": "KBN8nErPKsb2zjvC5a2BCem5CWw=" + "s": 32346527, + "sha1_base64": "jf/Km6+nHeYb4QbT6gfZ9AIDsN0=" }, { "id": "France_Lower Normandy_Orne", @@ -4418,8 +4418,8 @@ "France", "Normandie" ], - "s": 25432959, - "sha1_base64": "vkF0kIvTIqk25Nv009sqUIlXOMQ=" + "s": 25337663, + "sha1_base64": "FWKY2V3pwJjfZg8bdkRskmSN9Uc=" } ] }, @@ -4435,8 +4435,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 25358012, - "sha1_base64": "Dcfvd8EjxPzdvPwYH1XHVlYKbOU=" + "s": 25274795, + "sha1_base64": "Q9Why1sm8dExYFmkbh33UGkTSwY=" }, { "id": "France_Midi-Pyrenees_Aveyron", @@ -4447,8 +4447,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 46899623, - "sha1_base64": "JW9RqoJPkGo2X1TOE44N3GdCbmw=" + "s": 46811751, + "sha1_base64": "dQlcHtinDXrrOY8XnhTPwSCTe5U=" }, { "id": "France_Midi-Pyrenees_Gers", @@ -4459,8 +4459,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 27987198, - "sha1_base64": "wd1d6zCUXh1xf3hhvBkRd+Lb7sg=" + "s": 27754070, + "sha1_base64": "S109JoePcnY5VOTFcxuEYDOpy7s=" }, { "id": "France_Midi-Pyrenees_Haute-Garonne", @@ -4471,8 +4471,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 63571971, - "sha1_base64": "n23Mn621CGemcRW48++TPpfxOUY=" + "s": 62805187, + "sha1_base64": "vwDl/csYfI4p4my+El8ozS3XwHQ=" }, { "id": "France_Midi-Pyrenees_Hautes-Pyrenees", @@ -4483,8 +4483,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 42208000, - "sha1_base64": "wrZuxNtrDXkLTxcB2qvC3fbIGH0=" + "s": 42151328, + "sha1_base64": "ulcyY+ZmcT9uVCwKgmy/zfBpHnc=" }, { "id": "France_Midi-Pyrenees_Lot", @@ -4495,8 +4495,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 23722479, - "sha1_base64": "ehHobvUlEjGHGbt4toKauMQFx4M=" + "s": 23586663, + "sha1_base64": "cwrE7LSfeThndIBWo4JrpDfcNGo=" }, { "id": "France_Midi-Pyrenees_Tarn", @@ -4507,8 +4507,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 30888751, - "sha1_base64": "GJA+Ezasph4Cz3XpIflVEijV3mc=" + "s": 30649823, + "sha1_base64": "6nPOYh/my/kF9fJ+AGCfxxgBKvI=" }, { "id": "France_Midi-Pyrenees_Tarn-et-Garonne", @@ -4519,8 +4519,8 @@ "France", "Languedoc-Roussillon-Midi-Pyr\u00e9n\u00e9es" ], - "s": 22092510, - "sha1_base64": "PmLQ6Hcynedgafl28RuB26a6toU=" + "s": 21513326, + "sha1_base64": "zI8M9HA1ddlNk07K98oLplnowT4=" } ] }, @@ -4541,8 +4541,8 @@ "France, Nouvelle-Cal\u00e9donie, \u00cele de Walpole (eaux territoriales)", "France, Nouvelle-Cal\u00e9donie, \u00celes Loyaut\u00e9 (eaux territoriales)" ], - "s": 15377505, - "sha1_base64": "4Eeqx6CpSjQRKqHmZ2b2Ip1T8IA=" + "s": 15352777, + "sha1_base64": "t8HMMj//J5GgsxH4X3iKiZmS/RY=" }, { "id": "France_Nord-Pas-de-Calais", @@ -4556,8 +4556,8 @@ "France", "Nord-Pas-de-Calais-Picardie" ], - "s": 39234079, - "sha1_base64": "dZmOS8XL7Ua7mVlSxba6gZOqd08=" + "s": 39078215, + "sha1_base64": "DJepywmxbt4eQPUeQD6fWepg7a4=" }, { "id": "France_Nord-Pas-de-Calais_Lille", @@ -4568,8 +4568,8 @@ "France", "Nord-Pas-de-Calais-Picardie" ], - "s": 45417458, - "sha1_base64": "6EHr01ftiaUCfLJXRwN3LIyj3uQ=" + "s": 45067745, + "sha1_base64": "N+K+n4leor67IVbxHQ8ooFqr4Mk=" }, { "id": "France_Nord-Pas-de-Calais_Pas-de-Calais", @@ -4582,8 +4582,8 @@ "Nord-Pas-de-Calais-Picardie", "United Kingdom" ], - "s": 62381763, - "sha1_base64": "8F04YY6CK/DWmLm47RQYe39njdw=" + "s": 62007259, + "sha1_base64": "+jHOdYDvf8agio5aIfb6UbINFm4=" } ] }, @@ -4599,8 +4599,8 @@ "France", "Pays de la Loire" ], - "s": 44165706, - "sha1_base64": "0NCQjm7g70CXHJ/CZqVA8XiaQtA=" + "s": 43853634, + "sha1_base64": "T2ml2lwMAF1P0skgNrtr7FvHWaU=" }, { "id": "France_Pays de la Loire_Loire-Atlantique_Saint-Nazaire", @@ -4611,8 +4611,8 @@ "France", "Pays de la Loire" ], - "s": 25082348, - "sha1_base64": "LLcwGDAXBUiEiJWeA5boaOgv3+E=" + "s": 25042492, + "sha1_base64": "wh1ORjQjgh3rHCUVqIBwWXa7Jh8=" }, { "id": "France_Pays de la Loire_Maine-et-Loire", @@ -4623,8 +4623,8 @@ "France", "Pays de la Loire" ], - "s": 50524980, - "sha1_base64": "w1zVgbACkrRBrJkMSIzdu53t+gg=" + "s": 50263132, + "sha1_base64": "eQc4PSxgnOmHyS5341avli0t/uk=" }, { "id": "France_Pays de la Loire_Mayenne", @@ -4635,8 +4635,8 @@ "France", "Pays de la Loire" ], - "s": 23496078, - "sha1_base64": "GfhYVcfqu33YmGEZA+HeTutP5Yo=" + "s": 23476182, + "sha1_base64": "wXhmLqtHqNENqLlKlzef+BO1E8Q=" }, { "id": "France_Pays de la Loire_Sarthe", @@ -4647,8 +4647,8 @@ "France", "Pays de la Loire" ], - "s": 40219523, - "sha1_base64": "nk/d/9cuIp173O509zRLOQ+ewcs=" + "s": 40130155, + "sha1_base64": "M2Ye773qVQMaL2/grMP+4ELCTTM=" }, { "id": "France_Pays de la Loire_Vendee", @@ -4659,8 +4659,8 @@ "France", "Pays de la Loire" ], - "s": 58956237, - "sha1_base64": "PF/Mr+3HwAPtWrdBZmY70rNWVw4=" + "s": 58743141, + "sha1_base64": "DpR4UaMIAzWXu7+xkEEL24CjQdM=" } ] }, @@ -4676,8 +4676,8 @@ "France", "Nord-Pas-de-Calais-Picardie" ], - "s": 38173848, - "sha1_base64": "8+8FI++ysRK0WWcpgi9zjb4GsEg=" + "s": 37594616, + "sha1_base64": "Es34MRsul0rafwLvLl05NSX9CNs=" }, { "id": "France_Picardy_Oise", @@ -4688,8 +4688,8 @@ "France", "Nord-Pas-de-Calais-Picardie" ], - "s": 43120888, - "sha1_base64": "Gc0tUbrK9Evv8dOh0dNNVUeS1E8=" + "s": 42954848, + "sha1_base64": "XD2/kVm2VW5oEB9KeZynh4kv8tA=" }, { "id": "France_Picardy_Somme", @@ -4700,8 +4700,8 @@ "France", "Nord-Pas-de-Calais-Picardie" ], - "s": 36294407, - "sha1_base64": "QwTRanXBvSNH+Mwd0Xkze5GLfrc=" + "s": 36152079, + "sha1_base64": "TnpgTHWwwC6G3IWeFBfC0z0Vn1s=" } ] }, @@ -4717,8 +4717,8 @@ "Aquitaine-Limousin-Poitou-Charentes", "France" ], - "s": 34942816, - "sha1_base64": "ejDVsiIIGRTbVF/JXJTuSkHtdsE=" + "s": 34888352, + "sha1_base64": "6EjoH4qMEMF+CAQF2xO+Ws3GD3U=" }, { "id": "France_Poitou-Charentes_Charente-Maritime", @@ -4729,8 +4729,8 @@ "Aquitaine-Limousin-Poitou-Charentes", "France" ], - "s": 56735187, - "sha1_base64": "8wy0CdP8TAeaz3ZeDbP8kcqvx0M=" + "s": 56629411, + "sha1_base64": "fmzGYI02y7/w4T0yyHMFVQedPrw=" }, { "id": "France_Poitou-Charentes_Deux-Sevres", @@ -4741,8 +4741,8 @@ "Aquitaine-Limousin-Poitou-Charentes", "France" ], - "s": 46511288, - "sha1_base64": "lhCevQyZs9s5Qz22ofN+ek03NVc=" + "s": 46465095, + "sha1_base64": "iybZa16cJHzGs0ktdywxf50FeyU=" }, { "id": "France_Poitou-Charentes_Vienne", @@ -4753,8 +4753,8 @@ "Aquitaine-Limousin-Poitou-Charentes", "France" ], - "s": 42814217, - "sha1_base64": "Rd5QCfcWGjLLlCQocbudUJylZZM=" + "s": 42776033, + "sha1_base64": "f1kukR4dYzVsPnyCDyuWyhyj85k=" } ] }, @@ -4770,8 +4770,8 @@ "France", "Provence-Alpes-C\u00f4te d'Azur" ], - "s": 21313470, - "sha1_base64": "enn9j4VIXtkllB+9MT6/hGfJ4iI=" + "s": 21208006, + "sha1_base64": "Eyh/2CHNc5qIBiPC5wlK88N3Ohg=" }, { "id": "France_Provence-Alpes-Cote dAzur_Bouches-du-Rhone", @@ -4782,8 +4782,8 @@ "France", "Provence-Alpes-C\u00f4te d'Azur" ], - "s": 59913585, - "sha1_base64": "m5JRj0g1HvrppnyQ9XQwNahj9Zo=" + "s": 59451873, + "sha1_base64": "GjL7RWN92KOXDfcYGCJykXhE7dI=" }, { "id": "France_Provence-Alpes-Cote dAzur_Hautes-Alpes", @@ -4794,8 +4794,8 @@ "France", "Provence-Alpes-C\u00f4te d'Azur" ], - "s": 19920821, - "sha1_base64": "DIZjts3xJ5SmYJoP6DrbltuVw+g=" + "s": 19784885, + "sha1_base64": "+aYYLPNEn5+eZLn0UtPKF5vxH6A=" }, { "id": "France_Provence-Alpes-Cote dAzur_Maritime Alps", @@ -4807,8 +4807,8 @@ "France", "Provence-Alpes-C\u00f4te d'Azur" ], - "s": 41769056, - "sha1_base64": "Kc+JCCq1nlpHw28x/5T7vjZeiC0=" + "s": 41602848, + "sha1_base64": "kSmUnimCi840noHyKDFCkOTgMBg=" }, { "id": "France_Provence-Alpes-Cote dAzur_Var", @@ -4819,8 +4819,8 @@ "France", "Provence-Alpes-C\u00f4te d'Azur" ], - "s": 51067129, - "sha1_base64": "lHWylsOW4PF3DPrLOBtsGy0IYm4=" + "s": 50767753, + "sha1_base64": "5Q9+Ky/kZ0CG3pbDiFpnnXdJhNY=" }, { "id": "France_Provence-Alpes-Cote dAzur_Vaucluse", @@ -4831,8 +4831,8 @@ "France", "Provence-Alpes-C\u00f4te d'Azur" ], - "s": 34533768, - "sha1_base64": "wn08ivR03nC5yXf2cibc0u2AGNg=" + "s": 34289759, + "sha1_base64": "kQQVUJ/tptUfT13tN1xLNUqS/AQ=" } ] }, @@ -4848,8 +4848,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 46386161, - "sha1_base64": "CW9q2rCtNaedizERWHs2u1Iz1B4=" + "s": 46341841, + "sha1_base64": "fBdj/X/9052IDKU1n2rbTkouhaA=" }, { "id": "France_Rhone-Alpes_Ardeche", @@ -4860,8 +4860,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 38102182, - "sha1_base64": "VZ8nPnGe1VKsSiYl3xmyf7FlzKo=" + "s": 38018430, + "sha1_base64": "Tdfjsi/in+mm6erWBxc8oPHg2Rw=" }, { "id": "France_Rhone-Alpes_Drome", @@ -4873,8 +4873,8 @@ "France", "Provence-Alpes-C\u00f4te d'Azur" ], - "s": 42290479, - "sha1_base64": "n/wugzxBXjHOIRXxUew8uTnQY6U=" + "s": 42071423, + "sha1_base64": "eQQ7C7qrU3Pouh0f4QadDLRDJws=" }, { "id": "France_Rhone-Alpes_Haute-Savoie", @@ -4885,8 +4885,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 50214986, - "sha1_base64": "Mj/v3Q7e80Nqm4HfYQaUvK4ZiE8=" + "s": 49975866, + "sha1_base64": "IAqCM+sQSeX+28+eTxh5eH4YgVc=" }, { "id": "France_Rhone-Alpes_Isere", @@ -4897,8 +4897,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 64610140, - "sha1_base64": "EIyy6Kmyey43Dy/udR0OVkWpwKU=" + "s": 64268020, + "sha1_base64": "Bgu+dhb42op1PpEjx7c1yswaeSc=" }, { "id": "France_Rhone-Alpes_Loire", @@ -4909,8 +4909,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 47533929, - "sha1_base64": "xC8E/21ujeitjh+OeXoevEZskSc=" + "s": 46775193, + "sha1_base64": "HvP62zGYRsw8dt+/1qVKZ8RcqXQ=" }, { "id": "France_Rhone-Alpes_Rhone", @@ -4921,8 +4921,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 57798075, - "sha1_base64": "4ch+PkRrcd+kPyYqs/4VXWtHm9I=" + "s": 57654515, + "sha1_base64": "8kuqxOB2bLhDXAHhhVutqwunXwk=" }, { "id": "France_Rhone-Alpes_Savoie", @@ -4933,8 +4933,8 @@ "Auvergne-Rh\u00f4ne-Alpes", "France" ], - "s": 38385567, - "sha1_base64": "zIyfffpPgZPcSlObRsKu/Ew3vCE=" + "s": 38184903, + "sha1_base64": "JX2yvr+fkeYWtZoR0aPKHuABDgM=" } ] }, @@ -4958,8 +4958,8 @@ "La R\u00e9union", "Mayotte" ], - "s": 34545435, - "sha1_base64": "uGX4YClFJsAshLHAB1HpI+BnfSc=" + "s": 34442003, + "sha1_base64": "vsACuNj8garWyE5jlSFyC72Iebs=" }, { "id": "France_Upper Normandy", @@ -4970,8 +4970,8 @@ "France", "Normandie" ], - "s": 75056214, - "sha1_base64": "VTkearnk9W9zU7eD9pNk1rEwUYA=" + "s": 74164718, + "sha1_base64": "Wb+lWKlJ/kWEQX+oEcC4Xn1fOxI=" }, { "id": "French Polynesia", @@ -4989,8 +4989,8 @@ "France, Polyn\u00e9sie fran\u00e7aise, \u00celes du Vent (eaux territoriales)", "Polyn\u00e9sie fran\u00e7aise, \u00celes du Vent (eaux territoriales)" ], - "s": 15704033, - "sha1_base64": "hPR6v+WXOaN6bKF7b0RODf8g2Ts=" + "s": 15693008, + "sha1_base64": "CSBTKh2naDq1CfZRyERP3MthWiA=" }, { "id": "Wallis and Futuna", @@ -5001,8 +5001,8 @@ "France", "France, Wallis-et-Futuna (eaux territoriales)" ], - "s": 572080, - "sha1_base64": "gTliF8FhpKPPIWDxJ8OV78QAscw=" + "s": 571016, + "sha1_base64": "+QzUzu7wF7bUYFQKIwdrs4YQLrc=" } ] }, @@ -5023,8 +5023,8 @@ "Ogoou\u00e9-Lolo", "Woleu-Ntem" ], - "s": 17130740, - "sha1_base64": "S60qHQoezYJUbMvJMDhm8r7C4eg=" + "s": 17094844, + "sha1_base64": "9ZIRa3xKlnwnKN5hTP/s+1Ivcu8=" }, { "id": "Georgia Region", @@ -5048,8 +5048,8 @@ "\u10d0\u10ed\u10d0\u10e0\u10d8\u10e1 \u10d0\u10d5\u10e2\u10dd\u10dc\u10dd\u10db\u10d8\u10e3\u10e0\u10d8 \u10e0\u10d4\u10e1\u10de\u10e3\u10d1\u10da\u10d8\u10d9\u10d0", "\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd" ], - "s": 65276937, - "sha1_base64": "5/C5n3clfGEmFw/uXF+sYI+FRoY=" + "s": 63500368, + "sha1_base64": "+oRcQdeNOsD8/gtM+hO/SsAMGos=" }, { "id": "Abkhazia", @@ -5061,8 +5061,8 @@ "\u10d0\u10e4\u10ee\u10d0\u10d6\u10d4\u10d7\u10d8\u10e1 \u10d0\u10d5\u10e2\u10dd\u10dc\u10dd\u10db\u10d8\u10e3\u10e0\u10d8 \u10e0\u10d4\u10e1\u10de\u10e3\u10d1\u10da\u10d8\u10d9\u10d0 - \u0410\u04a7\u0441\u043d\u044b \u0410\u0432\u0442\u043e\u043d\u043e\u043c\u0442\u04d9 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430", "\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd" ], - "s": 11053149, - "sha1_base64": "ig1KPRjMUT22iM7OHqxLjAsdYT4=" + "s": 11045197, + "sha1_base64": "rlanORlHqK+u6brdxb3kYor6+b8=" }, { "id": "South Ossetia", @@ -5074,8 +5074,8 @@ "\u0425\u0443\u0441\u0441\u0430\u0440 \u0418\u0440\u044b\u0441\u0442\u043e\u043d - \u042e\u0436\u043d\u0430\u044f \u041e\u0441\u0435\u0442\u0438\u044f", "\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd" ], - "s": 11964892, - "sha1_base64": "qa0wIwnHKnNZ7pq++dGdWs+xdds=" + "s": 11675523, + "sha1_base64": "y89EG5KBpUJxi4kzMAPnI/Wr5OU=" } ] }, @@ -5096,8 +5096,8 @@ "Schaffhausen", "Z\u00fcrich" ], - "s": 114022438, - "sha1_base64": "uq10Xuc6Wl0Kz152+dI0sKpUsOg=" + "s": 113813455, + "sha1_base64": "ZI7HgRj86C0qyDGNQjY53sdI4FM=" }, { "id": "Germany_Baden-Wurttemberg_Regierungsbezirk Karlsruhe", @@ -5108,8 +5108,8 @@ "Baden-W\u00fcrttemberg", "Deutschland" ], - "s": 103897967, - "sha1_base64": "wX+onU/AJRyPf1blOeYRgkmpapA=" + "s": 103268559, + "sha1_base64": "lihU6C4a7e2gtEsLqKg4/+gWSg0=" }, { "id": "Germany_Baden-Wurttemberg_Regierungsbezirk Stuttgart_Heilbronn", @@ -5120,8 +5120,8 @@ "Baden-W\u00fcrttemberg", "Deutschland" ], - "s": 48849789, - "sha1_base64": "oGG5WTZ9iTKGPKSqJZ3DCuX6jqQ=" + "s": 48631077, + "sha1_base64": "jEDZwvDPU/zghFHO6dWVAMw7Qvw=" }, { "id": "Germany_Baden-Wurttemberg_Regierungsbezirk Stuttgart_Stuttgart", @@ -5132,8 +5132,8 @@ "Baden-W\u00fcrttemberg", "Deutschland" ], - "s": 103738150, - "sha1_base64": "DW6pROcINNz/Plol6VHctVEdbPk=" + "s": 102823870, + "sha1_base64": "RysMR3BOB4qjE7aam5d9BrFUCs8=" }, { "id": "Germany_Baden-Wurttemberg_Regierungsbezirk Tubingen", @@ -5144,8 +5144,8 @@ "Baden-W\u00fcrttemberg", "Deutschland" ], - "s": 83212479, - "sha1_base64": "MLHvyvbaP6U4zxRoV6sRQVyEZhA=" + "s": 82767480, + "sha1_base64": "9tNeRF5gSjxiXC1Ue9GDJvQWUd0=" } ] }, @@ -5158,8 +5158,8 @@ "Berlin", "Deutschland" ], - "s": 51964830, - "sha1_base64": "V7B5zvcCEmuSaAAOdO7thcKLCfA=" + "s": 51518981, + "sha1_base64": "baTx7SX+zwp8pgLvOZI8/i2a9Cg=" }, { "id": "Germany_Brandenburg_North", @@ -5170,8 +5170,8 @@ "Brandenburg", "Deutschland" ], - "s": 71257172, - "sha1_base64": "nBtde1f9PDsCAXjOxnqPOFZntXs=" + "s": 70606835, + "sha1_base64": "wymFM73bc8P29J3ClDfkQB+Wkd8=" }, { "id": "Germany_Brandenburg_South", @@ -5182,8 +5182,8 @@ "Brandenburg", "Deutschland" ], - "s": 66696685, - "sha1_base64": "hapFWCC6yWBoAn33tNzUVm8Ttzg=" + "s": 65695970, + "sha1_base64": "vCbjcQsGrnkDxYdWTczr2zfkYjA=" }, { "id": "Germany_Free State of Bavaria", @@ -5197,8 +5197,8 @@ "Bayern", "Deutschland" ], - "s": 64811315, - "sha1_base64": "VBK4CBSRj1+A1x51xQGVZ7mWYlk=" + "s": 63986307, + "sha1_base64": "SivyFlg5ivpX3RpDczXjdlhAEds=" }, { "id": "Germany_Free State of Bavaria_Lower Franconia", @@ -5209,8 +5209,8 @@ "Bayern", "Deutschland" ], - "s": 70204852, - "sha1_base64": "ddQwvk7efFwRYDidbmd/h+6+IIM=" + "s": 69571788, + "sha1_base64": "9RyKHqXJB6tPNag0v98sqSE9QIM=" }, { "id": "Germany_Free State of Bavaria_Middle Franconia", @@ -5221,8 +5221,8 @@ "Bayern", "Deutschland" ], - "s": 64124431, - "sha1_base64": "cJEAPatSZbkSeFZtk225a8nGIM8=" + "s": 63902719, + "sha1_base64": "j/5oquxCiKdqGHmLDsCmMmwTM3k=" }, { "id": "Germany_Free State of Bavaria_Swabia", @@ -5233,8 +5233,8 @@ "Bayern", "Deutschland" ], - "s": 90421688, - "sha1_base64": "yRNchIj1nCrAt2aO4Le9uJZTaXM=" + "s": 89681656, + "sha1_base64": "9Yk9koFntzfdpRpZWySjDR3MQU8=" }, { "id": "Germany_Free State of Bavaria_Upper Bavaria_East", @@ -5245,8 +5245,8 @@ "Bayern", "Deutschland" ], - "s": 64841111, - "sha1_base64": "skacnlU84UzoO++rHJKRaGZ8g6E=" + "s": 64286159, + "sha1_base64": "Og/0W0//uYr4LRuJo1LqoL477kc=" }, { "id": "Germany_Free State of Bavaria_Upper Bavaria_Ingolstadt", @@ -5257,8 +5257,8 @@ "Bayern", "Deutschland" ], - "s": 30384710, - "sha1_base64": "u0vwNZxnWLBBErU+n8Vyz2xJdM8=" + "s": 30182822, + "sha1_base64": "hs90q240klvU2BdNFvxxpS7J1oQ=" }, { "id": "Germany_Free State of Bavaria_Upper Bavaria_Munchen", @@ -5269,8 +5269,8 @@ "Bayern", "Deutschland" ], - "s": 47652368, - "sha1_base64": "AChrECCN7LVLrqxE4QAG1NVbehY=" + "s": 47438456, + "sha1_base64": "nMyzgGvVxN6CA0O8ly9v5M8PSMM=" }, { "id": "Germany_Free State of Bavaria_Upper Bavaria_South", @@ -5281,8 +5281,8 @@ "Bayern", "Deutschland" ], - "s": 27710057, - "sha1_base64": "TLOQhqGfwsWLgkbVTCb0Spxeo7M=" + "s": 27626881, + "sha1_base64": "lYV31Vlk+DKLeGlxEiBtgPne9Vc=" }, { "id": "Germany_Free State of Bavaria_Upper Franconia", @@ -5293,8 +5293,8 @@ "Bayern", "Deutschland" ], - "s": 61598957, - "sha1_base64": "a40usP/dKn2+jbk3goi4xZCIgqQ=" + "s": 60946517, + "sha1_base64": "MHm93kX0JjHK7hIKXg9TgddXmkM=" }, { "id": "Germany_Free State of Bavaria_Upper Palatinate", @@ -5305,8 +5305,8 @@ "Bayern", "Deutschland" ], - "s": 60946650, - "sha1_base64": "twPsWSTMyxqU4i1VFtaAnwFjNSs=" + "s": 60594826, + "sha1_base64": "5Vm6Hc9Oqnmd3ugkJwiwhJ1qpto=" } ] }, @@ -5319,8 +5319,8 @@ "Deutschland", "Hamburg" ], - "s": 29702478, - "sha1_base64": "7kaHO/mGj0mH6uPn8yUlhA2pY1c=" + "s": 29666121, + "sha1_base64": "GOBsDSUvQPy6+vge2VxtdxczvsY=" }, { "id": "Germany_Hesse", @@ -5334,8 +5334,8 @@ "Deutschland", "Hessen" ], - "s": 105158282, - "sha1_base64": "3r9aAuOWL7hU8r8zt7netSQehNk=" + "s": 104718944, + "sha1_base64": "Djf74w8cryhcoLik8Sin6Ir52LE=" }, { "id": "Germany_Hesse_Regierungsbezirk Giessen", @@ -5346,8 +5346,8 @@ "Deutschland", "Hessen" ], - "s": 45505186, - "sha1_base64": "EYIz/3GlH8qoL6a+8Vc0eAwOhXU=" + "s": 45084842, + "sha1_base64": "B5z1o9l1zZvjTsNNHefv3IJrP6M=" }, { "id": "Germany_Hesse_Regierungsbezirk Kassel", @@ -5358,8 +5358,8 @@ "Deutschland", "Hessen" ], - "s": 69433837, - "sha1_base64": "lYd6b9vL3LokME4NL3ApE1FqmPk=" + "s": 69139261, + "sha1_base64": "DPhkAAwYWlMatgQiQ0s2wEMq3gg=" } ] }, @@ -5378,8 +5378,8 @@ "Hamburg", "Niedersachsen" ], - "s": 55459867, - "sha1_base64": "vf7/Rfwr56RV6LEQA98nb53XCB4=" + "s": 55271971, + "sha1_base64": "7zqqq9QEjHy/NsxF//K/Pvb72bo=" }, { "id": "Germany_Lower Saxony_Bremen_Munster", @@ -5390,8 +5390,8 @@ "Deutschland", "Niedersachsen" ], - "s": 63351818, - "sha1_base64": "iFLib27ZDwTXkj1KnmOtg7lwdi8=" + "s": 62757968, + "sha1_base64": "sB+Q4J0yIwvvCTuPzsX9AQrRO/s=" }, { "id": "Germany_Lower Saxony_Hannover", @@ -5402,8 +5402,8 @@ "Deutschland", "Niedersachsen" ], - "s": 55300585, - "sha1_base64": "zx7E3Ra0+lbKmh+cuq8e4zFD1xQ=" + "s": 54970601, + "sha1_base64": "A0/hO63k/nANnuYh6RnajjCo0hw=" }, { "id": "Germany_Lower Saxony_Braunschweig", @@ -5414,8 +5414,8 @@ "Deutschland", "Niedersachsen" ], - "s": 64837221, - "sha1_base64": "yFUf1yFmt9UeBJc/78vfjIfN+Y8=" + "s": 64487325, + "sha1_base64": "qVPbzSIJoZfIzhQ3wxip0Jg6Qi4=" }, { "id": "Germany_Lower Saxony_Oldenburg", @@ -5427,8 +5427,8 @@ "Deutschland", "Niedersachsen" ], - "s": 100025904, - "sha1_base64": "RLRyCYTm4j+MFnl9nP/iT5bw5KI=" + "s": 98444481, + "sha1_base64": "5bxVYJRhT2ycRHr7wPCFBB5NvTo=" } ] }, @@ -5441,8 +5441,8 @@ "Deutschland", "Mecklenburg-Vorpommern" ], - "s": 95763303, - "sha1_base64": "9wQpnRhQExqv1klWJnohNF8ORcE=" + "s": 95159351, + "sha1_base64": "Ae6zHJe/ikMwm+e8rvXSEugMn+w=" }, { "id": "Germany_North Rhine-Westphalia", @@ -5456,8 +5456,8 @@ "Deutschland", "Nordrhein-Westfalen" ], - "s": 53753491, - "sha1_base64": "//nFSnMJfp3X7lmD6QmoHP79tq8=" + "s": 53545251, + "sha1_base64": "M5mxUaWcjtnsoDvnioidM7tuxB0=" }, { "id": "Germany_North Rhine-Westphalia_Regierungsbezirk Arnsberg_Dortmund", @@ -5468,8 +5468,8 @@ "Deutschland", "Nordrhein-Westfalen" ], - "s": 77434162, - "sha1_base64": "1gfi5V6hd57G46lBqFMoKuTJ87g=" + "s": 76973946, + "sha1_base64": "FibXw8MKi/QHnlDJ7BiIugnvGG8=" }, { "id": "Germany_North Rhine-Westphalia_Regierungsbezirk Detmold", @@ -5480,8 +5480,8 @@ "Deutschland", "Nordrhein-Westfalen" ], - "s": 90014156, - "sha1_base64": "p7rn4QzrxPCSNznEVktM2U6nCMY=" + "s": 89707868, + "sha1_base64": "fhdFx+iRkE/f5KpE0DyyGQXyirY=" }, { "id": "Germany_North Rhine-Westphalia_Regierungsbezirk Dusseldorf_Dusseldorf", @@ -5492,8 +5492,8 @@ "Deutschland", "Nordrhein-Westfalen" ], - "s": 64599297, - "sha1_base64": "iaZYCMiubZZPkBbEhkyxanzTEbg=" + "s": 64180729, + "sha1_base64": "p6I3raO/DW830I9CgOlzMJKMjoY=" }, { "id": "Germany_North Rhine-Westphalia_Regierungsbezirk Dusseldorf_Mulheim", @@ -5504,8 +5504,8 @@ "Deutschland", "Nordrhein-Westfalen" ], - "s": 55147139, - "sha1_base64": "qcLWahcGAahGvtfBW2UuJT6/KSY=" + "s": 54988883, + "sha1_base64": "6wL0QUApqew7ntDACwoqQI//of4=" }, { "id": "Germany_North Rhine-Westphalia_Regierungsbezirk Dusseldorf_Wesel", @@ -5516,8 +5516,8 @@ "Deutschland", "Nordrhein-Westfalen" ], - "s": 19762031, - "sha1_base64": "fWVp+MZ99d4JEsF3ncbMIyOQd6M=" + "s": 19742975, + "sha1_base64": "IoaJ0BUgBC/1JGPcT27lCkqhLhg=" }, { "id": "Germany_North Rhine-Westphalia_Regierungsbezirk Koln_Aachen", @@ -5529,8 +5529,8 @@ "Deutschland - Belgique / Belgi\u00eb / Belgien", "Nordrhein-Westfalen" ], - "s": 69892741, - "sha1_base64": "Pb0KbIQj2bZDvRgXn9xnoDCWGT0=" + "s": 69006477, + "sha1_base64": "sfGetdSBQ5dqzUxf9q98688aoyw=" }, { "id": "Germany_North Rhine-Westphalia_Regierungsbezirk Koln_Koln", @@ -5541,8 +5541,8 @@ "Deutschland", "Nordrhein-Westfalen" ], - "s": 83148948, - "sha1_base64": "CSAaSOk7W4Gd009X+56pWbFxxWI=" + "s": 82860476, + "sha1_base64": "ILBjDt8+uXjQ820P9oSfs+uT5Jk=" }, { "id": "Germany_North Rhine-Westphalia_Regierungsbezirk Munster_Munster", @@ -5553,8 +5553,8 @@ "Deutschland", "Nordrhein-Westfalen" ], - "s": 46908562, - "sha1_base64": "Z5a017FlJn/UrJydQASrAXisyXc=" + "s": 46532218, + "sha1_base64": "I9tg7ZVxB4gXMGpDYD7nPKZa/Mo=" }, { "id": "Germany_North Rhine-Westphalia_Regierungsbezirk Munster_Recklinghausen", @@ -5565,8 +5565,8 @@ "Deutschland", "Nordrhein-Westfalen" ], - "s": 52053827, - "sha1_base64": "gRoTR5luCuCSbC/YDe8dLQ6cGZA=" + "s": 51693931, + "sha1_base64": "CHnXcJbOVkHw/aT4BFociL5wLFE=" } ] }, @@ -5579,8 +5579,8 @@ "Deutschland", "Rheinland-Pfalz" ], - "s": 96049152, - "sha1_base64": "qHput8CK3gc7tXaf0T2fiWAOl8Y=" + "s": 95088992, + "sha1_base64": "s0detDSvQ9rnKpnYOWueph3xvH0=" }, { "id": "Germany_Rhineland-Palatinate_South", @@ -5591,8 +5591,8 @@ "Deutschland", "Rheinland-Pfalz" ], - "s": 78561302, - "sha1_base64": "voApVdgOJv5lDMTIf8npcSYYDp4=" + "s": 77806605, + "sha1_base64": "Ji6zoZ0fD+3837Jtx+1cVz4TMtw=" }, { "id": "Germany_Saarland", @@ -5603,8 +5603,8 @@ "Deutschland", "Saarland" ], - "s": 37770466, - "sha1_base64": "vN9O9exuotpr8rE3JK5ePoxwS10=" + "s": 37625802, + "sha1_base64": "bFBYx+/SW9RbnfPFd2aG0PkfnYA=" }, { "id": "Germany_Saxony-Anhalt_Magdeburg", @@ -5615,8 +5615,8 @@ "Deutschland", "Sachsen-Anhalt" ], - "s": 53360149, - "sha1_base64": "RAFXZSAm9XO24hYanh9Zc1aV/DI=" + "s": 52820837, + "sha1_base64": "ZFTP9FKG9MiMv2a3/xIuYf40pdI=" }, { "id": "Germany_Saxony-Anhalt_Halle", @@ -5627,8 +5627,8 @@ "Deutschland", "Sachsen-Anhalt" ], - "s": 47395940, - "sha1_base64": "9GnnlGLGRNeUs5fA0FqJj9rRYRM=" + "s": 46989956, + "sha1_base64": "RqzeB2xHCi/04PKNLeWI/6gSkYw=" }, { "id": "Germany_Saxony_Dresden", @@ -5639,8 +5639,8 @@ "Deutschland", "Sachsen" ], - "s": 65788521, - "sha1_base64": "9KXHWXEZrlYsbBr+YRj2rXmoBaY=" + "s": 65594107, + "sha1_base64": "XrJqiJpqV9vtZnI0k0ppXUqDZj0=" }, { "id": "Germany_Saxony_Leipzig", @@ -5651,8 +5651,8 @@ "Deutschland", "Sachsen" ], - "s": 111026550, - "sha1_base64": "1A/DGXykICaiBUA9FieT2Zervxc=" + "s": 110236201, + "sha1_base64": "qekfCziiGGJ30qH78SMYauwH7sY=" }, { "id": "Germany_Schleswig-Holstein_Kiel", @@ -5664,8 +5664,8 @@ "Deutschland", "Schleswig-Holstein" ], - "s": 56360149, - "sha1_base64": "mNOn9rA6XPX5+dSK7QCVdTzIxas=" + "s": 55442990, + "sha1_base64": "7M+dj9+8+oVryKnU5BiosZSybD4=" }, { "id": "Germany_Schleswig-Holstein_Flensburg", @@ -5676,8 +5676,8 @@ "Deutschland", "Schleswig-Holstein" ], - "s": 54992684, - "sha1_base64": "0ZX9Sw3X3KzGp7xUPMWWXms0348=" + "s": 54631643, + "sha1_base64": "/ZJGr/e2kNed5HiThIxROvkDKWc=" }, { "id": "Germany_Thuringia", @@ -5688,8 +5688,8 @@ "Deutschland", "Th\u00fcringen" ], - "s": 112236256, - "sha1_base64": "pBVumd+OmC9IIqql/3V8wy59n8A=" + "s": 111161810, + "sha1_base64": "3VyNWWJaKGsROIG60jPrbzbnYaY=" } ] }, @@ -5711,8 +5711,8 @@ "Volta Region", "Western Region" ], - "s": 72711762, - "sha1_base64": "6h0JxZhM5SDakr1RTrnPUFstwj4=" + "s": 72050986, + "sha1_base64": "XORWSaFjt50JFRTwjD+05jBekWc=" }, { "id": "Gibraltar", @@ -5724,8 +5724,8 @@ "Espa\u00f1a", "Gibraltar" ], - "s": 401369, - "sha1_base64": "UXnTVgO8x0FXoICv+TE5oxJiUSk=" + "s": 399721, + "sha1_base64": "I/OQBEStUwqZNiP+g7mMACSthbQ=" }, { "id": "Greece", @@ -5740,8 +5740,8 @@ "Territorial waters of Greece - Gavdos and Gavdopoula", "\u0391\u03c0\u03bf\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u0394\u03b9\u03bf\u03af\u03ba\u03b7\u03c3\u03b7 \u039a\u03c1\u03ae\u03c4\u03b7\u03c2" ], - "s": 18205428, - "sha1_base64": "/Q270lHUWAlM9X+9YlRrX6a+XNo=" + "s": 18143708, + "sha1_base64": "97DVsQuCs+xzmHJCX50ZndUZdts=" }, { "id": "Greece_Decentralized Administration of West Greece", @@ -5754,8 +5754,8 @@ "Shqip\u00ebria", "\u0391\u03c0\u03bf\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u0394\u03b9\u03bf\u03af\u03ba\u03b7\u03c3\u03b7 \u03a0\u03b5\u03bb\u03bf\u03c0\u03bf\u03bd\u03bd\u03ae\u03c3\u03bf\u03c5, \u0394\u03c5\u03c4\u03b9\u03ba\u03ae\u03c2 \u0395\u03bb\u03bb\u03ac\u03b4\u03b1\u03c2 \u03ba\u03b1\u03b9 \u0399\u03bf\u03bd\u03af\u03bf\u03c5" ], - "s": 54021036, - "sha1_base64": "96RIkbG+NExSY4eBmW7wxGvph4k=" + "s": 53804804, + "sha1_base64": "yJsGKkNpJ8ohGZN/69KDmucsnWE=" }, { "id": "Greece_Decentralized Administration of Aegean", @@ -5766,8 +5766,8 @@ "\u0395\u03bb\u03bb\u03ac\u03b4\u03b1", "\u0391\u03c0\u03bf\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u0394\u03b9\u03bf\u03af\u03ba\u03b7\u03c3\u03b7 \u0391\u03b9\u03b3\u03b1\u03af\u03bf\u03c5" ], - "s": 24620572, - "sha1_base64": "cZRmBjhRnUQyfGv7ASre7sUJ7fQ=" + "s": 24568884, + "sha1_base64": "j1CnHR6ppvWUKDt2NzPjBPTOGZY=" }, { "id": "Greece_Decentralized Administration of Epirus - Western Macedonia", @@ -5778,8 +5778,8 @@ "\u0395\u03bb\u03bb\u03ac\u03b4\u03b1", "\u0391\u03c0\u03bf\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u0394\u03b9\u03bf\u03af\u03ba\u03b7\u03c3\u03b7 \u0397\u03c0\u03b5\u03af\u03c1\u03bf\u03c5 - \u0394\u03c5\u03c4\u03b9\u03ba\u03ae\u03c2 \u039c\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03af\u03b1\u03c2" ], - "s": 28192265, - "sha1_base64": "ynet676SGxbOB6k0fljQl7aQ3GE=" + "s": 28067049, + "sha1_base64": "X6/JsROstgJDAwF7jxMd2ua3rkg=" }, { "id": "Greece_Decentralized Administration of Macedonia and Thrace", @@ -5790,8 +5790,8 @@ "\u0395\u03bb\u03bb\u03ac\u03b4\u03b1", "\u0391\u03c0\u03bf\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u0394\u03b9\u03bf\u03af\u03ba\u03b7\u03c3\u03b7 \u039c\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03af\u03b1\u03c2 - \u0398\u03c1\u03ac\u03ba\u03b7\u03c2" ], - "s": 51704684, - "sha1_base64": "sM8RrEd6SvyjAoQsyyrJozbcNPY=" + "s": 51533620, + "sha1_base64": "9JAhlovSZauIE/eD5u5nFFmzF34=" }, { "id": "Greece_Decentralized Administration of Thessaly - Central Greece", @@ -5803,8 +5803,8 @@ "\u0391\u03c0\u03bf\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u0394\u03b9\u03bf\u03af\u03ba\u03b7\u03c3\u03b7 \u0391\u03c4\u03c4\u03b9\u03ba\u03ae\u03c2", "\u0391\u03c0\u03bf\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u0394\u03b9\u03bf\u03af\u03ba\u03b7\u03c3\u03b7 \u0398\u03b5\u03c3\u03c3\u03b1\u03bb\u03af\u03b1\u03c2 - \u03a3\u03c4\u03b5\u03c1\u03b5\u03ac\u03c2 \u0395\u03bb\u03bb\u03ac\u03b4\u03b1\u03c2" ], - "s": 48126043, - "sha1_base64": "b4WLwGYlz0pzxH3iDRabXshDNTw=" + "s": 47995795, + "sha1_base64": "KQk21mMCTFDNIppgdoQnLooMQYI=" }, { "id": "Greece_Decentralized Administration of Attica", @@ -5815,8 +5815,8 @@ "\u0395\u03bb\u03bb\u03ac\u03b4\u03b1", "\u0391\u03c0\u03bf\u03ba\u03b5\u03bd\u03c4\u03c1\u03c9\u03bc\u03ad\u03bd\u03b7 \u0394\u03b9\u03bf\u03af\u03ba\u03b7\u03c3\u03b7 \u0391\u03c4\u03c4\u03b9\u03ba\u03ae\u03c2" ], - "s": 35046817, - "sha1_base64": "ARJQGRvj/MO/IO65pS14kE1PoxI=" + "s": 34768809, + "sha1_base64": "qnsUfvs/4+YQ1TwQ/399s/I6/jc=" } ] }, @@ -5828,8 +5828,8 @@ "affiliations": [ "Kalaallit Nunaat" ], - "s": 48195550, - "sha1_base64": "6mNjmRophKSaiznF8FngyqxxEDA=" + "s": 48081686, + "sha1_base64": "JOJgc2MdJLbkdpH/FiAyNOM8Jig=" }, { "id": "Guatemala", @@ -5861,8 +5861,8 @@ "Totonicap\u00e1n", "Zacapa" ], - "s": 74615483, - "sha1_base64": "+FfDZGuyFH1WLyAXbJN4pp1FanE=" + "s": 68279491, + "sha1_base64": "ISkF/tHzuilr4nHCq0BkegppgMA=" }, { "id": "Guernsey", @@ -5895,8 +5895,8 @@ "Selle Rocque", "Sark" ], - "s": 1602663, - "sha1_base64": "8+9p4QCZlxIN+sLHuXCN6YqZ2YQ=" + "s": 1600439, + "sha1_base64": "b1Vz+103A4fI0jJXhPbk29emD+g=" }, { "id": "Guinea", @@ -5914,8 +5914,8 @@ "R\u00e9gion de Mamou", "R\u00e9gion de Nz\u00e9r\u00e9kor\u00e9" ], - "s": 93731776, - "sha1_base64": "2JmKDExegawa00J6TaY2V8HzpiI=" + "s": 93314936, + "sha1_base64": "AP57wOdgJAi9K+iMmv/CUPj44rs=" }, { "id": "Guinea-Bissau", @@ -5933,8 +5933,8 @@ "Regi\u00e3o de Quinara", "Regi\u00e3o de Tombali" ], - "s": 17127993, - "sha1_base64": "5/qwgmPhubRQY0IR4HgeeVM6deQ=" + "s": 17114225, + "sha1_base64": "XEN73uqmh4R7Lmq9g9meZgDZh/E=" }, { "id": "Guyana", @@ -5944,8 +5944,8 @@ "affiliations": [ "Guyana" ], - "s": 27086186, - "sha1_base64": "UXS+FKeUuqRT6Afcuq73inO+z90=" + "s": 27030090, + "sha1_base64": "qSncsC++QZmeViaoceSH0AZ+YCQ=" }, { "id": "Haiti", @@ -5965,8 +5965,8 @@ "D\u00e9partement du Sud", "D\u00e9partement du Sud-Est" ], - "s": 51972215, - "sha1_base64": "y7s6Hp6NTV/eKTS7aQi/9xDu/+4=" + "s": 51935783, + "sha1_base64": "mJzJkK3uSs5U0QKkCMTk+SUZMnA=" }, { "id": "Honduras", @@ -5995,8 +5995,8 @@ "Valle", "Yoro" ], - "s": 48243673, - "sha1_base64": "tXFA1sFPKpHSxrFfKgiiJiVEh8k=" + "s": 48062921, + "sha1_base64": "oeFg9Bll5t9Kzti7O42vZneEC94=" }, { "id": "Hungary", @@ -6010,8 +6010,8 @@ "Alf\u00f6ld \u00e9s \u00c9szak", "Magyarorsz\u00e1g" ], - "s": 85174360, - "sha1_base64": "mim6AbgYPxNh6maveVEzYRp1NWY=" + "s": 83702536, + "sha1_base64": "ujXjuTDql9Nj103+FM2TM3TrvXw=" }, { "id": "Hungary_Transdanubia", @@ -6022,8 +6022,8 @@ "Dun\u00e1nt\u00fal", "Magyarorsz\u00e1g" ], - "s": 88535945, - "sha1_base64": "7PcW4c1/Z7j5ZYIpEGqd3vutvEA=" + "s": 87898721, + "sha1_base64": "UM6QJxj1/lo+pDo8O4zzqSwN0Qg=" }, { "id": "Hungary_Kozep-Magyarorszag", @@ -6034,8 +6034,8 @@ "K\u00f6z\u00e9p-Magyarorsz\u00e1g", "Magyarorsz\u00e1g" ], - "s": 48170611, - "sha1_base64": "MquIxMeqCjRGSwq8xFwlELK9NgM=" + "s": 47771979, + "sha1_base64": "aW6IrzvMHcoKnI/O4XArdOW3irg=" } ] }, @@ -6047,8 +6047,8 @@ "affiliations": [ "\u00cdsland" ], - "s": 84738386, - "sha1_base64": "2kk6JX8LxzTrHjKzCx3fYwgsvLo=" + "s": 83866658, + "sha1_base64": "kPSzpiuth1Nq1daYzaxVCgVF0l4=" }, { "id": "India", @@ -6062,8 +6062,8 @@ "Andaman and Nicobar Islands", "India" ], - "s": 9163378, - "sha1_base64": "1vrr5cH3jyfECWtISO50i/snoFk=" + "s": 9131226, + "sha1_base64": "28pVBaAZkaqvsTEVdQQMEKyzphQ=" }, { "id": "India_Lakshadweep", @@ -6074,8 +6074,8 @@ "India", "Lakshadweep" ], - "s": 297117, - "sha1_base64": "BOjsBvvFRnUZb/83gRycPr4y1Cs=" + "s": 296869, + "sha1_base64": "Jf/eol13uO13uP1WWdy1LRMTj3I=" }, { "id": "India_Andhra Pradesh", @@ -6087,8 +6087,8 @@ "India", "Puducherry" ], - "s": 63617185, - "sha1_base64": "NJ0LLoC6OZtImrEIp0tdcRnBmsI=" + "s": 63580105, + "sha1_base64": "Ju/FoimZzS2q2NAfwVoC7lWZ6IQ=" }, { "id": "India_Gujarat", @@ -6101,8 +6101,8 @@ "Union Territory of Dadra & Nagar Haveli", "Union Territory of Damman & Diu" ], - "s": 68212344, - "sha1_base64": "uURkmYw3OUsOPp1RnFB3ZeodiKo=" + "s": 68094352, + "sha1_base64": "5it9u6aGjAjvQOH8xr5Qu97U1TI=" }, { "id": "India_Kerala", @@ -6113,8 +6113,8 @@ "India", "Kerala" ], - "s": 96881027, - "sha1_base64": "fTmywKNYuXLQ2yKR+xTld8I1j9U=" + "s": 95799283, + "sha1_base64": "OPPllkLf/Tl76Ricy/V+wrKXcvU=" }, { "id": "India_Madhya Pradesh", @@ -6125,8 +6125,8 @@ "India", "Madhya Pradesh" ], - "s": 90879027, - "sha1_base64": "kz2qa9RFzOEr3atqw9auvtq2hYM=" + "s": 90854931, + "sha1_base64": "DSIoUz5KTmRFGGpkaiCfhuRSuxA=" }, { "id": "India_Rajasthan", @@ -6137,8 +6137,8 @@ "India", "Rajasthan" ], - "s": 54846144, - "sha1_base64": "9/BaAToanhwuSLb1ti0N0P7hbaI=" + "s": 54756312, + "sha1_base64": "vkvulAcoAXSqrTJl2koG3nJS9gE=" }, { "id": "India_Tamil Nadu", @@ -6155,8 +6155,8 @@ "Sorapattu", "Tamil Nadu" ], - "s": 82005291, - "sha1_base64": "ws3wc6G66w+qpMcTR326KItFQEc=" + "s": 81696923, + "sha1_base64": "MtYHRmRNfUS3H9ad/yGubgqu/jE=" }, { "id": "India_Haryana", @@ -6167,8 +6167,8 @@ "Haryana", "India" ], - "s": 24953847, - "sha1_base64": "/yO1mau1q3C6kAKo3mQwnJyakuI=" + "s": 24947407, + "sha1_base64": "lsPE1DmLwmtc+2HNhXFhlYX+ZjM=" }, { "id": "India_Goa", @@ -6179,8 +6179,8 @@ "Goa", "India" ], - "s": 5860718, - "sha1_base64": "0d3sECHZNNr2m5JIds5wPhB0ESw=" + "s": 5812454, + "sha1_base64": "N1vDiu2WnyHSoSWVX0/mzzhai6w=" }, { "id": "India_Karnataka_North", @@ -6191,8 +6191,8 @@ "India", "Karnataka" ], - "s": 45022126, - "sha1_base64": "AtyTwUcZq5Mbi4hTsm3SykBrU+E=" + "s": 44813678, + "sha1_base64": "YrgjevhI3mVfXjdJ0kXuDZJwZ0w=" }, { "id": "India_Karnataka_South", @@ -6203,8 +6203,8 @@ "India", "Karnataka" ], - "s": 47732329, - "sha1_base64": "M0AxYHPXJfOTy/R0TAJ6AbT6fLw=" + "s": 47619048, + "sha1_base64": "sKjY8BUpN2XyvsqJWpD1aWItzvk=" }, { "id": "India_Maharashtra", @@ -6220,8 +6220,8 @@ "Maharashtra", "Rangadhampetha" ], - "s": 105034076, - "sha1_base64": "Kf1vgx7/BMOfIQdU9oBqzg2k8b8=" + "s": 104801580, + "sha1_base64": "F45yBGgWflhCS1hO4miuwNR2Iu0=" }, { "id": "India_Telangana", @@ -6232,8 +6232,8 @@ "India", "Telangana" ], - "s": 80476617, - "sha1_base64": "CVi02paAw+Lk37Kviqwm2onn8J4=" + "s": 80397009, + "sha1_base64": "BvMon2Q5Wc7xPLvHxywpWBL6Ziw=" }, { "id": "India_Delhi", @@ -6244,8 +6244,8 @@ "Delhi", "India" ], - "s": 12508826, - "sha1_base64": "YDNvivfoVTZ1F7vn3Scq8g+4rII=" + "s": 12492738, + "sha1_base64": "TP3lmPnR7AqVcAza+aS7xFSpnZc=" }, { "id": "India_Uttar Pradesh", @@ -6256,8 +6256,8 @@ "Uttar Pradesh", "India" ], - "s": 128549239, - "sha1_base64": "+8bzKoYAB5nS0j1xGvPHQjNZOU0=" + "s": 122438975, + "sha1_base64": "e5nw2xrplQmbon2YtDkKhCJv2Gc=" }, { "id": "India_Odisha", @@ -6268,8 +6268,8 @@ "India", "Odisha" ], - "s": 33681909, - "sha1_base64": "t/AqqELQHh8LqnRjw8zJjCprQGU=" + "s": 33619021, + "sha1_base64": "syjubjOxi076YcTh2icK+Kth040=" }, { "id": "India_Chhattisgarh", @@ -6280,8 +6280,8 @@ "Chhattisgarh", "India" ], - "s": 36645037, - "sha1_base64": "TPRUWDWWJ/mAAdIYm+4ccjeX/6I=" + "s": 36629957, + "sha1_base64": "FFVpPWa/dbTRxlyaNb7tb0T2x0o=" }, { "id": "India_Jharkhand", @@ -6292,8 +6292,8 @@ "Jharkhand", "India" ], - "s": 27087940, - "sha1_base64": "Unxmy2N/db1bGfhCiNzYXwj4U/g=" + "s": 26094372, + "sha1_base64": "y98jpZaGrl1bvMkhuZUm8xTHnJs=" }, { "id": "India_Bihar", @@ -6304,8 +6304,8 @@ "Bihar", "India" ], - "s": 69629489, - "sha1_base64": "e0whlSlwYxJ2iR2zVC/lwyFHyvs=" + "s": 56345104, + "sha1_base64": "G2crlwcWmpOYyOSD3R90RuzJesE=" }, { "id": "India_Tripura", @@ -6316,8 +6316,8 @@ "India", "Tripura" ], - "s": 10800635, - "sha1_base64": "rj8dmRDWiAs0WVxsQLojChDY084=" + "s": 10803571, + "sha1_base64": "Vr8vA8mfpnQy1zer5y+rONCGRp8=" }, { "id": "India_West Bengal", @@ -6330,8 +6330,8 @@ "India", "West Bengal" ], - "s": 60646238, - "sha1_base64": "jfpw9rX6M06jMSll18daeCqTiGQ=" + "s": 58407685, + "sha1_base64": "C0vkOQ5eT8DXliw68EObqpRl7Cw=" }, { "id": "India_Sikkim", @@ -6342,8 +6342,8 @@ "India", "Sikkim" ], - "s": 6115248, - "sha1_base64": "pT5pBdOzszDoQkLA4Al6gfrl3l8=" + "s": 6110944, + "sha1_base64": "x41oc5IgOi0s3rHAu3t+xV3FmJc=" }, { "id": "India_Uttarakhand", @@ -6354,8 +6354,8 @@ "Uttarakhand", "India" ], - "s": 29689381, - "sha1_base64": "dLgReFKaJ13sLHq2yc4c1B0bmoE=" + "s": 28263581, + "sha1_base64": "Wf/MlgG4ODluksFg8W3Gq7E0iZg=" }, { "id": "India_Mizoram", @@ -6366,8 +6366,8 @@ "India", "Mizoram" ], - "s": 11906683, - "sha1_base64": "gqjJkLQr8Ukqj3muasEIQkXME6c=" + "s": 11906739, + "sha1_base64": "6Td0Fdl6e4FQJu3GJ1j87UW31B4=" }, { "id": "India_Meghalaya", @@ -6378,8 +6378,8 @@ "India", "Meghalaya" ], - "s": 9651865, - "sha1_base64": "fKDyHsvd40nKJlELew6PoWr4HLQ=" + "s": 9643505, + "sha1_base64": "Prw8pBo6zKnRy9qzEabtMkdvo/E=" }, { "id": "India_Manipur", @@ -6390,8 +6390,8 @@ "India", "Manipur" ], - "s": 11444528, - "sha1_base64": "nUJr8nWZTZubW0CHMIKUO5XqZzs=" + "s": 11442552, + "sha1_base64": "ulFDuCz7VHysqVcSkeQx+l/xw54=" }, { "id": "India_Nagaland", @@ -6402,8 +6402,8 @@ "India", "Nagaland" ], - "s": 10066731, - "sha1_base64": "3KS8BjF7Mlu4I/jTvKhsm9H1xb0=" + "s": 10065923, + "sha1_base64": "ZAO7mnUnkRmNppnW8KyZFxPqGq8=" }, { "id": "India_Assam", @@ -6414,8 +6414,8 @@ "Assam", "India" ], - "s": 22871803, - "sha1_base64": "MoRk4khxv8fz/Nv7+fn0jhPHNVA=" + "s": 22836779, + "sha1_base64": "UfWUATj9yR4dkADMCmgOLblzkU0=" }, { "id": "India_Arunachal Pradesh", @@ -6426,8 +6426,8 @@ "Arunachal Pradesh", "India" ], - "s": 9047942, - "sha1_base64": "6dNhZPZB8jLwT9A0oNuw896o0Vc=" + "s": 8982710, + "sha1_base64": "5d9EQWhnxO/5tERJnwigBhKMRJ8=" }, { "id": "India_Himachal Pradesh", @@ -6438,8 +6438,8 @@ "Himachal Pradesh", "India" ], - "s": 23361104, - "sha1_base64": "3BQhtUl5LSBa916ycPrIq+Z4XTg=" + "s": 23333464, + "sha1_base64": "Pdf2jpXvsIUNeV/DN93F/MdTl10=" }, { "id": "India_Jammu and Kashmir", @@ -6450,8 +6450,8 @@ "India", "Jammu and Kashmir" ], - "s": 18142459, - "sha1_base64": "/PZWIQm6m+v5Cb2M9IAC14bdDA8=" + "s": 18112195, + "sha1_base64": "p4ykvggbcsXY9qiBURmIN5Mr20U=" }, { "id": "India_Chandigarh", @@ -6462,8 +6462,8 @@ "India", "Union Territory of Chand\u012bgarh" ], - "s": 868909, - "sha1_base64": "41Hu8ZWEGrK/uw1TRIXlxbJlrtY=" + "s": 868125, + "sha1_base64": "ig0w8yyhg2YEuRnVUdbUJeuik7E=" }, { "id": "India_Punjab", @@ -6474,8 +6474,8 @@ "India", "Punjab" ], - "s": 21497387, - "sha1_base64": "lLQSycR7W48vGotee9dBhZbJr9U=" + "s": 21447291, + "sha1_base64": "uC9CPMLlTfqlx/ktf8/EIodisnc=" } ] }, @@ -6501,8 +6501,8 @@ "Sulawesi Tengah", "Sulawesi Utara" ], - "s": 239422028, - "sha1_base64": "afNeWRl3y1C9hAoLMifNWb/awMU=" + "s": 237572716, + "sha1_base64": "jDKYlnJDsJg4JTyrTtXkgYaOHsc=" }, { "id": "Indonesia_West", @@ -6524,8 +6524,8 @@ "Sumatera Selatan", "Sumatera Utara" ], - "s": 198420169, - "sha1_base64": "i6UbrNSMbp+htyuUlssNQcV1CEs=" + "s": 197401761, + "sha1_base64": "tQLoG9Ls57CfKHCshGsRmqaul40=" }, { "id": "Indonesia_Jawa Tengah", @@ -6537,8 +6537,8 @@ "Indonesia", "Jawa Tengah" ], - "s": 200875318, - "sha1_base64": "oQT330zSZh3hZ0TuyuFPWr/fJRs=" + "s": 196778038, + "sha1_base64": "g99yU/uogx4bWgafWRace+qm1tA=" }, { "id": "Indonesia_Jawa Barat", @@ -6551,8 +6551,8 @@ "Indonesia", "Jawa Barat" ], - "s": 317135499, - "sha1_base64": "qL//zaMOL6Wk4VlXSBwJPY5lmcY=" + "s": 313430515, + "sha1_base64": "BNdP1i2tnI3xJSI1xB8nOLZGWQY=" }, { "id": "Indonesia_Nusa Tenggara", @@ -6567,8 +6567,8 @@ "Nusa Tenggara Barat", "Nusa Tenggara Timur" ], - "s": 144112924, - "sha1_base64": "QIUJkzhM5DHRpVWM0emV7VhGveI=" + "s": 144083611, + "sha1_base64": "kjU305B/qsFU83dz8xCbB0BjJaU=" }, { "id": "Indonesia_Jawa Timur", @@ -6579,8 +6579,8 @@ "Indonesia", "Jawa Timur" ], - "s": 172366358, - "sha1_base64": "CBCquS0t4pYkLd/0AnzSVuHuawc=" + "s": 166051630, + "sha1_base64": "umqyfMsocYUPXGvTvTDrPCA2zmo=" }, { "id": "Indonesia_East", @@ -6594,8 +6594,8 @@ "Papua Barat", "Papua" ], - "s": 52362358, - "sha1_base64": "8Xzt9uajutQAwlmVXgUfq2soXHA=" + "s": 52219654, + "sha1_base64": "isK5uPUfc8RrdTSe7w3j1lLSXxQ=" } ] }, @@ -6616,8 +6616,8 @@ "\u062e\u0631\u0627\u0633\u0627\u0646 \u0634\u0645\u0627\u0644\u06cc\u200e", "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0633\u0644\u0627\u0645\u06cc\u200f\u0627\u064a\u0631\u0627\u0646\u200e" ], - "s": 38751525, - "sha1_base64": "81jOCV4mURdmDxjZlIB9hl3MLVg=" + "s": 38463861, + "sha1_base64": "VtLdqG3xFD/qiOWmVRNIwKgvEQU=" }, { "id": "Iran_South", @@ -6640,8 +6640,8 @@ "\u06a9\u0631\u0645\u0627\u0646\u0634\u0627\u0647\u200e", "\u200f\u0647\u0631\u0645\u0632\u06af\u0627\u0646\u200e" ], - "s": 90623927, - "sha1_base64": "bM3QQw61qNTYRh0jI220KqcHTyw=" + "s": 90179655, + "sha1_base64": "qsiejrwsGQFM2UAQ0qvf+k8DbwY=" }, { "id": "Iran_North", @@ -6665,8 +6665,8 @@ "\u06a9\u0631\u0645\u0627\u0646\u0634\u0627\u0647\u200e", "\u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646 \u0634\u0631\u0642\u06cc" ], - "s": 88682358, - "sha1_base64": "BRVjJUWC62MVVZ8ng/giOL/bj1I=" + "s": 87559862, + "sha1_base64": "7tXZ6mATBz1sV4H7orNy2vJwTQ0=" } ] }, @@ -6691,8 +6691,8 @@ "\u0627\u0644\u0623\u0646\u0628\u0627\u0631", "\u0627\u0644\u0633\u0644\u064a\u0645\u0627\u0646\u064a\u0629" ], - "s": 65202666, - "sha1_base64": "/O1DtwQKuHNetvCM/JDMvN4C4v8=" + "s": 64731234, + "sha1_base64": "VN+Wtvgoe5/AUuqCxyBtPHJFYRI=" }, { "id": "Iraq_South", @@ -6715,8 +6715,8 @@ "\u0627\u0644\u0623\u0646\u0628\u0627\u0631", "\u0627\u0644\u0642\u0627\u062f\u0633\u064a\u0629" ], - "s": 65813857, - "sha1_base64": "IeV+oxBp9OTE4FsVYWbvEfLTQyU=" + "s": 65668985, + "sha1_base64": "2wG/vfOMolEbOSToYhzan+OuhyU=" } ] }, @@ -6730,8 +6730,8 @@ "Scotland", "United Kingdom" ], - "s": 4219627, - "sha1_base64": "5zSzncktbDXRo0IoniNWl6ZOKVo=" + "s": 4098779, + "sha1_base64": "C0Oxj/h+DmU/h/7H6xTKZNZCKrQ=" }, { "id": "Israel Region", @@ -6746,8 +6746,8 @@ "\u05de\u05d7\u05d5\u05d6 \u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd", "\u05de\u05d3\u05d9\u05e0\u05ea \u05d9\u05e9\u05e8\u05d0\u05dc" ], - "s": 5041390, - "sha1_base64": "I+c9iHHhZBiPUdBh7dx4m5hvBV0=" + "s": 5023734, + "sha1_base64": "/amCYbSNTipLk0tTi2qNXNJQa0k=" }, { "id": "Israel", @@ -6764,8 +6764,8 @@ "\u05de\u05d7\u05d5\u05d6 \u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd", "\u05de\u05d3\u05d9\u05e0\u05ea \u05d9\u05e9\u05e8\u05d0\u05dc" ], - "s": 75875598, - "sha1_base64": "WR5wzWizq50zIgZYi3BRLoNtAfI=" + "s": 75100292, + "sha1_base64": "5mC1vnhqRMKTc3ZSsYJp2tknFaY=" } ] }, @@ -6781,8 +6781,8 @@ "Abruzzo", "Italia" ], - "s": 33024113, - "sha1_base64": "t7O8Bbpu+yoKuEApUN+vQQ6MkOI=" + "s": 31951473, + "sha1_base64": "EQ83ajoJ68omrn474w7U7H7EVUY=" }, { "id": "Italy_Aosta Valley", @@ -6793,8 +6793,8 @@ "Italia", "Valle d'Aosta/Vall\u00e9e d'Aoste" ], - "s": 18451835, - "sha1_base64": "FDydDtGa6UQJSh14niqyfEUk6cs=" + "s": 18439435, + "sha1_base64": "VEyQR4zAn8o2krekis9pROQwb7Y=" }, { "id": "Italy_Apulia", @@ -6810,8 +6810,8 @@ "Italia", "Puglia" ], - "s": 92145253, - "sha1_base64": "zjYBg2sQjmfwN0yKySJMhK8HPQk=" + "s": 91944005, + "sha1_base64": "6H4nH/N5jD2eDZXUBFqw0SQBMMI=" }, { "id": "Italy_Basilicata", @@ -6822,8 +6822,8 @@ "Basilicata", "Italia" ], - "s": 30343629, - "sha1_base64": "7o2awhP6VlmCNx6gWInFi25E8fA=" + "s": 29757180, + "sha1_base64": "o8nD1NlwE2p7hDfkELvb+w/StKY=" }, { "id": "Italy_Calabria", @@ -6836,8 +6836,8 @@ "Isola di Dino", "Italia" ], - "s": 31134423, - "sha1_base64": "m4WPTXAceHdxZhRI6h+EJzuv/eY=" + "s": 31022095, + "sha1_base64": "ohhLAQ3Oey2sN3MHvDawdTEQA38=" }, { "id": "Italy_Campania", @@ -6854,8 +6854,8 @@ "La Castelluccia", "Scoglio Rovigliano" ], - "s": 62656644, - "sha1_base64": "W09YcydF98ANhPD9P6guPty3OA8=" + "s": 62462900, + "sha1_base64": "O8UQU6kymUSxKp1A9f12p2AMAmE=" }, { "id": "Italy_Emilia", @@ -6869,8 +6869,8 @@ "Emilia-Romagna", "Italia" ], - "s": 29693024, - "sha1_base64": "iz1Ml4lLjR+b5/sWPQ5yUMHg3Hs=" + "s": 29668960, + "sha1_base64": "AwT3V47oijgKB45niByOVzl+pyQ=" }, { "id": "Italy_Emilia-Romagna_Ferrara", @@ -6881,8 +6881,8 @@ "Emilia-Romagna", "Italia" ], - "s": 12616356, - "sha1_base64": "EFWB6hmCsYKiT9o8E3RLfeJYBx4=" + "s": 12611620, + "sha1_base64": "j8irXE4rTi8ZQsQXdCM7KohRKvw=" }, { "id": "Italy_Emilia-Romagna_Forli-Cesena", @@ -6893,8 +6893,8 @@ "Emilia-Romagna", "Italia" ], - "s": 16934636, - "sha1_base64": "630Ps/zjlsTsg7tvaLIM2U9W7/M=" + "s": 16895268, + "sha1_base64": "RsSNVJ9SrbCUrmrbl3AovJBmEnY=" }, { "id": "Italy_Emilia-Romagna_Modena", @@ -6905,8 +6905,8 @@ "Emilia-Romagna", "Italia" ], - "s": 25562767, - "sha1_base64": "4ddCjvVJ3qltVWDShSnQRBx9TTc=" + "s": 25550071, + "sha1_base64": "AGHn1A+xzy107CFjyWK9KZdLyS8=" }, { "id": "Italy_Emilia-Romagna_Parma", @@ -6917,8 +6917,8 @@ "Emilia-Romagna", "Italia" ], - "s": 20461702, - "sha1_base64": "6Et2Arl6TugNaeW2yPrTEabcg9w=" + "s": 20385894, + "sha1_base64": "HEut+TFEa3XyqaSHoyxaJyefvr4=" }, { "id": "Italy_Emilia-Romagna_Piacenza", @@ -6929,8 +6929,8 @@ "Emilia-Romagna", "Italia" ], - "s": 14009179, - "sha1_base64": "I+H7mrCF8DcvK9pgOJqY1IKnD4o=" + "s": 13967227, + "sha1_base64": "TD8LPqs0L0lB1Mq1m0N+slrAq3w=" }, { "id": "Italy_Emilia-Romagna_Ravenna", @@ -6941,8 +6941,8 @@ "Emilia-Romagna", "Italia" ], - "s": 13255403, - "sha1_base64": "utg5NhjpdNYRsEYumc44l+GyAas=" + "s": 13223883, + "sha1_base64": "OyrkdEIuKHWAItNw2QS6mSWEyZs=" }, { "id": "Italy_Emilia-Romagna_Reggio Emilia", @@ -6953,8 +6953,8 @@ "Emilia-Romagna", "Italia" ], - "s": 18819118, - "sha1_base64": "BUuWd5sS/PE+mKVcq3eYv1PnNDE=" + "s": 18800870, + "sha1_base64": "LlI7bCZXAORQH69/E9htLWRPxnY=" }, { "id": "Italy_Emilia-Romagna_Rimini", @@ -6965,8 +6965,8 @@ "Emilia-Romagna", "Italia" ], - "s": 9440330, - "sha1_base64": "4eurDgeNAemJHWIZLrFJ4sf+zm0=" + "s": 9415746, + "sha1_base64": "jOuiE3V5iIQrTvHDN+cApYeft5k=" } ] }, @@ -6982,8 +6982,8 @@ "Friuli Venezia Giulia", "Italia" ], - "s": 6659560, - "sha1_base64": "GKbGlSdnohF8VPRRQpcwEb9eQz8=" + "s": 6647936, + "sha1_base64": "bAh47PZB5kcHrXL68u6/Xk6cdVk=" }, { "id": "Italy_Friuli-Venezia Giulia_Pordenone", @@ -6994,8 +6994,8 @@ "Friuli Venezia Giulia", "Italia" ], - "s": 21098228, - "sha1_base64": "UlO5HLH6o9n7rBjy2Pr+YgsydOQ=" + "s": 20821172, + "sha1_base64": "ZWU8/zxVFSaseIZaZgtAsZDfs0g=" }, { "id": "Italy_Friuli-Venezia Giulia_Trieste", @@ -7006,8 +7006,8 @@ "Friuli Venezia Giulia", "Italia" ], - "s": 6903535, - "sha1_base64": "+tef6IHEdTgMGuK6+WuOGD8p0/0=" + "s": 6857807, + "sha1_base64": "HWuHlTQ0JPsUNbCl8cgl7kCC5iA=" }, { "id": "Italy_Friuli-Venezia Giulia_Udine", @@ -7018,8 +7018,8 @@ "Friuli Venezia Giulia", "Italia" ], - "s": 45100936, - "sha1_base64": "SN3TjDq0kP78ZG9S657/Ig8ISuc=" + "s": 44972768, + "sha1_base64": "IxYk2t8TKlT7ycptqZ//f3onpfw=" } ] }, @@ -7041,8 +7041,8 @@ "country_name_synonyms": [ "Vatican City" ], - "s": 79164085, - "sha1_base64": "PbWgV5GTsypg95AdKJpPtAeZ3Ts=" + "s": 78672549, + "sha1_base64": "Mf4Nc99kh4FjeT51/tSdXt1xh3I=" }, { "id": "Italy_Liguria", @@ -7053,8 +7053,8 @@ "Italia", "Liguria" ], - "s": 60383153, - "sha1_base64": "fO53wfoccI1jO5mFTKfRs+cwJ7A=" + "s": 60334385, + "sha1_base64": "X5Tplcbw3aRN2cZK5rmWxdNk+jE=" }, { "id": "Italy_Lombardy", @@ -7068,8 +7068,8 @@ "Italia", "Lombardia" ], - "s": 25252767, - "sha1_base64": "PcnlNJ+nqeQ+nquZ2prea/3WohM=" + "s": 24986015, + "sha1_base64": "QngFUv5DsA3VxB4C6BKI5Ae3QXc=" }, { "id": "Italy_Lombardy_Brescia", @@ -7080,8 +7080,8 @@ "Italia", "Lombardia" ], - "s": 34683838, - "sha1_base64": "rTTKLD/PQ9+MaWreALskk3wkYgY=" + "s": 34512039, + "sha1_base64": "/5XZBc9gr5FnWIVc+QFXjG8Vnq8=" }, { "id": "Italy_Lombardy_Como", @@ -7092,8 +7092,8 @@ "Italia", "Lombardia" ], - "s": 14622022, - "sha1_base64": "4cw2d1aZbAYOOXTKJEaoqrRpV1I=" + "s": 14573502, + "sha1_base64": "PJTqp01vGFiV+K2fZ5iapmBRLnE=" }, { "id": "Italy_Lombardy_Cremona", @@ -7104,8 +7104,8 @@ "Italia", "Lombardia" ], - "s": 6751553, - "sha1_base64": "HX9iJU/JcrrigDMkrHPiLg+5W9U=" + "s": 6570217, + "sha1_base64": "q+FHFwvz+5TWiC0HKvp4YztTzXk=" }, { "id": "Italy_Lombardy_Lecco", @@ -7116,8 +7116,8 @@ "Italia", "Lombardia" ], - "s": 10963628, - "sha1_base64": "6cPsEpIGipbs5JamJDUGZCYZC6Y=" + "s": 10936300, + "sha1_base64": "KYqoryIxJCaTQyKO64bHnjq4j64=" }, { "id": "Italy_Lombardy_Lodi", @@ -7128,8 +7128,8 @@ "Italia", "Lombardia" ], - "s": 6807815, - "sha1_base64": "o7oI4gtrOTh0jiKPhnaGHAR8HIM=" + "s": 6802007, + "sha1_base64": "6v1fzOKkylrcIISzJr2Wi/xnG60=" }, { "id": "Italy_Lombardy_Mantua", @@ -7140,8 +7140,8 @@ "Italia", "Lombardia" ], - "s": 7506450, - "sha1_base64": "UrNBVkiYGF4f6/h7FmhC0VyAVEg=" + "s": 7471362, + "sha1_base64": "6OVgAmIHo1fcxDsKik+rpE4UPec=" }, { "id": "Italy_Lombardy_Milan", @@ -7152,8 +7152,8 @@ "Italia", "Lombardia" ], - "s": 32034928, - "sha1_base64": "BKsEgnZpZRXnYkY0ZCKVvR04+5g=" + "s": 31575592, + "sha1_base64": "Iimp6fVbCQjfsyXyez+luvOfL2I=" }, { "id": "Italy_Lombardy_Monza and Brianza", @@ -7164,8 +7164,8 @@ "Italia", "Lombardia" ], - "s": 10385827, - "sha1_base64": "0+py09ZZrv/ByYPlazpng6rgYxc=" + "s": 10337715, + "sha1_base64": "zpfVZGFBe8xI7N0ec22qZexFI0s=" }, { "id": "Italy_Lombardy_Pavia", @@ -7176,8 +7176,8 @@ "Italia", "Lombardia" ], - "s": 28820952, - "sha1_base64": "osukS62DK4Tn/+bsn5/O73CjW5c=" + "s": 28805328, + "sha1_base64": "dAnKrQQNZOgGur5pV0ols1pD/O0=" }, { "id": "Italy_Lombardy_Sondrio", @@ -7188,8 +7188,8 @@ "Italia", "Lombardia" ], - "s": 16826836, - "sha1_base64": "PS/xTVTh8JBVqBQi56gGdWHrbPM=" + "s": 16791620, + "sha1_base64": "Oq9ZeF230RgBfDCmrV2hm4xtIzM=" }, { "id": "Italy_Lombardy_Varese", @@ -7200,8 +7200,8 @@ "Italia", "Lombardia" ], - "s": 15826941, - "sha1_base64": "FJzsFS4HBElNptFhX8HyGX4yItk=" + "s": 15816197, + "sha1_base64": "13XCNUWxPoPSQP9IVaPT1iY52WI=" } ] }, @@ -7214,8 +7214,8 @@ "Italia", "Marche" ], - "s": 36520305, - "sha1_base64": "TROld/CRgbjdGKZmvYXYSjC/jdQ=" + "s": 36350993, + "sha1_base64": "pe8jeyOwgpkzIlXJhmXNQwMnd8Q=" }, { "id": "Italy_Molise", @@ -7226,8 +7226,8 @@ "Italia", "Molise" ], - "s": 12821201, - "sha1_base64": "ojZ+6+IuTI3IqmaBMb1HV/3IyZ0=" + "s": 12807121, + "sha1_base64": "77/zMDA+PFoHBwg2hkW5l0RgDIk=" }, { "id": "Italy_Piemont", @@ -7241,8 +7241,8 @@ "Italia", "Piemonte" ], - "s": 23160511, - "sha1_base64": "Vqhvn7CuQQb9sP7ts08Pw86sVIw=" + "s": 23153711, + "sha1_base64": "Oy5vCbhZuKzSR/4CWqb+3NMXoVI=" }, { "id": "Italy_Piemont_Asti", @@ -7253,8 +7253,8 @@ "Italia", "Piemonte" ], - "s": 11700690, - "sha1_base64": "eIUdCoX1/XH6khN3q960guT6XeM=" + "s": 11605922, + "sha1_base64": "lKnw2JaseRFsiuwL0CjZQWhClo8=" }, { "id": "Italy_Piemont_Biella", @@ -7265,8 +7265,8 @@ "Italia", "Piemonte" ], - "s": 12410585, - "sha1_base64": "fGx9wtCDjpCwgKdmUaKDugtTsws=" + "s": 12456945, + "sha1_base64": "/+zMstu+Q5J1zDbkmbMCJw4HeIc=" }, { "id": "Italy_Piemont_Cuneo", @@ -7277,8 +7277,8 @@ "Italia", "Piemonte" ], - "s": 48672160, - "sha1_base64": "9shH/r9C6mSuRQUGj2dV37iUhAM=" + "s": 47955008, + "sha1_base64": "n5HKSqgQaMCNjOU0+SkcegmTvYU=" }, { "id": "Italy_Piemont_Novara", @@ -7289,8 +7289,8 @@ "Italia", "Piemonte" ], - "s": 10862749, - "sha1_base64": "TbsoZ30VpWclOQ0A+Rg3a0tUzYk=" + "s": 10816581, + "sha1_base64": "UO60NALt8GURB6VOuwfq+2I3FNo=" }, { "id": "Italy_Piemont_Torino", @@ -7301,8 +7301,8 @@ "Italia", "Piemonte" ], - "s": 53560352, - "sha1_base64": "xJ48gqsf2BOFzGq5lCXQxTndw1w=" + "s": 53271552, + "sha1_base64": "uzEhLPdh+B2L/Dv4tAf39HeIrPc=" }, { "id": "Italy_Piemont_Verbano-Cusio-Ossola", @@ -7313,8 +7313,8 @@ "Italia", "Piemonte" ], - "s": 16548443, - "sha1_base64": "H5aT8srIunHJyPcz79Lmyf44JV4=" + "s": 16341811, + "sha1_base64": "3JVDRKzHGE8X19urYfdv34pMiow=" }, { "id": "Italy_Piemont_Vercelli", @@ -7325,8 +7325,8 @@ "Italia", "Piemonte" ], - "s": 13854628, - "sha1_base64": "V3KWPP0MstSmviy8s6N2DIGz2iE=" + "s": 13841612, + "sha1_base64": "QxD5ZRe70BrqyE/Xruh8H5S17U4=" } ] }, @@ -7349,8 +7349,8 @@ "Sardigna/Sardegna", "Scoglio Il Catalano" ], - "s": 73881038, - "sha1_base64": "xFk+8OP0XePzNAO5yBrXek88zGM=" + "s": 73536270, + "sha1_base64": "HFoC/vXIe5RWK6yhPN2SPpCYJ70=" }, { "id": "Italy_Sicily", @@ -7398,8 +7398,8 @@ "Scoglio Palumbo", "Sicilia" ], - "s": 73851491, - "sha1_base64": "x/3WwAvoxBvW6Ft7a+xoFwB/xBw=" + "s": 73313283, + "sha1_base64": "7P7z8vguW9HGWAyaJ4dj/dNRsGk=" }, { "id": "Italy_Trentino-Alto Adige Sudtirol", @@ -7410,8 +7410,8 @@ "Italia", "Trentino-Alto Adige/S\u00fcdtirol" ], - "s": 79469047, - "sha1_base64": "5e3EoSmWU7K7fGL0d93srpWiB5g=" + "s": 79355807, + "sha1_base64": "DHLfiIJEmSpTLjRV6BvyBGJ6id4=" }, { "id": "Italy_Tuscany_Grosseto", @@ -7428,8 +7428,8 @@ "Le Scole", "Toscana" ], - "s": 53082074, - "sha1_base64": "mkYkLMp7itDPe0Y/AzT5AIYuCFU=" + "s": 53102074, + "sha1_base64": "fg+mGe/de1PTgbNWmzNujIjSDPg=" }, { "id": "Italy_Tuscany_Massa e Carrara", @@ -7447,8 +7447,8 @@ "Scoglio d'Africa", "Toscana" ], - "s": 99199583, - "sha1_base64": "ejOFtqizVsCCB7GaH/p3dtUYWMI=" + "s": 99100815, + "sha1_base64": "jdejEf85wUbiNqi1f7THtvLCjJg=" }, { "id": "Italy_Umbria", @@ -7459,8 +7459,8 @@ "Italia", "Umbria" ], - "s": 30294023, - "sha1_base64": "5Jp2oN8BlhhensSUiDE05cPMMjM=" + "s": 30140855, + "sha1_base64": "hIqMs2JqhKgb8+DHMrDbKoW4++0=" }, { "id": "Italy_Veneto", @@ -7474,8 +7474,8 @@ "Italia", "Veneto" ], - "s": 22868725, - "sha1_base64": "SnelVl2KFaVB7x1rNU9cqiEKw4c=" + "s": 22735277, + "sha1_base64": "8Ppkky0krvcmhpBp64Q+L/b/2KA=" }, { "id": "Italy_Veneto_Padova", @@ -7486,8 +7486,8 @@ "Italia", "Veneto" ], - "s": 25612869, - "sha1_base64": "5cYD9mppv42n2O9nFahRnSsUTa0=" + "s": 25578005, + "sha1_base64": "POfXqzZ7sK77aswFKp4pjXtPu1c=" }, { "id": "Italy_Veneto_Rovigo", @@ -7498,8 +7498,8 @@ "Italia", "Veneto" ], - "s": 9279650, - "sha1_base64": "cGKYgXHB7noMg9ahriNt2Oez/HE=" + "s": 9273218, + "sha1_base64": "hMNc3ss/dSHJTuOVSLGw4SOeDP0=" }, { "id": "Italy_Veneto_Treviso", @@ -7510,8 +7510,8 @@ "Italia", "Veneto" ], - "s": 33123830, - "sha1_base64": "wFKYw3i9ZspPKJYq2oGMsLrhDPc=" + "s": 33087910, + "sha1_base64": "5AJOhuopwsHhYF2kgubNiuOIM1A=" }, { "id": "Italy_Veneto_Venezia", @@ -7522,8 +7522,8 @@ "Italia", "Veneto" ], - "s": 22473078, - "sha1_base64": "4bPPDyg4k1fJfMeQOmjvAoU7OUU=" + "s": 22430486, + "sha1_base64": "2j+uHwO5jwdfwkOGcO41sUUI0E4=" }, { "id": "Italy_Veneto_Verona", @@ -7534,8 +7534,8 @@ "Italia", "Veneto" ], - "s": 30803551, - "sha1_base64": "CimEdR2qS1K6G2hFcvP2Z6418Uw=" + "s": 30777335, + "sha1_base64": "EwuDbtMLAFevVo3tY1AA4xvBVKs=" }, { "id": "Italy_Veneto_Vicenza", @@ -7546,8 +7546,8 @@ "Italia", "Veneto" ], - "s": 33101887, - "sha1_base64": "DYdjGFdGRu/o+IU3xNuvhxblVBA=" + "s": 33057039, + "sha1_base64": "pLLnTHNHaSqu+zF/Nl2CbgLR+2I=" } ] } @@ -7561,8 +7561,8 @@ "affiliations": [ "Jamaica" ], - "s": 33662098, - "sha1_base64": "wf0DF2E9r/LGeBrFuWjRokh16gU=" + "s": 33629834, + "sha1_base64": "FAWhHZ2Iyy6ekk0UFj6RVoJx6+g=" }, { "id": "Japan", @@ -7580,8 +7580,8 @@ "\u4e09\u91cd\u770c", "\u611b\u77e5\u770c" ], - "s": 45969749, - "sha1_base64": "tMPbQqIICLXW5N8Mdi8mY3VNg1c=" + "s": 45679981, + "sha1_base64": "VSYWR7RhhpyKHMVyT0RTFjTdUUo=" }, { "id": "Japan_Chubu Region_Aichi_Toyohashi", @@ -7592,8 +7592,8 @@ "\u65e5\u672c", "\u611b\u77e5\u770c" ], - "s": 19193044, - "sha1_base64": "iiouIvHknwelFLEwZMp5/Ov4r/M=" + "s": 19190972, + "sha1_base64": "/KhwTT/d5LNgE68W7jT5PR0sOtk=" }, { "id": "Japan_Chubu Region_Fukui", @@ -7604,8 +7604,8 @@ "\u65e5\u672c", "\u798f\u4e95\u770c" ], - "s": 21405380, - "sha1_base64": "mSurc/Phys1EsHnz4Y+enhldoag=" + "s": 21367404, + "sha1_base64": "ApLvertDH3IVviehQksbK2SZs0I=" }, { "id": "Japan_Chubu Region_Gifu", @@ -7616,8 +7616,8 @@ "\u65e5\u672c", "\u5c90\u961c\u770c" ], - "s": 26118045, - "sha1_base64": "Ekdu+cKOkJfZAp8xCN1nUEAExa0=" + "s": 26100069, + "sha1_base64": "96VokPzDAezYpuFrhF3UT/rRQz4=" }, { "id": "Japan_Chubu Region_Ishikawa", @@ -7628,8 +7628,8 @@ "\u65e5\u672c", "\u77f3\u5ddd\u770c" ], - "s": 19100539, - "sha1_base64": "gi+Tmt5EhRw1faey+jPP3aiFgiU=" + "s": 19108779, + "sha1_base64": "Z2ktJFozkGgZ8w3kMlz1gQdG7II=" }, { "id": "Japan_Chubu Region_Nagano", @@ -7640,8 +7640,8 @@ "\u9577\u91ce\u770c", "\u65e5\u672c" ], - "s": 39509944, - "sha1_base64": "l9lqrEcyB/392eHIJwBYnmKPmrc=" + "s": 38940216, + "sha1_base64": "wrAnFk7F1nbtTE6fz26A1pG+YsU=" }, { "id": "Japan_Chubu Region_Niigata", @@ -7653,8 +7653,8 @@ "\u65b0\u6f5f\u770c", "\u77f3\u5ddd\u770c" ], - "s": 33546670, - "sha1_base64": "YoXRyBHmWIlMUmktC6yMxbYABf4=" + "s": 33475622, + "sha1_base64": "m4D8PGyLrbpjOfOMK+f5TylssDs=" }, { "id": "Japan_Chubu Region_Shizuoka", @@ -7665,8 +7665,8 @@ "\u9759\u5ca1\u770c", "\u65e5\u672c" ], - "s": 87965010, - "sha1_base64": "+q1wXZwTdCvl535dj51MY2H1+BY=" + "s": 87615882, + "sha1_base64": "Xam5sK5d/tu1Lkw4pS9uCAq++x0=" }, { "id": "Japan_Chubu Region_Toyama", @@ -7678,8 +7678,8 @@ "\u5bcc\u5c71\u770c", "\u77f3\u5ddd\u770c" ], - "s": 21476651, - "sha1_base64": "aW560fVwjhljiL4btFcaxY3NDZc=" + "s": 21634443, + "sha1_base64": "c7jqZ71r/G/yG94UPvuSEo/uC/U=" }, { "id": "Japan_Chubu Region_Yamanashi", @@ -7690,8 +7690,8 @@ "\u65e5\u672c", "\u5c71\u68a8\u770c" ], - "s": 21800484, - "sha1_base64": "2Fw1AFElYTzM7uuf1o2oSChCO5Q=" + "s": 21781780, + "sha1_base64": "mfJOSTwKEI12uQGYlTZGDI88zMI=" } ] }, @@ -7707,8 +7707,8 @@ "\u65e5\u672c", "\u5e83\u5cf6\u770c" ], - "s": 48523909, - "sha1_base64": "vBkYj7T5qmBlsY1WL4ind54p56I=" + "s": 48483693, + "sha1_base64": "riqrP93p9cmcOCf/NC1+7ciQ48I=" }, { "id": "Japan_Chugoku Region_Okayama", @@ -7719,8 +7719,8 @@ "\u65e5\u672c", "\u5ca1\u5c71\u770c" ], - "s": 34183014, - "sha1_base64": "0SmK3ZyLH7CoQrvSYvEr0Bval4c=" + "s": 34143974, + "sha1_base64": "t9O1sgQH0PL2ra3in1zx81xrLRM=" }, { "id": "Japan_Chugoku Region_Shimane", @@ -7731,8 +7731,8 @@ "\u65e5\u672c", "\u5cf6\u6839\u770c" ], - "s": 22491837, - "sha1_base64": "mGiYS17IFvQKcw1fc+btNWrFr8g=" + "s": 22516501, + "sha1_base64": "ntVUAXegxUPl0K7Ptf4brpRpcCw=" }, { "id": "Japan_Chugoku Region_Tottori", @@ -7743,8 +7743,8 @@ "\u9ce5\u53d6\u770c", "\u65e5\u672c" ], - "s": 20598060, - "sha1_base64": "5zpP8kykD7jbdhK9ouMnkoVLH7s=" + "s": 20550500, + "sha1_base64": "GBsdos0JhdJtVY2ZDQinxqy/tFM=" }, { "id": "Japan_Chugoku Region_Yamaguchi", @@ -7755,8 +7755,8 @@ "\u65e5\u672c", "\u5c71\u53e3\u770c" ], - "s": 25850173, - "sha1_base64": "dd+6eFRk91pRO7SpoUb2JKlw+j4=" + "s": 25736301, + "sha1_base64": "IfB7MLwA+tcJqFRMygbVm3V60yg=" } ] }, @@ -7772,8 +7772,8 @@ "\u65e5\u672c", "\u5317\u6d77\u9053" ], - "s": 32480125, - "sha1_base64": "RhrLaHSJzo5EBCUE6D0BaQksWjk=" + "s": 32428957, + "sha1_base64": "9RtPmOcKs7WZWum88xTEYqP80ZM=" }, { "id": "Japan_Hokkaido Region_North", @@ -7784,8 +7784,8 @@ "\u65e5\u672c", "\u5317\u6d77\u9053" ], - "s": 44979504, - "sha1_base64": "psMZ7qgChS6A42y/bU6sNIzyekI=" + "s": 44847584, + "sha1_base64": "vvLqsswNimswfxkNHcCOaiFoZk0=" }, { "id": "Japan_Hokkaido Region_West", @@ -7796,8 +7796,8 @@ "\u65e5\u672c", "\u5317\u6d77\u9053" ], - "s": 29228380, - "sha1_base64": "F6zqE0y9i8Q0kuiJ+p4J9pB9iLM=" + "s": 29119676, + "sha1_base64": "wUamodwSNpEoFmiD9qH6VwBnQoE=" }, { "id": "Japan_Hokkaido Region_Sapporo", @@ -7808,8 +7808,8 @@ "\u65e5\u672c", "\u5317\u6d77\u9053" ], - "s": 55582449, - "sha1_base64": "+kpqK+qzORPMctBcAGifv6NvL98=" + "s": 55453449, + "sha1_base64": "kLUonyppArKhisItXu1e/O7sz9E=" } ] }, @@ -7827,8 +7827,8 @@ "\u6771\u4eac\u90fd", "\u795e\u5948\u5ddd\u770c" ], - "s": 43913506, - "sha1_base64": "gurslhSjJWd+fffsjI/isHKtAaY=" + "s": 43019242, + "sha1_base64": "oUg8PoTGmzgY4WYl6REbEDiZVSY=" }, { "id": "Japan_Kanto_Gunma", @@ -7839,8 +7839,8 @@ "\u65e5\u672c", "\u7fa4\u99ac\u770c" ], - "s": 26935629, - "sha1_base64": "Ht1TS0QQzCLCuJrDOU7HDBYmFdg=" + "s": 26856621, + "sha1_base64": "0LtY5LWMbfAiUkdNteKhGtGebDk=" }, { "id": "Japan_Kanto_Ibaraki", @@ -7853,8 +7853,8 @@ "\u5343\u8449\u770c", "\u798f\u5cf6\u770c" ], - "s": 27688947, - "sha1_base64": "43URwbqktbA3SLoUS/nCoGqiu/4=" + "s": 27663531, + "sha1_base64": "92lz/IurZAQxtodlRPO7R9k36Ek=" }, { "id": "Japan_Kanto_Kanagawa", @@ -7868,8 +7868,8 @@ "\u6771\u4eac\u90fd", "\u795e\u5948\u5ddd\u770c" ], - "s": 65148671, - "sha1_base64": "ngDJuBDBYaldPiHtANUtcs8uDWc=" + "s": 64721747, + "sha1_base64": "/a/4kf47uVS03gin4sSxs3KuLJ4=" }, { "id": "Japan_Kanto_Saitama", @@ -7880,8 +7880,8 @@ "\u65e5\u672c", "\u57fc\u7389\u770c" ], - "s": 44493662, - "sha1_base64": "6HkRSrA9IeompM+Z7dJq3vvFGcE=" + "s": 43226207, + "sha1_base64": "MD/rEtjkWLz5ZcGKG562mR20Wi0=" }, { "id": "Japan_Kanto_Tochigi", @@ -7892,8 +7892,8 @@ "\u65e5\u672c", "\u6803\u6728\u770c" ], - "s": 31484654, - "sha1_base64": "eM6jHZzltNX+GcALnnkHXm6k3ac=" + "s": 31298181, + "sha1_base64": "LE9OG9s7lS1T1NPA+cq36eD3UGE=" }, { "id": "Japan_Kanto_Tokyo", @@ -7905,8 +7905,8 @@ "\u65e5\u672c", "\u6771\u4eac\u90fd" ], - "s": 80537476, - "sha1_base64": "rpVBsLWed+MBQUxyhpdu3nQV0so=" + "s": 79383304, + "sha1_base64": "d/iMPjQ/gjzJQyziRBJOpsSapGA=" } ] }, @@ -7923,8 +7923,8 @@ "\u4eac\u90fd\u5e9c", "\u6ecb\u8cc0\u770c" ], - "s": 61282378, - "sha1_base64": "BKRh7yr0yD+fs3gPALdwMSoDD5I=" + "s": 61085642, + "sha1_base64": "rluziLnTdkMfwMgDLgSwvhYFiHU=" }, { "id": "Japan_Kinki Region_Mie", @@ -7936,8 +7936,8 @@ "\u4e09\u91cd\u770c", "\u611b\u77e5\u770c" ], - "s": 26931206, - "sha1_base64": "5DB0z+O6wW3bSIqhuTdX0Nb8Wok=" + "s": 26841398, + "sha1_base64": "+Pa84HNxLb+k3OJqoUGyPCMOVtA=" }, { "id": "Japan_Kinki Region_Nara", @@ -7949,8 +7949,8 @@ "\u5948\u826f\u770c", "\u548c\u6b4c\u5c71\u770c" ], - "s": 22796090, - "sha1_base64": "S6TBEaP94Mc6xLmGjStiSJreLI8=" + "s": 22739898, + "sha1_base64": "LZKGICM/gNGZnW5s83sPujUiWN4=" }, { "id": "Japan_Kinki Region_Osaka_Osaka", @@ -7962,8 +7962,8 @@ "\u5175\u5eab\u770c", "\u5927\u962a\u5e9c" ], - "s": 58761581, - "sha1_base64": "fpAx1Ni8t3Yia1jigZcq0PsC2yA=" + "s": 58428685, + "sha1_base64": "Wx/6FFcBAMg84I86mBS63jySpWM=" }, { "id": "Japan_Kinki Region_Osaka_West", @@ -7974,8 +7974,8 @@ "\u65e5\u672c", "\u5175\u5eab\u770c" ], - "s": 46499592, - "sha1_base64": "62Cvr3HQj4LAUXb/Zgcd4zA+aZg=" + "s": 46085960, + "sha1_base64": "c124ovYAqN6bHTk6vLNf+ny0474=" }, { "id": "Japan_Kinki Region_Wakayama", @@ -7986,8 +7986,8 @@ "\u65e5\u672c", "\u548c\u6b4c\u5c71\u770c" ], - "s": 17611356, - "sha1_base64": "rWiJMuN7xzz9fMdI+Oh0er0yI48=" + "s": 17631484, + "sha1_base64": "FkTL8NGiRt5dHeT5MFILgVAhKUI=" } ] }, @@ -8003,8 +8003,8 @@ "\u65e5\u672c", "\u798f\u5ca1\u770c" ], - "s": 42688247, - "sha1_base64": "GkWAawSS56FzJnBbLwrus2NhGkk=" + "s": 42665983, + "sha1_base64": "1wDTbLjDIzgTolVluD1aP2RFPD8=" }, { "id": "Japan_Kyushu Region_Kagoshima", @@ -8015,8 +8015,8 @@ "\u65e5\u672c", "\u9e7f\u5150\u5cf6\u770c" ], - "s": 25998958, - "sha1_base64": "PewZORRyESlCzZh0PFhlnOr7qME=" + "s": 25880654, + "sha1_base64": "cL6pRMjFL87m4dQVq4ECB7Tt4Zc=" }, { "id": "Japan_Kyushu Region_Kumamoto", @@ -8027,8 +8027,8 @@ "\u65e5\u672c", "\u718a\u672c\u770c" ], - "s": 34530414, - "sha1_base64": "EMIlAepMAn1q5NUiCprXpbVX0vM=" + "s": 34721646, + "sha1_base64": "wx2iZFbKkGNtn5HKMUtYjbLiSOU=" }, { "id": "Japan_Kyushu Region_Miyazaki", @@ -8039,8 +8039,8 @@ "\u65e5\u672c", "\u5bae\u5d0e\u770c" ], - "s": 17584653, - "sha1_base64": "rKvla64iFlbYKmJqNtw7KhEJibI=" + "s": 17574893, + "sha1_base64": "DOUtkMTFXepVpkNJ/J1a3bZqUZA=" }, { "id": "Japan_Kyushu Region_Nagasaki", @@ -8051,8 +8051,8 @@ "\u9577\u5d0e\u770c", "\u65e5\u672c" ], - "s": 26155133, - "sha1_base64": "AbYeneNitVhq+hOX1lq04JIfpbA=" + "s": 26031381, + "sha1_base64": "SuG5NfF2LIjSS8griSYyvadIWpg=" }, { "id": "Japan_Kyushu Region_Oita", @@ -8063,8 +8063,8 @@ "\u65e5\u672c", "\u5927\u5206\u770c" ], - "s": 24459958, - "sha1_base64": "JDQ0u4w/nQWZsC+Zi2WjjI8lB2E=" + "s": 24509574, + "sha1_base64": "PmJNH7Suc5ALj0vwciAg9AGJicE=" }, { "id": "Japan_Kyushu Region_Okinawa", @@ -8075,8 +8075,8 @@ "\u65e5\u672c", "\u6c96\u7e04\u770c" ], - "s": 15263919, - "sha1_base64": "V7SHg8PdU7OyC6JdwILXsuKcsCg=" + "s": 14357087, + "sha1_base64": "duA+7eloRu4lDNELrbfsyURj4QA=" }, { "id": "Japan_Kyushu Region_Saga", @@ -8087,8 +8087,8 @@ "\u65e5\u672c", "\u4f50\u8cc0\u770c" ], - "s": 20299844, - "sha1_base64": "aHokdJijMLVRczGjkKhzvsg53Qg=" + "s": 20263892, + "sha1_base64": "ttolSlp0pJPt4D8LtM+b5/KPRGg=" } ] }, @@ -8104,8 +8104,8 @@ "\u65e5\u672c", "\u611b\u5a9b\u770c" ], - "s": 29074276, - "sha1_base64": "A1WYjdKCDQv5JTdBRqtSoRsFHsg=" + "s": 29021508, + "sha1_base64": "eMuE8V11V3tdnxJcVdqMTK+hu6g=" }, { "id": "Japan_Shikoku Region_Kagawa", @@ -8116,8 +8116,8 @@ "\u9999\u5ddd\u770c", "\u65e5\u672c" ], - "s": 11281907, - "sha1_base64": "xKiPXAD5C+zmpxwl/QBRXf4KjDA=" + "s": 11182699, + "sha1_base64": "tq919ZCIjXmzTo7eaherX84fJ38=" }, { "id": "Japan_Shikoku Region_Kochi", @@ -8128,8 +8128,8 @@ "\u9ad8\u77e5\u770c", "\u65e5\u672c" ], - "s": 18215094, - "sha1_base64": "1cZzWulytuMMsEkZjVge8LIXWO0=" + "s": 18169726, + "sha1_base64": "cT2MVd9e99e9EegkqG9zgwsO3ms=" }, { "id": "Japan_Shikoku Region_Tokushima", @@ -8140,8 +8140,8 @@ "\u65e5\u672c", "\u5fb3\u5cf6\u770c" ], - "s": 20515347, - "sha1_base64": "My8zGo9nae7JB4aW/4/aB+K6tBY=" + "s": 20541723, + "sha1_base64": "W2a7h8xuMGs9gVDZCPJB51xgOBE=" } ] }, @@ -8157,8 +8157,8 @@ "\u65e5\u672c", "\u79cb\u7530\u770c" ], - "s": 37148623, - "sha1_base64": "XT9BG12nyenFMtnPEa/xKiN4Ues=" + "s": 36664583, + "sha1_base64": "3qtX9HSeclGHVc25ndR8fM1cTQs=" }, { "id": "Japan_Tohoku_Aomori", @@ -8169,8 +8169,8 @@ "\u9752\u68ee\u770c", "\u65e5\u672c" ], - "s": 22765342, - "sha1_base64": "x4LjDM7cnjEHJILwuJFp2bIpEH4=" + "s": 22618422, + "sha1_base64": "R8xuWqStQ6nrEOVcwoJbXVPgAuU=" }, { "id": "Japan_Tohoku_Fukushima", @@ -8181,8 +8181,8 @@ "\u65e5\u672c", "\u798f\u5cf6\u770c" ], - "s": 46923096, - "sha1_base64": "r8ncdXdsVBA0NnbobQ0/ARkYDRE=" + "s": 46480936, + "sha1_base64": "SOkoFhmkrgoM28iSiwQq9wNFPR0=" }, { "id": "Japan_Tohoku_Iwate", @@ -8193,8 +8193,8 @@ "\u65e5\u672c", "\u5ca9\u624b\u770c" ], - "s": 30740975, - "sha1_base64": "egi0lNNvMUpWVBYR6NnxX1x6kjA=" + "s": 30665407, + "sha1_base64": "2nzwZCAuXElMajHCQKg6ytFZqJs=" }, { "id": "Japan_Tohoku_Miyagi", @@ -8206,8 +8206,8 @@ "\u5bae\u57ce\u770c", "\u798f\u5cf6\u770c" ], - "s": 45134302, - "sha1_base64": "FdPm6wfk17jtWlAeHsaKci/zrY0=" + "s": 42349269, + "sha1_base64": "u/+qBYECrU/YZw7NWATp5tMC7IM=" }, { "id": "Japan_Tohoku_Yamagata", @@ -8218,8 +8218,8 @@ "\u65e5\u672c", "\u5c71\u5f62\u770c" ], - "s": 19607397, - "sha1_base64": "RqA+nA4xp2I7AituA+itY0w7VRM=" + "s": 19494453, + "sha1_base64": "OSwudEaRfLPaDocPdr5Il1kmOko=" } ] } @@ -8242,8 +8242,8 @@ "Queen's Rock", "The Islet" ], - "s": 1626072, - "sha1_base64": "A5kFqzccBjULrBTCeyUvN+nQzRk=" + "s": 1622888, + "sha1_base64": "jvv8Tgq+O4XaT4nCey8Aaw0D90w=" }, { "id": "Jordan", @@ -8265,8 +8265,8 @@ "Zarqa", "\u0627\u0644\u0623\u0631\u062f\u0646" ], - "s": 37828166, - "sha1_base64": "d96zSS8Rtx3PwM7u3BKBbmDjwKI=" + "s": 37757198, + "sha1_base64": "oYpQtgLOYRQAaoKt3uXlU0D5kHA=" }, { "id": "Kazakhstan", @@ -8285,8 +8285,8 @@ "\u041f\u0430\u0432\u043b\u043e\u0434\u0430\u0440\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u041a\u0430\u0440\u0430\u0433\u0430\u043d\u0434\u0438\u043d\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 54297059, - "sha1_base64": "Ci55UoaIxTs6YAAaN/ZxGjcyFaU=" + "s": 54177523, + "sha1_base64": "hKWwe8dgsmKSUxEPpD2VBTRxt0E=" }, { "id": "Kazakhstan_South", @@ -8306,8 +8306,8 @@ "\u041c\u0430\u043d\u0433\u0438\u0441\u0442\u0430\u0443\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u041a\u044b\u0437\u044b\u043b\u043e\u0440\u0434\u0438\u043d\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 74261575, - "sha1_base64": "8f+sPkjvag7HVlVLa6A4JiGIGUU=" + "s": 73475207, + "sha1_base64": "rdGJjkxqfiHrq9YEXcgsUWh7Gwg=" } ] }, @@ -8366,8 +8366,8 @@ "Wajir", "West Pokot" ], - "s": 146810956, - "sha1_base64": "7VZfv45tS72vKnfGJRN9rsjTWpQ=" + "s": 145858804, + "sha1_base64": "QtYupupp07mydcWzY+fnOXe2c1w=" }, { "id": "Kingdom of Lesotho", @@ -8380,8 +8380,8 @@ "country_name_synonyms": [ "Lesotho" ], - "s": 85000072, - "sha1_base64": "s8nlsntH+1ocrQ7dw1V0S8NLAu4=" + "s": 84997352, + "sha1_base64": "O7HFrWmpodYclRUMz6GZ3BL4zDU=" }, { "id": "Kiribati", @@ -8391,8 +8391,8 @@ "affiliations": [ "Kiribati" ], - "s": 1857060, - "sha1_base64": "shl1ZZyTorGMpFOHpzJ+T3nMYrU=" + "s": 1812948, + "sha1_base64": "FRweY31y99JzI7q0T5HIYHDoc9Y=" }, { "id": "Kuwait", @@ -8408,8 +8408,8 @@ "\u0627\u0644\u0641\u0631\u0648\u0627\u0646\u064a\u0629", "\u200f\u0627\u0644\u0643\u0648\u064a\u062a\u200e" ], - "s": 18495881, - "sha1_base64": "SEOm/6mx8GvYP4CmuZsxDNLnvX4=" + "s": 18440425, + "sha1_base64": "Z39lHcy+c3dq/0wbzdlZKizrD5g=" }, { "id": "Kyrgyzstan", @@ -8430,8 +8430,8 @@ "\u0427\u0443\u0439\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u041a\u044b\u0440\u0433\u044b\u0437\u0441\u0442\u0430\u043d" ], - "s": 39290002, - "sha1_base64": "W5+ZW5+rYPLQdHclt2w995Wg8e0=" + "s": 39185794, + "sha1_base64": "MK+xnrSonVaVwMAIc+L6c1DhhGM=" }, { "id": "Laos", @@ -8458,8 +8458,8 @@ "\u0eaa\u0eb0\u0eab\u0ea7\u0eb1\u0e99\u0e99\u0eb0\u0ec0\u0e82\u0e94", "\u0e99\u0eb0\u0e84\u0ead\u0e99\u0eab\u0ebc\u0ea7\u0e87\u0ea7\u0ebd\u0e87\u0e88\u0eb1\u0e99" ], - "s": 39472717, - "sha1_base64": "8vqkUaFS+CNUTstbEe4Fj7qxhHg=" + "s": 39221981, + "sha1_base64": "vckg8VF9AhX4SFEVcZOkeQFCf50=" }, { "id": "Latvia", @@ -8473,8 +8473,8 @@ "Vidzeme", "Zemgale" ], - "s": 84125207, - "sha1_base64": "BWztdwbxbwolvpBGG/4oae9lZk8=" + "s": 81782127, + "sha1_base64": "gdoDQlLUAo3zPMZLBY1Nm8H77IU=" }, { "id": "Lebanon", @@ -8509,8 +8509,8 @@ "\u0642\u0636\u0627\u0621 \u0627\u0644\u0628\u062a\u0631\u0648\u0646", "\u0642\u0636\u0627\u0621 \u0627\u0644\u0646\u0628\u0637\u064a\u0629" ], - "s": 29702764, - "sha1_base64": "eHESd4AtiplGZaOguVEpkipfoHE=" + "s": 29520972, + "sha1_base64": "+iWGwssR4PFcvfWAE28FOKkMLS4=" }, { "id": "Liberia", @@ -8535,8 +8535,8 @@ "River Gee County", "Sinoe County" ], - "s": 40568340, - "sha1_base64": "Cfdnhsx/yoDn0grOcJt4oLiVzF8=" + "s": 40509356, + "sha1_base64": "QS7l03DScIrGO5vpWPJ4Gp1AW04=" }, { "id": "Libya", @@ -8568,8 +8568,8 @@ "\u0627\u0644\u0648\u0627\u062d\u0627\u062a", "\u0627\u0644\u0632\u0627\u0648\u064a\u0629" ], - "s": 38386877, - "sha1_base64": "HYJKANHUa+qYgP9nmazeQjNEdis=" + "s": 37041949, + "sha1_base64": "EWI8+zEKk3lK9MRd6Q8HuH0QJIg=" }, { "id": "Liechtenstein", @@ -8579,8 +8579,8 @@ "affiliations": [ "Liechtenstein" ], - "s": 2401047, - "sha1_base64": "j825uzpPAg/dmo5N1GuxSq3Wr/Q=" + "s": 2394727, + "sha1_base64": "yqFuG6DAeDDFmeKu7l/OmXNsmo0=" }, { "id": "Lithuania", @@ -8597,8 +8597,8 @@ "Utenos apskritis", "Vilniaus apskritis" ], - "s": 86205830, - "sha1_base64": "0Oju8GnpJTXudXc7ccx/OJw4Yew=" + "s": 85499254, + "sha1_base64": "BzbpOsv30iUAfnr9VqVU6CbPjYg=" }, { "id": "Lithuania_West", @@ -8614,8 +8614,8 @@ "Taurag\u0117s apskritis", "\u0160iauli\u0173 apskritis" ], - "s": 80607973, - "sha1_base64": "ryLP8p3aQ92eQB5peDV4o9yip70=" + "s": 79287365, + "sha1_base64": "rpyCgiTnJZn5VaDpOh3V63OhjM0=" } ] }, @@ -8627,8 +8627,8 @@ "affiliations": [ "L\u00ebtzebuerg" ], - "s": 33833531, - "sha1_base64": "WsLwkzCTW1dxBsvilkGwLT3mT0w=" + "s": 33616651, + "sha1_base64": "GqNY+ydSeRmZMmBb+KhPCuQP7xk=" }, { "id": "Macedonia", @@ -8649,8 +8649,8 @@ "country_name_synonyms": [ "North Macedonia" ], - "s": 26298104, - "sha1_base64": "3OdtvlSLSCzFaj2+Qsszph3cAV4=" + "s": 26263656, + "sha1_base64": "qHYnQ13J8rjH44xdAOs4zTR7kqA=" }, { "id": "Madagascar", @@ -8664,8 +8664,8 @@ "R\u00e9gion de Sava", "Pr\u00e9fecture de police de Nosy Be" ], - "s": 227303705, - "sha1_base64": "1vzkkQ6IdIBb5sVecqT6ibJSZ5g=" + "s": 214059921, + "sha1_base64": "pN2TNKuuIkNPpgmuTGgemmWFNUk=" }, { "id": "Malawi", @@ -8681,8 +8681,8 @@ "Northern", "Southern" ], - "s": 116653906, - "sha1_base64": "4HxG3aOO5/33ocR59YYIYT+X2dE=" + "s": 115386306, + "sha1_base64": "HIw4PXdIUb1CHplquAT6bxRyegc=" }, { "id": "Malaysia", @@ -8728,8 +8728,8 @@ "Sarawak", "Singapura" ], - "s": 139274550, - "sha1_base64": "B6ZFUvN+F3DEZ+Y8d0qju4IU2PI=" + "s": 138542342, + "sha1_base64": "3Y9C2XhjiRRpuTWi9kT6ck9zySA=" }, { "id": "Maldives", @@ -8748,8 +8748,8 @@ "Medhu-Uthuru Province", "\u078b\u07a8\u0788\u07ac\u0780\u07a8\u0783\u07a7\u0787\u07b0\u0796\u07ad\u078e\u07ac \u0796\u07aa\u0789\u07aa\u0780\u07ab\u0783\u07a8\u0787\u07b0\u0794\u07a7" ], - "s": 2301408, - "sha1_base64": "/ijACgNP2n0cYSWOYp7+nSPZN5s=" + "s": 2299936, + "sha1_base64": "i9w1knM+eA+NSOlDfPHe0f3QHK4=" }, { "id": "Mali", @@ -8768,8 +8768,8 @@ "S\u00e9gou", "Tombouctou" ], - "s": 119491632, - "sha1_base64": "vwWTewZ19lAetFmxT4OrfnlPOyQ=" + "s": 116759824, + "sha1_base64": "o9bTynQ/rToMT78mqFiuEUVKQPA=" }, { "id": "Malta", @@ -8786,8 +8786,8 @@ "Malta", "Malta" ], - "s": 4482782, - "sha1_base64": "FFFZXy0CTo5swHOvpSigcgosz/U=" + "s": 4454941, + "sha1_base64": "bSzssb5z4vAUc/U1WuyMjdau96I=" }, { "id": "Marshall Islands", @@ -8798,8 +8798,8 @@ "Aolep\u0101n Aor\u014dkin M\u0327aje\u013c", "MH" ], - "s": 1018105, - "sha1_base64": "1yOMAQYcFanZ0DEFlD0X33Mfwz8=" + "s": 975657, + "sha1_base64": "mtlwtag6btlvvEdYxnQRR4AcE9g=" }, { "id": "Mauritania", @@ -8821,8 +8821,8 @@ "\u0625\u064a\u0646\u0634\u064a\u0631\u064a", "\u063a\u064a\u062f\u064a\u0645\u0627\u063a\u0627" ], - "s": 18364673, - "sha1_base64": "SdztxxtnSWfd+E7Xtmk8jYr9Ezo=" + "s": 18065521, + "sha1_base64": "tt7YbsJena+jVOKIqK/yZ5MDbis=" }, { "id": "Mauritius", @@ -8857,8 +8857,8 @@ "\u00cele Deux Fr\u00e8res", "\u00cele Fr\u00e9gate" ], - "s": 8000451, - "sha1_base64": "cBuhbOPw6E58HXOqNAdyD8X+EYs=" + "s": 7546057, + "sha1_base64": "xzAYiApTOWRdsgWgSTdeSEwUP3A=" }, { "id": "Mexico", @@ -8877,8 +8877,8 @@ "Colima", "Estados Unidos Mexicanos" ], - "s": 36328159, - "sha1_base64": "56u6ngacRzyrir/UZYZIIzZgqk4=" + "s": 36167807, + "sha1_base64": "kOt1mAJ5YL4fgrZSm+hCmQ+WwB4=" }, { "id": "Mexico_Central_East", @@ -8892,8 +8892,8 @@ "San Luis Potos\u00ed", "Tamaulipas" ], - "s": 52523611, - "sha1_base64": "0+89nFtoa3p2J3EPkvpf5KeG50A=" + "s": 51891394, + "sha1_base64": "mcYqppZBb88vwqFheqXonTFBY7o=" }, { "id": "Mexico_Central_West", @@ -8910,8 +8910,8 @@ "Sinaloa", "Zacatecas" ], - "s": 66590485, - "sha1_base64": "ChbFnFH3ihpXFPDhdEErbl0lej8=" + "s": 66105165, + "sha1_base64": "a3gNEGMFQPtvouokB1QBZvGZtLI=" }, { "id": "Mexico_East", @@ -8929,8 +8929,8 @@ "Veracruz de Ignacio de la Llave", "Yucat\u00e1n" ], - "s": 60548044, - "sha1_base64": "uvzuGS6s5wQN3AMuTuzKdgcBA6I=" + "s": 60350076, + "sha1_base64": "bbxqDNp7iHJ8Wyzjdq6dF6HZM1E=" }, { "id": "Mexico_Mexico", @@ -8947,8 +8947,8 @@ "Tlaxcala", "Veracruz de Ignacio de la Llave" ], - "s": 147471799, - "sha1_base64": "IQFkMjSx/4/u1unpmNDvJXZpoj8=" + "s": 147296007, + "sha1_base64": "JLQAZjViq2JqFNEam+4by6rj5yA=" }, { "id": "Mexico_Chihuahua", @@ -8963,8 +8963,8 @@ "Nuevo Le\u00f3n", "Sinaloa" ], - "s": 42923777, - "sha1_base64": "Hw5BYBJwuGfouYxo6W6BpTaM08k=" + "s": 42899097, + "sha1_base64": "rOXyY6gQF2sBR9xwPCPjkO1pYWw=" }, { "id": "Mexico_Sonora", @@ -8978,8 +8978,8 @@ "Sinaloa", "Sonora" ], - "s": 38186553, - "sha1_base64": "zYAw92hVBdW9FXXyvQkzoFGbqzg=" + "s": 38003889, + "sha1_base64": "lP/p8qtur+fyh1uKy3pOhKoFdT0=" }, { "id": "Mexico_South", @@ -8995,8 +8995,8 @@ "Quer\u00e9taro", "Veracruz de Ignacio de la Llave" ], - "s": 136073792, - "sha1_base64": "7t/I56NKbDCE0RPrzZMWfvwPPPk=" + "s": 135914104, + "sha1_base64": "3th2zYVvOuC+0eDYka8kmiwVfmw=" } ] }, @@ -9010,8 +9010,8 @@ "Moldova", "\u041f\u0440\u0438\u0434\u043d\u0435\u0441\u0442\u0440\u043e\u0432\u044c\u0435" ], - "s": 56515658, - "sha1_base64": "oSwib5269wo0RmdwIvzp85ZFYs4=" + "s": 55397626, + "sha1_base64": "GxWjnHsc04lzWkSJQiHOvgfRAD8=" }, { "id": "Monaco", @@ -9022,8 +9022,8 @@ "France", "Monaco" ], - "s": 367822, - "sha1_base64": "ZBJuAhidCcaIJJzVzMKEhxKJyCc=" + "s": 366486, + "sha1_base64": "3dtWCR8Vi+xJcbSOPdpgVjwm7Ig=" }, { "id": "Mongolia", @@ -9058,8 +9058,8 @@ "\u0413\u043e\u0432\u044c\u0441\u04af\u043c\u0431\u044d\u0440", "\u04e8\u0432\u04e9\u0440\u0445\u0430\u043d\u0433\u0430\u0439" ], - "s": 46001614, - "sha1_base64": "NemG3blpPH6L8ZxTx10iR6Oz9Mc=" + "s": 45851637, + "sha1_base64": "SEgRqzkTkK3qmg4DgHmNVSHmG4A=" }, { "id": "Montenegro", @@ -9069,8 +9069,8 @@ "affiliations": [ "Crna Gora" ], - "s": 26040805, - "sha1_base64": "LmHL05eOnzpZGK8c5hxCnLg4itY=" + "s": 26021533, + "sha1_base64": "gpNVR2v8jyREObaMRj2k77AgEW4=" }, { "id": "Morocco", @@ -9088,8 +9088,8 @@ "Maroc \u2d4d\u2d4e\u2d56\u2d54\u2d49\u2d31 \u0627\u0644\u0645\u063a\u0631\u0628", "Souss-Massa \u2d59\u2d53\u2d59\u2d59-\u2d4e\u2d30\u2d59\u2d59\u2d30 \u0633\u0648\u0633-\u0645\u0627\u0633\u0629" ], - "s": 10884353, - "sha1_base64": "9oR+O+u863tflp1lSUQnrot7haE=" + "s": 10864361, + "sha1_base64": "nSSKLGuhiofuFMO5Wv480Pf7Lf4=" }, { "id": "Morocco_Southern", @@ -9105,8 +9105,8 @@ "Oriental \u2d5c\u2d30\u2d4f\u2d33\u2d4e\u2d53\u2d39\u2d5c \u0627\u0644\u0634\u0631\u0642\u064a\u0629", "Souss-Massa \u2d59\u2d53\u2d59\u2d59-\u2d4e\u2d30\u2d59\u2d59\u2d30 \u0633\u0648\u0633-\u0645\u0627\u0633\u0629" ], - "s": 53845265, - "sha1_base64": "askXB39QPqeTys86zTmwFdf2CF0=" + "s": 53635529, + "sha1_base64": "tuSEBBcmpYVbn1LbvA1EcxjnGFM=" }, { "id": "Morocco_Doukkala-Abda", @@ -9119,8 +9119,8 @@ "Maroc \u2d4d\u2d4e\u2d56\u2d54\u2d49\u2d31 \u0627\u0644\u0645\u063a\u0631\u0628", "Marrakech-Safi \u2d4e\u2d55\u2d55\u2d30\u2d3d\u2d5b-\u2d30\u2d59\u2d3c\u2d49 \u0645\u0631\u0627\u0643\u0634-\u0623\u0633\u0641\u064a" ], - "s": 53596465, - "sha1_base64": "/JsIuLXZidhxEpDa6YmbZc0ITZ8=" + "s": 53321833, + "sha1_base64": "xWQf1NJiuxWQgpphWMqapMFRyo4=" }, { "id": "Morocco_Rabat-Sale-Zemmour-Zaer", @@ -9134,8 +9134,8 @@ "Rabat-Sal\u00e9-K\u00e9nitra \u2d3b\u2d54\u2d54\u2d31\u2d30\u2d5f-\u2d59\u2d4d\u2d30-\u2d47\u2d4f\u2d49\u2d5f\u2d54\u2d30 \u0627\u0644\u0631\u0628\u0627\u0637-\u0633\u0644\u0627-\u0627\u0644\u0642\u0646\u064a\u0637\u0631\u0629", "Tanger-T\u00e9touan-Al Hoceima \u2d5f\u2d30\u2d4f\u2d4a-\u2d5f\u2d49\u2d5c\u2d30\u2d61\u2d49\u2d4f-\u2d4d\u2d43\u2d53\u2d59\u2d49\u2d4e\u2d30 \u0637\u0646\u062c\u0629-\u062a\u0637\u0648\u0627\u0646-\u0627\u0644\u062d\u0633\u064a\u0645\u0629" ], - "s": 52277122, - "sha1_base64": "YRS8heJCzLGNWpLVUFF8EtldRIo=" + "s": 52060146, + "sha1_base64": "vNUbGE4lRwcQVPrzH8O7caVbfpE=" } ] }, @@ -9157,8 +9157,8 @@ "Sofala", "Zamb\u00e9zia" ], - "s": 142757082, - "sha1_base64": "UrVytzJhkiyZYbd7bvU6GdTFL+Y=" + "s": 142069802, + "sha1_base64": "0AHdKIiUx6ZbBSJae59uRcDWryg=" }, { "id": "Myanmar", @@ -9183,8 +9183,8 @@ "\u1005\u1005\u103a\u1000\u102d\u102f\u1004\u103a\u1038\u1010\u102d\u102f\u1004\u103a\u1038 (Sagaing)", "\u1015\u103c\u100a\u103a\u1011\u1031\u102c\u1004\u103a\u1005\u102f\u1019\u103c\u1014\u103a\u1019\u102c\u1014\u102d\u102f\u1004\u103a\u1004\u1036\u1010\u1031\u102c\u103a\u200c" ], - "s": 132417739, - "sha1_base64": "XBK8xGGRA/1cFQHyrdUicVltNsE=" + "s": 131582379, + "sha1_base64": "w7lPeade163aKAn0drC2Z3VAUwg=" }, { "id": "Namibia", @@ -9216,8 +9216,8 @@ "Zambezi Region", "\u01c1Karas Region" ], - "s": 169833179, - "sha1_base64": "by5fgXtgNeeLbukxtmZWYYjcIlw=" + "s": 169424395, + "sha1_base64": "w2yR5xeYSBlbvzSREpt0+kM2f9A=" }, { "id": "Nauru", @@ -9228,7 +9228,7 @@ "Naoero" ], "s": 187235, - "sha1_base64": "2wUS6yslonq/onLoqTxZsBgqcDk=" + "sha1_base64": "0yqQeEOF73fofbj5pkd+8QH54Uo=" }, { "id": "Nepal", @@ -9244,8 +9244,8 @@ "\u0938\u0941\u0926\u0941\u0930 \u092a\u0936\u094d\u091a\u093f\u092e\u093e\u091e\u094d\u091a\u0932 \u0935\u093f\u0915\u093e\u0938 \u0915\u094d\u0937\u0947\u0924\u094d\u0930", "\u092a\u0936\u094d\u091a\u093f\u092e\u093e\u091e\u094d\u091a\u0932 \u0935\u093f\u0915\u093e\u0938 \u0915\u094d\u0937\u0947\u0924\u094d\u0930" ], - "s": 121127346, - "sha1_base64": "8rkLclYH3LNp5nEviWncbMdNUko=" + "s": 118765242, + "sha1_base64": "3sMknMHMvZsYhKcC+pSAwvwsPzw=" }, { "id": "Nepal_Kathmandu", @@ -9256,8 +9256,8 @@ "\u092e\u0927\u094d\u092f\u092e\u093e\u091e\u094d\u091a\u0932 \u0935\u093f\u0915\u093e\u0938 \u0915\u094d\u0937\u0947\u0924\u094d\u0930", "\u0928\u0947\u092a\u093e\u0932" ], - "s": 40300333, - "sha1_base64": "cLjd8NTeaCnJD6eTUdTTgDhFdJw=" + "s": 39874693, + "sha1_base64": "xURTZmuIlgVdwxR425ZgjwTRopU=" }, { "id": "Nepal_Madhyamanchal", @@ -9268,8 +9268,8 @@ "\u092e\u0927\u094d\u092f\u092e\u093e\u091e\u094d\u091a\u0932 \u0935\u093f\u0915\u093e\u0938 \u0915\u094d\u0937\u0947\u0924\u094d\u0930", "\u0928\u0947\u092a\u093e\u0932" ], - "s": 65807730, - "sha1_base64": "/Fd+m8tPPT7Of0Rw3muUqt7DKpE=" + "s": 64053451, + "sha1_base64": "kwMjPT309SmdQiqnLWRw3Majdd4=" }, { "id": "Nepal_Purwanchal", @@ -9280,8 +9280,8 @@ "\u092a\u0941\u0930\u094d\u0935\u093e\u091e\u094d\u091a\u0932 \u0935\u093f\u0915\u093e\u0938 \u0915\u094d\u0937\u0947\u0924\u094d\u0930", "\u0928\u0947\u092a\u093e\u0932" ], - "s": 83462183, - "sha1_base64": "yrwA2yVUtr+TajBjG1hYjO+6RCg=" + "s": 83348191, + "sha1_base64": "gW+i7jXgaYgx2gcGd1YS04rdoEo=" } ] }, @@ -9311,8 +9311,8 @@ "Regi\u00f3n Aut\u00f3noma de la Costa Caribe Sur", "Rivas" ], - "s": 30003478, - "sha1_base64": "7GjpIAwneegEmo4lTV+028qn0co=" + "s": 29046846, + "sha1_base64": "bfT7JI1oQsazNWcePfwAuRIbWMA=" }, { "id": "Niger", @@ -9330,8 +9330,8 @@ "Tillab\u00e9ri", "Zinder" ], - "s": 67330567, - "sha1_base64": "h7vrkJOk7z+A2au6uqobfXp0hYA=" + "s": 66719175, + "sha1_base64": "J6KcZXzh1YG57unfOj5m5hWu7V4=" }, { "id": "Nigeria", @@ -9372,8 +9372,8 @@ "Rivers", "Taraba" ], - "s": 194077937, - "sha1_base64": "nFPAJuikeyxIXsM/bUSw+uTZ1yA=" + "s": 189334129, + "sha1_base64": "8diT4fflB2Nr2LblCRwbvw4dQ04=" }, { "id": "Nigeria_North", @@ -9394,8 +9394,8 @@ "Yobe", "Zamfara" ], - "s": 115517898, - "sha1_base64": "ITZNY5OXTnytasxKDdQwNKZMEg8=" + "s": 112986898, + "sha1_base64": "wHvQVdF/SUE1lLrnF2K2gxm4mQo=" } ] }, @@ -9407,8 +9407,8 @@ "affiliations": [ "Niu\u0113" ], - "s": 361629, - "sha1_base64": "Jd7wdB876YcJ9pd8UgYOHmRIT4o=" + "s": 361589, + "sha1_base64": "jTC9wFlWqqvBik5NkUIypVOXHx0=" }, { "id": "North Korea", @@ -9429,8 +9429,8 @@ "\ud3c9\uc591\uc9c1\ud560\uc2dc", "\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d" ], - "s": 38749155, - "sha1_base64": "o9ypN1dwGqmWnycPHmCrWt+0fJI=" + "s": 38431044, + "sha1_base64": "lfPuH842hZ5YnKNUa/bvOGMTZd4=" }, { "id": "Norway", @@ -9445,8 +9445,8 @@ "Norge", "Troms" ], - "s": 161677979, - "sha1_base64": "vBzleFErwKubvEZNrsSUa7h4IYQ=" + "s": 160543563, + "sha1_base64": "1IjqiWu/Ise4N1esCuyl/qVNVgY=" }, { "id": "Norway_Hordaland", @@ -9457,8 +9457,8 @@ "Hordaland", "Norge" ], - "s": 69138133, - "sha1_base64": "UKXQqIsPGYQC4LNX86HsTPX4G9o=" + "s": 68791789, + "sha1_base64": "eWPkjbQUkowwC2YE8oOTtEGvGwY=" }, { "id": "Norway_Nordland", @@ -9470,8 +9470,8 @@ "Norge", "Troms" ], - "s": 138975828, - "sha1_base64": "dtts/RAP3dJC04SZNbb0Zf7jX5I=" + "s": 137817876, + "sha1_base64": "944ZNg4gmJn3PFazTT6hk14ZMQc=" }, { "id": "Norway_Svalbard", @@ -9482,8 +9482,8 @@ "Norge", "Svalbard" ], - "s": 7837537, - "sha1_base64": "+DSP/U7sp5so2C0ERwGs1JRMaEQ=" + "s": 7764833, + "sha1_base64": "e1bRPvgsQi/6w8AsS9t/ori8evI=" }, { "id": "Norway_Oppland", @@ -9494,8 +9494,8 @@ "Norge", "Oppland" ], - "s": 77639277, - "sha1_base64": "id5Yg784902FTbwB6uHCWaCVwA8=" + "s": 77552813, + "sha1_base64": "4NQoh/7270zWPH/KlsTS+hWsZ+Q=" }, { "id": "Norway_Rogaland", @@ -9506,8 +9506,8 @@ "Norge", "Rogaland" ], - "s": 53620274, - "sha1_base64": "RoLwog9+Rjp8t7SLTVvXCdc/guU=" + "s": 51901058, + "sha1_base64": "xzfpXWDfLF2gGbgJxnRU7j+zsUo=" }, { "id": "Norway_Hedmark", @@ -9518,8 +9518,8 @@ "Hedmark", "Norge" ], - "s": 84697989, - "sha1_base64": "6+RzDf0MhcXWhh2AH2doKPGPA/0=" + "s": 84219509, + "sha1_base64": "RWOwbOQiNKU2ADSEstzAq+ZZBr0=" }, { "id": "Norway_Jan Mayen", @@ -9528,7 +9528,7 @@ "Norge" ], "s": 1240880, - "sha1_base64": "xXFIvk52aRZdWaAinp6MD9RyLTg=" + "sha1_base64": "+2SCLIvJQqUz53OMZ+TIE2LPPbc=" }, { "id": "Norway_North Trondelag", @@ -9540,8 +9540,8 @@ "Norge", "S\u00f8r-Tr\u00f8ndelag" ], - "s": 122283200, - "sha1_base64": "VbTEk03qkIsqYvvYBe4UMXtNUwk=" + "s": 122274096, + "sha1_base64": "bYlraPWWQN+lT791i01lCefV0IY=" }, { "id": "Norway_South Trondelag", @@ -9552,8 +9552,8 @@ "Norge", "S\u00f8r-Tr\u00f8ndelag" ], - "s": 69252218, - "sha1_base64": "k4W/5Nz7fmbryzUgdT8v7fbVMpc=" + "s": 69036233, + "sha1_base64": "W7jo0hZVmFHmDkWOxleghfKBT/0=" }, { "id": "Norway_Southern", @@ -9568,8 +9568,8 @@ "Vest-Agder", "Vestfold" ], - "s": 202068194, - "sha1_base64": "1vMZMCbOSGhd/FpASYsD7ZyA3gI=" + "s": 200667314, + "sha1_base64": "sepRnTzjF+MBZ7zkv1LWmzUSfkQ=" }, { "id": "Norway_Western", @@ -9581,8 +9581,8 @@ "Norge", "Sogn og Fjordane" ], - "s": 106810973, - "sha1_base64": "BWfLIyojgWhsllS90K8eT1EELQQ=" + "s": 105415725, + "sha1_base64": "Ve8HqWwnPltfCAFUha/FUKs3c/o=" }, { "id": "Norway_Central", @@ -9595,8 +9595,8 @@ "Norge", "Oslo" ], - "s": 129171208, - "sha1_base64": "OA2GJnlgXjHDosdYjsgZXhMFdlU=" + "s": 124514464, + "sha1_base64": "nV05AGYU2iDkMLeonla6EbkC/bE=" }, { "id": "Norway_Bouvet Island", @@ -9607,8 +9607,8 @@ "Bouvet\u00f8ya", "Norge" ], - "s": 127005, - "sha1_base64": "fATDDNv6G34GW+5Q+fJoT4PnK6I=" + "s": 126069, + "sha1_base64": "SkwAxk63pfx0JVYPTynojySSfRo=" } ] }, @@ -9630,8 +9630,8 @@ "\u200f\u0633\u0644\u0637\u0646\u0629 \u0639\u0645\u0627\u0646\u200e", "\u0645\u062d\u0627\u0641\u0638\u0629 \u0627\u0644\u0628\u0631\u064a\u0645\u064a" ], - "s": 20067589, - "sha1_base64": "ip5nbYc69/olJu6O+oyESfTeeKg=" + "s": 19714501, + "sha1_base64": "62vi20DULCS3qp5HsAjEOefpGQY=" }, { "id": "Pakistan", @@ -9649,8 +9649,8 @@ "\u0628\u0644\u0648\u0686\u0633\u062a\u0627\u0646 / Balochistan", "\u200f\u067e\u0627\u06a9\u0633\u062a\u0627\u0646\u200e" ], - "s": 98779277, - "sha1_base64": "O+WHw/kOGSLODZGT9HzFd4zqp3E=" + "s": 97941781, + "sha1_base64": "SsQH/lFTQTlfbGVzkTXDuc3EJFM=" }, { "id": "Palau", @@ -9661,8 +9661,8 @@ "Belau", "PW" ], - "s": 1083803, - "sha1_base64": "yaxl7rpw2yGhxmhgtfngXJHGLFY=" + "s": 1083683, + "sha1_base64": "UhWAYXppT+FO4VUv7vtVKcNEsyc=" }, { "id": "Panama", @@ -9689,8 +9689,8 @@ "Panam\u00e1", "Veraguas" ], - "s": 34961244, - "sha1_base64": "bWGSPlnS3lYTRfZK25XMbDzOiL8=" + "s": 34656228, + "sha1_base64": "1UKAiEPPo4GbqkjI7zbyKVQLJII=" }, { "id": "Papua New Guinea", @@ -9723,8 +9723,8 @@ "Western", "Western Highlands" ], - "s": 36839884, - "sha1_base64": "LZscV+Ya05nZOXJPfNLzqIMORys=" + "s": 36514252, + "sha1_base64": "pf/hW9cFSBvMrdI7jFA0MmCwM5o=" }, { "id": "Paraguay", @@ -9754,8 +9754,8 @@ "Presidente Hayes", "San Pedro" ], - "s": 89852979, - "sha1_base64": "yr4T8o0dqZ8sol0viFChJdoW83c=" + "s": 89742107, + "sha1_base64": "ng9fVieSyb2b9OIA2DIF5W7eij0=" }, { "id": "People's Republic of China", @@ -9772,8 +9772,8 @@ "\u4e2d\u56fd", "\u5b89\u5fbd\u7701" ], - "s": 39898248, - "sha1_base64": "HLkMlqN4Gq7Rnw5Atuxt8eBv+H8=" + "s": 38947904, + "sha1_base64": "nPgH8PxbDEkmbg6QOE9V1fh/SOc=" }, { "id": "China_Chongqing", @@ -9784,8 +9784,8 @@ "\u91cd\u5e86\u5e02", "\u4e2d\u56fd" ], - "s": 38711583, - "sha1_base64": "fLfpTigMu8/RjaA1wjGZ33bYCtk=" + "s": 38424118, + "sha1_base64": "gLCWlB8L63Wc2HxLIDIaosJpNkc=" }, { "id": "China_Fujian", @@ -9796,8 +9796,8 @@ "\u4e2d\u56fd", "\u798f\u5efa\u7701" ], - "s": 29783118, - "sha1_base64": "EiVDNDdy/i7dIM0+WWJv1cvgTCc=" + "s": 29367510, + "sha1_base64": "qtRKIf0sr+7Tc6rkCR2vExBvt18=" }, { "id": "China_Gansu", @@ -9808,8 +9808,8 @@ "\u4e2d\u56fd", "\u7518\u8083\u7701" ], - "s": 30564218, - "sha1_base64": "6aCGKLdz1dxundY14GliN1AMwjE=" + "s": 30301898, + "sha1_base64": "MHJ3lXXJMK4oSy/2nxFdL8yvQHc=" }, { "id": "China_Guangdong", @@ -9824,8 +9824,8 @@ "country_name_synonyms": [ "Hong Kong" ], - "s": 185214161, - "sha1_base64": "uPKkExALhMN9zDCA4dL0F58Ydg0=" + "s": 184130832, + "sha1_base64": "LH3i0WQegsVVVojuJcyK/MLZVpw=" }, { "id": "China_Guangxi", @@ -9836,8 +9836,8 @@ "\u5e7f\u897f\u58ee\u65cf\u81ea\u6cbb\u533a", "\u4e2d\u56fd" ], - "s": 36711295, - "sha1_base64": "tSsSWyvj9nhmZ9D0B62QNJyCtpY=" + "s": 35924495, + "sha1_base64": "efJmCmZrsajQPw8l+IGCkuIz9kc=" }, { "id": "China_Guizhou", @@ -9848,8 +9848,8 @@ "\u8d35\u5dde\u7701", "\u4e2d\u56fd" ], - "s": 27900803, - "sha1_base64": "I5vAL6g0tfT23Kbt5EUX6zPtVJ0=" + "s": 27420026, + "sha1_base64": "UrehfaPFIX2qJZcbmHyiaX+QmvI=" }, { "id": "China_Hebei", @@ -9862,8 +9862,8 @@ "\u5929\u6d25\u5e02", "\u6cb3\u5317\u7701" ], - "s": 75273069, - "sha1_base64": "d2k0mXFMwXM7QYNSF5j1U1PUL8g=" + "s": 74327020, + "sha1_base64": "mCwvltEiVqsPm37ttCdiJzfaS0Q=" }, { "id": "China_Heilongjiang", @@ -9874,8 +9874,8 @@ "\u4e2d\u56fd", "\u9ed1\u9f99\u6c5f\u7701" ], - "s": 27294967, - "sha1_base64": "9SOdPpQUBHbK80MfcgWT0jyEy1A=" + "s": 26315294, + "sha1_base64": "KEvEvuYTzE0fQqOatPVGx68RepA=" }, { "id": "China_Henan", @@ -9886,8 +9886,8 @@ "\u4e2d\u56fd", "\u6cb3\u5357\u7701" ], - "s": 47874817, - "sha1_base64": "0LT+KhunXbYkIY1gANRKRfU5m9k=" + "s": 47356129, + "sha1_base64": "1LZQDGOKz4HEKWHDAKJUt/dIGuo=" }, { "id": "China_Hubei", @@ -9899,8 +9899,8 @@ "\u4e2d\u56fd", "\u6e56\u5317\u7701" ], - "s": 35588126, - "sha1_base64": "ITRuLnY0Ma0OixsQy4elxv15PI0=" + "s": 35064440, + "sha1_base64": "HtZcs+KSPEQ6sJ+12Ys4Vi2Dm/U=" }, { "id": "China_Hunan", @@ -9911,8 +9911,8 @@ "\u4e2d\u56fd", "\u6e56\u5357\u7701" ], - "s": 35959310, - "sha1_base64": "zjyU7NaloNZxo0P7FNls5eMEHFM=" + "s": 35774934, + "sha1_base64": "EGPMkSnYo+mxeDyjWSI3NzhovKM=" }, { "id": "China_Inner Mongolia", @@ -9923,8 +9923,8 @@ "\u4e2d\u56fd", "\u5185\u8499\u53e4\u81ea\u6cbb\u533a / Inner Mongolia" ], - "s": 46979072, - "sha1_base64": "hkPYzwfNNZpGVzGT+qtpFa7moYM=" + "s": 46750728, + "sha1_base64": "knbRS1J1SlekOf0K5B+xBH1hHPY=" }, { "id": "China_Jiangsu", @@ -9936,8 +9936,8 @@ "\u6c5f\u82cf\u7701", "\u79e6\u5c71\u5c9b" ], - "s": 72962852, - "sha1_base64": "+vJArRB4MjpaGprArP+eUiFAi54=" + "s": 71713309, + "sha1_base64": "s8JjxbVUGJCbjHKdEo06wmNaXRE=" }, { "id": "China_Jiangxi", @@ -9948,8 +9948,8 @@ "\u4e2d\u56fd", "\u6c5f\u897f\u7701" ], - "s": 38614160, - "sha1_base64": "Ctlm06ABxUhQv9vmmFN/pYcrEhA=" + "s": 38089561, + "sha1_base64": "gtf5/21UgWsQXsEqT+PaG5EJ7XU=" }, { "id": "China_Jilin", @@ -9960,8 +9960,8 @@ "\u4e2d\u56fd", "\u5409\u6797\u7701" ], - "s": 30693965, - "sha1_base64": "ZRnHexjmKVd2QSx489gHywGF/Rg=" + "s": 30183628, + "sha1_base64": "exciVlwMGlDpW3WEA3rHkAd3uwE=" }, { "id": "China_Liaoning", @@ -9972,8 +9972,8 @@ "\u8fbd\u5b81\u7701", "\u4e2d\u56fd" ], - "s": 33422533, - "sha1_base64": "vYYs80t2TPiX1KA+4iGmkjVE1fk=" + "s": 32720925, + "sha1_base64": "mELtjy94Ta+vb9NZ8gHMzH71FWY=" }, { "id": "China_Ningxia Hui", @@ -9984,8 +9984,8 @@ "\u5b81\u590f\u56de\u65cf\u81ea\u6cbb\u533a", "\u4e2d\u56fd" ], - "s": 20061239, - "sha1_base64": "VZj9BBYHzxuccEVfOEilqvWnJUo=" + "s": 19939159, + "sha1_base64": "tQzkZ72++0s7B9wtV3Wv/c9WCuA=" }, { "id": "China_Qinghai", @@ -9996,8 +9996,8 @@ "\u9752\u6d77\u7701", "\u4e2d\u56fd" ], - "s": 32245398, - "sha1_base64": "8pxNW2nNPXEO3J5CkzqkcfMZIRw=" + "s": 31471549, + "sha1_base64": "vcMLK49bd9WwFBDqs3CWOhhNojE=" }, { "id": "China_Shaanxi", @@ -10008,8 +10008,8 @@ "\u9655\u897f\u7701", "\u4e2d\u56fd" ], - "s": 32310061, - "sha1_base64": "eKSn2zmdTgp9pe2FcrgiZ9tNtWg=" + "s": 31932604, + "sha1_base64": "L5gBlsU132mYHhpRCQclAGz/BkA=" }, { "id": "China_Shandong", @@ -10020,8 +10020,8 @@ "\u4e2d\u56fd", "\u5c71\u4e1c\u7701" ], - "s": 55425122, - "sha1_base64": "VQXIUNyx/HLksMf56ORN2IwQoZ8=" + "s": 54502434, + "sha1_base64": "kmehdy3tr1mhx9MnRRfhYtQHnsc=" }, { "id": "China_Shanghai", @@ -10033,8 +10033,8 @@ "\u4e0a\u6d77\u5e02", "\u6d59\u6c5f\u7701" ], - "s": 15720109, - "sha1_base64": "n+VWwQGfyW/AdmTao93q50v1NTM=" + "s": 15457022, + "sha1_base64": "1o+GpwTgTOtggV8ZPF50wN1wIgc=" }, { "id": "China_Shanxi", @@ -10045,8 +10045,8 @@ "\u4e2d\u56fd", "\u5c71\u897f\u7701" ], - "s": 23766654, - "sha1_base64": "29yHDH5VAB5VMmkssNXJM1ZWOIM=" + "s": 23593374, + "sha1_base64": "SWE7iuaKoOdrlLebZKG0h/aaHzg=" }, { "id": "China_Sichuan", @@ -10057,8 +10057,8 @@ "\u4e2d\u56fd", "\u56db\u5ddd\u7701" ], - "s": 57060448, - "sha1_base64": "Q02fdy1lv3wLfHQERL3YjGjDiYU=" + "s": 55974592, + "sha1_base64": "OqZrYYnUqRF9+EqBsGWM278SVTU=" }, { "id": "China_Tibet Autonomous Region", @@ -10069,8 +10069,8 @@ "\u4e2d\u56fd", "\u897f\u85cf\u81ea\u6cbb\u533a (\u0f56\u0f7c\u0f51\u0f0b\u0f62\u0f44\u0f0b\u0f66\u0f90\u0fb1\u0f7c\u0f44\u0f0b\u0f63\u0f97\u0f7c\u0f44\u0f66\u0f0b)" ], - "s": 27433610, - "sha1_base64": "R1w03BMo9tpkCmmGCka55PKYGGI=" + "s": 27031298, + "sha1_base64": "IjZ56kvQ8IMEMPxYBJNGXeI4dIE=" }, { "id": "China_Xinjiang", @@ -10081,8 +10081,8 @@ "\u4e2d\u56fd", "\u65b0\u7586\u7ef4\u543e\u5c14\u81ea\u6cbb\u533a" ], - "s": 30284017, - "sha1_base64": "r3B/CR/D0dCj2D1adoubfJQmWM4=" + "s": 29700121, + "sha1_base64": "TZs3zn6IY2bUYi8YrJzZr1ZzJ0k=" }, { "id": "China_Yunnan", @@ -10093,8 +10093,8 @@ "\u4e2d\u56fd", "\u4e91\u5357\u7701" ], - "s": 62672801, - "sha1_base64": "nbr9dg1Zh9cUj4ixQXAy97R8VbU=" + "s": 60333841, + "sha1_base64": "qRn8YXkMXLsGSSbUsrSqK+fZXbs=" }, { "id": "China_Zhejiang", @@ -10105,8 +10105,8 @@ "\u4e2d\u56fd", "\u6d59\u6c5f\u7701" ], - "s": 75740474, - "sha1_base64": "vV1C4ABtKPurgwRWRH/9VKNS6KU=" + "s": 74863835, + "sha1_base64": "cHcjhfVjrZROsfYYS2B4vQME0yA=" } ] }, @@ -10128,8 +10128,8 @@ "\u81fa\u5317\u5e02", "\u4e2d\u83ef\u6c11\u570b" ], - "s": 95227123, - "sha1_base64": "mFWCvnGNoFU9t/fYwgVTMrDD01k=" + "s": 93651611, + "sha1_base64": "UZyLI5ac1vLbSwMxLuYrHylE1BQ=" }, { "id": "Taiwan_South", @@ -10142,8 +10142,8 @@ "\u81fa\u4e2d\u5e02", "\u4e2d\u83ef\u6c11\u570b" ], - "s": 52113968, - "sha1_base64": "V4LEZ9cbEtuG9h3eR1jns6MWQBU=" + "s": 51666200, + "sha1_base64": "Q0paluIne25D5LjQv3eIATRQnOw=" } ] }, @@ -10170,8 +10170,8 @@ "Tumbes", "Ucayali" ], - "s": 72680092, - "sha1_base64": "W9RMp2r71F2DTiRu4Gp+ZZSmnUI=" + "s": 71777564, + "sha1_base64": "54WJHjO8tCewaCVZjTDBBM1Ted8=" }, { "id": "Peru_Lima", @@ -10186,8 +10186,8 @@ "Lima", "Per\u00fa" ], - "s": 42605601, - "sha1_base64": "f4gLG0uP+QqqD19OvnWNaExuR3M=" + "s": 42299793, + "sha1_base64": "NOnEE+FjiaqJnGHm7u0IR2o1DE0=" }, { "id": "Peru_South", @@ -10205,8 +10205,8 @@ "Puno", "Tacna" ], - "s": 76679324, - "sha1_base64": "V9qZvpaSwBangujLSVcOa0yCPNw=" + "s": 76460412, + "sha1_base64": "jRsgYbJRBpnVTYLNFWt7kZXnVWU=" } ] }, @@ -10252,8 +10252,8 @@ "Zamboanga del Norte", "Zamboanga del Sur" ], - "s": 115167677, - "sha1_base64": "csY6ZHRx95gqDt1PqLOLoBvpmLk=" + "s": 113369285, + "sha1_base64": "DC6XfMgA5GPIDFt6+nppfNBas44=" }, { "id": "Philippines_Visayas", @@ -10284,8 +10284,8 @@ "Southern Leyte", "Sorsogon" ], - "s": 83983635, - "sha1_base64": "8FR/bWRVofIfjiWplLLTrqBzQaQ=" + "s": 83836387, + "sha1_base64": "in5U1+cUWE1XSMOLobnJ6A4F5y4=" }, { "id": "Philippines_Luzon_South", @@ -10308,8 +10308,8 @@ "Sorsogon", "\u592a\u5e73\u5cf6" ], - "s": 22993338, - "sha1_base64": "ZMjhUIEVz1LtuJnlwJbHHaz3/AE=" + "s": 22924634, + "sha1_base64": "jK5PO7GBk0EwG5Nv57jt1AsTr+8=" }, { "id": "Philippines_Luzon_Manila", @@ -10331,8 +10331,8 @@ "Rizal", "Sorsogon" ], - "s": 128131966, - "sha1_base64": "qnIFkqTIoZizCaqsuKQXiNIW7VQ=" + "s": 127717318, + "sha1_base64": "YHIvOwd6xQDkcRONLwJbiC2TrEw=" }, { "id": "Philippines_Luzon_North", @@ -10368,8 +10368,8 @@ "Zambales", "\u6d77\u5357\u7701" ], - "s": 135843941, - "sha1_base64": "y3mmavtZBuANOgDGru5y5SArN5c=" + "s": 134644725, + "sha1_base64": "neH3YL308HfGn6rqiIxNchQ7AFk=" } ] }, @@ -10384,8 +10384,8 @@ "country_name_synonyms": [ "Pitcairn" ], - "s": 101870, - "sha1_base64": "IR7ST5QBH/v3LZR0QYkxttTrgSo=" + "s": 101862, + "sha1_base64": "/XYRnSZnoB7AlzraiOpr2+9gOcs=" }, { "id": "Poland", @@ -10400,8 +10400,8 @@ "Territorial waters of Bornholm", "wojew\u00f3dztwo zachodniopomorskie" ], - "s": 74574886, - "sha1_base64": "DDzcA70TrDyESL8N9uSfEi+ru1E=" + "s": 74076814, + "sha1_base64": "mU+Ql1l8RSXILtg1rdRPsbY1g1A=" }, { "id": "Poland_Pomeranian Voivodeship", @@ -10413,8 +10413,8 @@ "Territorial waters of Bornholm", "wojew\u00f3dztwo pomorskie" ], - "s": 81049606, - "sha1_base64": "TXBGzPv0xZAE0gXzWBqEjN0Nzjw=" + "s": 80607646, + "sha1_base64": "LJ4+114+UMBtlBYEC9Klr3RTa88=" }, { "id": "Poland_Podlaskie Voivodeship", @@ -10425,8 +10425,8 @@ "Polska", "wojew\u00f3dztwo podlaskie" ], - "s": 65481180, - "sha1_base64": "3kz9uhqBJPt3Ict/85VwQFT7ImQ=" + "s": 64778084, + "sha1_base64": "EUsKB1b04KGsu+Q9uNTn8SCPZ7U=" }, { "id": "Poland_Masovian Voivodeship", @@ -10437,8 +10437,8 @@ "Polska", "wojew\u00f3dztwo mazowieckie" ], - "s": 205243330, - "sha1_base64": "u//H2fSeTLhZSQmLe3Mu9BmNiUw=" + "s": 202474514, + "sha1_base64": "4IzGxyxQ0/EWUzikub/ZNjAAcCs=" }, { "id": "Poland_Lubusz Voivodeship", @@ -10449,8 +10449,8 @@ "Polska", "wojew\u00f3dztwo lubuskie" ], - "s": 48002228, - "sha1_base64": "9KWu7vA+je06RNNX9QKe9sI5mPA=" + "s": 46930692, + "sha1_base64": "I6V2hyqeUeEZ7/mIYmwLXsc8brE=" }, { "id": "Poland_Lublin Voivodeship", @@ -10461,8 +10461,8 @@ "Polska", "wojew\u00f3dztwo lubelskie" ], - "s": 108660824, - "sha1_base64": "LEgX4Iw1tEYzJAmBR0NVM+pm4g8=" + "s": 107770735, + "sha1_base64": "AflvU45t1MDcv3HkFgdYpqoPd3A=" }, { "id": "Poland_Lower Silesian Voivodeship", @@ -10473,8 +10473,8 @@ "Polska", "wojew\u00f3dztwo dolno\u015bl\u0105skie" ], - "s": 111920816, - "sha1_base64": "1dvXyGSIgDc2yWt4kZCDYglXNUs=" + "s": 110894896, + "sha1_base64": "wc0Jqhwu1Bn7bToLKk09k//aLaA=" }, { "id": "Poland_Warmian-Masurian Voivodeship", @@ -10485,8 +10485,8 @@ "Polska", "wojew\u00f3dztwo warmi\u0144sko-mazurskie" ], - "s": 66163629, - "sha1_base64": "rLtEsLKWYD0Q2ks7WaEb5PLFGmY=" + "s": 65752973, + "sha1_base64": "eVIFkFzjUODvjxPkMSA2ZxHefik=" }, { "id": "Poland_Lodz Voivodeship", @@ -10497,8 +10497,8 @@ "Polska", "wojew\u00f3dztwo \u0142\u00f3dzkie" ], - "s": 98909694, - "sha1_base64": "KEVv8rH3qMhHE39KKApQGULsqGM=" + "s": 97833702, + "sha1_base64": "UtxlTqShHokQRob6oCDHuiJS9uc=" }, { "id": "Poland_Subcarpathian Voivodeship", @@ -10509,8 +10509,8 @@ "Polska", "wojew\u00f3dztwo podkarpackie" ], - "s": 107277103, - "sha1_base64": "1PleOzCeDA1y1zYhjv2A+UcThd0=" + "s": 106603679, + "sha1_base64": "yLFr6+wVmt99ol3G+3Bx0Y+Rl+I=" }, { "id": "Poland_Lesser Poland Voivodeship", @@ -10521,8 +10521,8 @@ "Polska", "wojew\u00f3dztwo ma\u0142opolskie" ], - "s": 140297289, - "sha1_base64": "a+dfpA1hJppSU65H+IY2OZbUpJ8=" + "s": 139418937, + "sha1_base64": "F7ah6R8gQmzLLgJ2HcgL9HIt7gM=" }, { "id": "Poland_Silesian Voivodeship", @@ -10533,8 +10533,8 @@ "Polska", "wojew\u00f3dztwo \u015bl\u0105skie" ], - "s": 134473945, - "sha1_base64": "Nib/rYrSAW+KjVdqoKqkbR8ipmI=" + "s": 133484513, + "sha1_base64": "N5RBbksqDESsoE2a5ADYRFzWT0E=" }, { "id": "Poland_Kuyavian-Pomeranian Voivodeship", @@ -10545,8 +10545,8 @@ "Polska", "wojew\u00f3dztwo kujawsko-pomorskie" ], - "s": 78238974, - "sha1_base64": "MYX2OVz4v9OSdoCv4vf0y4D4Ap8=" + "s": 77482278, + "sha1_base64": "khJVZOjkQIlfV65QSNzlePH3lHs=" }, { "id": "Poland_Greater Poland Voivodeship", @@ -10557,8 +10557,8 @@ "Polska", "wojew\u00f3dztwo wielkopolskie" ], - "s": 127192448, - "sha1_base64": "pg2ZRhylh9uE9S1ovYv1KX44RWQ=" + "s": 125787400, + "sha1_base64": "PQNsvT6mYtRUS8zhRSUzuiuiGmo=" }, { "id": "Poland_Opole Voivodeship", @@ -10569,8 +10569,8 @@ "Polska", "wojew\u00f3dztwo opolskie" ], - "s": 39039850, - "sha1_base64": "1pmH0QvpyE17cDmvke70Hvcag98=" + "s": 38906898, + "sha1_base64": "v3SoEioLYTA1JCq8GFfdg6z1S/U=" }, { "id": "Poland_Swietokrzyskie Voivodeship", @@ -10581,8 +10581,8 @@ "Polska", "wojew\u00f3dztwo \u015bwi\u0119tokrzyskie" ], - "s": 55093467, - "sha1_base64": "TPMddHwEBipjxRzqj+Rhb18Hj3g=" + "s": 54543419, + "sha1_base64": "dbgfICmdJKVeD01RalhTVAOt7tA=" } ] }, @@ -10599,8 +10599,8 @@ "Norte", "Portugal" ], - "s": 66467292, - "sha1_base64": "k6vfjoh1d+p16PS9lcupgDmcpZI=" + "s": 66141300, + "sha1_base64": "cfh44uN2qdDwi9yzV30MnQW4VQw=" }, { "id": "Portugal_South", @@ -10614,8 +10614,8 @@ "Lisboa", "Portugal" ], - "s": 88646438, - "sha1_base64": "A3WAqcQYWrvsf+gQcr9ZqI7dff8=" + "s": 87548846, + "sha1_base64": "jcNz7SpeowKUXZGzkPZ+bBJhFvQ=" }, { "id": "Portugal_Islands", @@ -10657,8 +10657,8 @@ "Portugal", "Portugal (\u00e1guas territoriais)" ], - "s": 21995771, - "sha1_base64": "lwqhs7GJ2tRmAIb2snYCTerMI4c=" + "s": 21853676, + "sha1_base64": "VHy+Y4D2t3F4ZWKjFC23uRKFp2A=" }, { "id": "Portugal_Viseu", @@ -10670,8 +10670,8 @@ "Norte", "Portugal" ], - "s": 70593839, - "sha1_base64": "ol6pL9wUeMZ91EpGzfc3XG1n+wk=" + "s": 70178735, + "sha1_base64": "xKJQArh7iZT7qza3sP7Qv7YOzdQ=" } ] }, @@ -10693,8 +10693,8 @@ "Umm Salal", "\u200f\u0642\u0637\u0631\u200e" ], - "s": 12663528, - "sha1_base64": "LStn3JuqFG0c0dD6kQJgsdnZw+8=" + "s": 12531832, + "sha1_base64": "J1gYfx5pab2TTpWZ+TmLXHl3/vg=" }, { "id": "Republic of Kosovo", @@ -10707,8 +10707,8 @@ "country_name_synonyms": [ "Kosovo" ], - "s": 25799276, - "sha1_base64": "IeBVE6mZC4ApdeSFcC9a5zGttn4=" + "s": 25708892, + "sha1_base64": "uyT5o0uoMX5RiTTKoIIdTLNmdGo=" }, { "id": "Romania", @@ -10727,8 +10727,8 @@ "Tulcea", "Vrancea" ], - "s": 31270104, - "sha1_base64": "gTTCn6V3Oep8VUfrpYKgw0P0IoQ=" + "s": 31145496, + "sha1_base64": "/OWNPs9bkGMx1U+uNSESzYYwTZ4=" }, { "id": "Romania_Centre", @@ -10744,8 +10744,8 @@ "Rom\u00e2nia", "Sibiu" ], - "s": 54495700, - "sha1_base64": "S4y8ZKjwBOYomsvQVhOGEWXWDPQ=" + "s": 54356380, + "sha1_base64": "zmYvzHKfBFVBC/HaqPNc+A9+PFM=" }, { "id": "Romania_West", @@ -10759,8 +10759,8 @@ "Rom\u00e2nia", "Timi\u0219" ], - "s": 38284906, - "sha1_base64": "N2V4g3dU0baZ64POmLDs+SZWKTo=" + "s": 38225538, + "sha1_base64": "GgjtVOif0JR7aPkEOdVsLYxOILo=" }, { "id": "Romania_North_West", @@ -10776,8 +10776,8 @@ "Satu Mare", "S\u0103laj" ], - "s": 56382706, - "sha1_base64": "c3Tqpm30mZ9UEEw1gdMr38LBuG8=" + "s": 56202258, + "sha1_base64": "R0OHZJFhA3hsUwasyeDHc0/vQnI=" }, { "id": "Romania_South_West", @@ -10792,8 +10792,8 @@ "Rom\u00e2nia", "V\u00e2lcea" ], - "s": 32452008, - "sha1_base64": "MhgUTc3QiSeSgrT09kOD6V4QMqM=" + "s": 32353216, + "sha1_base64": "iZO/WyA5BGd+OyaV5xjZnPn7kl4=" }, { "id": "Romania_North_East", @@ -10809,8 +10809,8 @@ "Suceava", "Vaslui" ], - "s": 41144714, - "sha1_base64": "Y+eHNHr9mqMEO78NT0i95PK+/6A=" + "s": 41012274, + "sha1_base64": "4hlEi+SClk/hH38TmL5qAIc5KYQ=" }, { "id": "Romania_South", @@ -10830,8 +10830,8 @@ "Rom\u00e2nia", "Teleorman" ], - "s": 51328500, - "sha1_base64": "gT+537q/zzx614ne0GCFyTC6c7c=" + "s": 51078907, + "sha1_base64": "yzreGf1gcXNUuX4RYXzEde9Xvck=" } ] }, @@ -10851,8 +10851,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0440\u044b\u043c" ], - "s": 42355160, - "sha1_base64": "73apfkhbBM4V5cm2rKjBN8GlVLY=" + "s": 42252080, + "sha1_base64": "a3/fkvNfdmQchDQSf5JaJ6ueOXg=" }, { "id": "Russia_Altai Krai", @@ -10864,8 +10864,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0410\u043b\u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 115799500, - "sha1_base64": "2ul2r3jmKcuYYDchEHDaYv/CRpg=" + "s": 110248748, + "sha1_base64": "zlgCJnWYzsLOT4ZXxOhqr/owLRc=" }, { "id": "Russia_Altai Republic", @@ -10877,8 +10877,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0410\u043b\u0442\u0430\u0439" ], - "s": 49447373, - "sha1_base64": "6PfEvqziLGRKpoSvEDvSvh2+jR8=" + "s": 48816581, + "sha1_base64": "4wYw4lnMN5tQkyd3fxnlv/zmAxk=" }, { "id": "Russia_Amur Oblast", @@ -10890,8 +10890,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0410\u043c\u0443\u0440\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 19617389, - "sha1_base64": "M0RW9IxvEDw8jyhgz12cI6cdyNs=" + "s": 19198885, + "sha1_base64": "PYZwS/VLRHR/O3mxEKGYlTrp7eU=" }, { "id": "Russia_Arkhangelsk Oblast_Central", @@ -10903,8 +10903,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0410\u0440\u0445\u0430\u043d\u0433\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 69988954, - "sha1_base64": "pNyshHL6phgFqQX+udoy1YD7kSQ=" + "s": 69944122, + "sha1_base64": "iFkL8UNywKjuNnPvjGbxt4xCVtg=" }, { "id": "Russia_Arkhangelsk Oblast_North", @@ -10918,8 +10918,8 @@ "\u041d\u0435\u043d\u0435\u0446\u043a\u0438\u0439 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0439 \u043e\u043a\u0440\u0443\u0433", "\u0410\u0440\u0445\u0430\u043d\u0433\u0435\u043b\u044c\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 27378295, - "sha1_base64": "N/SMbccmDbT/dDkHDvSckJaGV5g=" + "s": 27303687, + "sha1_base64": "BpxuOpqNFQhMfb2TVuZ3OpBW++c=" }, { "id": "Russia_Astrakhan Oblast", @@ -10931,8 +10931,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0410\u0441\u0442\u0440\u0430\u0445\u0430\u043d\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 28375285, - "sha1_base64": "uwXJF5puJbQIQ0WtHXcJL3J9MMM=" + "s": 28172276, + "sha1_base64": "En27y0y8ZG59gLG7hPtNAe64TYg=" }, { "id": "Russia_Bashkortostan", @@ -10944,8 +10944,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0411\u0430\u0448\u043a\u043e\u0440\u0442\u043e\u0441\u0442\u0430\u043d" ], - "s": 86187237, - "sha1_base64": "clSUTLPhH6+066X/Yrm5L27myp0=" + "s": 84759861, + "sha1_base64": "Vg2bv5zSSFHBrKRv4u3YIPEAJ7g=" }, { "id": "Russia_Belgorod Oblast", @@ -10957,8 +10957,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0411\u0435\u043b\u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 30273279, - "sha1_base64": "+GfxIJkFeEhvgh9b1yj/T/JDiHo=" + "s": 29890495, + "sha1_base64": "Or6tW0Eh9QcnCgBazs7ENlSLi00=" }, { "id": "Russia_Bryansk Oblast", @@ -10970,8 +10970,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0411\u0440\u044f\u043d\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 23084510, - "sha1_base64": "K/hBTO5p/DlhUEahfEwrxzeqpOo=" + "s": 23036974, + "sha1_base64": "ext2ZoS1Bht7BX9OSe1jPuwOVaw=" }, { "id": "Russia_Buryatia", @@ -10983,8 +10983,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0411\u0443\u0440\u044f\u0442\u0438\u044f" ], - "s": 27548574, - "sha1_base64": "F1UoaKImZHhgRAdISh7S+wkOUHg=" + "s": 27471806, + "sha1_base64": "3HjiPwFRreJ3xicpdh4N9+yMchk=" }, { "id": "Russia_Chechen Republic", @@ -10996,8 +10996,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 13614746, - "sha1_base64": "8dRgMNpz9Hyb6rOYiW0cz7x/8oI=" + "s": 13579994, + "sha1_base64": "vbcPI40WQ6DtS7qfz8NjQNNERn0=" }, { "id": "Russia_Chelyabinsk Oblast", @@ -11009,8 +11009,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0427\u0435\u043b\u044f\u0431\u0438\u043d\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 73003510, - "sha1_base64": "DVvg9t1lPzHylZNgOnbJ1/MF534=" + "s": 72770942, + "sha1_base64": "1NYqExvVMjVuJNQHe8ox8Fvusrk=" }, { "id": "Russia_Chukotka Autonomous Okrug", @@ -11022,8 +11022,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 28958936, - "sha1_base64": "Rfb294mdbxQmGwT8TDCQQ5ep9hc=" + "s": 28164152, + "sha1_base64": "HWQaD2NvXQGSQ5Za97fTNImbNMw=" }, { "id": "Russia_Chuvashia", @@ -11035,8 +11035,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0427\u0443\u0432\u0430\u0448\u0438\u044f" ], - "s": 22503348, - "sha1_base64": "vWFByxKUkRi9SF+YEbhUnEqySMw=" + "s": 22298372, + "sha1_base64": "+NmJO9JeIgFVhCElvGDX0YsHwcM=" }, { "id": "Russia_Ingushetia", @@ -11048,8 +11048,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0418\u043d\u0433\u0443\u0448\u0435\u0442\u0438\u044f" ], - "s": 9333231, - "sha1_base64": "34l2MiCf3PCxS/VCqV4HFU2pnW4=" + "s": 9255807, + "sha1_base64": "4xLB4d+pQg6Xn6SgpFAMsQ5MpmM=" }, { "id": "Russia_Irkutsk Oblast", @@ -11061,8 +11061,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0418\u0440\u043a\u0443\u0442\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 63559091, - "sha1_base64": "eayT0PqH6pfZzfBi16CqqtePabM=" + "s": 62751963, + "sha1_base64": "bL0jgx7nkg8fYIQyKVRLIXi52PU=" }, { "id": "Russia_Ivanovo Oblast", @@ -11074,8 +11074,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 25738631, - "sha1_base64": "IfOR8d4c84EAiJtRW8YZtPRgEiY=" + "s": 25599799, + "sha1_base64": "MQmbh0UezDQFLgG9PR6sBASlQjc=" }, { "id": "Russia_Jewish Autonomous Oblast", @@ -11087,8 +11087,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 13653387, - "sha1_base64": "DFr/2Dofzm3k89aHtOCalT29Xc0=" + "s": 13648243, + "sha1_base64": "r9BBhq82ywXlJZAinkPofOozJzE=" }, { "id": "Russia_Kabardino-Balkaria", @@ -11100,8 +11100,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 20871197, - "sha1_base64": "aq3MRt97RSVhPEe97wiGpzwL2N4=" + "s": 20830589, + "sha1_base64": "ZBxHZwvdJUbdrdOlZw/Mw6GgopY=" }, { "id": "Russia_Kaliningrad Oblast", @@ -11113,8 +11113,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u0430\u043b\u0438\u043d\u0438\u043d\u0433\u0440\u0430\u0434\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 19497053, - "sha1_base64": "hyR1I0r2hRlKBkXJOYcCdkcj3zg=" + "s": 19381925, + "sha1_base64": "V0NtP7VCsGZJeKIUkjSMQZ3oPmA=" }, { "id": "Russia_Kaluga Oblast", @@ -11126,8 +11126,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u0430\u043b\u0443\u0436\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 33717599, - "sha1_base64": "OZmcdn22vg/LXfqNvoZ46iQZu3c=" + "s": 33589791, + "sha1_base64": "q6ip0tTppfpw4Pm+CpE/yiSoBnc=" }, { "id": "Russia_Kamchatka Krai", @@ -11139,8 +11139,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u0430\u043c\u0447\u0430\u0442\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 33813437, - "sha1_base64": "j7uhQPRVxwEN/Y3WoK0sCoZ7D+Y=" + "s": 33705453, + "sha1_base64": "hVQc8p5fCQhz1YmMfeKfA2+vfls=" }, { "id": "Russia_Karachay-Cherkessia", @@ -11152,8 +11152,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 22173148, - "sha1_base64": "RmuGbaXdlLW/aEi9jFSYa1dBcY4=" + "s": 22150772, + "sha1_base64": "n6YSDSUaD/Fuz4qsfWDTWM2lGfw=" }, { "id": "Russia_Kemerov Oblast", @@ -11165,8 +11165,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u0435\u043c\u0435\u0440\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 40174432, - "sha1_base64": "KSJ84A8LFgntP/G6sDqCl5IViQ4=" + "s": 39854368, + "sha1_base64": "sk3/LrFn328kUWxXGvt4t+6jiMM=" }, { "id": "Russia_Khabarovsk Krai", @@ -11178,8 +11178,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0425\u0430\u0431\u0430\u0440\u043e\u0432\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 60643645, - "sha1_base64": "YC3kQa/3Rhwkg7wf6oBOg+VI5II=" + "s": 60466117, + "sha1_base64": "Il+kTqzVxFP5HQezJuxO72nD/tw=" }, { "id": "Russia_Khakassia", @@ -11191,8 +11191,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 21913861, - "sha1_base64": "cCsWoJFY9t7jZV84FIyguWJwImg=" + "s": 21868421, + "sha1_base64": "4BvlMsUXRhhUXkZmLlx/DXrAyLA=" }, { "id": "Russia_Kirov Oblast", @@ -11204,8 +11204,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u0438\u0440\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 89594243, - "sha1_base64": "BU6YIBfVBp606yBvuS2fdCY1mPc=" + "s": 88350763, + "sha1_base64": "y/6fgUp0RmQFXXm2MDeLDlRROYM=" }, { "id": "Russia_Komi Republic", @@ -11217,8 +11217,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u043c\u0438" ], - "s": 45261321, - "sha1_base64": "8eyIZEHX8T8tRVy4arDQ5djNNEc=" + "s": 43729081, + "sha1_base64": "6LaELSTCAschWN/hNaVnDBicnZU=" }, { "id": "Russia_Kostroma Oblast", @@ -11230,8 +11230,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u043e\u0441\u0442\u0440\u043e\u043c\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 27208439, - "sha1_base64": "7rYHx6RBnZbeoExF3Z9Eh2isex0=" + "s": 26848135, + "sha1_base64": "L1b++sN2cduZGFTtnzVz30uL46s=" }, { "id": "Russia_Krasnodar Krai", @@ -11243,8 +11243,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u0440\u0430\u0441\u043d\u043e\u0434\u0430\u0440\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 68250036, - "sha1_base64": "WTODboesFXNNDgTv3hc0FIe3pNI=" + "s": 67650300, + "sha1_base64": "2mXHEGIRX+BEWFwJSek7rVfGbSE=" }, { "id": "Russia_Krasnodar Krai_Adygeya", @@ -11257,8 +11257,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u0440\u0430\u0441\u043d\u043e\u0434\u0430\u0440\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 51856861, - "sha1_base64": "Wqa/gWNJe2zZN7NgKlPKtEMGmAE=" + "s": 51628917, + "sha1_base64": "OUN8VmBv/Ki3hOznKGX7x2tXyL4=" }, { "id": "Russia_Krasnoyarsk Krai_North", @@ -11270,8 +11270,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 39241267, - "sha1_base64": "bz4jE9pnTvsBY/Y0akPqPY/asf8=" + "s": 38477371, + "sha1_base64": "vSxFlfBAjkeyHWKu9PoTRuJPB8c=" }, { "id": "Russia_Krasnoyarsk Krai_South", @@ -11283,8 +11283,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u0440\u0430\u0441\u043d\u043e\u044f\u0440\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 48727089, - "sha1_base64": "cM5JtbReyztWNXRqAnQzByi5MbE=" + "s": 48532185, + "sha1_base64": "15CqSPOi1QQiWc8DbSH0s7+9y9k=" }, { "id": "Russia_Kurgan Oblast", @@ -11296,8 +11296,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 34570909, - "sha1_base64": "F1Sbt35xVgZZDNsWiFxTSX900lE=" + "s": 34191085, + "sha1_base64": "qSA4X/+2bYMN1x18d7Li3vnnC/M=" }, { "id": "Russia_Kursk Oblast", @@ -11309,8 +11309,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041a\u0443\u0440\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 48522735, - "sha1_base64": "0hJJ5Enu5jVZS/keIYlWEoJ2nS0=" + "s": 48405999, + "sha1_base64": "I7xWLdHdS0XDie5nKUbu4p0Gawc=" }, { "id": "Russia_Leningradskaya Oblast_Karelsky", @@ -11322,8 +11322,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041b\u0435\u043d\u0438\u043d\u0433\u0440\u0430\u0434\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 42560142, - "sha1_base64": "NMun8vCAD651ZlwWTBgZZfVw8cU=" + "s": 42503766, + "sha1_base64": "ooLbD8GZ0n/nemRJ0wMsAXuISQs=" }, { "id": "Russia_Leningradskaya Oblast_Southeast", @@ -11335,8 +11335,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041b\u0435\u043d\u0438\u043d\u0433\u0440\u0430\u0434\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 74996485, - "sha1_base64": "8oD91q4KPjdm1POEbky3FiE2KhE=" + "s": 74989989, + "sha1_base64": "HNmnGxZpQXYOqQbXKtYXX9Es4rA=" }, { "id": "Russia_Lipetsk Oblast", @@ -11348,8 +11348,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041b\u0438\u043f\u0435\u0446\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 29877126, - "sha1_base64": "UhdB4zswVcEWzEmvKM4mptr4kKo=" + "s": 29588270, + "sha1_base64": "2dq6KgW/Brq1U/lT7KcaB0p0IhI=" }, { "id": "Russia_Magadan Oblast", @@ -11361,8 +11361,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041c\u0430\u0433\u0430\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 23563034, - "sha1_base64": "l+/689B/wxR+LptK84ycJfk9cqw=" + "s": 23502954, + "sha1_base64": "nxss9jdSEiwv0qDLHrk7tebiSsk=" }, { "id": "Russia_Mari El", @@ -11374,8 +11374,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041c\u0430\u0440\u0438\u0439 \u042d\u043b" ], - "s": 26102172, - "sha1_base64": "uwpfxNyFID2hKv/Si7reiXjXACE=" + "s": 25967428, + "sha1_base64": "VGI7Z+MOFA9VaToUtwR29oysLXQ=" }, { "id": "Russia_Moscow Oblast_East", @@ -11387,8 +11387,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 80877240, - "sha1_base64": "DdDeuy/XBf9KF7zRTcdToEeKT4c=" + "s": 80792504, + "sha1_base64": "HPa1d/R7cbNjDLBiG4IEZL2Ji4Y=" }, { "id": "Russia_Moscow Oblast_West", @@ -11401,8 +11401,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041c\u043e\u0441\u043a\u0432\u0430" ], - "s": 53908268, - "sha1_base64": "hxgn3gs8CKGj59f5i9K2wckvHmM=" + "s": 53722106, + "sha1_base64": "lCxKEdICAxF//ppSobbeO1NWOBc=" }, { "id": "Russia_Moscow", @@ -11415,8 +11415,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041c\u043e\u0441\u043a\u0432\u0430" ], - "s": 51177024, - "sha1_base64": "XhD9ARoIpdFzPd8CLOF1K0ZvGV0=" + "s": 50830436, + "sha1_base64": "VI4fveGCT0kUCw4EXF9vN0F/Qa0=" }, { "id": "Russia_Murmansk Oblast", @@ -11428,8 +11428,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 62380449, - "sha1_base64": "tmiHvi7W3xWcsUdLUEy6XF63YQU=" + "s": 62262553, + "sha1_base64": "AAhNwDpEDZ1Czm40gDexmiZXaEE=" }, { "id": "Russia_Nenets Autonomous Okrug", @@ -11441,8 +11441,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041d\u0435\u043d\u0435\u0446\u043a\u0438\u0439 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0439 \u043e\u043a\u0440\u0443\u0433" ], - "s": 30538821, - "sha1_base64": "biM7u6a54r48mSY8oL1WDaZE57M=" + "s": 30496829, + "sha1_base64": "Jn0jKxfZGRN9KDjZ0UC2ggiahzM=" }, { "id": "Russia_Nizhny Novgorod Oblast", @@ -11454,8 +11454,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041d\u0438\u0436\u0435\u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 70230555, - "sha1_base64": "lfRIxoA1D0Nd7rBXx2gIPtlk/9M=" + "s": 69865363, + "sha1_base64": "OHXoe6rh2+IxLwWLyHORLVERSxc=" }, { "id": "Russia_North Ossetia-Alania", @@ -11467,8 +11467,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0421\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u041e\u0441\u0435\u0442\u0438\u044f - \u0410\u043b\u0430\u043d\u0438\u044f" ], - "s": 10115001, - "sha1_base64": "gxOcX20sKjKcf61Hl0lfb9bDN3E=" + "s": 10101505, + "sha1_base64": "PwHfwZ2HISrJM6XwSr9SisjorEc=" }, { "id": "Russia_Novgorod Oblast", @@ -11480,8 +11480,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041d\u043e\u0432\u0433\u043e\u0440\u043e\u0434\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 27122063, - "sha1_base64": "3xFDCkjfLvZOVGJHcvyTzQbH1SE=" + "s": 27020119, + "sha1_base64": "Z5DxrALhid8EgjAa6G/ha0PsfmM=" }, { "id": "Russia_Novosibirsk Oblast", @@ -11493,8 +11493,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 75077682, - "sha1_base64": "eIX3izhSuKGBduPkFGh3bf34zzQ=" + "s": 74577754, + "sha1_base64": "1cYSzmMEetSBxv9lL8zYz1KfFEs=" }, { "id": "Russia_Omsk Oblast", @@ -11506,8 +11506,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041e\u043c\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 58131002, - "sha1_base64": "XLkIlSdYERqknOet5zexHNKIgkg=" + "s": 57739082, + "sha1_base64": "KmExXptNm+EurREXFc1HEe8y87k=" }, { "id": "Russia_Orenburg Oblast", @@ -11519,8 +11519,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041e\u0440\u0435\u043d\u0431\u0443\u0440\u0433\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 48505219, - "sha1_base64": "2PYCG0sQVcHJTNQZihIeUT1E5FE=" + "s": 47787435, + "sha1_base64": "yd1pMwM63MxjWxOBk1QEq4ricww=" }, { "id": "Russia_Oryol Oblast", @@ -11532,8 +11532,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 16962244, - "sha1_base64": "1ktso+AH/BvlzFqYx4Um8HxI9BQ=" + "s": 16910284, + "sha1_base64": "EhWWR9sAYGeOF1vi3LGW3Izr5CU=" }, { "id": "Russia_Penza Oblast", @@ -11545,8 +11545,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 29891830, - "sha1_base64": "E7pGwsbD6MpeMvubrJMINID3Zic=" + "s": 29765158, + "sha1_base64": "t27POykHVaxFsrKLgFtLoIkq6zg=" }, { "id": "Russia_Perm Krai_North", @@ -11558,8 +11558,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041f\u0435\u0440\u043c\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 42016561, - "sha1_base64": "JVMrm28HeNt1+jfm8jBgzu+22WI=" + "s": 41993257, + "sha1_base64": "Pn9lZG7fuZ5xrjouguXn7o67o30=" }, { "id": "Russia_Perm Krai_South", @@ -11571,8 +11571,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041f\u0435\u0440\u043c\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 52847652, - "sha1_base64": "KW+aa55mGFIV0JEErac9ck8A0OA=" + "s": 52753740, + "sha1_base64": "/kdgjgAsDFoTmwWL/klmVPOycgM=" }, { "id": "Russia_Primorsky Krai", @@ -11584,8 +11584,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041f\u0440\u0438\u043c\u043e\u0440\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 42752467, - "sha1_base64": "e9eTNyfeMvlgOCxGLKhsgRoVg0U=" + "s": 42601011, + "sha1_base64": "bZ1E0EM7UUS0eGj9vJKkk4aIRAE=" }, { "id": "Russia_Pskov Oblast", @@ -11597,8 +11597,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 42629041, - "sha1_base64": "KXtEbuv8XtKnw3mKQRXjPjAqeb4=" + "s": 42341177, + "sha1_base64": "IvZfkNMhojZzqg9/sv6yz+i5GDg=" }, { "id": "Russia_Republic of Dagestan", @@ -11610,8 +11610,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0414\u0430\u0433\u0435\u0441\u0442\u0430\u043d" ], - "s": 41953207, - "sha1_base64": "jGSyOT0ZnxlBMiBWWSCes/zY0gs=" + "s": 41683575, + "sha1_base64": "jOrq1NJOLDhiJPdkHViLuZY9+OA=" }, { "id": "Russia_Republic of Kalmykia", @@ -11624,8 +11624,8 @@ "\u041a\u0430\u043b\u043c\u044b\u043a\u0438\u044f", "\u0410\u0441\u0442\u0440\u0430\u0445\u0430\u043d\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 13297410, - "sha1_base64": "PSj4xItmpz4+f5hIncuvk4YrmeI=" + "s": 13232554, + "sha1_base64": "Iqq9waVBKcheSvuaOgPM1wPqT8w=" }, { "id": "Russia_Republic of Karelia_North", @@ -11637,8 +11637,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 70573208, - "sha1_base64": "qTQt/HUe+K6U3aC5x3VS85ddexM=" + "s": 70257456, + "sha1_base64": "SvHEzGl5IIQny7Biwx+rCnT2BiE=" }, { "id": "Russia_Republic of Karelia_South", @@ -11650,8 +11650,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 59890033, - "sha1_base64": "SnCKKaPKBYHwET4s71fpiRAakXA=" + "s": 59806673, + "sha1_base64": "srOGpaIIlWbklLN/HEhb2RIbxiI=" }, { "id": "Russia_Republic of Mordovia", @@ -11663,8 +11663,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041c\u043e\u0440\u0434\u043e\u0432\u0438\u044f" ], - "s": 27134701, - "sha1_base64": "EtcirflCiACy+55XUQvTOIXGRGw=" + "s": 27090677, + "sha1_base64": "svjEIJFbyRPuDsdQvejpw17GX3c=" }, { "id": "Russia_Rostov Oblast", @@ -11676,8 +11676,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 60264309, - "sha1_base64": "XUex6OTdjFXkNqTYX3N6dds24Xo=" + "s": 59769012, + "sha1_base64": "jpH0oACDoaGTsOsLlCgam6NvY5k=" }, { "id": "Russia_Ryazan Oblast", @@ -11689,8 +11689,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 29627415, - "sha1_base64": "4BnV0EumVBCrPSz0BKIEeZ+HV6o=" + "s": 29532335, + "sha1_base64": "XIEk1HSODeZSH+HdEfKJKZa2FUQ=" }, { "id": "Russia_Saint Petersburg", @@ -11703,8 +11703,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u041b\u0435\u043d\u0438\u043d\u0433\u0440\u0430\u0434\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 37310682, - "sha1_base64": "PtEu+KtKJ1Me5+dq1Z+FPJv0Swk=" + "s": 37043762, + "sha1_base64": "0vV0u0Dpi8SHFgjE8oCeNnzx66Y=" }, { "id": "Russia_Sakha Republic", @@ -11716,8 +11716,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0430\u0445\u0430 (\u042f\u043a\u0443\u0442\u0438\u044f)" ], - "s": 107121239, - "sha1_base64": "OUO6alNmWyxcT1HrBS5R+JYWGAs=" + "s": 106481127, + "sha1_base64": "/czcZ70LFwU1/6btoPGAl8ebVsY=" }, { "id": "Russia_Sakhalin Oblast", @@ -11729,8 +11729,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0421\u0430\u0445\u0430\u043b\u0438\u043d\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 53094279, - "sha1_base64": "9LpyHGZPQg/ihC0NySzCvuwuv4g=" + "s": 53023055, + "sha1_base64": "HYZ3fD+Bs+DHIAnXnoQ9q7vNNn0=" }, { "id": "Russia_Samara Oblast", @@ -11742,8 +11742,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 48415792, - "sha1_base64": "4IDJBEeelQGLimLtdZUbTKE1TPo=" + "s": 48222360, + "sha1_base64": "uOpyiQA/Ybk5GX3gBi71tj5pb+E=" }, { "id": "Russia_Saratov Oblast", @@ -11755,8 +11755,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0421\u0430\u0440\u0430\u0442\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 44027091, - "sha1_base64": "EWuQ1SB+o6S0lr3zLM89on39qLw=" + "s": 43896931, + "sha1_base64": "Xw0fs+sbpBMhIdhwfoX2NusZP6s=" }, { "id": "Russia_Smolensk Oblast", @@ -11768,8 +11768,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 34708776, - "sha1_base64": "JKRwJouO9/6cCymcE4lK2UpRQSs=" + "s": 33989232, + "sha1_base64": "iZQqjAScwddEv7nixnQHMSwBqe0=" }, { "id": "Russia_Stavropol Krai", @@ -11781,8 +11781,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0421\u0442\u0430\u0432\u0440\u043e\u043f\u043e\u043b\u044c\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 34656008, - "sha1_base64": "VoqXN+QAY495UhgQoMhbvNr1PnY=" + "s": 34321072, + "sha1_base64": "8+5y2qkwUspz5EitwYU+EVuwAWg=" }, { "id": "Russia_Sverdlovsk Oblast_Ekaterinburg", @@ -11794,8 +11794,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0421\u0432\u0435\u0440\u0434\u043b\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 49587537, - "sha1_base64": "xIUWU89YQuNTZsxJC4mlh0HDXw4=" + "s": 49503985, + "sha1_base64": "7BtMS1OTWIFw7mDeM0Z5arzk9ck=" }, { "id": "Russia_Sverdlovsk Oblast_North", @@ -11807,8 +11807,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0421\u0432\u0435\u0440\u0434\u043b\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 55967026, - "sha1_base64": "YKQitj86u7G3CGdhBsMwq8c146c=" + "s": 55817738, + "sha1_base64": "liKaHWTcHHugV3PKC6l6uUKW4hg=" }, { "id": "Russia_Tambov Oblast", @@ -11820,8 +11820,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 37833743, - "sha1_base64": "uIkfZWoNszN7pFHZoCm4RHHq+ao=" + "s": 37790359, + "sha1_base64": "IYnu0GRv0zmD2nsLn05+Z3FoWBA=" }, { "id": "Russia_Tatarstan", @@ -11833,8 +11833,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0422\u0430\u0442\u0430\u0440\u0441\u0442\u0430\u043d" ], - "s": 62603676, - "sha1_base64": "1REQBJzWt0qH0Y9k/qIAjPX2ww4=" + "s": 59993581, + "sha1_base64": "V5EnxDJ6afo+d2qT5f7B3e7fXzw=" }, { "id": "Russia_Tomsk Oblast", @@ -11846,8 +11846,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0422\u043e\u043c\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 22902329, - "sha1_base64": "FegG3rIuvcRAEX4YKvdXs5n6D1I=" + "s": 22454745, + "sha1_base64": "Qh8gWlc4ToiabzfEJiYfz3EgCMM=" }, { "id": "Russia_Tula Oblast", @@ -11859,8 +11859,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0422\u0443\u043b\u044c\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 27459599, - "sha1_base64": "p/l/PPNvX5tjn97WhWGBx2daf6E=" + "s": 27385927, + "sha1_base64": "lQoXEa7aTmbpiwMCB/1Dlqk+2ro=" }, { "id": "Russia_Tuva", @@ -11872,8 +11872,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0422\u044b\u0432\u0430" ], - "s": 10472829, - "sha1_base64": "N2jqa21vaYFV1SZZhwSXRTrHyIQ=" + "s": 10041557, + "sha1_base64": "dE+bfkjuBr8YIgZOHPQizZL58CA=" }, { "id": "Russia_Tver Oblast", @@ -11885,8 +11885,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0422\u0432\u0435\u0440\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 65999404, - "sha1_base64": "HygJShUhkXwTA+I3BJjUjV1UsN0=" + "s": 65865572, + "sha1_base64": "cs4wovWm5L89wo+W3in8B5sHeNo=" }, { "id": "Russia_Tyumen Oblast", @@ -11898,8 +11898,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 52546826, - "sha1_base64": "tN+qoF4lb08UI80ddRmLcUrtq4Q=" + "s": 52181986, + "sha1_base64": "bnh+lbI9/7KP0mC7VZwYS8Spjxk=" }, { "id": "Russia_Udmurt Republic", @@ -11911,8 +11911,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0423\u0434\u043c\u0443\u0440\u0442\u0438\u044f" ], - "s": 36191599, - "sha1_base64": "qk/LcEGBNaJ4DBwoLaZzBVnZyG0=" + "s": 36068759, + "sha1_base64": "iwEgpXks9R6wGtx7cNrt0RJlyG4=" }, { "id": "Russia_Ulyanovsk Oblast", @@ -11924,8 +11924,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 34221766, - "sha1_base64": "wPoDE2EBu1woiMeC5wHUr96TmgM=" + "s": 34178382, + "sha1_base64": "5t+zwFucgYOi78JR2rEzz8Sp9DI=" }, { "id": "Russia_Vladimir Oblast", @@ -11937,8 +11937,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0412\u043b\u0430\u0434\u0438\u043c\u0438\u0440\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 53845884, - "sha1_base64": "obarS4AiqBwXwJmFCVr6kYu59TQ=" + "s": 53739964, + "sha1_base64": "XQGXMq1L7M6u+UCvQqRrKjRZ3zQ=" }, { "id": "Russia_Volgograd Oblast", @@ -11950,8 +11950,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0412\u043e\u043b\u0433\u043e\u0433\u0440\u0430\u0434\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 46517465, - "sha1_base64": "jDxU9VA9SwM52a/ggQXYRsibAuY=" + "s": 46322929, + "sha1_base64": "5UwBuRqZ18qaLOIVXLtRFDijAA8=" }, { "id": "Russia_Vologda Oblast", @@ -11963,8 +11963,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0412\u043e\u043b\u043e\u0433\u043e\u0434\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 54265428, - "sha1_base64": "jUv+5tjNoRGMEVQ9xHZ3/TIqszc=" + "s": 53936404, + "sha1_base64": "QV1DcIltuLNoFmZ0E+XlwEnRbDI=" }, { "id": "Russia_Voronezh Oblast", @@ -11976,8 +11976,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0412\u043e\u0440\u043e\u043d\u0435\u0436\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 54017754, - "sha1_base64": "V3sBUDeYXFkQ8iuHHF+B/Zgea5c=" + "s": 53931810, + "sha1_base64": "BhT4VPG3rhllH5rwzWTNQZgFGuI=" }, { "id": "Russia_Yamalo-Nenets Autonomous Okrug", @@ -11989,8 +11989,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 27213220, - "sha1_base64": "phTcrhqAvD7wtc219wUVkW7ZbXA=" + "s": 27148916, + "sha1_base64": "gzZcWRutBaY/rF6RlP/mQzX0Uj0=" }, { "id": "Russia_Yaroslavl Oblast", @@ -12002,8 +12002,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u042f\u0440\u043e\u0441\u043b\u0430\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 37134376, - "sha1_base64": "G8gqHLIKj/E7nhW/vV06R7fM1+s=" + "s": 37013248, + "sha1_base64": "8pTcjXnJYH22ag0pzZvskaBZhK8=" }, { "id": "Russia_Yugra_Khanty", @@ -12015,8 +12015,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 39367086, - "sha1_base64": "znAIbmcbSLdnX8342J++g0N34bM=" + "s": 39342734, + "sha1_base64": "w7JRdtf/lml3kdu46cIOEv7lICo=" }, { "id": "Russia_Yugra_Surgut", @@ -12028,8 +12028,8 @@ "\u0420\u043e\u0441\u0441\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f" ], - "s": 36393227, - "sha1_base64": "CF5bTVaBkRoSrOL8ERLltLmdZl0=" + "s": 36367251, + "sha1_base64": "suDkoe9wFYHpVixTQcfXf4ypReE=" }, { "id": "Russia_Zabaykalsky Krai", @@ -12041,8 +12041,8 @@ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0417\u0430\u0431\u0430\u0439\u043a\u0430\u043b\u044c\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439" ], - "s": 28902374, - "sha1_base64": "tdoXb/yfJ0tLiroGhnxzVCrOzrM=" + "s": 28695870, + "sha1_base64": "hZcd0r1o+5W0ZF1elUGflyJncX4=" } ] }, @@ -12059,8 +12059,8 @@ "Rwanda", "Umujyi wa Kigali" ], - "s": 32666123, - "sha1_base64": "rMNH8oNuOEk17922zyRuQepUe6A=" + "s": 32475019, + "sha1_base64": "r4plqEcBEjfSyA+s0HeMo8UpJ9w=" }, { "id": "Sahrawi Arab Democratic Republic", @@ -12072,8 +12072,8 @@ "Maroc \u2d4d\u2d4e\u2d56\u2d54\u2d49\u2d31 \u0627\u0644\u0645\u063a\u0631\u0628", "RASD" ], - "s": 15187309, - "sha1_base64": "Nr6qp9LVKMxnKZ1kDVx6Wc7KzEs=" + "s": 15182349, + "sha1_base64": "YIPL4UMWa54or39DmKxGCRXSpBk=" }, { "id": "Saint Helena Ascension and Tristan da Cunha", @@ -12087,8 +12087,8 @@ "Saint Helena, Ascension and Tristan da Cunha", "Tristan da Cunha" ], - "s": 1348144, - "sha1_base64": "W8mXZpeoI+CLRjle/PrktUpkzbg=" + "s": 1345328, + "sha1_base64": "JGCcUKA5dRuOzit25PdrHf52rcw=" }, { "id": "Samoa", @@ -12106,8 +12106,8 @@ "American Samoa", "S\u0101moa" ], - "s": 5642469, - "sha1_base64": "+u+1qYqiahQ0bg9IpQIiIP/AyZA=" + "s": 5640877, + "sha1_base64": "x1csXqFJ5c33NmPrjvge0b+fVFc=" }, { "id": "San Marino", @@ -12119,8 +12119,8 @@ "Italia", "San Marino" ], - "s": 1410129, - "sha1_base64": "yKBq6SiG40gkVvbVnV26a1FEgC0=" + "s": 1408513, + "sha1_base64": "4dKGStaBrb5xblEVu2Ay7ewtcF8=" }, { "id": "Saudi Arabia", @@ -12138,8 +12138,8 @@ "\u0627\u0644\u0634\u0631\u0642\u064a\u0629", "\u200f\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629\u200e" ], - "s": 45396580, - "sha1_base64": "OMF9xVK5o9NJSY2ZN4roCS4V5DQ=" + "s": 44983003, + "sha1_base64": "TIerH2GOESbNsRJuhwEjC/j4TEI=" }, { "id": "Saudi Arabia_North", @@ -12157,8 +12157,8 @@ "\u0627\u0644\u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u0645\u0646\u0648\u0631\u0629", "\u200f\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629\u200e" ], - "s": 45943351, - "sha1_base64": "3fdMJlqG3Pl3IaI1X+dJWMkuhSg=" + "s": 45024551, + "sha1_base64": "iY7cov9BiSiV8weklUfQDY4ClLQ=" } ] }, @@ -12174,8 +12174,8 @@ "Regi\u00e3o de Cacheu", "Senegal" ], - "s": 55237686, - "sha1_base64": "IHBlEaVFN6MmggSYK/ApQ+m6K+s=" + "s": 54628094, + "sha1_base64": "n4kDtl0cdDUUKD4RtcCC93BIYMo=" }, { "id": "Serbia", @@ -12187,8 +12187,8 @@ "\u0412\u043e\u0458\u0432\u043e\u0434\u0438\u043d\u0430", "\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u043d\u0430 \u0421\u0440\u0431\u0438\u0458\u0430" ], - "s": 123393152, - "sha1_base64": "onoNfSyEfJ/CPmOpEqpmM9qStPU=" + "s": 121539784, + "sha1_base64": "zKrzNJy+GfmCiXf35gpd+P2GDnE=" }, { "id": "Seychelles", @@ -12198,8 +12198,8 @@ "affiliations": [ "Sesel" ], - "s": 2522556, - "sha1_base64": "kzF7dU5ZB3sfwWE520UZGGbRXec=" + "s": 2510380, + "sha1_base64": "vCVqV+Sy+WrnOQ5TMVzpj3AYuTI=" }, { "id": "Sierra Leone", @@ -12213,8 +12213,8 @@ "Southern Province", "Western Area" ], - "s": 40829573, - "sha1_base64": "2ML5vhphUvorPSbfvJcy07A4siM=" + "s": 40725557, + "sha1_base64": "C+5WoC2m2bcM5CFUHVx9C4J1KbE=" }, { "id": "Singapore", @@ -12226,8 +12226,8 @@ "Malaysia", "Singapura" ], - "s": 21232517, - "sha1_base64": "hVwUClynQmCe7unNCn5VwNfAb7I=" + "s": 21165612, + "sha1_base64": "7gswPaS0WZX6NOCehgw6vf4A2LA=" }, { "id": "Slovakia", @@ -12241,8 +12241,8 @@ "Pre\u0161ovsk\u00fd kraj", "Slovensko" ], - "s": 42110718, - "sha1_base64": "MuTNNgFkREbTx3NjJmGuHW+2cfs=" + "s": 41836118, + "sha1_base64": "av8WuQ+jRFvj85fJZUrhj/3qAEg=" }, { "id": "Slovakia_Region of Kosice", @@ -12253,8 +12253,8 @@ "Ko\u0161ick\u00fd kraj", "Slovensko" ], - "s": 36583559, - "sha1_base64": "qf/FI9s3el9owbHQrsCkfNaDn/Y=" + "s": 36312743, + "sha1_base64": "m1zAmWUa9ZaqSN303F6iLgBHnJg=" }, { "id": "Slovakia_Region of Banska Bystrica", @@ -12265,8 +12265,8 @@ "Banskobystrick\u00fd kraj", "Slovensko" ], - "s": 48478631, - "sha1_base64": "VsCI8XYOrUz5T1Z30LOEkDKxsL0=" + "s": 48255271, + "sha1_base64": "zTX7jkS8MssLIebQKYC64SBIi6g=" }, { "id": "Slovakia_Region of Trnava", @@ -12277,8 +12277,8 @@ "Slovensko", "Trnavsk\u00fd kraj" ], - "s": 21686317, - "sha1_base64": "golKsVZhDiuKxmcm/2yBfQ68t7M=" + "s": 21368029, + "sha1_base64": "6+DH5e+hp26Uyji72CXraRgol5w=" }, { "id": "Slovakia_Region of Trencin", @@ -12289,8 +12289,8 @@ "Slovensko", "Tren\u010diansky kraj" ], - "s": 29842223, - "sha1_base64": "DjdLqgH7FykJ8KM1WsmNs2IyNk0=" + "s": 29525759, + "sha1_base64": "VBBh0TAxeTZ4mf7f1tEuthMB4lU=" }, { "id": "Slovakia_Region of Nitra", @@ -12301,8 +12301,8 @@ "Nitriansky kraj", "Slovensko" ], - "s": 22894165, - "sha1_base64": "QDSLDppQ8FhNTnFvlX4SWPW9LsY=" + "s": 22797069, + "sha1_base64": "VgomIPd2Xbo0xTksMTp58RcaB6A=" }, { "id": "Slovakia_Region of Bratislava", @@ -12313,8 +12313,8 @@ "Bratislavsk\u00fd kraj", "Slovensko" ], - "s": 18499131, - "sha1_base64": "KLEkEQ+C3+bjY4dAzri04ul6uLA=" + "s": 18224019, + "sha1_base64": "3m20Lpfb8eJN5vv9Kpa3JgDqZB4=" }, { "id": "Slovakia_Region of Zilina", @@ -12325,8 +12325,8 @@ "Slovensko", "\u017dilinsk\u00fd kraj" ], - "s": 42700551, - "sha1_base64": "ISdDT7V4pSGKfYarBzzwNovXWxs=" + "s": 42559935, + "sha1_base64": "5FDYeWGuRUR9kSkmeyXhYhQ8Hzo=" } ] }, @@ -12342,8 +12342,8 @@ "Border SI-HR", "Slovenija" ], - "s": 150881516, - "sha1_base64": "Ry2EgpEqWuSdrLXDxvJUhN0Vgx8=" + "s": 150282916, + "sha1_base64": "tucIEe+YDjx2mXz9s6wBcWb+Ge0=" }, { "id": "Slovenia_West", @@ -12353,8 +12353,8 @@ "affiliations": [ "Slovenija" ], - "s": 111677707, - "sha1_base64": "Uw8tdziOC6N6Y4kTcCCRjQsGll4=" + "s": 111386259, + "sha1_base64": "t5ixCasxUaajJDWFmX2IbEFoWNI=" } ] }, @@ -12376,8 +12376,8 @@ "Temotu Province", "Western Province" ], - "s": 15552700, - "sha1_base64": "nyMQEaJiCK7XOdj+QwrqqN0t2AE=" + "s": 15545180, + "sha1_base64": "fkRGAjs4ozShR27FebAw8wqR4eg=" }, { "id": "Somalia", @@ -12405,8 +12405,8 @@ "Togdheer", "Woqooyi Galbeed" ], - "s": 108936799, - "sha1_base64": "ehNpNJf4AUPD8xdiLtDKOX9IMCs=" + "s": 106372239, + "sha1_base64": "4tQpwI7xnZ19LtWq4FfVJY56ENA=" }, { "id": "South Africa", @@ -12421,8 +12421,8 @@ "South Africa", "Western Cape" ], - "s": 60130366, - "sha1_base64": "+ePKsrFzhBECrHXe4mt2IN0bktw=" + "s": 59547261, + "sha1_base64": "Ms5+FNFPAWKfHfhlLItaQe6mPKA=" }, { "id": "South Africa_Gauteng", @@ -12433,8 +12433,8 @@ "Gauteng", "South Africa" ], - "s": 38193766, - "sha1_base64": "p92sd6sYyOo7J70uIEwUwO6yXFM=" + "s": 37937502, + "sha1_base64": "JrnBt/Ze1ONrMu1guXdIoLKw178=" }, { "id": "South Africa_North West", @@ -12445,8 +12445,8 @@ "North West", "South Africa" ], - "s": 24837218, - "sha1_base64": "puL/4G2fJmEdRa3yJklMMUKgBUg=" + "s": 24592370, + "sha1_base64": "tB0fZuvdzMXg9QC9X0zt+Qu/K3U=" }, { "id": "South Africa_Free State", @@ -12457,8 +12457,8 @@ "Free State", "South Africa" ], - "s": 28566029, - "sha1_base64": "SxJcZeg9PPbs7+8vxh68Z0rckGg=" + "s": 28383317, + "sha1_base64": "JOfIJx3/RnYWF+EmQUat46rjFCw=" }, { "id": "South Africa_Eastern Cape", @@ -12469,8 +12469,8 @@ "Eastern Cape", "South Africa" ], - "s": 39868317, - "sha1_base64": "a7hSJBOOEcjwCMHAVcUUzB9Yins=" + "s": 39323221, + "sha1_base64": "nRDQA9F1wRL1cpXvnX7nIr1WyzU=" }, { "id": "South Africa_Northern Cape", @@ -12481,8 +12481,8 @@ "Northern Cape", "South Africa" ], - "s": 18404291, - "sha1_base64": "RbABhyzLB4DMujfFop7lKHNj4/I=" + "s": 18197635, + "sha1_base64": "nOFAOQIwF5O4MkOxjkh/aHBfLuY=" }, { "id": "South Africa_Mpumalanga", @@ -12493,8 +12493,8 @@ "Mpumalanga", "South Africa" ], - "s": 28668069, - "sha1_base64": "S6dPYNaZIGaPfXRK0qNl37QNU0g=" + "s": 28552277, + "sha1_base64": "T4ERiZG3tzF5HVIuKIcNTzaqnbg=" }, { "id": "South Africa_Limpopo", @@ -12505,8 +12505,8 @@ "Limpopo", "South Africa" ], - "s": 30468341, - "sha1_base64": "Nh/9aWGIy20MIXQEQN0KA4c+h4M=" + "s": 30259581, + "sha1_base64": "1tQTvJbUy++wYmTP+76df9T3VnI=" }, { "id": "South Africa_KwaZulu-Natal", @@ -12517,8 +12517,8 @@ "KwaZulu-Natal", "South Africa" ], - "s": 57064355, - "sha1_base64": "/9sJAk3eUb2Xl2/Fqkhc0AnAVvc=" + "s": 56574546, + "sha1_base64": "3K3S7ouxCxBnFW0V0zaWBs7EmU4=" } ] }, @@ -12534,8 +12534,8 @@ "country_name_synonyms": [ "South Georgia and South Sandwich Islands" ], - "s": 11564134, - "sha1_base64": "Lpk3O9/VGBCXUhl4Cst3tfkfCJM=" + "s": 11562278, + "sha1_base64": "7lzFkUf/qHnKYdelJvpk8Y3b2pg=" }, { "id": "South Ossetia", @@ -12547,8 +12547,8 @@ "\u0425\u0443\u0441\u0441\u0430\u0440 \u0418\u0440\u044b\u0441\u0442\u043e\u043d - \u042e\u0436\u043d\u0430\u044f \u041e\u0441\u0435\u0442\u0438\u044f", "\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd" ], - "s": 11964892, - "sha1_base64": "qa0wIwnHKnNZ7pq++dGdWs+xdds=" + "s": 11675523, + "sha1_base64": "y89EG5KBpUJxi4kzMAPnI/Wr5OU=" }, { "id": "South Sudan", @@ -12569,8 +12569,8 @@ "Western Equatoria", "\u0648\u0627\u0631\u0627\u0628" ], - "s": 77064460, - "sha1_base64": "OBe5MquWWrfiPDbi9fbEemt7iUw=" + "s": 76616860, + "sha1_base64": "CG5xwc1RjXFHT+eor9NTXXZdC0k=" }, { "id": "Spain", @@ -12585,8 +12585,8 @@ "Espa\u00f1a (mare territorial)", "Espa\u00f1a" ], - "s": 56027876, - "sha1_base64": "l28zSp6qJMjNEsQhwXIv4ll0Dg8=" + "s": 55910300, + "sha1_base64": "paheXMRSB41mc9OKWnE5ZMvl7fw=" }, { "id": "Spain_Andalusia_Sevilla", @@ -12597,8 +12597,8 @@ "Andaluc\u00eda", "Espa\u00f1a" ], - "s": 70984375, - "sha1_base64": "b0nFc6I3LbFdXUzdP6zlD2HhyUM=" + "s": 70099815, + "sha1_base64": "6V3+wH66PXWfNNI1B+hcJi2X2nM=" }, { "id": "Spain_Aragon", @@ -12609,8 +12609,8 @@ "Arag\u00f3n", "Espa\u00f1a" ], - "s": 67902119, - "sha1_base64": "qr6dmcE3bwn+WusoIKDkIQkvNG8=" + "s": 67626911, + "sha1_base64": "VeqRIiN0iNCEtcvCANNv4xajmKA=" }, { "id": "Spain_Balearic Islands", @@ -12621,8 +12621,8 @@ "Illes Balears", "Espa\u00f1a" ], - "s": 29944813, - "sha1_base64": "z5KizGfYFvXK/dSoyhhChPgCqMM=" + "s": 29760388, + "sha1_base64": "Tbto+TiHF3SEg8lNhmubEA+PdGo=" }, { "id": "Spain_Basque Country", @@ -12634,8 +12634,8 @@ "Espa\u00f1a", "Euskadi" ], - "s": 63527587, - "sha1_base64": "kTq7y3cSOxPqC1TH/gXUEEJnf5U=" + "s": 63394883, + "sha1_base64": "Cyqj4/hABvkU+AjXWBOFyBdS4KA=" }, { "id": "Spain_Canary Islands", @@ -12646,8 +12646,8 @@ "Canarias", "Espa\u00f1a" ], - "s": 49091329, - "sha1_base64": "q08jlmh6wrdL+KAxAwd8qmOVzkk=" + "s": 48811761, + "sha1_base64": "XD4dLANG74awDNsokkU28QxcNsA=" }, { "id": "Spain_Cantabria", @@ -12658,8 +12658,8 @@ "Cantabria", "Espa\u00f1a" ], - "s": 29008104, - "sha1_base64": "ShWRF1q9hynuqdGDuAAzeV0d+Lk=" + "s": 28912728, + "sha1_base64": "lq7rlcO3OX/2Q0CfXuK8Mu7wwMc=" }, { "id": "Spain_Castile and Leon_West", @@ -12670,8 +12670,8 @@ "Castilla y Le\u00f3n", "Espa\u00f1a" ], - "s": 79900209, - "sha1_base64": "QB2YBhTaxHGmVzXiCJ2HIg7T94g=" + "s": 79438633, + "sha1_base64": "dmAX1ANbe5vU4xV+Zn7cYq0iau8=" }, { "id": "Spain_Castile and Leon_East", @@ -12682,8 +12682,8 @@ "Castilla y Le\u00f3n", "Espa\u00f1a" ], - "s": 60475416, - "sha1_base64": "XWl4pKorShWFE1Gqu6hq0XnxOXk=" + "s": 60102192, + "sha1_base64": "Tjkn7N9dJOcyXrN9DJqRDdbVMzk=" }, { "id": "Spain_Castile-La Mancha", @@ -12694,8 +12694,8 @@ "Castilla-La Mancha", "Espa\u00f1a" ], - "s": 95984305, - "sha1_base64": "Q9z1TUFFCvLD9woK3XieZrAedQw=" + "s": 95218617, + "sha1_base64": "5cuHdUVNUUL6wWRi8plskWueBfU=" }, { "id": "Spain_Catalonia_Provincia de Barcelona", @@ -12706,8 +12706,8 @@ "Catalunya", "Espa\u00f1a" ], - "s": 89831326, - "sha1_base64": "NIszKp7yZZ0n10n9SAAjMHnT9kQ=" + "s": 88732686, + "sha1_base64": "+2/n+SGb6aoI7JaY6Q5EDG8dN9g=" }, { "id": "Spain_Catalonia_Provincia de Girona", @@ -12718,8 +12718,8 @@ "Catalunya", "Espa\u00f1a" ], - "s": 37163393, - "sha1_base64": "nt+8xSxaDIx2LvTWG+0MRsiMK4I=" + "s": 36837177, + "sha1_base64": "U6HyiOSeBcxgasu9pNUM5PJqwMA=" }, { "id": "Spain_Catalonia_Provincia de Lleida", @@ -12730,8 +12730,8 @@ "Catalunya", "Espa\u00f1a" ], - "s": 38402801, - "sha1_base64": "osZAcYQ8+965cbIypwQUiaJTVXw=" + "s": 38027322, + "sha1_base64": "UGLWG9HToFxfkjenJbLSHWuAnpI=" }, { "id": "Spain_Catalonia_Provincia de Tarragona", @@ -12742,8 +12742,8 @@ "Catalunya", "Espa\u00f1a" ], - "s": 31408383, - "sha1_base64": "Se58KBfULE2jU1jcLKgZNcqXjEw=" + "s": 30988071, + "sha1_base64": "QLsd82juGv1CfR5GejQ+VHqbUdk=" }, { "id": "Spain_Ceuta", @@ -12755,8 +12755,8 @@ "Espa\u00f1a", "Maroc \u2d4d\u2d4e\u2d56\u2d54\u2d49\u2d31 \u0627\u0644\u0645\u063a\u0631\u0628" ], - "s": 423522, - "sha1_base64": "tEMjs7y3XbzvA6s3GxQM+N5MdY0=" + "s": 358385, + "sha1_base64": "UvISP6QRrobAdfSKuHJgtdMRW1o=" }, { "id": "Spain_Community of Madrid", @@ -12767,8 +12767,8 @@ "Comunidad de Madrid", "Espa\u00f1a" ], - "s": 59582338, - "sha1_base64": "GStx2Wze49++F+olU3315+9laBk=" + "s": 58974394, + "sha1_base64": "CRJtHeHXOIPtYGzb/Pv05BFiQ74=" }, { "id": "Spain_Comunidad Foral de Navarra", @@ -12779,8 +12779,8 @@ "Comunidad Foral de Navarra", "Espa\u00f1a" ], - "s": 32667359, - "sha1_base64": "z/K4SPk0CsSpERuazNJ9OG4pdmU=" + "s": 32561391, + "sha1_base64": "aRIn7FMROvYry/uOIaSVzDZBq08=" }, { "id": "Spain_Extremadura", @@ -12791,8 +12791,8 @@ "Espa\u00f1a", "Extremadura" ], - "s": 33863937, - "sha1_base64": "EIJjMxIuNSl5mgekK/vkDDzzueg=" + "s": 33781193, + "sha1_base64": "OooM2j9wIsBkaLi9qexQBjCH8ys=" }, { "id": "Spain_Galicia_North", @@ -12803,8 +12803,8 @@ "Espa\u00f1a", "Galicia" ], - "s": 58698315, - "sha1_base64": "zkTNkNWCgfgA/WrxgNCiRbQpJjo=" + "s": 58211723, + "sha1_base64": "7ERWB6wy8AznFSUWEkqyUrWY960=" }, { "id": "Spain_Galicia_South", @@ -12815,8 +12815,8 @@ "Espa\u00f1a", "Galicia" ], - "s": 33039929, - "sha1_base64": "UcMzcRNhxH1qE6Cyh5oDTlU+8ic=" + "s": 32456801, + "sha1_base64": "yjFFNGPop8HZb2sgbSZpBgsqM1Q=" }, { "id": "Spain_La Rioja", @@ -12827,8 +12827,8 @@ "Espa\u00f1a", "La Rioja" ], - "s": 13693947, - "sha1_base64": "XkcGtEUSICjvmAjin60bxjGgOkg=" + "s": 13557091, + "sha1_base64": "5KolOQKzZ84YrMmXPynyH5wVCP8=" }, { "id": "Spain_Melilla", @@ -12841,8 +12841,8 @@ "Maroc \u2d4d\u2d4e\u2d56\u2d54\u2d49\u2d31 \u0627\u0644\u0645\u063a\u0631\u0628", "Melilla" ], - "s": 633971, - "sha1_base64": "lXGloRU+8TKwA/Mr2fXkTaucYdk=" + "s": 621211, + "sha1_base64": "MrvSug6y04/cZDQWTyw6KuX9CsM=" }, { "id": "Spain_Principado de Asturias", @@ -12853,8 +12853,8 @@ "Espa\u00f1a", "Principado de Asturias" ], - "s": 29597225, - "sha1_base64": "LOrROX46bcZvxF+VQzZ2KJSy+F8=" + "s": 29411473, + "sha1_base64": "NkS9C71CsHyYMWP1CbU0oNpYN5c=" }, { "id": "Spain_Region de Murcia", @@ -12865,8 +12865,8 @@ "Espa\u00f1a", "Regi\u00f3n de Murcia" ], - "s": 30075678, - "sha1_base64": "JEsIIURWI0mDciayf/VUFqN5xx0=" + "s": 29722526, + "sha1_base64": "SyyB5dCiDVk+8hnxHqYlytm/WkM=" }, { "id": "Spain_Valencian Community", @@ -12877,8 +12877,8 @@ "Comunitat Valenciana", "Espa\u00f1a" ], - "s": 84674309, - "sha1_base64": "p5buhAjXprgV6epG3vLny/16S3E=" + "s": 83633709, + "sha1_base64": "w2U+9EBo7hCkrq8tS9j+NWUqhqk=" } ] }, @@ -12898,8 +12898,8 @@ "\u05de\u05d7\u05d5\u05d6 \u05d9\u05e8\u05d5\u05e9\u05dc\u05d9\u05dd", "\u05de\u05d3\u05d9\u05e0\u05ea \u05d9\u05e9\u05e8\u05d0\u05dc" ], - "s": 5041390, - "sha1_base64": "I+c9iHHhZBiPUdBh7dx4m5hvBV0=" + "s": 5023734, + "sha1_base64": "/amCYbSNTipLk0tTi2qNXNJQa0k=" }, { "id": "Palestine", @@ -12911,8 +12911,8 @@ "Area B", "Area C" ], - "s": 24503644, - "sha1_base64": "UwljYys8sloi3Zd6Ek97PSRt1VM=" + "s": 24414396, + "sha1_base64": "Spn7E2G2wNypr8jh471ylkD8Wb8=" } ] }, @@ -12933,8 +12933,8 @@ "Western Province", "\u0dc1\u0dca\u200d\u0dbb\u0dd3 \u0dbd\u0d82\u0d9a\u0dcf" ], - "s": 101240548, - "sha1_base64": "BLRV/DyT6AUABgNi0fzlySfDKB4=" + "s": 99748156, + "sha1_base64": "kekAR5gU8DL3/8sMwLE3F6L9qiY=" }, { "id": "Sudan", @@ -12957,8 +12957,8 @@ "an-Nil al-Azraq", "ash-Shamaliyah" ], - "s": 28884781, - "sha1_base64": "P1aOnNj+IQsWAB7CdHsQcScuBxw=" + "s": 28307837, + "sha1_base64": "Tm6nYiEUQ0t/0apMxnvzqCgAeng=" }, { "id": "Sudan_West", @@ -12983,8 +12983,8 @@ "ash-Shamaliyah", "\u0648\u0627\u0631\u0627\u0628" ], - "s": 54966479, - "sha1_base64": "gU0aPELNh7Brynipo2xYC7k5fps=" + "s": 54558511, + "sha1_base64": "c6OJKKwyRRf375MzNB8ytV4p6OU=" } ] }, @@ -13006,8 +13006,8 @@ "Suriname", "Wanica" ], - "s": 32753660, - "sha1_base64": "nq/1rw50fjylgNKKR0e6hH6w27I=" + "s": 32720436, + "sha1_base64": "j+YqXZaRxMJWeoUQM25fAjgG41s=" }, { "id": "Swaziland", @@ -13024,8 +13024,8 @@ "country_name_synonyms": [ "Eswatini" ], - "s": 22312495, - "sha1_base64": "ZtEkYRumo5kz+CzvMrK7llmY1hQ=" + "s": 22251791, + "sha1_base64": "+GKDVNYxLzLku8UOUq++cWQ+gHs=" }, { "id": "Sweden", @@ -13041,8 +13041,8 @@ "Uppsala l\u00e4n", "V\u00e4stmanlands l\u00e4n" ], - "s": 55406746, - "sha1_base64": "3fxKEJeCIutlRA9u1qSxD3IQMEE=" + "s": 54885779, + "sha1_base64": "K1ovBbci+f06wPq7qWnRDYA04xI=" }, { "id": "Sweden_Stockholm", @@ -13053,8 +13053,8 @@ "Stockholms l\u00e4n", "Sverige" ], - "s": 54588307, - "sha1_base64": "K724LbgLTQWQ68eaWOUAzEMiYuE=" + "s": 54416291, + "sha1_base64": "2My2nvOztfAu0i/YrfsWoFS+Ylo=" }, { "id": "Sweden_Ostra Gotaland", @@ -13071,8 +13071,8 @@ "Sverige", "Territorial waters of Gotland" ], - "s": 97269000, - "sha1_base64": "DLySksJMeLG102xpM3DFCiUMAuo=" + "s": 96156104, + "sha1_base64": "enNhWPnKpmrV5rBMNUDsRAh5oV4=" }, { "id": "Sweden_Norra Sverige", @@ -13084,8 +13084,8 @@ "Sverige", "V\u00e4sterbottens l\u00e4n" ], - "s": 57593132, - "sha1_base64": "2zjPujgppjeoG8k5yalrFvS30NA=" + "s": 57267252, + "sha1_base64": "FzjhgD/3jeNaw4bF0XhutlG9H5g=" }, { "id": "Sweden_Mellannorrland", @@ -13097,8 +13097,8 @@ "Sverige", "V\u00e4sternorrlands l\u00e4n" ], - "s": 115653773, - "sha1_base64": "gwP2RhbKggt0C4XCe8cbqV7aAnQ=" + "s": 115199045, + "sha1_base64": "64cAvSEFAkloAWbdCMWBGsdoWJ4=" }, { "id": "Sweden_Bergslagen", @@ -13112,8 +13112,8 @@ "Sverige", "V\u00e4rmlands l\u00e4n" ], - "s": 128087880, - "sha1_base64": "YZYvaxhXJdyGOHjpdFWGBro7TvQ=" + "s": 126485112, + "sha1_base64": "v2ZxxoDdHRH9kqhJaBlvIAzAFXs=" }, { "id": "Sweden_Vastra Gotaland", @@ -13126,8 +13126,8 @@ "Sverige", "V\u00e4stra G\u00f6talands l\u00e4n" ], - "s": 110569048, - "sha1_base64": "6F3jTTMWgAS/q9ZX7KvHvKZ3klM=" + "s": 108502328, + "sha1_base64": "UO2U8fAUyS7DRJHg4Di06ZARSoU=" }, { "id": "Sweden_Sodra Gotaland", @@ -13141,8 +13141,8 @@ "Sverige", "Territorial waters of Bornholm" ], - "s": 49772284, - "sha1_base64": "XT1rkb/l0iyNyC0+37MCoVqvSq0=" + "s": 49278708, + "sha1_base64": "7nkyD9SQ0cC2NNYOkf+l/alASgE=" } ] }, @@ -13164,8 +13164,8 @@ "Schweiz, Suisse, Svizzera, Svizra", "Thurgau" ], - "s": 65048614, - "sha1_base64": "ry/qwkSqbZ2Xka8212AphrR8ps4=" + "s": 64698982, + "sha1_base64": "N1yQOHhM9Ljq2SXIBKTpLoJcjt0=" }, { "id": "Switzerland_Central", @@ -13181,8 +13181,8 @@ "Uri", "Zug" ], - "s": 35631817, - "sha1_base64": "wI2chTCTxeXDyPau78m+khBDQho=" + "s": 35331945, + "sha1_base64": "/MpMnzKfezKR47Bdfr9DTXRYOj0=" }, { "id": "Switzerland_Espace Mittelland_Bern", @@ -13199,8 +13199,8 @@ "Solothurn", "Vaud" ], - "s": 62492413, - "sha1_base64": "fVFuMTWiclcuh7qbTsSqbDArzWs=" + "s": 61677605, + "sha1_base64": "I+9us4Ju6xkCyeyrWrZWbeu7a80=" }, { "id": "Switzerland_Espace Mittelland_East", @@ -13211,8 +13211,8 @@ "Bern - Berne", "Schweiz, Suisse, Svizzera, Svizra" ], - "s": 40896112, - "sha1_base64": "2rVawnFl+5gCJsgJKkrnI5af2yY=" + "s": 40739768, + "sha1_base64": "nhKQ0kAO1Gez79wuOw5yF7W7+aE=" }, { "id": "Switzerland_Ticino", @@ -13223,8 +13223,8 @@ "Schweiz, Suisse, Svizzera, Svizra", "Ticino" ], - "s": 20729269, - "sha1_base64": "7O7XTFcLPleSFxMTp4m99PkShwo=" + "s": 20609981, + "sha1_base64": "CS+ajFwCuyf+cmNOnCq4ffU+4Uc=" }, { "id": "Switzerland_Northwestern", @@ -13237,8 +13237,8 @@ "Basel-Stadt", "Schweiz, Suisse, Svizzera, Svizra" ], - "s": 39415298, - "sha1_base64": "iSSCFYFfn+Ra716wZgHEEhrsYnI=" + "s": 39291026, + "sha1_base64": "BA+T5FNm6seOQVLK88zHl7vqfrA=" }, { "id": "Switzerland_Lake Geneva region", @@ -13252,8 +13252,8 @@ "Vaud", "Valais - Wallis" ], - "s": 73112580, - "sha1_base64": "MT5vcG4wgiTPSmDNYxccEjalr38=" + "s": 71359132, + "sha1_base64": "HD6DgiM5MJuHHtNRp2IF+VsHc5Y=" }, { "id": "Switzerland_Zurich", @@ -13264,8 +13264,8 @@ "Schweiz, Suisse, Svizzera, Svizra", "Z\u00fcrich" ], - "s": 44250834, - "sha1_base64": "raOWCy8NsVljDSdpBf/x+WeQJCk=" + "s": 44027434, + "sha1_base64": "eC7Z+OsJ/BvTsndLYHP1++pNhoo=" } ] }, @@ -13291,8 +13291,8 @@ "UNDOF", "\u062d\u0645\u0635" ], - "s": 56876489, - "sha1_base64": "Qd/lmwsZg3ABnxSAx96+PZgxbus=" + "s": 56692313, + "sha1_base64": "x75wW+dOioEHh6VEKAwJPFlZYXw=" }, { "id": "Sao Tome and Principe", @@ -13304,8 +13304,8 @@ "S\u00e3o Tom\u00e9 Province", "S\u00e3o Tom\u00e9 e Pr\u00edncipe" ], - "s": 1148412, - "sha1_base64": "iPmnqY+TKDbPwVyJ6+9Gb+OvXuI=" + "s": 1073620, + "sha1_base64": "opqSH+tolJP+nyYV0mhXJHQ6izs=" }, { "id": "Tajikistan", @@ -13319,8 +13319,8 @@ "\u041d\u043e\u04b3\u0438\u044f\u04b3\u043e\u0438 \u0442\u043e\u0431\u0435\u0438 \u04b7\u0443\u043c\u04b3\u0443\u0440\u04e3", "\u0422\u043e\u04b7\u0438\u043a\u0438\u0441\u0442\u043e\u043d" ], - "s": 39213302, - "sha1_base64": "Dp8whHTH4S6NuGhzNckZWHrzUj8=" + "s": 38693998, + "sha1_base64": "H5gofSvpqBGCmZlPca5CPm//FUQ=" }, { "id": "Tanzania", @@ -13355,8 +13355,8 @@ "Unguja Kusini", "Unguja Mjini Magharibi" ], - "s": 475103058, - "sha1_base64": "aL/03lxBWJ/qkUaeBIaHAcwf6MI=" + "s": 468789850, + "sha1_base64": "QzWkY7RXCqxT8+s5xvAG0VPdCtU=" }, { "id": "Thailand", @@ -13382,8 +13382,8 @@ "\u0e08\u0e31\u0e07\u0e2b\u0e27\u0e31\u0e14\u0e40\u0e0a\u0e35\u0e22\u0e07\u0e43\u0e2b\u0e21\u0e48", "\u0e08\u0e31\u0e07\u0e2b\u0e27\u0e31\u0e14\u0e41\u0e21\u0e48\u0e2e\u0e48\u0e2d\u0e07\u0e2a\u0e2d\u0e19" ], - "s": 59846100, - "sha1_base64": "gIHi5gDnbY2jkMeGGg3uyBIY1d0=" + "s": 59523836, + "sha1_base64": "8sSYmzkb1cANQSgTY1gQ2eqWZrk=" }, { "id": "Thailand_Central", @@ -13429,8 +13429,8 @@ "\u0e08\u0e31\u0e07\u0e2b\u0e27\u0e31\u0e14\u0e2d\u0e33\u0e19\u0e32\u0e08\u0e40\u0e08\u0e23\u0e34\u0e0d", "\u0e08\u0e31\u0e07\u0e2b\u0e27\u0e31\u0e14\u0e1e\u0e23\u0e30\u0e19\u0e04\u0e23\u0e28\u0e23\u0e35\u0e2d\u0e22\u0e38\u0e18\u0e22\u0e32" ], - "s": 116699909, - "sha1_base64": "YpMw4xhrrqtIEm6DCj4L2CHlRUw=" + "s": 115293093, + "sha1_base64": "bUD0eW/ZGsKH021fhIyIpy78KLY=" }, { "id": "Thailand_South", @@ -13472,8 +13472,8 @@ "\u0e08\u0e31\u0e07\u0e2b\u0e27\u0e31\u0e14\u0e19\u0e04\u0e23\u0e28\u0e23\u0e35\u0e18\u0e23\u0e23\u0e21\u0e23\u0e32\u0e0a", "\u0e08\u0e31\u0e07\u0e2b\u0e27\u0e31\u0e14\u0e1b\u0e23\u0e30\u0e08\u0e27\u0e1a\u0e04\u0e35\u0e23\u0e35\u0e02\u0e31\u0e19\u0e18\u0e4c" ], - "s": 118768532, - "sha1_base64": "WIqTztZr+/GuzS8EKqPScg/ECH4=" + "s": 115842740, + "sha1_base64": "v9z5hFnwzf+X8CzXPBspkaRAsUQ=" } ] }, @@ -13489,8 +13489,8 @@ "country_name_synonyms": [ "Bahamas" ], - "s": 13274847, - "sha1_base64": "Q0j+yUZNwvmauV06k/IGx0fC2/w=" + "s": 13105519, + "sha1_base64": "1j0jqMg6Pe0V54bRsuXmkbYEdes=" }, { "id": "The Gambia", @@ -13509,8 +13509,8 @@ "Mansakonko", "Senegal" ], - "s": 14355505, - "sha1_base64": "sQZ/0TUGlJUASFxZvfZUv5zBGWc=" + "s": 14312049, + "sha1_base64": "FK1tBFrcvKm9PadvwPm9+Xa2w8E=" }, { "id": "Netherlands", @@ -13524,8 +13524,8 @@ "Drenthe", "Nederland" ], - "s": 39991466, - "sha1_base64": "G6EwARMDt2PKl4WjJjQIsgT+aEg=" + "s": 39685449, + "sha1_base64": "UVDEsxPiTZn9Fxvyd0f9FA0B2K8=" }, { "id": "Netherlands_Flevoland", @@ -13536,8 +13536,8 @@ "Flevoland", "Nederland" ], - "s": 23653021, - "sha1_base64": "mgw7g1gPz4MpjY3mNRAO52xsvHE=" + "s": 23603589, + "sha1_base64": "PGQXF7l5FD6o/pFfXholjDDDDTI=" }, { "id": "Netherlands_Friesland", @@ -13548,8 +13548,8 @@ "Friesland", "Nederland" ], - "s": 59122971, - "sha1_base64": "Op+pB8t/AOy/XRHvR9hJ7eMostc=" + "s": 58698411, + "sha1_base64": "zt425tGEw3aqqf5AIrbhXjPCaXQ=" }, { "id": "Netherlands_Gelderland_Nijmegen", @@ -13560,8 +13560,8 @@ "Gelderland", "Nederland" ], - "s": 36894449, - "sha1_base64": "fJvrlBG1R++Rr1vIPFCdbbVJpTI=" + "s": 36786105, + "sha1_base64": "Aceom+dB8KjWYFBzkgou1xlyG0g=" }, { "id": "Netherlands_Gelderland_North", @@ -13572,8 +13572,8 @@ "Gelderland", "Nederland" ], - "s": 62288004, - "sha1_base64": "Awoc5J97R/+JKimEdsJnpI6B8JQ=" + "s": 62050564, + "sha1_base64": "BbccPLZTeJvioHsm32StfGGVEX0=" }, { "id": "Netherlands_Gelderland_Zutphen", @@ -13584,8 +13584,8 @@ "Gelderland", "Nederland" ], - "s": 25786733, - "sha1_base64": "c0reHXnzRX7hP3a2LSalZ+ElwhI=" + "s": 25763181, + "sha1_base64": "Hhy7Dj5Ve7Iu/v16j7RzUWzNqbQ=" }, { "id": "Netherlands_Groningen", @@ -13598,8 +13598,8 @@ "Nederland", "Niedersachsen" ], - "s": 39451506, - "sha1_base64": "ui0RlhXzpTMoW8sQ6GXyCNVHtTs=" + "s": 39343498, + "sha1_base64": "TqZfft5iIPt2eYLeUAHROxJgjpk=" }, { "id": "Netherlands_Limburg", @@ -13610,8 +13610,8 @@ "Limburg", "Nederland" ], - "s": 71633076, - "sha1_base64": "wTOKrp0dbrhpkne2QbswCT36VzQ=" + "s": 71322076, + "sha1_base64": "oBTQNH8rRxKfU6emcaOhibxg3vs=" }, { "id": "Netherlands_North Brabant_Eindhoven", @@ -13622,8 +13622,8 @@ "Nederland", "Noord-Brabant" ], - "s": 56750739, - "sha1_base64": "BKIa3z2ScNLHL4ZC4VHy1rBMkZY=" + "s": 56607699, + "sha1_base64": "1+oecNuAd82a7nrlsAQHFiC4OUY=" }, { "id": "Netherlands_North Brabant_Roosendaal", @@ -13634,8 +13634,8 @@ "Nederland", "Noord-Brabant" ], - "s": 19886931, - "sha1_base64": "lTUp33UZVgfTGGtGXWgvj3IT+Y0=" + "s": 19864907, + "sha1_base64": "MvI8TeIPur29FYfUOV+xf2t0q7c=" }, { "id": "Netherlands_North Brabant_Tiburg", @@ -13647,8 +13647,8 @@ "Nederland - Belgique / Belgi\u00eb / Belgien", "Noord-Brabant" ], - "s": 45752944, - "sha1_base64": "ecJJT95qtT3PUtwFWfm7GV8c3m4=" + "s": 45627976, + "sha1_base64": "OYXap+jjt6UcdxPrkzKAXo9cKQk=" }, { "id": "Netherlands_North Brabant_Uden", @@ -13659,8 +13659,8 @@ "Nederland", "Noord-Brabant" ], - "s": 21182787, - "sha1_base64": "7HeocXuiRXvhrL/hsNOGVnVl5G8=" + "s": 21155267, + "sha1_base64": "oQcSI7TiTVu9fDD5vgsYv9C1uwo=" }, { "id": "Netherlands_North Holland_Alkmaar", @@ -13671,8 +13671,8 @@ "Nederland", "Noord-Holland" ], - "s": 35946574, - "sha1_base64": "AMZzoHOd/jco5V+vVsIQ0Q/+K5c=" + "s": 35884966, + "sha1_base64": "Dkr1A9H9cPvEqSgOMr1hIwq0rRE=" }, { "id": "Netherlands_North Holland_Amsterdam", @@ -13683,8 +13683,8 @@ "Nederland", "Noord-Holland" ], - "s": 73788337, - "sha1_base64": "ZchT4IIcf9/K2mbXKxxp7Rha1YM=" + "s": 73437241, + "sha1_base64": "xVw1MhjZw9Kqg1tcnmnlNWyNT7M=" }, { "id": "Netherlands_North Holland_Zaandam", @@ -13695,8 +13695,8 @@ "Nederland", "Noord-Holland" ], - "s": 25847220, - "sha1_base64": "FECf5yMTWMm05/82M2k3MgRPx8Y=" + "s": 25801876, + "sha1_base64": "3uhsE+dHV+0Ldt5lW1WOHhxnJ9U=" }, { "id": "Netherlands_Overijssel_Enschede", @@ -13707,8 +13707,8 @@ "Nederland", "Overijssel" ], - "s": 39196159, - "sha1_base64": "/youyp5PFV4Z4Rfuwaqm5ua4rjU=" + "s": 39137663, + "sha1_base64": "tzxf1IYVZM5EevBvLhkcPAyhFyQ=" }, { "id": "Netherlands_Overijssel_Zwolle", @@ -13719,8 +13719,8 @@ "Nederland", "Overijssel" ], - "s": 37121761, - "sha1_base64": "MzOEkhi2GvumTZGx81qeNy5ghTs=" + "s": 36963881, + "sha1_base64": "c/MDemACxxTH+jz922zeWsJrGSM=" }, { "id": "Netherlands_South Holland_Brielle", @@ -13731,8 +13731,8 @@ "Nederland", "Zuid-Holland" ], - "s": 19166318, - "sha1_base64": "EUvRf/Q6Laynce+yqKND5QXuSrA=" + "s": 19144846, + "sha1_base64": "NjaUZMer4V8ku6u4x0cgfNshB7s=" }, { "id": "Netherlands_South Holland_Den Haag", @@ -13743,8 +13743,8 @@ "Nederland", "Zuid-Holland" ], - "s": 57440571, - "sha1_base64": "jFNhC309x/fbgIW2YKtFpVND/E4=" + "s": 57239563, + "sha1_base64": "rvrRO4F1WmDm84Ye1/21ePmGhvc=" }, { "id": "Netherlands_South Holland_Leiden", @@ -13755,8 +13755,8 @@ "Nederland", "Zuid-Holland" ], - "s": 24994766, - "sha1_base64": "TiWylZDJdihqkyLxXboDSuU73ac=" + "s": 24901270, + "sha1_base64": "K2XZ7pIbTo0yM8l4lRJ49hMKvj4=" }, { "id": "Netherlands_South Holland_Rotterdam", @@ -13767,8 +13767,8 @@ "Nederland", "Zuid-Holland" ], - "s": 59364150, - "sha1_base64": "nKN8aaF2AVBjf7CawT/oIlVeo9c=" + "s": 59175014, + "sha1_base64": "QEaqwcN5w5XlmnmU/oMyzjLWe/0=" }, { "id": "Netherlands_Utrecht_Amersfoort", @@ -13779,8 +13779,8 @@ "Utrecht", "Nederland" ], - "s": 28744983, - "sha1_base64": "4/raTMrxA7xmGkjIsETsu2R4jro=" + "s": 28590062, + "sha1_base64": "Q8Bg6Y/Q3Gjm/Fsg4wv07nt/Iys=" }, { "id": "Netherlands_Utrecht_Utrecht", @@ -13791,8 +13791,8 @@ "Utrecht", "Nederland" ], - "s": 34117872, - "sha1_base64": "CVwro/jHV7zPCkMWBVUE+jEsCas=" + "s": 33908144, + "sha1_base64": "qLr9jXbwHELoGizKIBr523EK4O4=" }, { "id": "Netherlands_Zeeland", @@ -13803,8 +13803,8 @@ "Nederland", "Zeeland" ], - "s": 32424432, - "sha1_base64": "JX9g9PKnYCJo0XN8awFsq2BBS1g=" + "s": 32393120, + "sha1_base64": "bU3QL9z4X1K3Whg5TQn2PaO6xP0=" } ] }, @@ -13821,8 +13821,8 @@ "R\u00e9gion des Savanes", "Togo" ], - "s": 41928067, - "sha1_base64": "soO/K6RfO3RO/58/7XIViuXEnV0=" + "s": 41664691, + "sha1_base64": "XkCz+1BaYqQfE4xuOol+EU6vLug=" }, { "id": "Tonga", @@ -13842,8 +13842,8 @@ "Vahe Vaini", "Vava\u02bbu" ], - "s": 3345925, - "sha1_base64": "GVMw2vf960JKV/z+srW9u7JSlsA=" + "s": 3343157, + "sha1_base64": "lU+TmwVyD56GSGsv0t+IJ8/Y9Tc=" }, { "id": "Tunisia", @@ -13877,8 +13877,8 @@ "\u0627\u0644\u0642\u064a\u0631\u0648\u0627\u0646", "\u0627\u0644\u0645\u0646\u0633\u062a\u064a\u0631" ], - "s": 75427764, - "sha1_base64": "QDcWAhIl7MHtna8s556C7JFy2rU=" + "s": 74883636, + "sha1_base64": "QzLSHrytDhCooZXjSRHSvQwUp1k=" }, { "id": "Turkey", @@ -13899,8 +13899,8 @@ "Osmaniye", "T\u00fcrkiye" ], - "s": 59165632, - "sha1_base64": "QvzmMQofNytdgz4NmjcC9wQSGFQ=" + "s": 59000232, + "sha1_base64": "VXB6TJEHASfQPukgWzbXuPm5VOI=" }, { "id": "Turkey_Southeastern Anatolia Region", @@ -13920,8 +13920,8 @@ "\u015eanl\u0131urfa", "\u015e\u0131rnak" ], - "s": 41452703, - "sha1_base64": "d+oeti6aTj2sWBoN06uNO/ptVB0=" + "s": 41230311, + "sha1_base64": "3bEHFKB92uq+nU91Yh84STu3hdU=" }, { "id": "Turkey_Marmara Region_Istanbul", @@ -13938,8 +13938,8 @@ "\u00c7anakkale", "\u0130stanbul" ], - "s": 62742113, - "sha1_base64": "NfRGTQ8djlqS9zfd8e2/NOORKIY=" + "s": 62470641, + "sha1_base64": "bwWrrUuu6qFil2oCBxOYRGGtqkA=" }, { "id": "Turkey_Marmara Region_Bursa", @@ -13959,8 +13959,8 @@ "\u00c7anakkale", "\u0130stanbul" ], - "s": 44566639, - "sha1_base64": "8/VkfkeMBTNdXQC3hrE0zmO+WlU=" + "s": 44292807, + "sha1_base64": "ffEy0lpw16HkHUwe3hgRmsJDNJk=" }, { "id": "Turkey_Eastern Anatolia Region", @@ -13984,8 +13984,8 @@ "Tunceli", "T\u00fcrkiye" ], - "s": 33243566, - "sha1_base64": "Bvg/7ar+o5HL7z18yom9RbLB9no=" + "s": 33165014, + "sha1_base64": "FpZoBcRrSn06pvDfolKwcFuzgAA=" }, { "id": "Turkey_Black Sea Region", @@ -14013,8 +14013,8 @@ "Zonguldak", "\u00c7orum" ], - "s": 82481387, - "sha1_base64": "vivgCfc7KXcPuXKWWxoDv0UXTX4=" + "s": 82054363, + "sha1_base64": "4qZ6ZxpiniwCTamnd8r7bPA6HiA=" }, { "id": "Turkey_Central Anatolia Region_Ankara", @@ -14032,8 +14032,8 @@ "T\u00fcrkiye", "\u00c7ank\u0131r\u0131" ], - "s": 47159832, - "sha1_base64": "CFqe7pA+6unT4pO03IeyIkQ8gsg=" + "s": 46718319, + "sha1_base64": "lkoEGNp1fjdHN5c1O32joMUuH+k=" }, { "id": "Turkey_Central Anatolia Region_Kayseri", @@ -14049,8 +14049,8 @@ "T\u00fcrkiye", "Yozgat" ], - "s": 46789199, - "sha1_base64": "Rq26012YhE8COdwqCzZ3Cu09vvU=" + "s": 45284750, + "sha1_base64": "rQ7X+r3bCvaBhfjlTUV0f/tQ6qg=" }, { "id": "Turkey_Aegean Region", @@ -14068,8 +14068,8 @@ "U\u015fak", "\u0130zmir" ], - "s": 70705996, - "sha1_base64": "5h4m5DSHkBHWRUnwig08IeLIoOo=" + "s": 69782732, + "sha1_base64": "vK43C7l4YgLm2DBzFMRf6buIjTY=" } ] }, @@ -14086,8 +14086,8 @@ "Mary", "T\u00fcrkmenistan" ], - "s": 16160685, - "sha1_base64": "jn746AUQzmyoqGwIS1rFUBBB7EE=" + "s": 16016189, + "sha1_base64": "3dakW6Jsq72sbx8zIIUuvl0xJgs=" }, { "id": "Turks and Caicos Islands", @@ -14100,7 +14100,7 @@ "Turks and Caicos Islands" ], "s": 1237101, - "sha1_base64": "ztsAUAkAALbXma7aZHBBNaTb4Aw=" + "sha1_base64": "Rc73N7yxN2XA1kvQFLvaMEpZPY4=" }, { "id": "Tuvalu", @@ -14110,8 +14110,8 @@ "affiliations": [ "Tuvalu" ], - "s": 275060, - "sha1_base64": "BNfaBb7AlD5l/eqBsBO3RPdY4/E=" + "s": 274884, + "sha1_base64": "AwzSaTs0VVGPEandtFliYQ3w0kE=" }, { "id": "Uganda", @@ -14160,8 +14160,8 @@ "Uganda", "Western Region" ], - "s": 246935222, - "sha1_base64": "kqEjfiniOUzbpHk8czZ6irPLO64=" + "s": 245568022, + "sha1_base64": "Is9Z6YMnW+rtl/F1WRSX/4xyvss=" }, { "id": "Ukraine", @@ -14175,8 +14175,8 @@ "\u0427\u0435\u0440\u043a\u0430\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 35315558, - "sha1_base64": "FKW0gz51vEYJ16m8sYeOifJBxwk=" + "s": 34149998, + "sha1_base64": "jzYySqKI6xroSrG6scT0vLJ4XDc=" }, { "id": "Ukraine_Chernihiv Oblast", @@ -14187,8 +14187,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u0427\u0435\u0440\u043d\u0456\u0433\u0456\u0432\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 30806262, - "sha1_base64": "IdNY+GSsJP2hT4NAPkZI0Ch36KY=" + "s": 30764502, + "sha1_base64": "hvfCyUT9oFNtHq1HxRKvs1vGFWA=" }, { "id": "Ukraine_Chernivtsi Oblast", @@ -14199,8 +14199,8 @@ "\u0427\u0435\u0440\u043d\u0456\u0432\u0435\u0446\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 25707804, - "sha1_base64": "z2UaOxkM8QOw7pmRbDUtTm7dAhM=" + "s": 24982220, + "sha1_base64": "UU0x0I1hUrQRA9BvBKp5uOCILyc=" }, { "id": "Ukraine_Dnipropetrovsk Oblast", @@ -14211,8 +14211,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u0414\u043d\u0456\u043f\u0440\u043e\u043f\u0435\u0442\u0440\u043e\u0432\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 51781593, - "sha1_base64": "aIVycsRmW6NitmaYo+L7Yv7lD7k=" + "s": 51506185, + "sha1_base64": "KUnH+o5ItFPE8zAoWsFsp8ivVeE=" }, { "id": "Ukraine_Donetsk Oblast", @@ -14223,8 +14223,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u0414\u043e\u043d\u0435\u0446\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 53170066, - "sha1_base64": "vGJKeEHk3n7dzLwRn1JDm4gUKLc=" + "s": 52813610, + "sha1_base64": "T76AGiYfj0CEFL4+HaO4UNc0o5E=" }, { "id": "Ukraine_Ivano-Frankivsk Oblast", @@ -14235,8 +14235,8 @@ "\u0406\u0432\u0430\u043d\u043e-\u0424\u0440\u0430\u043d\u043a\u0456\u0432\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 34223190, - "sha1_base64": "HYBPSXpFbNbKSFY8kR9yAKXytZ0=" + "s": 34402518, + "sha1_base64": "78JR76wdPp5oT9gITU2CG4B5bPg=" }, { "id": "Ukraine_Kharkiv Oblast", @@ -14247,8 +14247,8 @@ "\u0425\u0430\u0440\u043a\u0456\u0432\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 50125386, - "sha1_base64": "M2QgR4fckhCmBkaonK4h+k/46J8=" + "s": 49201593, + "sha1_base64": "JXRcXXCDNy6VcotlKSxR7dnli+Q=" }, { "id": "Ukraine_Kherson Oblast", @@ -14259,8 +14259,8 @@ "\u0425\u0435\u0440\u0441\u043e\u043d\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 18907516, - "sha1_base64": "TkAZUm4J6INS+iRexfKBqKLgSkA=" + "s": 18848484, + "sha1_base64": "Jjhw/fBZbdSWhtBZ3p6cyfey9YM=" }, { "id": "Ukraine_Khmelnytskyi Oblast", @@ -14271,8 +14271,8 @@ "\u0425\u043c\u0435\u043b\u044c\u043d\u0438\u0446\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 29832901, - "sha1_base64": "M4G0znncEdpmC7WL9/9adTs4+Os=" + "s": 29374309, + "sha1_base64": "r5aiyQ4FiFn771IblFNnpKOiGPE=" }, { "id": "Ukraine_Kirovohrad Oblast", @@ -14283,8 +14283,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u041a\u0456\u0440\u043e\u0432\u043e\u0433\u0440\u0430\u0434\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 28585468, - "sha1_base64": "crSi7YYz+CvztbSe8OaYpRzhWcU=" + "s": 28488604, + "sha1_base64": "HnQ9GHMKAuXLCp9kponSBoifMUQ=" }, { "id": "Ukraine_Kyiv Oblast", @@ -14296,8 +14296,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u041a\u0438\u0457\u0432\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 59680268, - "sha1_base64": "mZ73Xk/0rFIikigXdzl7BV1XLRc=" + "s": 59154500, + "sha1_base64": "S4pGSmk1u2mrr7aVoJlNLEn0SAI=" }, { "id": "Ukraine_Luhansk Oblast", @@ -14308,8 +14308,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u041b\u0443\u0433\u0430\u043d\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 45398607, - "sha1_base64": "Q6R04wMxHCMPI4Njt7xvbByoHc0=" + "s": 45348103, + "sha1_base64": "0bxS05m4IeePHnMp9aOuIvnDA/0=" }, { "id": "Ukraine_Lviv Oblast", @@ -14320,8 +14320,8 @@ "\u041b\u044c\u0432\u0456\u0432\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 57120291, - "sha1_base64": "o7sSG5qv4ZBh9nZK/OjXJcoiCjU=" + "s": 56933579, + "sha1_base64": "eHG3jqubJCZpQ9a3sgsBPtngb2w=" }, { "id": "Ukraine_Mykolaiv Oblast", @@ -14332,8 +14332,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u041c\u0438\u043a\u043e\u043b\u0430\u0457\u0432\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 28178077, - "sha1_base64": "VTe8kd5DcWp5qpruYbXIz4y4BsA=" + "s": 27843420, + "sha1_base64": "AYEQJxDrYw2b2qhaiXV6O/8f8fg=" }, { "id": "Ukraine_Odessa Oblast", @@ -14344,8 +14344,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u041e\u0434\u0435\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 33783127, - "sha1_base64": "/VnzAlW4etthSzUgtrP2WKyLLTs=" + "s": 33483096, + "sha1_base64": "Kqp6Z/RjWd6zgpXiP2qAgMUd0uA=" }, { "id": "Ukraine_Poltava Oblast", @@ -14356,8 +14356,8 @@ "\u041f\u043e\u043b\u0442\u0430\u0432\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 31186943, - "sha1_base64": "I6ck2SSHwA2ks88Sehhsj0mWveQ=" + "s": 31095535, + "sha1_base64": "nRaIzb+b4n2nncL6sjJ09lqtmk0=" }, { "id": "Ukraine_Rivne Oblast", @@ -14368,8 +14368,8 @@ "\u0420\u0456\u0432\u043d\u0435\u043d\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 24439148, - "sha1_base64": "yI5Gznv41RFTxExYQ9xTy52tfl0=" + "s": 23915068, + "sha1_base64": "3inWv0QiwCWMY2hlYz5sbb1H15k=" }, { "id": "Ukraine_Sumy Oblast", @@ -14380,8 +14380,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u0421\u0443\u043c\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 29871143, - "sha1_base64": "ETwJCyJscTO6C30GMjeyh/bQSL0=" + "s": 29772727, + "sha1_base64": "vY5ZmwIPox+qi6pSWBS9/q2anh8=" }, { "id": "Ukraine_Ternopil Oblast", @@ -14392,8 +14392,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u0422\u0435\u0440\u043d\u043e\u043f\u0456\u043b\u044c\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 26298764, - "sha1_base64": "y8C3O1tMWNSOAdLAP9KsXUM47Uo=" + "s": 25851164, + "sha1_base64": "hczVIOK2LTWyyN53wNylaAvqJa8=" }, { "id": "Ukraine_Vinnytsia Oblast", @@ -14404,8 +14404,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u0412\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 27925220, - "sha1_base64": "qVLzV3ny0LruKYqIVa0Q3LKsEVQ=" + "s": 27264596, + "sha1_base64": "q+zVp+sJoCDjX/3tOPWLcLcZDu4=" }, { "id": "Ukraine_Volyn Oblast", @@ -14416,8 +14416,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u0412\u043e\u043b\u0438\u043d\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 27131373, - "sha1_base64": "6wqTF3CU0DFlXlvoIwng16zAiuI=" + "s": 26739868, + "sha1_base64": "LLbSzWf7mhV/+Zlhrd6O0mQotHM=" }, { "id": "Ukraine_Zakarpattia Oblast", @@ -14428,8 +14428,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u0417\u0430\u043a\u0430\u0440\u043f\u0430\u0442\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c" ], - "s": 30236317, - "sha1_base64": "2m0fWPnoyEZhvM54/4UE9MVjWIc=" + "s": 29826877, + "sha1_base64": "ImftD95vPS4Jv6oNgTwapRWz/ic=" }, { "id": "Ukraine_Zaporizhia Oblast", @@ -14440,8 +14440,8 @@ "\u0417\u0430\u043f\u043e\u0440\u0456\u0437\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 28589677, - "sha1_base64": "zv5Pf5rqT4wM3e99UrUsjVD7928=" + "s": 28529013, + "sha1_base64": "UVqyXFWgL7Tu6jiKdfXnEVJyJDI=" }, { "id": "Ukraine_Zhytomyr Oblast", @@ -14452,8 +14452,8 @@ "\u0416\u0438\u0442\u043e\u043c\u0438\u0440\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "\u0423\u043a\u0440\u0430\u0457\u043d\u0430" ], - "s": 27061796, - "sha1_base64": "dt2McODV6sfAuXddwy/H/cQEaxw=" + "s": 26560812, + "sha1_base64": "8PQscUL7mh754rYDtUSGCd+bLsM=" }, { "id": "Crimea", @@ -14468,8 +14468,8 @@ "\u0423\u043a\u0440\u0430\u0457\u043d\u0430", "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0440\u044b\u043c" ], - "s": 42355160, - "sha1_base64": "73apfkhbBM4V5cm2rKjBN8GlVLY=" + "s": 42252080, + "sha1_base64": "a3/fkvNfdmQchDQSf5JaJ6ueOXg=" } ] }, @@ -14489,8 +14489,8 @@ "\u0627\u0644\u0634\u0627\u0631\u0642\u0629", "\u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0651\u0629 \u0627\u0644\u0645\u062a\u0651\u062d\u062f\u0629" ], - "s": 61279388, - "sha1_base64": "Pv6c/3MM5GPBeytp3UtaMopOrCU=" + "s": 60687044, + "sha1_base64": "R0wph2RmYrarO/X1NMOU/Q9LjfY=" }, { "id": "Falkland Islands", @@ -14500,8 +14500,8 @@ "affiliations": [ "Falkland Islands" ], - "s": 9729583, - "sha1_base64": "bpCNSiDdu98l+YtyFka0oj/tzG4=" + "s": 9724119, + "sha1_base64": "+aAFheJfVFiSTbELrHjBjoTVWgE=" }, { "id": "United Kingdom", @@ -14514,8 +14514,8 @@ "affiliations": [ "British Indian Ocean Territory" ], - "s": 446165, - "sha1_base64": "ff3uplkbdo/7nPNaund5quSyBG8=" + "s": 445701, + "sha1_base64": "QZCQDgwbKcBEkgcTGnmLDFWa9k8=" }, { "id": "UK_England_East Midlands", @@ -14526,8 +14526,8 @@ "England", "United Kingdom" ], - "s": 94403511, - "sha1_base64": "Q3J83kSNkR/GfXGHVgfBrSLvXhU=" + "s": 93369863, + "sha1_base64": "8jeRDRUDwIZ6RdZf01bsBaYb9xA=" }, { "id": "UK_England_East of England_Essex", @@ -14538,8 +14538,8 @@ "England", "United Kingdom" ], - "s": 54412341, - "sha1_base64": "mwPcU6UPzrO2IhvCU+2dE+N1g/k=" + "s": 53519021, + "sha1_base64": "t09rqqMABkQQ9fEbgPVnrTaPs54=" }, { "id": "UK_England_East of England_Norfolk", @@ -14550,8 +14550,8 @@ "England", "United Kingdom" ], - "s": 70380885, - "sha1_base64": "B9EXJkg3MhxXEFQMiblYrKYTQfc=" + "s": 70018677, + "sha1_base64": "LxY4o110k/og9FUA+KQBHJn5RZg=" }, { "id": "UK_England_Greater London", @@ -14562,8 +14562,8 @@ "England", "United Kingdom" ], - "s": 67999259, - "sha1_base64": "tAOYJ12HmutaTdhAN9BTb7eiI9Q=" + "s": 66879867, + "sha1_base64": "HB7sVnbvWtHmbXs4LDg4pa5zIuM=" }, { "id": "UK_England_North East England", @@ -14574,8 +14574,8 @@ "England", "United Kingdom" ], - "s": 50191531, - "sha1_base64": "IF15fOyRiNT48OoUMhi4jaMs74I=" + "s": 49766235, + "sha1_base64": "nGA8lbq/AVghKUl9rV+82u7huhM=" }, { "id": "UK_England_North West England_Manchester", @@ -14586,8 +14586,8 @@ "England", "United Kingdom" ], - "s": 79418133, - "sha1_base64": "5sfbeyRD6Ji87fC9hVXGvUDJZvs=" + "s": 77962869, + "sha1_base64": "F365c+TzkeIHZoVoE4/cmKVgBRA=" }, { "id": "UK_England_North West England_Lancaster", @@ -14598,8 +14598,8 @@ "England", "United Kingdom" ], - "s": 38704425, - "sha1_base64": "SnUQW2A9Gn3MHoyr6i6n5eV0/oY=" + "s": 38259001, + "sha1_base64": "d/zpkOHMklrxu3Tb6WVdMvo6EV4=" }, { "id": "UK_England_South East_Brighton", @@ -14610,8 +14610,8 @@ "England", "United Kingdom" ], - "s": 83641047, - "sha1_base64": "EJq6HzBpmHPkPzlDzTISNgwZWvo=" + "s": 82219303, + "sha1_base64": "p/tiwoNEATt6vF5Sk1w3ot/bVqw=" }, { "id": "UK_England_South East_Oxford", @@ -14622,8 +14622,8 @@ "England", "United Kingdom" ], - "s": 84283669, - "sha1_base64": "TymwHx63IHwPtPDroqDzvbcFkN8=" + "s": 83376485, + "sha1_base64": "NtrqrgFaJZYzDTmtiOgyn3fpR9Y=" }, { "id": "UK_England_South West England_Bristol", @@ -14634,8 +14634,8 @@ "England", "United Kingdom" ], - "s": 95682423, - "sha1_base64": "lU9E7MkzN410tyZasEmiTNwBotM=" + "s": 94874543, + "sha1_base64": "F6XgmfnTnQ7XvMOUdUFhY2wkpr0=" }, { "id": "UK_England_South West England_Cornwall", @@ -14646,8 +14646,8 @@ "England", "United Kingdom" ], - "s": 52610956, - "sha1_base64": "6JGz1a1N9ppsGevzr3H31GdC5xU=" + "s": 52068268, + "sha1_base64": "wwZs+csEOnNkIeo2g3Jr7aUF/ok=" }, { "id": "UK_England_West Midlands", @@ -14658,8 +14658,8 @@ "England", "United Kingdom" ], - "s": 114526937, - "sha1_base64": "icHUUo6NCCIEmcCYFNQkjabOHwQ=" + "s": 113541913, + "sha1_base64": "wenWP7nmQYSpKKlYBfTQSBLoX3E=" }, { "id": "UK_England_Yorkshire and the Humber", @@ -14670,8 +14670,8 @@ "England", "United Kingdom" ], - "s": 105296966, - "sha1_base64": "xiOHQbDdtx6EAZPNY/BkyqfPMPM=" + "s": 104570606, + "sha1_base64": "Ogz30Uh3vy5VUK89lpqUVJTFm9w=" }, { "id": "UK_Northern Ireland", @@ -14683,8 +14683,8 @@ "Scotland", "United Kingdom" ], - "s": 38142585, - "sha1_base64": "KnibpEm6ab7FUjq6Urcci2UnmxQ=" + "s": 37942913, + "sha1_base64": "37wLi1aBvt9kn6v/AA4AjTBcypU=" }, { "id": "UK_Scotland_North", @@ -14695,8 +14695,8 @@ "Scotland", "United Kingdom" ], - "s": 106010911, - "sha1_base64": "FZ3QmA3Npa1BEUa6xrkFQRCrz5g=" + "s": 104263167, + "sha1_base64": "8/Mam3YUez9aZLiKUfb+/w65oWY=" }, { "id": "UK_Scotland_South", @@ -14708,8 +14708,8 @@ "Scotland", "United Kingdom" ], - "s": 88468732, - "sha1_base64": "0wnlHjqVUGuh42W6Aj4MO9qDbng=" + "s": 87202316, + "sha1_base64": "+R5BZBA2MglNEoorL8/1ALLa97U=" }, { "id": "UK_Wales", @@ -14720,8 +14720,8 @@ "United Kingdom", "Wales" ], - "s": 90983927, - "sha1_base64": "2dxTUNONtxzlV+2JmRnnEB1yAyk=" + "s": 89912743, + "sha1_base64": "rXG2ZLixhF/DCYoqr24WigvEbmM=" } ] }, @@ -14736,8 +14736,8 @@ "affiliations": [ "Ireland" ], - "s": 37723175, - "sha1_base64": "pLaQY7IqSTiBzVZpeZddIj3e31w=" + "s": 37411303, + "sha1_base64": "tSXRfhyhhVU6fsD5g4Fo62BWC0s=" }, { "id": "Ireland_Leinster", @@ -14747,8 +14747,8 @@ "affiliations": [ "Ireland" ], - "s": 75838306, - "sha1_base64": "Calft8weorwo6wLVNedbukImLbA=" + "s": 73995802, + "sha1_base64": "qIVLWT/ZDdg3PZ76+MJdkH/e2Po=" }, { "id": "Ireland_Munster", @@ -14758,8 +14758,8 @@ "affiliations": [ "Ireland" ], - "s": 56984947, - "sha1_base64": "sVofZOIe2TAzU42m3dQM3uo6DNw=" + "s": 56334931, + "sha1_base64": "9G14jPsUL62q8VvQAvsVrXyP7ro=" }, { "id": "Ireland_Northern Counties", @@ -14769,8 +14769,8 @@ "affiliations": [ "Ireland" ], - "s": 16322626, - "sha1_base64": "fsuwF+TvpBLu3oYyNyEjcmF2eAw=" + "s": 16284170, + "sha1_base64": "4CAHZRHooX6BmPN/w9AXEbbEJ+k=" } ] }, @@ -14790,8 +14790,8 @@ "AL", "United States of America" ], - "s": 44227739, - "sha1_base64": "z+PUG8cyp+36o0X3T7QKm17SmdA=" + "s": 43753603, + "sha1_base64": "WkfUbuit2KvCn2Kgot7geg24hSM=" }, { "id": "US_Alabama_Montgomery", @@ -14803,8 +14803,8 @@ "AL", "United States of America" ], - "s": 62653405, - "sha1_base64": "Q0GaLrxqc+1K6MuXl4giah9QFno=" + "s": 61363773, + "sha1_base64": "tq5AMGbz6A6VfhljN3iqgTun8Dc=" } ] }, @@ -14818,8 +14818,8 @@ "AK", "United States of America" ], - "s": 153765977, - "sha1_base64": "3wqF5ldoY1KvC9KLZLFUN3IOcgQ=" + "s": 153467665, + "sha1_base64": "R+yz9Iqjw+OcfNypcAkt6ahnDSI=" }, { "id": "Arizona", @@ -14834,8 +14834,8 @@ "AZ", "United States of America" ], - "s": 80944316, - "sha1_base64": "JyyKscA0Hlwpek69pPFeEpQyxbw=" + "s": 80627212, + "sha1_base64": "SLmtm1ukjPQD1tR4DvrMp8FbkJQ=" }, { "id": "US_Arizona_Phoenix", @@ -14847,8 +14847,8 @@ "AZ", "United States of America" ], - "s": 102290733, - "sha1_base64": "+7oNrrr2AsY/5XLwCndoE/E0Ikk=" + "s": 100143772, + "sha1_base64": "A5pgBTzYhblLj7W6ucqfRe3/wJM=" }, { "id": "US_Arizona_Tucson", @@ -14860,8 +14860,8 @@ "AZ", "United States of America" ], - "s": 42942704, - "sha1_base64": "cDtGblSR1+Pm1RwyjcPv/SY5L8Y=" + "s": 42098536, + "sha1_base64": "6RBrKcASQ1Z9I2TgCunNjNnAULo=" } ] }, @@ -14878,8 +14878,8 @@ "AR", "United States of America" ], - "s": 47856434, - "sha1_base64": "8yWiWiLXnzMozzsbs6ccvhdwqHo=" + "s": 47725106, + "sha1_base64": "ZGgsMt1Wrjhi3is+YJL87oghuqQ=" }, { "id": "US_Arkansas_South", @@ -14891,8 +14891,8 @@ "AR", "United States of America" ], - "s": 28586510, - "sha1_base64": "FWlym8i5H7NI2PtQan3KwDhvr6E=" + "s": 28513526, + "sha1_base64": "NMwt0k8KjX2r5TtJ5rMU1h4Emjg=" } ] }, @@ -14909,8 +14909,8 @@ "CA", "United States of America" ], - "s": 45780288, - "sha1_base64": "q6nnC8ir9ad3WYJ8AsxlUvwMI4Y=" + "s": 45639984, + "sha1_base64": "ocYqYAeEekjGzLIR+oPMk8C5B0Y=" }, { "id": "US_California_Bakersfield_Bakersfield", @@ -14922,8 +14922,8 @@ "CA", "United States of America" ], - "s": 40049095, - "sha1_base64": "0F4rbvOqIfX2IHvuibPJu4xjCy4=" + "s": 39929727, + "sha1_base64": "Q9hQydjetjhl672ZspyfuYXUHoQ=" }, { "id": "US_California_Bakersfield_Lancaster", @@ -14935,8 +14935,8 @@ "CA", "United States of America" ], - "s": 42211383, - "sha1_base64": "wKTzJPrwGnnmw/cd6EZXL1kd7kM=" + "s": 41936671, + "sha1_base64": "KJHvUou/rWydYQf4bGU0fMCl7Os=" }, { "id": "US_California_LA", @@ -14948,8 +14948,8 @@ "CA", "United States of America" ], - "s": 183576024, - "sha1_base64": "nyHKNJu7A1UFKL4vHNC9zErcW3A=" + "s": 182180512, + "sha1_base64": "wMMV3dlwT7W+aEHr76YDD+IzRIE=" }, { "id": "US_California_LA North", @@ -14961,8 +14961,8 @@ "CA", "United States of America" ], - "s": 61296633, - "sha1_base64": "X8yjfNKn39v2bW4SNHrFW89gX/0=" + "s": 60989881, + "sha1_base64": "+v0EZyNJPqp+sMcZSFTLZhAyWU0=" }, { "id": "US_California_Redding", @@ -14975,8 +14975,8 @@ "Hoopa Valley Tribe", "United States of America" ], - "s": 58752017, - "sha1_base64": "ko7lbEcbEVqP4zVlcLlQrGxnHuE=" + "s": 58698729, + "sha1_base64": "bGn165Eaqe33eS/aH/CYHHcbmcM=" }, { "id": "US_California_Sacramento_Sacramento", @@ -14988,8 +14988,8 @@ "CA", "United States of America" ], - "s": 34999327, - "sha1_base64": "CMR+6YTWSe7b9j93Rb0xkm2MkfI=" + "s": 34846799, + "sha1_base64": "V699/UGjEO1szDEUnBAzGDK7934=" }, { "id": "US_California_Sacramento_Fresno", @@ -15001,8 +15001,8 @@ "CA", "United States of America" ], - "s": 42604151, - "sha1_base64": "aF0gyMXKaVNZH1FknHkjTmGeA3g=" + "s": 42318455, + "sha1_base64": "xaYwTd9z6mH5WUvlHUr8qpfpmuo=" }, { "id": "US_California_Sacramento_Stockton", @@ -15014,8 +15014,8 @@ "CA", "United States of America" ], - "s": 48263201, - "sha1_base64": "xGGq55aVlDr6bgUHigub/qoZERE=" + "s": 48033593, + "sha1_base64": "ABoWE35RhhbFumjDHhc7UFalp94=" }, { "id": "US_California_San Diego", @@ -15027,8 +15027,8 @@ "CA", "United States of America" ], - "s": 74020348, - "sha1_base64": "/KjG9XwQ9Mul+gFjFhiAOYL7drg=" + "s": 73589108, + "sha1_base64": "yrXIktocqHJIXhQJ/gIHzj0swws=" }, { "id": "US_California_Santa_Clara_Santa Cruz", @@ -15040,8 +15040,8 @@ "CA", "United States of America" ], - "s": 27967359, - "sha1_base64": "Gpc4v/0upZuoZOF7SK8c26Zqbl0=" + "s": 27902151, + "sha1_base64": "yTDSqtd3MmKTp9RsU+Rjat4tVV4=" }, { "id": "US_California_Santa_Clara_Palo Alto", @@ -15053,8 +15053,8 @@ "CA", "United States of America" ], - "s": 136643999, - "sha1_base64": "+6uaFr9hVf7FGmI4lz6Nxzfc/18=" + "s": 135985951, + "sha1_base64": "GhmMiEMVgU0/I+T+4KooNQMBbS0=" } ] }, @@ -15071,8 +15071,8 @@ "CO", "United States of America" ], - "s": 66204882, - "sha1_base64": "P14iDXgkAKWlhyrBdiX3TY55VR0=" + "s": 66064730, + "sha1_base64": "Ym2ganeesRA7UDH4x2fAARPEe3o=" }, { "id": "US_Colorado_Denver", @@ -15084,8 +15084,8 @@ "CO", "United States of America" ], - "s": 101868447, - "sha1_base64": "aPzovWiEmFZJj7PPmQgWuiivwrg=" + "s": 97714863, + "sha1_base64": "luvh54SJcIR3RDtkneGrc9KFneg=" }, { "id": "US_Colorado_South", @@ -15097,8 +15097,8 @@ "CO", "United States of America" ], - "s": 62706547, - "sha1_base64": "kDfzxO5Rm/LE/VT6qFMvNHqCvVg=" + "s": 62544371, + "sha1_base64": "QNKv4zULl5xYvkteo97ztgSlHJ0=" } ] }, @@ -15112,8 +15112,8 @@ "CT", "United States of America" ], - "s": 129361845, - "sha1_base64": "kUWEsVuzye+evMdjXoGRxNJjEUM=" + "s": 123934101, + "sha1_base64": "4x3V8uR9LHQhA30E8i6kPYQ3JxQ=" }, { "id": "US_Delaware", @@ -15125,8 +15125,8 @@ "DE", "United States of America" ], - "s": 15984709, - "sha1_base64": "XR8YqdOtrkIxOwOqOKG4OmDVaF0=" + "s": 15663109, + "sha1_base64": "n2vJgTKXuCbLKEDkGU8HF2shCso=" }, { "id": "Florida", @@ -15141,8 +15141,8 @@ "FL", "United States of America" ], - "s": 70053908, - "sha1_base64": "WbkTj+OAlXXpPsyVipUzhpBnsZA=" + "s": 69111412, + "sha1_base64": "bES1c57E1XzxrUadPlmsPdxm5cI=" }, { "id": "US_Florida_Miami", @@ -15154,8 +15154,8 @@ "FL", "United States of America" ], - "s": 101997892, - "sha1_base64": "RhGxAATTvRWeln9Xu142wtPP/WY=" + "s": 101239652, + "sha1_base64": "IAVChnz+nFyu4rudEKzLSIS8E08=" }, { "id": "US_Florida_Orlando", @@ -15167,8 +15167,8 @@ "FL", "United States of America" ], - "s": 47666138, - "sha1_base64": "Jq/OW/RtwesBASE6SUk4aC4R/zQ=" + "s": 46953466, + "sha1_base64": "XdHnzX+eIFt0ZWjZdPzCE2wujUw=" }, { "id": "US_Florida_Tampa", @@ -15180,8 +15180,8 @@ "FL", "United States of America" ], - "s": 74773263, - "sha1_base64": "Ao0PjlV8jrZ32z9raxuSgxk48hQ=" + "s": 74299503, + "sha1_base64": "4bSQuqMmfXb3rLvRpvGUD4ALBg4=" }, { "id": "US_Florida_Gainesville", @@ -15193,8 +15193,8 @@ "FL", "United States of America" ], - "s": 44684017, - "sha1_base64": "qUjDgsD4FiJQ/zQ79fLKrs+qSVI=" + "s": 43990137, + "sha1_base64": "l6QESgi4GAp5QZDBMqdZS50tl3w=" } ] }, @@ -15211,8 +15211,8 @@ "GA", "United States of America" ], - "s": 96460925, - "sha1_base64": "ue3pfSUVnCc5MlJGHrUKI+qQxMo=" + "s": 90474717, + "sha1_base64": "2TXxAs6uMpBb7+jr4Ae0+b6QlD0=" }, { "id": "US_Georgia_Macon", @@ -15224,8 +15224,8 @@ "GA", "United States of America" ], - "s": 47328219, - "sha1_base64": "Mc4x7jboI0L0+6SgumBUKq1K0OU=" + "s": 45523002, + "sha1_base64": "9PNCSXf9T3LtdGvgKvbUhqb8EUQ=" }, { "id": "US_Georgia_North", @@ -15237,8 +15237,8 @@ "GA", "United States of America" ], - "s": 35954663, - "sha1_base64": "m8mjxE2EB09NH5mNHitUlnEDqtg=" + "s": 35710439, + "sha1_base64": "ardQfxWl11YOa/Odcji2NWbKbMw=" }, { "id": "US_Georgia_South", @@ -15250,8 +15250,8 @@ "GA", "United States of America" ], - "s": 51526852, - "sha1_base64": "XtBfTA24utjPaMmFbTWhfx719VU=" + "s": 50326852, + "sha1_base64": "r4Pg/LM6W1esJm0CawgTbMXLpcI=" } ] }, @@ -15271,8 +15271,8 @@ "country_name_synonyms": [ "Guam" ], - "s": 3236354, - "sha1_base64": "/JEXa8GvEHADSSyDchCtaSHD0ko=" + "s": 3235466, + "sha1_base64": "NPLzIKiDkWbvOqzUy/m4nBS4QBY=" }, { "id": "US_Hawaii", @@ -15284,8 +15284,8 @@ "HI", "United States of America" ], - "s": 15798619, - "sha1_base64": "xcrV3PW4S/QdVq0gBONAk7Gur0s=" + "s": 15659507, + "sha1_base64": "+9lrcfcudQP+T6juvofRoUfrK/g=" }, { "id": "US_Idaho", @@ -15300,8 +15300,8 @@ "ID", "United States of America" ], - "s": 35305145, - "sha1_base64": "9/J6NeNngEPWXCaiwr4fcSwnSJ0=" + "s": 35192601, + "sha1_base64": "7R60vy+GlbAqu9QntUFHE0+9i9w=" }, { "id": "US_Idaho_South", @@ -15313,8 +15313,8 @@ "ID", "United States of America" ], - "s": 58261676, - "sha1_base64": "zSP8zDBk5VU3/X2T+L+AbsJfY+w=" + "s": 57893756, + "sha1_base64": "661pBK8s3Ddk5rLheMXtwri2rQg=" } ] }, @@ -15331,8 +15331,8 @@ "IL", "United States of America" ], - "s": 36263739, - "sha1_base64": "8ZQcwkleGAT4TOpshEbD7eXHILo=" + "s": 35946443, + "sha1_base64": "47oRgvghrMksRNd2K7wqicYPdhw=" }, { "id": "US_Illinois_Chickago", @@ -15344,8 +15344,8 @@ "IL", "United States of America" ], - "s": 58926052, - "sha1_base64": "xxFb5gA6H/nFh1YPusr2LYhtjUE=" + "s": 58488268, + "sha1_base64": "lY7bvSq8+tKl9wxYF4DM3imXyuE=" }, { "id": "US_Illinois_Elgin", @@ -15357,8 +15357,8 @@ "IL", "United States of America" ], - "s": 33713841, - "sha1_base64": "tQH/869Q3eMehu5foByEDjllUiY=" + "s": 33296537, + "sha1_base64": "qIOQw7DnG4P++vjyFQFbnLrQtuA=" }, { "id": "US_Illinois_Rockford", @@ -15370,8 +15370,8 @@ "IL", "United States of America" ], - "s": 25050550, - "sha1_base64": "ZUvDhvVvpGoSc8fss6R+BqPZb3I=" + "s": 24757110, + "sha1_base64": "raMRskozPFWtwirSmjZFZ6noCpA=" }, { "id": "US_Illinois_Springfield", @@ -15383,8 +15383,8 @@ "IL", "United States of America" ], - "s": 53622316, - "sha1_base64": "mQLy7C95PT21KGw6tAU1l1EIv88=" + "s": 53433572, + "sha1_base64": "d1OEV5kHqzRIzFPLMUdtR+CWuQA=" } ] }, @@ -15401,8 +15401,8 @@ "IN", "United States of America" ], - "s": 53731411, - "sha1_base64": "r+2xW6E/zT9We6VcnQhL7fyBmfs=" + "s": 53558451, + "sha1_base64": "Q9VSj92IRQCHi7EsQBTQwhe+Nx0=" }, { "id": "US_Indiana_Evansville", @@ -15414,8 +15414,8 @@ "IN", "United States of America" ], - "s": 26551958, - "sha1_base64": "2zC3ZLATkSHPrAaW7Dw4adkNqNc=" + "s": 26302726, + "sha1_base64": "wAzMi/9SPgrf88qSIV6YILAYKSQ=" }, { "id": "US_Indiana_Indianapolis", @@ -15427,8 +15427,8 @@ "IN", "United States of America" ], - "s": 44572690, - "sha1_base64": "TQRcelmeNnus9KuxkMStfPLRsb8=" + "s": 43400034, + "sha1_base64": "TYppgBUFw6yOSD1Mg/V7dk5biqo=" } ] }, @@ -15445,8 +15445,8 @@ "IA", "United States of America" ], - "s": 38088144, - "sha1_base64": "umOOmbrwKmQYsZgLpH7AO0vcIRs=" + "s": 37853264, + "sha1_base64": "M5zy4AX/UnfytzwAQk9mFTtJRac=" }, { "id": "US_Iowa_Waterloo", @@ -15458,8 +15458,8 @@ "IA", "United States of America" ], - "s": 33915103, - "sha1_base64": "W5UQv2NdszVzh7mlSB++FFmKKB8=" + "s": 33611351, + "sha1_base64": "UbXmGX2DiDBgb7h5QolApMyYs44=" }, { "id": "US_Iowa_West", @@ -15471,8 +15471,8 @@ "IA", "United States of America" ], - "s": 35102504, - "sha1_base64": "mIr8GXncNJJBQqnuyxcO2YUL0Gc=" + "s": 34967496, + "sha1_base64": "TmMOeW9XtajRN3oUCRFPyqQ+XVc=" } ] }, @@ -15489,8 +15489,8 @@ "KS", "United States of America" ], - "s": 42985562, - "sha1_base64": "6slBlzkVp2CHB+L/K4hnhYN+pZ0=" + "s": 42604522, + "sha1_base64": "Is3kpVscXvoXsJco99v+KjH9vbo=" }, { "id": "US_Kansas_West", @@ -15502,8 +15502,8 @@ "KS", "United States of America" ], - "s": 24945725, - "sha1_base64": "wDIc5EvtATBMKVzQygRAIjemwcs=" + "s": 24768757, + "sha1_base64": "YnCK2PmVh4k0ZmYuL7Lr0oqdjxA=" }, { "id": "US_Kansas_Wichita", @@ -15515,8 +15515,8 @@ "KS", "United States of America" ], - "s": 34328998, - "sha1_base64": "hpvXJRGX1dsrgto4BrwtwaiibNY=" + "s": 34237166, + "sha1_base64": "+efv733RkH1SO7P+hK5Zu9XOyl0=" } ] }, @@ -15533,8 +15533,8 @@ "KY", "United States of America" ], - "s": 54655372, - "sha1_base64": "2zPoBj0+m0v446oLQdatr6hpHww=" + "s": 53934043, + "sha1_base64": "AjTbMDRZ8LwnlMZuGGfON2GHWdQ=" }, { "id": "US_Kentucky_West", @@ -15546,8 +15546,8 @@ "KY", "United States of America" ], - "s": 32308991, - "sha1_base64": "Nd522RlMbZrEPZAeDPwrKry9C7g=" + "s": 30990407, + "sha1_base64": "bg/Y+FMUgfA40yRoMQJQl9iwpT4=" }, { "id": "US_Kentucky_Louisville", @@ -15559,8 +15559,8 @@ "KY", "United States of America" ], - "s": 38725030, - "sha1_base64": "mG1SioOssQNhbk94ZTpZRCGVldc=" + "s": 38586254, + "sha1_base64": "mpptDHV6JcgHKFeHz1yXyVKyz6I=" } ] }, @@ -15577,8 +15577,8 @@ "LA", "United States of America" ], - "s": 41683824, - "sha1_base64": "oKtpqHJogtLboLIxeX3VUHq4zHc=" + "s": 41121000, + "sha1_base64": "29e3tbnf629+NbgtPnvQdumeiwA=" }, { "id": "US_Louisiana_New Orleans", @@ -15590,8 +15590,8 @@ "LA", "United States of America" ], - "s": 62626793, - "sha1_base64": "blx0027JOY2yhwUoPe965eOg9vo=" + "s": 62185745, + "sha1_base64": "XyMvNijsq8MElHtg07/IIXqjmZY=" } ] }, @@ -15605,8 +15605,8 @@ "ME", "United States of America" ], - "s": 79002197, - "sha1_base64": "zSNFZh0c4lX3r/Sil+urxEvHppE=" + "s": 78522461, + "sha1_base64": "JbfIL4ZPM9F7l0lhUUrx+KE4y0E=" }, { "id": "Maryland", @@ -15621,8 +15621,8 @@ "MD", "United States of America" ], - "s": 93429294, - "sha1_base64": "zhuGKiNg+fki5LLRzQ9/y84YPes=" + "s": 93040998, + "sha1_base64": "ewp1Quf7f3Uj2ckt3AfofvS2Ws0=" }, { "id": "US_Maryland_and_DC", @@ -15637,8 +15637,8 @@ "MD", "United States of America" ], - "s": 66235572, - "sha1_base64": "zx73x28H/RK4bXU6cEsI7qn7QsU=" + "s": 65977508, + "sha1_base64": "cLWJfUm3QVuJ4WQ7SB/d6nlJEOc=" } ] }, @@ -15655,8 +15655,8 @@ "MA", "United States of America" ], - "s": 68203266, - "sha1_base64": "WgHQi/waW9ccnfJbK7UdNb9qr4w=" + "s": 67572394, + "sha1_base64": "JPeNvzg3Ww6eYguHPm2lWQMvuGo=" }, { "id": "US_Massachusetts_Central", @@ -15668,8 +15668,8 @@ "MA", "United States of America" ], - "s": 34570919, - "sha1_base64": "D/tm8mj/BKt1iWAoVpW3/5qzK1g=" + "s": 34326479, + "sha1_base64": "bUZKEEAQfFCqjknAC7k4hPUWJKU=" }, { "id": "US_Massachusetts_Plymouth", @@ -15681,8 +15681,8 @@ "MA", "United States of America" ], - "s": 36404447, - "sha1_base64": "XcG7m4tQ/pK5NaSo/bjYzedCNxo=" + "s": 36219079, + "sha1_base64": "yWvThLcc1W1OnPwkaQaxo9lKUfY=" }, { "id": "US_Massachusetts_Southeastern", @@ -15694,8 +15694,8 @@ "MA", "United States of America" ], - "s": 16183570, - "sha1_base64": "sB8pK18mefU1OXr4ote/SuO3Go4=" + "s": 16094602, + "sha1_base64": "9OCv9CVRLtivOfIr+tZ057ToiSY=" }, { "id": "US_Massachusetts_West", @@ -15707,8 +15707,8 @@ "MA", "United States of America" ], - "s": 34150878, - "sha1_base64": "0i+fpN2iv4EZ+a2Kbxfk6Yn0qIc=" + "s": 34107078, + "sha1_base64": "9VWpsN1TyZ6yDSlN4qKscFqyo5g=" } ] }, @@ -15725,8 +15725,8 @@ "MI", "United States of America" ], - "s": 65256605, - "sha1_base64": "HIdzoDtq8aWDK2kn+uFJJO+2Ls8=" + "s": 63997477, + "sha1_base64": "mr+9M312kiDKDbySa4LxoifZIx4=" }, { "id": "US_Michigan_North", @@ -15738,8 +15738,8 @@ "MI", "United States of America" ], - "s": 38783088, - "sha1_base64": "DgEsF13DSldTbuOqNIRJQIXqYxY=" + "s": 37890840, + "sha1_base64": "QOOhh8avhecMifmmkKyyr4LQ67k=" }, { "id": "US_Michigan_Grand Rapids", @@ -15757,8 +15757,8 @@ "MI", "United States of America" ], - "s": 50201635, - "sha1_base64": "jFivrWNGilrhxeAQjr8YlbJwKzQ=" + "s": 49979907, + "sha1_base64": "KaQuvIfV6E9CHnM/XmUK41/eNe8=" }, { "id": "US_Michigan_Lansing", @@ -15772,8 +15772,8 @@ "MI", "United States of America" ], - "s": 54093045, - "sha1_base64": "9oRku5JyZNQGJiJnL/PkoKNzGPs=" + "s": 54020733, + "sha1_base64": "6HYSQIVSeq0IkoIzBdVtP55Ed4Q=" } ] }, @@ -15790,8 +15790,8 @@ "MN", "United States of America" ], - "s": 39875602, - "sha1_base64": "R4024yA3Nkx4JRWtsRbg4evhK4U=" + "s": 39729386, + "sha1_base64": "P3MEFYGD76U9eLikOxXdhCNKuT8=" }, { "id": "US_Minnesota_Minneapolis", @@ -15803,8 +15803,8 @@ "MN", "United States of America" ], - "s": 53324954, - "sha1_base64": "Ec/SBqK9q5+t4kirRNgMK287/zQ=" + "s": 52672050, + "sha1_base64": "ABRNXHDw3tCfPgpojJ0ej2Zj5N8=" }, { "id": "US_Minnesota_North", @@ -15816,8 +15816,8 @@ "MN", "United States of America" ], - "s": 58688580, - "sha1_base64": "5ybM474yn3+IOMGS2ldSp5tMhp0=" + "s": 57375803, + "sha1_base64": "2Yq3hKZyA5x0j/sfk4/IilJ8A4M=" }, { "id": "US_Minnesota_Saint Cloud", @@ -15829,8 +15829,8 @@ "MN", "United States of America" ], - "s": 35210631, - "sha1_base64": "LrnNLe9j4UCkXRXYjcZb/12bkdA=" + "s": 35092775, + "sha1_base64": "DHW5MIMD2GVnhCubJxgHxoJKKmg=" } ] }, @@ -15847,8 +15847,8 @@ "MS", "United States of America" ], - "s": 25756118, - "sha1_base64": "QszBaMwIM0EBfBVJ2CfQTHxshQ0=" + "s": 25666046, + "sha1_base64": "qgJRtHUM/Y09jJasXwjSo0k3U7Q=" }, { "id": "US_Mississippi_North", @@ -15860,8 +15860,8 @@ "MS", "United States of America" ], - "s": 51389196, - "sha1_base64": "L7/Y6Ov9WtCmvcd6Rt5+WrwatDU=" + "s": 51176092, + "sha1_base64": "wI/XSskcgdNPA65eqfGPsk8YSN0=" } ] }, @@ -15878,8 +15878,8 @@ "MO", "United States of America" ], - "s": 18756884, - "sha1_base64": "z6qL6CefXtgPndCNEvzNSnTcLIs=" + "s": 18648660, + "sha1_base64": "OJRSBxFfPB7TIPa9uU4JtrLmX2s=" }, { "id": "US_Missouri_Springfield", @@ -15891,8 +15891,8 @@ "MO", "United States of America" ], - "s": 37109800, - "sha1_base64": "aIOghvqGk01e1HU3Htwxw92w7GU=" + "s": 36997024, + "sha1_base64": "ka8nhehMwGFOZJnDmrNmSYBBqQA=" }, { "id": "US_Missouri_Kansas", @@ -15904,8 +15904,8 @@ "MO", "United States of America" ], - "s": 41149777, - "sha1_base64": "o6G+pTQcN6CCqWnT9+sUjqFnUqw=" + "s": 41026417, + "sha1_base64": "ch1VToZ6c6qV89uZzDSyLWr9ITQ=" }, { "id": "US_Missouri_St Louis", @@ -15917,8 +15917,8 @@ "MO", "United States of America" ], - "s": 59139209, - "sha1_base64": "PRpPLe+KIQgZXVslxNe8B0bKl/s=" + "s": 58991761, + "sha1_base64": "24Gy+hRexEFgHx0xMJ9MDpPwrNE=" } ] }, @@ -15935,8 +15935,8 @@ "MT", "United States of America" ], - "s": 37428136, - "sha1_base64": "5Qjxc1Ft56g3AvN7XQhOb0RQSLk=" + "s": 36844624, + "sha1_base64": "c1DUI+Ca+Xa0RL4TqAz+YkToJxM=" }, { "id": "US_Montana_West", @@ -15948,8 +15948,8 @@ "MT", "United States of America" ], - "s": 47974632, - "sha1_base64": "Hz+k1DhSLyIlM8mMTLEIZUhYcqw=" + "s": 47774296, + "sha1_base64": "ITPpyeAOT2k6EYr2cxuPmXhCXuE=" } ] }, @@ -15966,8 +15966,8 @@ "NE", "United States of America" ], - "s": 33329041, - "sha1_base64": "uT1D9rZLEkR0A+YKNiTx/SY3LiQ=" + "s": 33179833, + "sha1_base64": "a7hQMBdd2lVCCax1DMN66X+efRw=" }, { "id": "US_Nebraska_West", @@ -15979,8 +15979,8 @@ "NE", "United States of America" ], - "s": 44930449, - "sha1_base64": "AVEkHhzM7ZGny4KjKPkZX+WqqqM=" + "s": 44824473, + "sha1_base64": "sklcG8C0+HHdc3SRKFSPrBbuNFA=" } ] }, @@ -15994,8 +15994,8 @@ "NV", "United States of America" ], - "s": 59914243, - "sha1_base64": "TKhgINfr9abgbCdyFuCoa75Nk2M=" + "s": 58881363, + "sha1_base64": "h1cu1WWBiFUTsgm1629PA+t6Uj4=" }, { "id": "US_New Hampshire", @@ -16007,8 +16007,8 @@ "NH", "United States of America" ], - "s": 43298801, - "sha1_base64": "2dOGmteltFqBxSvnvD/IWRRbsC0=" + "s": 43084017, + "sha1_base64": "OO3Rq02a7bO32thly/6V9YxJxPk=" }, { "id": "New Jersey", @@ -16023,8 +16023,8 @@ "NJ", "United States of America" ], - "s": 51120807, - "sha1_base64": "YMeDzuoBN53aROf/tFgFu+64oVo=" + "s": 49542990, + "sha1_base64": "PCW9qBq2GUsbj2QkUMSAe6XoHy8=" }, { "id": "US_New Jersey_South", @@ -16036,8 +16036,8 @@ "NJ", "United States of America" ], - "s": 62721322, - "sha1_base64": "WXs/IQNvAv9sLLSDlPvhvn0JvWk=" + "s": 62106434, + "sha1_base64": "VTcGgpYb9xTeRwJyqUkzBlss8cw=" } ] }, @@ -16054,8 +16054,8 @@ "NM", "United States of America" ], - "s": 64359587, - "sha1_base64": "Pwgm+d5jEE9FZ9ul22JcR4JL4uE=" + "s": 64203283, + "sha1_base64": "Ii/Xjf5Vwdazgi5fDhGhMxY1oaY=" }, { "id": "US_New Mexico_Roswell", @@ -16067,8 +16067,8 @@ "NM", "United States of America" ], - "s": 49757248, - "sha1_base64": "zdgDBpd+xaeQbJ8FrAJDj8ZiVE8=" + "s": 49512424, + "sha1_base64": "PmY0YT1tkm9e9gvqAO5eUYmCzDE=" } ] }, @@ -16086,8 +16086,8 @@ "NY", "United States of America" ], - "s": 97431811, - "sha1_base64": "oY3uDZLAuuivmBobFZKWeFZw3Bc=" + "s": 95837179, + "sha1_base64": "l0Kz0KgzycFXkemzrq4YaeRx7ak=" }, { "id": "US_New York_New York", @@ -16101,8 +16101,8 @@ "NY", "United States of America" ], - "s": 67205654, - "sha1_base64": "QLQlaWFhB1m6Gl8OlmmkpO7vEX8=" + "s": 66802861, + "sha1_base64": "BTPSTWlQq2R0/xSb+u0Q0cQ5gFU=" }, { "id": "US_New York_North", @@ -16114,8 +16114,8 @@ "NY", "United States of America" ], - "s": 93609102, - "sha1_base64": "R7nADU/L0Tmt3cX8NzEb8XQ2zPs=" + "s": 93319366, + "sha1_base64": "58WSOgMet97+ZELHPS7rg+0pNkc=" }, { "id": "US_New York_West", @@ -16127,8 +16127,8 @@ "NY", "United States of America" ], - "s": 147348670, - "sha1_base64": "Ab2rq3hGqC7XXY7xpQT6yyZWAoI=" + "s": 146846382, + "sha1_base64": "VtBsMdrn/yDphrA0tJ9dRgEXnOw=" } ] }, @@ -16145,8 +16145,8 @@ "NC", "United States of America" ], - "s": 36528992, - "sha1_base64": "EyyqtTHofyWGgT/ptzZKr3R4pmg=" + "s": 36145496, + "sha1_base64": "azIgpRTC+9tyMylyF3aIUpXHbOg=" }, { "id": "US_North Carolina_Asheville", @@ -16158,8 +16158,8 @@ "NC", "United States of America" ], - "s": 38154897, - "sha1_base64": "PFqSomKiAVYzeuJ+r0/EXyn+wAs=" + "s": 38099617, + "sha1_base64": "S5+k2OH79pPDEMQgR/0aR3l/SQk=" }, { "id": "US_North Carolina_Charlotte", @@ -16171,8 +16171,8 @@ "NC", "United States of America" ], - "s": 63176610, - "sha1_base64": "/rgw1+06B2FMLh9itMZU5ysuTJM=" + "s": 62898586, + "sha1_base64": "welGeZ76WrSt6QspuNP3IFNRntM=" }, { "id": "US_North Carolina_Greensboro", @@ -16184,8 +16184,8 @@ "NC", "United States of America" ], - "s": 49360195, - "sha1_base64": "YO3HemzZM9+IEOmNq5Bqssop7EY=" + "s": 49146963, + "sha1_base64": "IxHgahXgVPibytJe6CV/itqD+4c=" }, { "id": "US_North Carolina_Raleigh", @@ -16197,8 +16197,8 @@ "NC", "United States of America" ], - "s": 72608259, - "sha1_base64": "6SmSYYOD8rOZJ781JeRy1nfF9HQ=" + "s": 71447275, + "sha1_base64": "2YrFVIRXYu3Hc6oxqCNibcpMJSY=" }, { "id": "US_North Carolina_Wilmington", @@ -16210,8 +16210,8 @@ "NC", "United States of America" ], - "s": 35195535, - "sha1_base64": "JgDONNxJUDNRJt5uqJVI49BmQAs=" + "s": 35031575, + "sha1_base64": "ZdWQqoJUPdyVb3ex745iTYxHsbQ=" } ] }, @@ -16228,8 +16228,8 @@ "ND", "United States of America" ], - "s": 29228661, - "sha1_base64": "BitWARne0h0ypEWXjFONomRo7K8=" + "s": 29100837, + "sha1_base64": "BTm4QqU7j0Sp+TZFTt+QjkNBiN8=" }, { "id": "US_North Dakota_East", @@ -16241,8 +16241,8 @@ "ND", "United States of America" ], - "s": 38107759, - "sha1_base64": "guRSjsV4F/BGS8KmimfdhEkEqPE=" + "s": 37839047, + "sha1_base64": "NT2gczD0ZesHy+04C9p1IheuWbs=" }, { "id": "US_North Dakota_Minot", @@ -16254,8 +16254,8 @@ "ND", "United States of America" ], - "s": 24304020, - "sha1_base64": "hsw3ZyuNJh/kJyHMrUHSpD280U4=" + "s": 24270620, + "sha1_base64": "cm9MDo0gtzZbp8ba88Frfggcuj4=" } ] }, @@ -16272,8 +16272,8 @@ "OH", "United States of America" ], - "s": 59602261, - "sha1_base64": "npQvvArCCdqEJbeGIrtHigPI7S8=" + "s": 58227133, + "sha1_base64": "NJA7ibqF7SDz+AMgXcSy9Bgyndo=" }, { "id": "US_Ohio_Cincinnati", @@ -16285,8 +16285,8 @@ "OH", "United States of America" ], - "s": 62222701, - "sha1_base64": "TSqc1fnPt1jaoKZWe+nWjcHrjn4=" + "s": 61966085, + "sha1_base64": "/mgvxCW76cjg2yQnej2SdcB17WI=" }, { "id": "US_Ohio_Columbus", @@ -16298,8 +16298,8 @@ "OH", "United States of America" ], - "s": 43807498, - "sha1_base64": "eFMCaZabx5AtXGNMDdyamQWIRdc=" + "s": 43027507, + "sha1_base64": "4PCTU84cN91TmicynVzlCrMkD/k=" }, { "id": "US_Ohio_Toledo", @@ -16311,8 +16311,8 @@ "OH", "United States of America" ], - "s": 36927896, - "sha1_base64": "+pkmQCOiGLkmoKhbEfgQWaE9Jv8=" + "s": 36735024, + "sha1_base64": "5JNrgJHVAnKUjgPxcohV2B01Q7s=" } ] }, @@ -16329,8 +16329,8 @@ "OK", "United States of America" ], - "s": 21288615, - "sha1_base64": "5CwHoeg2kjLpmZ1mihaJ3yLrNdQ=" + "s": 21289111, + "sha1_base64": "u01p9msKnaO0Nwkr1qhedswbuRk=" }, { "id": "US_Oklahoma_West", @@ -16342,8 +16342,8 @@ "OK", "United States of America" ], - "s": 25465613, - "sha1_base64": "JpLEy99a3CtuZ/whrqIMZogmjRM=" + "s": 25422397, + "sha1_base64": "IBFEoKjrNXubQ6p7L2ptXwRShKI=" }, { "id": "US_Oklahoma_Tulsa", @@ -16355,8 +16355,8 @@ "OK", "United States of America" ], - "s": 40188560, - "sha1_base64": "shCXMFCH3acDMWKFKJN2NrOd138=" + "s": 39741664, + "sha1_base64": "sYRge6EEvvy4tBCqu+gqUdpbQIU=" }, { "id": "US_Oklahoma_Oklahoma", @@ -16368,8 +16368,8 @@ "OK", "United States of America" ], - "s": 34983664, - "sha1_base64": "J7rvd5HKzLsYjnD+vqXMQH65Ejs=" + "s": 34838088, + "sha1_base64": "Tqp0K+o3cKlnjokc5U922GgGAiA=" } ] }, @@ -16386,8 +16386,8 @@ "OR", "United States of America" ], - "s": 54571850, - "sha1_base64": "j08hw60g9c5ZE+iaM1/4eqV6opU=" + "s": 54332490, + "sha1_base64": "QIsMAauAhfFFaixrpzi1nqSN538=" }, { "id": "US_Oregon_Portland", @@ -16399,8 +16399,8 @@ "OR", "United States of America" ], - "s": 81354335, - "sha1_base64": "8+zxuJATuoBBGBZfe6jZ8xaims0=" + "s": 81083423, + "sha1_base64": "kjCjGioG94IBISKLBZpnc1sUSpM=" }, { "id": "US_Oregon_West", @@ -16412,8 +16412,8 @@ "OR", "United States of America" ], - "s": 53934313, - "sha1_base64": "1+rl4d7vijgeJ/3lWOBkP1vCI6c=" + "s": 53601217, + "sha1_base64": "spCCZS/jFAPcUKhvAStZP9a4MzI=" } ] }, @@ -16430,8 +16430,8 @@ "PA", "United States of America" ], - "s": 57663205, - "sha1_base64": "GwzaXVFA60bfUXSiYKTOaT0j/J4=" + "s": 57638245, + "sha1_base64": "uZV2nSd2M1VuISYk6XWyRfVaAA4=" }, { "id": "US_Pennsylvania_Pittsburgh", @@ -16443,8 +16443,8 @@ "PA", "United States of America" ], - "s": 61404259, - "sha1_base64": "q2x48jVffq16wE+F/eNlUH7Fvio=" + "s": 60910635, + "sha1_base64": "GHGbDX83Cq855mWnC1pOdhi+NYI=" }, { "id": "US_Pennsylvania_Reading", @@ -16456,8 +16456,8 @@ "PA", "United States of America" ], - "s": 48641838, - "sha1_base64": "q+By9DLjtltWu7L6WynD5P/F89o=" + "s": 48439062, + "sha1_base64": "Lov7imPK+HgfBq09oHbpxXwT+JQ=" }, { "id": "US_Pennsylvania_Scranton", @@ -16469,8 +16469,8 @@ "PA", "United States of America" ], - "s": 46445564, - "sha1_base64": "ZIXZ8HmaQnms+wR1jxkW++q7Y/A=" + "s": 46205579, + "sha1_base64": "RdNDSXk2ODgV1t0XGvHeG/GIfeI=" } ] }, @@ -16485,8 +16485,8 @@ "Rep\u00fablica Dominicana", "United States of America" ], - "s": 64211779, - "sha1_base64": "pXXC0uSuYswiHjpQfVwlCiNnvFc=" + "s": 64204307, + "sha1_base64": "GMOA2gubGfUaNTrj/EC+BWgw6rc=" }, { "id": "US_Rhode Island", @@ -16499,8 +16499,8 @@ "RI", "United States of America" ], - "s": 28062399, - "sha1_base64": "okAvagJRJHOlfUKai4GMBIgTOsY=" + "s": 27886983, + "sha1_base64": "B6GN4htbNRWgxkXJS5UA3YaXTMs=" }, { "id": "South Carolina", @@ -16515,8 +16515,8 @@ "SC", "United States of America" ], - "s": 32158382, - "sha1_base64": "tCZi+ixdSZ5WNAMRGbJFPXRZMQU=" + "s": 31999118, + "sha1_base64": "V/phIjH4a3d+e1aECS0LhSSfkUI=" }, { "id": "US_South Carolina_Columbia", @@ -16528,8 +16528,8 @@ "SC", "United States of America" ], - "s": 58733821, - "sha1_base64": "LyYAuapXuwgCGSldCmi0ewg0Lj4=" + "s": 58336373, + "sha1_base64": "pyG/77PKqE1J4S2nBGxkwyx/ONo=" }, { "id": "US_South Carolina_Florence", @@ -16541,8 +16541,8 @@ "SC", "United States of America" ], - "s": 35801295, - "sha1_base64": "hNT7wnhNbZvWkRH//b1C8KN0RPU=" + "s": 35715479, + "sha1_base64": "Gy5UtaFQitdD8A9/2iRZPPvGQos=" } ] }, @@ -16556,8 +16556,8 @@ "SD", "United States of America" ], - "s": 51720738, - "sha1_base64": "Z2No+zR2vuifiHDx4qVeA9GJ6tw=" + "s": 51412866, + "sha1_base64": "7GU5+osYXd9FOrOmkWrcsR7blyU=" }, { "id": "Tennessee", @@ -16572,8 +16572,8 @@ "TN", "United States of America" ], - "s": 67485764, - "sha1_base64": "aqGu/N7NQq+wNTYRYnfU/8MTCCE=" + "s": 66588156, + "sha1_base64": "qi7hucCSvtahEu4OFFmBjvlFJQM=" }, { "id": "US_Tennessee_West", @@ -16585,8 +16585,8 @@ "TN", "United States of America" ], - "s": 63637261, - "sha1_base64": "FuaxTedhcjBL1+o2LHbWBES1CSY=" + "s": 63168301, + "sha1_base64": "sGmVvzZl5kpAFkkfhMIudFsiLYk=" } ] }, @@ -16603,8 +16603,8 @@ "TX", "United States of America" ], - "s": 65124524, - "sha1_base64": "Bjb1yXSVxDXFoSNJEN+g/0FtxMk=" + "s": 64402764, + "sha1_base64": "swZQfkPPcHaD4HNbPr2K+KHdZJ8=" }, { "id": "US_Texas_Victoria", @@ -16616,8 +16616,8 @@ "TX", "United States of America" ], - "s": 23068549, - "sha1_base64": "fdfdJHwWdu9Hv+/zkK9WbdKQqFA=" + "s": 22998245, + "sha1_base64": "zXZaBm01alfJ9q4BY5hbVRIfhME=" }, { "id": "US_Texas_Dallas", @@ -16629,8 +16629,8 @@ "TX", "United States of America" ], - "s": 123058111, - "sha1_base64": "fVDQbF31UkN6hYGkbDX2Jb8oswk=" + "s": 122509519, + "sha1_base64": "v5JlSLiye/4LquX80Lr+5RsXJHI=" }, { "id": "US_Texas_Houston", @@ -16642,8 +16642,8 @@ "TX", "United States of America" ], - "s": 65979389, - "sha1_base64": "Ze102RP3gQHJd7UMCAkZ7j13PlM=" + "s": 65567917, + "sha1_base64": "cYtuMVdLu9YkY5aiVJOn4ECsJ4g=" }, { "id": "US_Texas_Amarillo", @@ -16655,8 +16655,8 @@ "TX", "United States of America" ], - "s": 27987725, - "sha1_base64": "bGtZELW/Ur0fVfzM+Sb4t5RZfqw=" + "s": 27946117, + "sha1_base64": "94548E7+nhIh9sQ22P3TFXoJPqQ=" }, { "id": "US_Texas_Lubbock", @@ -16668,8 +16668,8 @@ "TX", "United States of America" ], - "s": 30293549, - "sha1_base64": "Rs9+pBqA2uwr2F5HmubZbmcKhRE=" + "s": 30226021, + "sha1_base64": "G887TpzShpZdBYRtvauu5JVc+4k=" }, { "id": "US_Texas_San Antonio", @@ -16681,8 +16681,8 @@ "TX", "United States of America" ], - "s": 38017682, - "sha1_base64": "mg77uvmRj0px3NAsoCZ2J2rAEkU=" + "s": 37679874, + "sha1_base64": "yaE2R+2ahNtHfqjbEhAEgJH7opE=" }, { "id": "US_Texas_Southwest", @@ -16694,8 +16694,8 @@ "TX", "United States of America" ], - "s": 35469711, - "sha1_base64": "DrdaERC5FmfXxsmYWbg91XV1jcU=" + "s": 35428087, + "sha1_base64": "EarhmUzb65TRH26eycLIQ7Z7kLA=" }, { "id": "US_Texas_Tyler", @@ -16707,8 +16707,8 @@ "TX", "United States of America" ], - "s": 46502363, - "sha1_base64": "k/EZIgRtBez+2+dUEoomTKcMi5M=" + "s": 46258260, + "sha1_base64": "rqM77oapIJba9HPBt8DDWXjzmRk=" }, { "id": "US_Texas_Wako", @@ -16720,8 +16720,8 @@ "TX", "United States of America" ], - "s": 30371311, - "sha1_base64": "pndKGT0yaHygcsNx7uHPe0zdnag=" + "s": 30262911, + "sha1_base64": "iwa+ByoF8+CZaFffi8dXvPIpoBU=" }, { "id": "US_Texas_West", @@ -16733,8 +16733,8 @@ "TX", "United States of America" ], - "s": 42386823, - "sha1_base64": "Dhb0XGHUfO9tB/eBm8vE1pIpm+o=" + "s": 42266943, + "sha1_base64": "kRJgP3oyEBmUz82YWNs/YuFQXFQ=" } ] }, @@ -16744,8 +16744,8 @@ "Navassa Island", "United States Minor Outlying Islands" ], - "s": 536951, - "sha1_base64": "pCsKhDSCu+8oR1NczRekmxdbtEk=" + "s": 535583, + "sha1_base64": "6aYyujKeN5r+FyIFtNhnv8Hv6+o=" }, { "id": "US_Utah", @@ -16760,8 +16760,8 @@ "Utah", "UT" ], - "s": 40526103, - "sha1_base64": "6G70sclYvtQ8lWmRRodAkkirEeE=" + "s": 40449863, + "sha1_base64": "ex9WJ00vtHoQHuQOpebIX48aCQQ=" }, { "id": "US_Utah_North", @@ -16773,8 +16773,8 @@ "Utah", "UT" ], - "s": 66696980, - "sha1_base64": "JGY+EmuzYdoTHmhwFuuCpK2y2do=" + "s": 65819133, + "sha1_base64": "3rT8tOlbW2WyCTkmMGlljTCymEs=" } ] }, @@ -16788,8 +16788,8 @@ "Vermont", "VT" ], - "s": 27650703, - "sha1_base64": "SvMSLdjHXe4le+LeVArkv5+dqK4=" + "s": 27203423, + "sha1_base64": "tdtv3Dvng2a51Pv1cMmZcHuyooc=" }, { "id": "Virginia", @@ -16804,8 +16804,8 @@ "VA", "United States of America" ], - "s": 40588193, - "sha1_base64": "hIARD7OQR2Go6pkKFSDQQ0RUFzw=" + "s": 40162336, + "sha1_base64": "UW/5w33zwU8S6w0Fl43PdvU8sSc=" }, { "id": "US_Virginia_Norfolk", @@ -16817,8 +16817,8 @@ "VA", "United States of America" ], - "s": 74922658, - "sha1_base64": "ZEy8P4eCind3ICUFq/l4JQTadGY=" + "s": 74685818, + "sha1_base64": "KOPkNBmnlxV4iaq7zRjhsqAxnmE=" }, { "id": "US_Virginia_Lynchburg", @@ -16830,8 +16830,8 @@ "VA", "United States of America" ], - "s": 51851114, - "sha1_base64": "fyyzW1O0SqDXG9nQf0olhflxFYY=" + "s": 51573770, + "sha1_base64": "YdPmM1IBsssKBTL4ylLJnkTAWC8=" }, { "id": "US_Virginia_Richmond", @@ -16843,8 +16843,8 @@ "VA", "United States of America" ], - "s": 55084777, - "sha1_base64": "srTWOl74/HV1j1HyHMyZYvTvpZc=" + "s": 55048977, + "sha1_base64": "aAHFRCoHg7NfrYSKptj4WFjKV8s=" }, { "id": "US_Virginia_Alexandria", @@ -16856,8 +16856,8 @@ "VA", "United States of America" ], - "s": 57503715, - "sha1_base64": "k3zgob5kz7JtCSsFl7Q0k/HOfQQ=" + "s": 56885083, + "sha1_base64": "K92fxOKTSGJ9p/0eXFzGSoRLm2c=" } ] }, @@ -16876,8 +16876,8 @@ "Washington", "WA" ], - "s": 94698789, - "sha1_base64": "5nI86isKxx+MisUrfCL7RQOLUdw=" + "s": 92289517, + "sha1_base64": "0DBCPAi45iyQSqAmatbR/ZIlbPs=" }, { "id": "US_Washington_Seattle", @@ -16889,8 +16889,8 @@ "Washington", "WA" ], - "s": 69548598, - "sha1_base64": "X63VKzcLWz7xeF3UeCOVCDWmR8o=" + "s": 69087718, + "sha1_base64": "xlLYL98D9pHhuBZC1ewCu1yIdzk=" }, { "id": "US_Washington_Yakima", @@ -16902,8 +16902,8 @@ "Washington", "WA" ], - "s": 56373084, - "sha1_base64": "BLj1Q3922f9v9DZigrLnJmtR1i0=" + "s": 55994596, + "sha1_base64": "kd3KTbFe+SwOU8pOsIprpRsTHP4=" } ] }, @@ -16917,8 +16917,8 @@ "West Virginia", "WV" ], - "s": 61187179, - "sha1_base64": "XqZsWVeThBA6gbqGYsJIxMrfAmQ=" + "s": 58754163, + "sha1_base64": "+Ip8+UiD6BCbg/uJpJTV/pM3kns=" }, { "id": "Wisconsin", @@ -16933,8 +16933,8 @@ "Wisconsin", "WI" ], - "s": 83306094, - "sha1_base64": "S5a19b5I78Vm9/uRLx/dV/kPle4=" + "s": 81747390, + "sha1_base64": "Sikx6Ge74FjIL4zSm5lmkjSqh5E=" }, { "id": "US_Wisconsin_North", @@ -16946,8 +16946,8 @@ "Wisconsin", "WI" ], - "s": 37411920, - "sha1_base64": "4yGHpAYxApx23B+3uq9gjH7nKqE=" + "s": 35905216, + "sha1_base64": "JeRZDtXGCI7l2H/SC82K2lIoJ7U=" }, { "id": "US_Wisconsin_Madison", @@ -16959,8 +16959,8 @@ "Wisconsin", "WI" ], - "s": 38513416, - "sha1_base64": "Euk0qz1ePaM6584qDNI6ZzrDFy0=" + "s": 38393528, + "sha1_base64": "AHqSjRPRDD1dakdVN3ZDPK61mDU=" }, { "id": "US_Wisconsin_Eau Claire", @@ -16972,8 +16972,8 @@ "Wisconsin", "WI" ], - "s": 36221976, - "sha1_base64": "AF9byBT/0XUPWiNHbVdS2InC/j8=" + "s": 36096032, + "sha1_base64": "ZWMuRsc83/HzTWbi9Fa1Zl7Off8=" } ] }, @@ -16987,8 +16987,8 @@ "Wyoming", "WY" ], - "s": 47243297, - "sha1_base64": "0Kg4Nz46gnb8qWw+P9phbn5OdPI=" + "s": 45979569, + "sha1_base64": "Ea9gew4kk3AJx/EzI5pj9A3LpFM=" } ] }, @@ -17020,8 +17020,8 @@ "Treinta y Tres", "Uruguay" ], - "s": 61654999, - "sha1_base64": "ij0/x7yTt3xrEwI9sL3VW995Edw=" + "s": 60856671, + "sha1_base64": "ZefmSNXXId0+doc0kWRAFJ2EoT8=" }, { "id": "Uzbekistan", @@ -17046,8 +17046,8 @@ "Toshkent", "Xorazm Viloyati" ], - "s": 71029851, - "sha1_base64": "oREp1+W39LPf+UVAcLLuw/cTjUU=" + "s": 70392579, + "sha1_base64": "hefsFdDwE6mfpbAUm9jtORTYIa0=" }, { "id": "Vanuatu", @@ -17063,8 +17063,8 @@ "Vanuatu", "Torba" ], - "s": 8583157, - "sha1_base64": "mEfIbDTT5lGZsS6qbWZR5gTcAXM=" + "s": 8577901, + "sha1_base64": "oGpbwTZncpCACvl6z7q5WE6Coz0=" }, { "id": "Venezuela", @@ -17099,8 +17099,8 @@ "Yaracuy", "Zulia" ], - "s": 41034234, - "sha1_base64": "9iuH9y7TGadLFpGGdqRt2ineKC8=" + "s": 40845938, + "sha1_base64": "86G4cGEhWUwGDrVTaxT5Pw9sRGg=" }, { "id": "Venezuela_South", @@ -17121,8 +17121,8 @@ "Venezuela", "Zulia" ], - "s": 38827421, - "sha1_base64": "Y+aJZRabtNQtHcGt/0GCUOSjuQk=" + "s": 37018829, + "sha1_base64": "gy54wZFlv3kSQzs13Dq4rU2z22U=" } ] }, @@ -17197,8 +17197,8 @@ "T\u1ec9nh H\u00e0 Giang", "Vi\u1ec7t Nam" ], - "s": 231096325, - "sha1_base64": "ARkck8RmwSiwfkpNdZqCL/2/EPA=" + "s": 230880071, + "sha1_base64": "1Su+SobOGx9b9wW2ht5VhV9etmQ=" }, { "id": "Yemen", @@ -17229,8 +17229,8 @@ "\u1e28a\u1e11ramawt", "\u0627\u0644\u064a\u0645\u0646" ], - "s": 48074036, - "sha1_base64": "wf7ewPkocHyhz9OaS0QIr0I3nWk=" + "s": 48025740, + "sha1_base64": "PmrYXXZ6+UqJ9iz+rpNG8WbFE+8=" }, { "id": "Zambia", @@ -17250,8 +17250,8 @@ "Western Province", "Zambia" ], - "s": 176932920, - "sha1_base64": "xpXE/Rn+z3yKeP7iKKhA9pvWNtw=" + "s": 175252304, + "sha1_base64": "+IPHEmlkKe2FdtwkEvRE4enFGHk=" }, { "id": "Zimbabwe", @@ -17271,16 +17271,16 @@ "Midlands Province", "Zimbabwe" ], - "s": 124572615, - "sha1_base64": "yEdKLkZvcdVRX52+TDlZbBnA3us=" + "s": 123835631, + "sha1_base64": "oLCydk3NRR1nDvNav756f5A0n/I=" }, { "id": "Antarctica", "affiliations": [ "South Georgia and South Sandwich Islands" ], - "s": 60760230, - "sha1_base64": "O+DXQpteFbUX1Fp9XP2mOEzm1w8=" + "s": 60738734, + "sha1_base64": "MgeinAXEn+FwSKXI5jizeYdeysQ=" }, { "id": "New Zealand", @@ -17293,8 +17293,8 @@ "affiliations": [ "Tokelau" ], - "s": 279053, - "sha1_base64": "0W0xpCpuTXth4gO/sHD+Aam/E3U=" + "s": 279045, + "sha1_base64": "mGwhCsqiICoomRmPvlpNJaECrFw=" }, { "id": "New Zealand North_Auckland", @@ -17308,8 +17308,8 @@ "Northland", "Waikato" ], - "s": 111813864, - "sha1_base64": "DjBGbCe2fCnkjN3DGCr4eQMkTKM=" + "s": 111157672, + "sha1_base64": "aL/UXar1ALbi8v+MyF6JNRJgOvI=" }, { "id": "New Zealand North_Wellington", @@ -17324,8 +17324,8 @@ "Taranaki", "Wellington" ], - "s": 76210478, - "sha1_base64": "itx+qPIZHkpw6MWLF7WZxZtUMe8=" + "s": 75828790, + "sha1_base64": "pTQKuOKrEO8SJ3goDTF7LaMGlUk=" }, { "id": "New Zealand South_Canterbury", @@ -17341,8 +17341,8 @@ "Tasman", "West Coast" ], - "s": 86270630, - "sha1_base64": "d8SS1cZQ43FOOPhoS9a8Jcj6aYw=" + "s": 85602942, + "sha1_base64": "/gGWLhwfCy115RDUFNT6Swf5M4A=" }, { "id": "New Zealand South_Southland", @@ -17355,8 +17355,8 @@ "Southland", "West Coast" ], - "s": 56130457, - "sha1_base64": "+E4mBPC9F1h74yWttr9lUwWk14M=" + "s": 55948705, + "sha1_base64": "zx7mTjsGAwEDKyEjDBEBzUQ3JVk=" } ] }, @@ -17380,8 +17380,8 @@ "\ucda9\uccad\ub0a8\ub3c4", "\ucda9\uccad\ubd81\ub3c4" ], - "s": 120744664, - "sha1_base64": "yxf9H4ikwFL2umglYAx71k3HGqM=" + "s": 119480752, + "sha1_base64": "YPhjH8a0oxLY68gmlAtLA79fdzQ=" }, { "id": "South Korea_South", @@ -17401,8 +17401,8 @@ "\uc804\ub77c\ub0a8\ub3c4", "\uc804\ub77c\ubd81\ub3c4" ], - "s": 104042565, - "sha1_base64": "w1qHL0+S/UIgizmOP4TxVhYAp3c=" + "s": 101429933, + "sha1_base64": "o8hJTSnTELksOTVZ9N4Ia/wK0/k=" } ] } diff --git a/data/external_resources.txt b/data/external_resources.txt index cf8d57c1f1..f1dfa6e0b4 100644 --- a/data/external_resources.txt +++ b/data/external_resources.txt @@ -1,5 +1,5 @@ -World.mwm 35670693 -WorldCoasts.mwm 4796912 +World.mwm 35774063 +WorldCoasts.mwm 4796038 00_NotoNaskhArabic-Regular.ttf 149192 00_NotoSansThai-Regular.ttf 21952 01_dejavusans.ttf 757076 diff --git a/data/faq.html b/data/faq.html index e2a7bc27e9..ee76825ad0 100644 --- a/data/faq.html +++ b/data/faq.html @@ -59,25 +59,25 @@ diff --git a/data/strings/strings.txt b/data/strings/strings.txt index 591ff382db..9d1c6a1f4c 100644 --- a/data/strings/strings.txt +++ b/data/strings/strings.txt @@ -39,7 +39,7 @@ [cancel] comment = Button text (should be short) - tags = android,ios + tags = android, ios en = Cancel ar = إلغاء be = Адмяніць @@ -113,7 +113,7 @@ [delete] comment = Button which deletes downloaded country - tags = android,ios + tags = android, ios en = Delete ar = حذف be = Выдаліць @@ -149,7 +149,7 @@ zh-Hant = 刪除 [download_maps] - tags = android,ios + tags = android, ios en = Download Maps ar = تنزيل الخرائط be = Спампаваць мапы @@ -165,7 +165,7 @@ he = הורד קבצי מפות hu = Térképek letöltése id = Unduh Peta - it = Scarica mappe + it = Scarica le mappe ja = マップをダウンロード ko = 지도 다운로드받기 nb = Last ned kart @@ -202,7 +202,7 @@ he = הורדת הקובץ נכשלה. לחץ שוב לניסיון נוסף hu = Letöltés sikertelen. Kérjük próbálja újra! id = Pengunduhan gagal, sentuh untuk mencoba sekali lagi - it = Download fallito. Riprova. + it = Download fallito, tocca di nuovo per un altro tentativo ja = ダウンロードが失敗しました。もう一度試すには画面をタッチしてください。 ko = 다운로드에 실패하였습니다. 다시 두드려 시도하여 주십시요. nb = Nedlastingen mislyktes – trykk på nytt for å prøve en gang til @@ -210,7 +210,7 @@ pl = Nie udało się pobrać. Proszę nacisnąć, aby spróbować ponownie. pt = O descarregamento falhou, toque novamente para tentar de novo. pt-BR = O baixar falhou, toque para tentar de novo. - ro = Descărcarea a eșuat. Încearcă din nou. + ro = Descărcarea a eșuat. Apasă pentru a încerca din nou. ru = Ошибка загрузки. Нажмите, чтобы повторить попытку sk = Sťahovanie zlyhalo, skúste to znova. sv = Nedladdningen misslyckades, tryck för att försöka igen @@ -223,7 +223,7 @@ [downloading] comment = Settings/Downloader - info for country which started downloading - tags = android,ios + tags = android, ios en = Downloading… ar = جاري التنزيل… be = Спампоўваецца… @@ -260,7 +260,7 @@ [kilometres] comment = Choose measurement on first launch alert - choose metric system button - tags = android,ios + tags = android, ios en = Kilometers en-GB = Kilometres ar = كيلومتر @@ -335,7 +335,7 @@ [maps] comment = View and button titles for accessibility - tags = android,ios + tags = android, ios en = Maps ar = الخرائط be = Мапы @@ -400,7 +400,7 @@ [miles] comment = Choose measurement on first launch alert - choose imperial system button - tags = android,ios + tags = android, ios en = Miles ar = ميل be = Мілі @@ -437,7 +437,7 @@ [core_my_position] comment = View and button titles for accessibility - tags = android,ios + tags = android, ios en = My Position ar = موقعي be = Маё месцазнаходжанне @@ -474,7 +474,7 @@ [later] comment = Update maps later/Buy pro version later button text - tags = android,ios + tags = android, ios en = Later ar = لاحقا be = Потым @@ -497,7 +497,7 @@ pl = Później pt = Mais tarde pt-BR = Mais tarde - ro = Mai tîrziu + ro = Mai târziu ru = Не сейчас sk = Neskôr sv = Senare @@ -510,7 +510,7 @@ [search] comment = View and button titles for accessibility - tags = android,ios + tags = android, ios en = Search ar = البحث be = Шукаць @@ -562,7 +562,7 @@ he = חפש במפה hu = Keresés a térképen id = Cari Peta - it = Cerca mappa + it = Cerca sulla mappa ja = マップを検索 ko = 지도 검색하기 nb = Søk kart @@ -570,7 +570,7 @@ pl = Wyszukaj mapy pt = Pesquisar mapa pt-BR = Procurar mapa - ro = Caută harta + ro = Caută pe hartă ru = Поиск на карте sk = Prehľadať mapu sv = Sök karta @@ -644,12 +644,12 @@ pl = Usługi lokalizacji są aktualnie wyłączone dla tego urządzenia lub aplikacji. Proszę włączyć je w ustawieniach. pt = Atualmente tem todos os serviços de localização para este dispositivo ou aplicação desativados. Por favor ative-os nas definições do sistema. pt-BR = Atualmente todos os Serviços de Localização para este dispositivo ou aplicação estão desativados. Por favor ative-os em Configurações. - ro = În prezent, toate serviciile de localizare pentru acest aparat sau aplicație sînt dezactivate. Dacă vrei, activează-le. + ro = În prezent, toate serviciile de localizare pentru acest aparat sau aplicație sînt dezactivate. Te rugăm să le activezi în Setări. ru = Геолокация выключена в настройках устройства. Пожалуйста, включите её для удобного использования программы. sk = Aktuálne máte všetky možnosti pre určovanie polohy vypnuté. Prosím, povoľte ich v Nastaveniach. sv = Du har inaktiverat alla platstjänster för denna enhet eller program. Vänligen aktivera dem i Inställningar. th = ในปัจจุบันนี้มีการปิดการใช้งานการบริการตำแหน่งที่ตั้งสำหรับอุปกรณ์หรือแอปพลิเคชันนี้ โปรดเปิดใช้งานในการตั้งค่า - tr = Şu anda bu cihaz veya uygulama için tüm Konum Hizmetleri devre dışı bırakılmış. Lütfen bunu ayarlardan etkinleştirin. + tr = Şu anda bu cihaz için tüm Yer Hizmetleri veya uygulama devre dışı bırakılmış. Lütfen Ayarlar bölümünden etkinleştirin. uk = Геолокація вимкнена в налаштуваннях пристрою. Будь ласка, увімкніть її для зручного використання програми. vi = Bạn hiện đang tắt tất cả Dịch vụ Định vị cho thiết bị hoặc ứng dụng này. Bạn vui lòng bật lại chúng trong Thiết lập. zh-Hans = 您目前有此设备的所有位置服务或应用已禁用。请在设置中启用它们。 @@ -657,7 +657,7 @@ [zoom_to_country] comment = View and button titles for accessibility - tags = android,ios + tags = android, ios en = Show on the map ar = عرض على الخريطة be = Паказаць на мапе @@ -730,7 +730,7 @@ [country_status_download_failed] comment = Message to display at the center of the screen when the country download has failed - tags = android,ios + tags = android, ios en = Download has failed ar = فشلت عملية تنزيل be = Спампоўка не атрымалася @@ -791,7 +791,7 @@ pl = Spróbuj ponownie pt = Tentar novamente pt-BR = Tentar novamente - ro = Mai încearcă + ro = Încearcă din nou ru = Попробуйте еще раз sk = Skúsiť znova sv = Försök igen @@ -868,14 +868,14 @@ sk = Nastavenie pripojenia sv = Anslutningsinställningar th = การตั้งค่าการเชื่อมต่อ - tr = Konum Ayarları + tr = Bağlantı Ayarları uk = Налаштування підключення vi = Thiết lập Kết nối zh-Hans = 连接设置 zh-Hant = 連線設定 [close] - tags = android,ios + tags = android, ios en = Close ar = اغلاق be = Зачыніць @@ -947,7 +947,7 @@ zh-Hant = 需要 OpenGL 硬體加速功能的支援。但很不幸的,您的裝置並不支援此功能! [download] - tags = android,ios + tags = android, ios en = Download ar = تنزيل be = Спампаваць @@ -1010,7 +1010,7 @@ sk = Prosím, odpojte USB kábel alebo vložte pamäťovú kartu pre použitie s Organic Maps sv = Vänligen koppla ifrån USB-kabeln eller sätt in ett minneskort för att använda Organic Maps th = โปรดยกเลิกการเชื่อมต่อสาย USB หรือใส่การ์ดหน่วยความจำเพื่อใช้ Organic Maps - tr = Organic Maps’i kullanabilmeniz için lütfen USB kablosunun bağlantısını kesin veya hafıza kartı takın + tr = Organic Maps’yi kullanabilmeniz için lütfen USB kablosunun bağlantısını kesin veya hafıza kartı takın uk = Вимкніть USB кабель або вставте SD-карту vi = Bạn vui lòng tháo cáp USB hoặc lắp thẻ nhớ vào để sử dụng Organic Maps zh-Hans = 请断开 USB 线或插入存储卡以使用 Organic Maps @@ -1113,7 +1113,7 @@ pl = Przed rozpoczęciem prosimy o pobranie ogólnej mapy świata na urządzenie.\nWymaga to %@ danych. pt = Antes de começar, é recomendável descarregar o mapa mundial geral para o seu dispositivo.\nÉ necessário %@ de espaço disponível. pt-BR = Antes de começar, vamos baixar um mapa mundial geral para o seu dispositivo.\n%@ de memória serão utilizados. - ro = Înainte de a începe, trebuie descărcată harta generală a lumii în aparatul tău.\nSe vor descărca %@. + ro = Înainte de a începe, trebuie descărcată harta generală a lumii în aparatul tău.\nAre nevoie de %@ de date. ru = Перед началом работы разрешите нам загрузить общую карту мира на ваше устройство.\nЭто потребует %@ данных. sk = Skôr ako začnete, bude treba stiahnuť základnú mapu sveta.\nZaberie to %@. sv = Innan du startar, låt oss ladda ner den generella världskartan på din enhet.\nDen behöver %@ data. @@ -1185,7 +1185,7 @@ pl = Pobieranie %@. Można teraz\nprzejść do mapy. pt = A descarregar %@. Agora pode\nver o mapa. pt-BR = Baixando %@. Você pode\ncontinuar para o mapa agora. - ro = Se descarcă %@. Acum poți\ntrece la hartă. + ro = Se descarcă %@. Poți\ntrece la hartă. ru = Пока загружается %@,\nвы можете пользоваться картой. sk = Sťahovanie %@. Teraz môžete\nprejsť na mapu. sv = Laddar ner %@. Du kan nu\n fortsätta till kartan. @@ -1307,7 +1307,7 @@ [continue_download] comment = REMOVE THIS STRING AFTER REFACTORING - tags = android,ios + tags = android, ios en = Continue ar = استمرار be = Працягнуць @@ -1381,10 +1381,10 @@ [add_new_set] comment = "Add new bookmark list" dialog title - tags = android,ios + tags = android, ios en = Add New List ar = إضافة مجموعة جديدة - be = Дадаць новы спіс + be = Дадаць новую групу bg = Добавяне на нова група cs = Přidat novou skupinu záložek da = Tilføj nyt sæt @@ -1397,7 +1397,7 @@ he = הוסף קבוצה חדשה hu = Új csoport létrehozása id = Tambahkan Set baru - it = Aggiungi nuovo elenco + it = Aggiungi un nuovo Set ja = 新しいセットを作成 ko = 새로운 세트 추가 nb = Legg til nytt sett @@ -1405,20 +1405,20 @@ pl = Dodaj nowy zestaw pt = Adicionar conjunto novo pt-BR = Adicionar novo conjunto - ro = Adaugă o listă nouă - ru = Добавить список + ro = Adăugare la „Marcaje” + ru = Добавить группу sk = Pridať novú skupinu záložiek sv = Lägg till ny samling th = เพิ่มชุดใหม่ tr = Yeni Ayar ekle - uk = Додати список + uk = Додати групу vi = Thêm Bộ Mới zh-Hans = 添加新的集合 zh-Hant = 新增收藏夾 [bookmark_color] comment = Bookmark Color dialog title - tags = android,ios + tags = android, ios en = Bookmark Color en-GB = Bookmark Colour ar = لون الإشارة المرجعية @@ -1435,7 +1435,7 @@ he = צבע רשימת האתרים hu = Könyvjelző színe id = Warna Penanda - it = Colore Luogo preferito + it = Colore del Segnalibro ja = ブックマーク表示色 ko = 색상 즐겨찾기에 추가 nb = Bokmerk farge @@ -1443,7 +1443,7 @@ pl = Kolor zakładki pt = Cor do favorito pt-BR = Cor do favorito - ro = Culoare Loc preferat + ro = Culoare marcaj ru = Цвет метки sk = Farba záložky sv = Bokmärkesfärg @@ -1456,10 +1456,10 @@ [bookmark_set_name] comment = Add Bookmark list dialog - hint when the list name is empty - tags = android,ios + tags = android, ios en = Bookmark List Name ar = اسم مجموعة الإشارات المرجعية - be = Назва спісу закладак + be = Назва групы закладак bg = Име на група cs = Název záložky da = Indstil bogmærkenavn @@ -1471,7 +1471,7 @@ he = שם רשימת האתרים hu = Könyvjelzőcsoport neve id = Nama Set Penanda - it = Nome dell'elenco + it = Seleziona un nome del segnalibro ja = ブックマークセット名称 ko = 집합 이름을 즐겨찾기에 추가 nb = Bokmerk settnavn @@ -1479,13 +1479,13 @@ pl = Nazwa zestawu zakładek pt = Nome do conjunto de favoritos pt-BR = Nome do conjunto de favoritos - ro = Dă un nume listei - ru = Название списка меток + ro = Nume set marcaje + ru = Название группы sk = Meno záložky sv = Bokmärkessamlingens namn th = ชื่อของชุดบุ๊กมาร์ก tr = Yer İmi Listesi Adı - uk = Назва списка мiток + uk = Назва групи vi = Đánh dấu Tên Bộ zh-Hans = 书签集名称 zh-Hant = 收藏夾名稱 @@ -1495,7 +1495,7 @@ tags = ios en = Bookmark Lists ar = مجموعات الإشارات المرجعية - be = Спісы закладак + be = Групы закладак cs = Skupiny záložek da = Bogmærk sæt de = Lesezeichenmappe @@ -1506,7 +1506,7 @@ he = רשימות אתרים hu = Könyvjelzőcsoportok id = Set Penanda - it = Elenchi di luoghi preferiti + it = Seleziona un segnalibro ja = ブックマークセット ko = 세트를 즐겨찾기에 추가 nb = Bokmerk sett @@ -1514,20 +1514,20 @@ pl = Zestawy zakładek pt = Conjuntos de favoritos pt-BR = Conjuntos de favoritos - ro = Liste cu locuri preferate - ru = Списки меток + ro = Seturi marcaje + ru = Группы меток sk = Skupiny záložiek sv = Bokmärkessamlingar th = ชุดของบุ๊กมาร์ก tr = Yer İmi Listeleri - uk = Списки мiток + uk = Групи мiток vi = Đánh dấu Bộ zh-Hans = 书签集 zh-Hant = 收藏夾 [bookmarks] comment = "Bookmarks" dialog title - tags = android,ios + tags = android, ios en = Bookmarks ar = الإشارات المرجعية be = Закладкі @@ -1543,7 +1543,7 @@ he = רשימות אתרים hu = Könyvjelzők id = Penanda - it = Luoghi preferiti + it = Segnalibri ja = ブックマーク ko = 북마크 nb = Bokmerker @@ -1551,7 +1551,7 @@ pl = Zakładki pt = Favoritos pt-BR = Favoritos - ro = Locuri preferate + ro = Marcaje ru = Метки sk = Záložky sv = Bokmärken @@ -1564,7 +1564,7 @@ [core_my_places] comment = Default bookmark list name - tags = android,ios + tags = android, ios en = My Places ar = أماكني be = Мае месцы @@ -1617,7 +1617,6 @@ he = שם hu = Név id = Nama - it = Nome ja = 名称 ko = 이름 nb = Navn @@ -1638,7 +1637,7 @@ [address] comment = Editor title above street and house number - tags = android,ios + tags = android, ios en = Address ar = العنوان be = Адрас @@ -1662,7 +1661,7 @@ pl = Adres pt = Endereço pt-BR = Endereço - ro = Adresa + ro = Adresă ru = Адрес sk = Adresa sv = Adress @@ -1674,45 +1673,45 @@ zh-Hant = 地址 [list] - comment = Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. + comment = Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. tags = android en = List - ar = قائمة - be = Спіс - bg = Списък - cs = Seznam - da = Liste - de = Liste - el = Λίστα - es = Lista - fa = لیست - fi = Luettelo - fr = Liste + ar = المجموعة + be = Група + bg = Група + cs = Skupina + da = Sæt + de = Gruppe + el = Σύνολο + es = Grupo + fa = مجموعه + fi = Aseta + fr = Groupe he = קבוצה - hu = Lista - id = Daftar - it = Elenco - ja = 一覧 - ko = 목록 - nb = Liste - nl = Lijst - pl = Lista - pt = Lista - pt-BR = Lista - ro = Listă - ru = Список - sk = Zoznam - sv = Lista - th = รายการ + hu = Csoport + id = Set + it = Seleziona + ja = セット + ko = 집합 + nb = Sett + nl = Groep + pl = Zestaw + pt = Conjunto + pt-BR = Conjunto + ro = Set + ru = Группа + sk = Skupina + sv = Samling + th = ชุด tr = Liste - uk = Список - vi = Danh sách - zh-Hans = 列表 - zh-Hant = 清單 + uk = Група + vi = Đặt + zh-Hans = 集合 + zh-Hant = 收藏夾 [settings] comment = Settings button in system menu - tags = android,ios + tags = android, ios en = Settings ar = الإعدادات be = Налады @@ -1736,7 +1735,7 @@ pl = Ustawienia pt = Configurações pt-BR = Configurações - ro = Preferințe + ro = Setări ru = Настройки sk = Nastavenia sv = Inställningar @@ -1772,7 +1771,7 @@ pl = Zapisz mapy do pt = Guardar mapas em pt-BR = Salvar mapas para - ro = Salvează hărțile în + ro = Salvare hărți în ru = Сохранять карты в sk = Uložiť mapy do sv = Spara kartor i @@ -1810,7 +1809,7 @@ pl = Określa położenie przechowywania pobranych map pt = Selecione o local onde os mapas devem ser descarregados pt-BR = Selecione o local para onde os mapas devem ser baixados - ro = Alege locul în care vrei să fie descărcate hărțile + ro = Selectați locul în care doriți să fie descărcate hărțile. ru = Выберите место, где будут храниться загруженные карты sk = Vyberte miesto, kam by mali byť mapy sťahované sv = Välj en plats dit kartor ska laddas ner @@ -1847,7 +1846,7 @@ pl = Przenieść mapy? pt = Mover mapas? pt-BR = Mover mapas? - ro = Muți hărțile? + ro = Mutare hărți? ru = Переместить карты? sk = Presunúť mapy? sv = Flytta kartor? @@ -1876,7 +1875,7 @@ he = פעולה זו יכולה להמשך מספר דקות.\nהמתן בבקשה… hu = Ez több percig is eltarthat.\nKérjük várjon… id = Ini akan memakan waktu beberapa menit.\nMohon tunggu… - it = Questo può richiedere diversi minuti.\nAttendere prego… + it = Questo può richiedere diversi minuti.\ncortesemente attendi… ja = 数分かかる場合があります。\nしばらくお待ち下さい… ko = 이 작업은 수 분 소요될 수 있습니다.\n잠시 기다리세요… nb = Dette kan ta flere minutter. Vent et øyeblikk … @@ -1884,7 +1883,7 @@ pl = To może zająć kilka minut.\nProszę czekać… pt = Isto pode demorar alguns minutos.\nPor favor aguarde… pt-BR = Isto pode demorar alguns minutos.\nPor favor aguarde… - ro = Poate dura cîteva minute.\nAșteaptă… + ro = Aceasta poate dura câteva minute.\nVă rugăm să așteptați… ru = Это может занять несколько минут.\nПожалуйста, подождите… sk = Táto akcia môže trvať niekoľko minút.\nProsím čakajte… sv = Detta kan ta flera minuter.\nVänligen vänta… @@ -1897,7 +1896,7 @@ [measurement_units] comment = Measurement units title in settings activity - tags = android,ios + tags = android, ios en = Measurement units ar = وحدات القياس. be = Адзінкі вымярэння @@ -1959,7 +1958,7 @@ pl = Wybiera pomiędzy milami, a kilometrami pt = Escolha entre milhas e quilómetros pt-BR = Escolha entre milhas e quilômetros - ro = Alege între mile și kilometri + ro = Alegeți între mile și kilometri ru = Использовать километры или мили sk = Vyberte si míle alebo kilometre sv = Välj mellan mil och kilometer @@ -1970,11 +1969,9 @@ zh-Hans = 选择英里或公里 zh-Hant = 請選擇公里或英哩 -[[Search categories]] - [eat] - comment = Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! - tags = android,ios + comment = Search category for cafes, bars, restaurants + tags = android, ios en = Where to eat ar = مكان لتناول الطعام be = Дзе паесці @@ -1997,7 +1994,7 @@ pl = Gdzie zjeść pt = Onde comer pt-BR = Onde comer - ro = Unde să mănînci + ro = Unde să mănânci ru = Где поесть sk = Kde sa najesť sv = Var att äta @@ -2010,8 +2007,8 @@ zh-Hant = 在哪兒吃 [food] - comment = Search category for grocery stores; any changes should be duplicated in categories.txt @food! - tags = android,ios + comment = Search category for grocery stores + tags = android, ios en = Groceries ar = المشتريات be = Прадукты @@ -2034,7 +2031,7 @@ pl = Produkty pt = Lojas alimentares pt-BR = Mercados - ro = Alimentare + ro = Produse ru = Продукты sk = Potraviny sv = Produkter @@ -2047,8 +2044,8 @@ zh-Hant = 食物 [transport] - comment = Search category for public transport; any changes should be duplicated in categories.txt @transport! - tags = android,ios + comment = Search category + tags = ios en = Transport ar = نقل be = Транспарт @@ -2064,7 +2061,7 @@ he = תחבורה hu = Közlekedés id = Transportasi - it = Trasporto + it = Transporto ja = 交通機関 ko = 수송 nb = Transport @@ -2084,8 +2081,8 @@ zh-Hant = 運輸 [fuel] - comment = Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! - tags = android,ios + comment = Search category + tags = android, ios en = Gas en-GB = Petrol ar = غاز @@ -2102,7 +2099,7 @@ he = גז hu = Benzinkút id = Bahan bakar - it = Benzinaio + it = Stazione di rifornimento ja = ガソリンスタンド ko = 연료 nb = Drivstoff @@ -2110,20 +2107,20 @@ pl = Stacja benzynowa pt = Combustível pt-BR = Combustível - ro = Benzinărie + ro = Benzină ru = Заправка sk = Čerpacia stanica sv = Bensin th = ก๊าซ - tr = Benzinlik + tr = Yakıt uk = Заправка vi = Khí đốt zh-Hans = 汽油 zh-Hant = 加油站 [parking] - comment = Search category for parking lots; any changes should be duplicated in categories.txt @parking! - tags = android,ios + comment = Search category + tags = android, ios en = Parking ar = الاصطفاف be = Паркоўка @@ -2159,8 +2156,8 @@ zh-Hant = 停車場 [shopping] - comment = Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! - tags = android,ios + comment = Search category for clothes/shoes/gifts/jewellery/sport shops + tags = ios en = Shopping ar = التسوق be = Закупы @@ -2175,7 +2172,7 @@ fr = Shopping hu = Bevásárlás id = Berbelanja - it = Negozi + it = Shopping ja = ショッピング ko = 쇼핑 nb = Shopping @@ -2183,7 +2180,7 @@ pl = Shopping pt = Compras pt-BR = Compras - ro = Magazine + ro = Cumpărături ru = Шоппинг sk = Nakupovanie sv = Shopping @@ -2196,8 +2193,8 @@ zh-Hant = 購物 [hotel] - comment = Search category for places to stay; any changes should be duplicated in categories.txt @hotel! - tags = android,ios + comment = Search category + tags = ios en = Hotel ar = فندق be = Гатэль @@ -2213,7 +2210,7 @@ he = מלון hu = Szálloda id = Hotel - it = Albergo + it = Hôtel ja = ホテル ko = 호텔 nb = Hotell @@ -2233,8 +2230,8 @@ zh-Hant = 旅館 [tourism] - comment = Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! - tags = android,ios + comment = Search category + tags = ios en = Sights ar = سياحة be = Славутасці @@ -2250,7 +2247,7 @@ he = נקודות עיניין hu = Látnivaló id = Pemandangan - it = Luoghi turistici + it = Turistico ja = 観光 ko = 관광 nb = Severdigheter @@ -2270,8 +2267,8 @@ zh-Hant = 旅遊景點 [entertainment] - comment = Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! - tags = android,ios + comment = Search category + tags = android, ios en = Entertainment ar = التسلية be = Забавы @@ -2307,8 +2304,8 @@ zh-Hant = 娛樂 [atm] - comment = Search category for ATMs; any changes should be duplicated in categories.txt @atm! - tags = android,ios + comment = Search category + tags = android, ios en = ATM ar = ماكينة الصراف الآلي be = Банкамат @@ -2344,8 +2341,8 @@ zh-Hant = 自動櫃員機 [nightlife] - comment = Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! - tags = android,ios + comment = Search category for nightclubs/bars + tags = ios en = Nightlife ar = أنشطة ترفيه ليلية be = Начное жыццё @@ -2368,7 +2365,7 @@ pl = Życie nocne pt = Vida noturna pt-BR = Vida Noturna - ro = Viață nocturnă + ro = Viața nocturnă ru = Ночная жизнь sk = Nočný život sv = Nattliv @@ -2381,8 +2378,8 @@ zh-Hant = 夜生活 [children] - comment = Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! - tags = android,ios + comment = Search category for water park/disneyland/playground/toys store + tags = ios en = Family holiday ar = عطلة عائلية be = Сямейны адпачынак @@ -2397,7 +2394,7 @@ fr = Vacances en famille hu = Pihenés a gyerekekkel id = Liburan keluarga - it = Tempo libero + it = Vacanze bambini ja = 家族の休日 ko = 가족 기념일 nb = Familieferie @@ -2405,7 +2402,7 @@ pl = Wypoczynek z dziećmi pt = Passeios com crianças pt-BR = Feriados em família - ro = Timp liber + ro = Odihnă cu copii ru = Отдых с детьми sk = Rodinná dovolenka sv = Semester med barn @@ -2418,8 +2415,8 @@ zh-Hant = 親子休閒 [bank] - comment = Search category for banks; any changes should be duplicated in categories.txt @bank! - tags = android,ios + comment = Search category + tags = ios en = Bank ar = بنك be = Банк @@ -2455,8 +2452,8 @@ zh-Hant = 銀行 [pharmacy] - comment = Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! - tags = android,ios + comment = Search category + tags = ios en = Pharmacy ar = صيدلية be = Аптэка @@ -2492,8 +2489,8 @@ zh-Hant = 藥局 [hospital] - comment = Search category for hospitals; any changes should be duplicated in categories.txt @hospital! - tags = android,ios + comment = Search category + tags = ios en = Hospital ar = مستشفى be = Лякарня @@ -2530,8 +2527,8 @@ zh-Hant = 醫院 [toilet] - comment = Search category for toilets; any changes should be duplicated in categories.txt @toilet! - tags = android,ios + comment = Search category + tags = ios en = Toilet ar = حمام be = Прыбіральня @@ -2567,8 +2564,8 @@ zh-Hant = 廁所 [post] - comment = Search category for post offices; any changes should be duplicated in categories.txt @post! - tags = android,ios + comment = Search category + tags = ios en = Post ar = بريد be = Пошта @@ -2604,8 +2601,8 @@ zh-Hant = 郵局 [police] - comment = Search category for police; any changes should be duplicated in categories.txt @police! - tags = android,ios + comment = Search category + tags = ios en = Police ar = شرطة be = Паліцыя @@ -2629,7 +2626,7 @@ pl = Policja pt = Polícia pt-BR = Polícia - ro = Poliția + ro = Poliție ru = Полиция sk = Polícia sv = Polis @@ -2658,7 +2655,7 @@ he = הערות hu = Jegyzetek id = Catatan - it = Informazioni + it = Note ja = メモ ko = 메모 nb = Merknader @@ -2666,7 +2663,7 @@ pl = Notatki pt = Notas pt-BR = Notas - ro = Detalii + ro = Note ru = Примечание sk = Poznámky sv = Anteckningar @@ -2694,7 +2691,7 @@ he = משותפתOrganic Maps רשימת אתרי hu = Egy Organic Maps könyvjelzőt osztottak meg Önnel id = Bagikan penanda Organic Maps - it = Questi sono i miei luoghi preferiti + it = Il segnalibri Organic Maps è stato condiviso con te ja = Organic Mapsの位置情報シェア ko = 귀하와 공유된 Organic Maps 즐겨찾기 nb = Delte Organic Maps-bokmerker @@ -2702,7 +2699,7 @@ pl = Udostępnione zakładki z Organic Maps pt = Os favoritos do Organic Maps foram partilhados consigo pt-BR = Favoritos do Organic Maps foram compartilhados com você - ro = Îți trimit locurile mele preferate + ro = Marcaje Organic Maps partajate ru = С вами поделились метками Organic Maps sk = Zdielané záložky Organic Maps sv = Organic Maps bokmärken har delats med dig @@ -2714,24 +2711,22 @@ zh-Hant = 已分享 Organic Maps 書籤 [share_bookmarks_email_body] - tags = android,ios + tags = android, ios en = Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps! be = Вітаю!\n\nУ далучаным файле мае закладкі з дататка Organic Maps. Калі ласка, адчыніце іх калі ў вас усталяваны Organic Maps. Калі не, спампуйце дадатак для вашай прылады iOS альбо Andriod па спасылцы: https://omaps.app/get?kmz\n\nПрыемных падарожжаў з Organic Maps! es = Hola!\n\Adjunto mis marcadores de la aplicación Organic Maps. Por favor, ábrelos si tienes instalado Organic Maps. O, si no lo tienes, descarga la aplicación para tu dispositivo iOS o Android siguiendo este link: https://omaps.app/get?kmz\n¡Disfruta viajando con Organic Maps! - fr = Bonjour !\n\nVous trouverez ci-joint mes signets de l'appli Organic Maps. Veuillez les ouvrir si vous avez installé Organic Maps. Si vous ne l'avez pas, téléchargez l'application pour votre appareil iOS ou Android en suivant ce lien : https://omaps.app/get?kmz\n\nBon voyage avec Organic Maps! - it = Ciao!\n\nIn allegato ci sono i miei luoghi preferiti. Aprili se hai installato Organic Maps. Oppure, se non ce l'hai, scarica l'app per iOS o Android seguendo questo link: https://omaps.app/\n\nDivertiti a viaggiare con Organic Maps! + fr = Bonjour !\n\nVous trouverez ci-joint mes signets de l'appli Organic Maps. Veuillez les ouvrir si vous avez installé Organic Maps. Si vous ne l'avez pas, téléchargez l'application pour votre appareil iOS ou Android en suivant ce lien : https://omaps.app/get?kmz\n\nBon voyage avec Organic Maps ! nl = Hallo!\n\nBijgesloten zijn mijn bladwijzers uit de Organic Maps app. Open ze als je Organic Maps geïnstalleerd hebt. Of, als je dat niet hebt, download de app voor je iOS- of Android-apparaat door deze link te volgen: https://omaps.app/get?kmz\n\nGeniet van het reizen met Organic Maps! pl = Cześć!\n\nZałączam moje zakładki z aplikacji Organic Maps. Proszę otwórz je jeżeli masz zaintalowane Organic Maps. Lub, jeżeli nie masz, pobierz aplikację na swoje urządzenie iOS/Android za pomocą tego linka: https://omaps.app/get?kmz\n\nMiłego podróżowania z Organic Maps! pt = Olá!\n\nSegue em anexo os meus favoritos da aplicação Organic Maps. Por favor abra-os se tiver o Organic Maps instalado. Caso não tenha, descarregue a aplicação para o seu dispositivo iOS ou Android com a hiperligação https://omaps.app/get?kmz\n\nDivirta-se a viajar com o Organic Maps! pt-BR = Olá!\n\nSegue em anexo meus favoritos do app Organic Maps. Por favor os abra se você tiver o Organic Maps instalado. Caso não tenha, baixe o app para o seu dispositivo iOS ou Android com o link https://omaps.app/get?kmz\n\nDisfrute viajar com o Organic Maps! - ro = Bună!\n\nȚi-am atașat locurile mele preferate din aplicația Organic Maps. Deschide-le dacă ai instalat Organic Maps. Dacă nu, descarcă aplicația pentru iOS sau Android de aici: https://organicmaps.app/ ru = Здравствуйте!\n\nВ прикрепленном файле мои метки из офлайновых карт Organic Maps. Для того чтобы открыть этот файл, вам потребуется приложение Organic Maps, которое можно установить по ссылке: https://omaps.app/get?kmz\n\nСпасибо! tr = Merhaba!\n\nEktekiler benim Organic Maps yer imlerim. Eğer Organic Maps'i yüklediyseniz lütfen ektekileri açın. Eğer yüklemediyseniz, bu bağlantıyı takip ederek iOS ve Android cihazınız için uygulamayı yükleyebilirsiniz: https://omaps.app/get?kmz\n\nOrganic Maps ile seyahat etmenin keyfini çıkarın! zh-Hant = 你好!\n\n附件為 Organic Maps app 的書籤,如果你有安裝 Organic Maps 則直接開啟,如果沒有的話,請先在 iOS 或是 Android 裝置,從下面連結下載:https://omaps.app/get?kmz\n\n旅行時用上 Organic Maps! [load_kmz_title] comment = message title of loading file - tags = android,ios + tags = android, ios en = Loading Bookmarks ar = تحميل الإشارات المرجعية be = Загрузка закладак @@ -2747,7 +2742,7 @@ he = טוען רשימות אתרים hu = Könyvjelzők letöltése id = Memuat Penanda - it = Caricamento luoghi preferiti + it = Caricamento segnalibri in corso ja = ブックマークの読み込み中 ko = 즐겨찾기 로드 nb = Laster inn bokmerker @@ -2755,7 +2750,7 @@ pl = Wczytywanie zakładek pt = A carregar favoritos pt-BR = Carregando favoritos - ro = Se încarcă locurile preferate + ro = Se încarcă marcajele ru = Загрузка меток sk = Načítavanie záložiek sv = Läser in bokmärken @@ -2768,7 +2763,7 @@ [load_kmz_successful] comment = Kmz file successful loading - tags = android,ios + tags = android, ios en = Bookmarks loaded successfully! You can find them on the map or on the Bookmarks Manager screen. ar = تم تحميل الإشارات المرجعية بنجاح! يمكنك العثور عليها على الخريطة أو على شاشة إدارة الإشارات المرجعية. be = Закладкі паспяхова загружаны! Вы можаце іх убачыць на мапе альбо ў захаваных закладках. @@ -2784,7 +2779,7 @@ he = רשימת האתרים הועלתה בהצלחה! תוכל למצוא אותה על המפה או במסך נהול רשימות האתרים. hu = Könyvjelzők letöltése sikeres! Megtalálja őket a térképen vagy a Könyvjelzők kezelése menüben. id = Penanda berhasil dimuat! Anda dapat menemukannya pada peta atau pada layar Pengelola Penanda Lokasi. - it = Luoghi preferiti caricati con successo! Puoi trovarli sulla mappa o nella schermata "Gestione Luoghi preferiti". + it = Segnalibri caricati con successo! Puoi trovare i segnalibri direttamente sulla mappa, oppure aprendo la schermata dedicata alla Gestione dei segnalibri. ja = ブックマークが読み込まれました! ブックマークはマップ上、またはブックマーク管理画面に表示されます。 ko = 즐겨찾기가 성공적으로 로드되었습니다! 지도 또는 즐겨찾기 관리자 화면에서 찾으실 수 있습니다. nb = Bokmerkene ble lastet inn! Du finner dem på kartet eller på skjermen «Bokmerkeadministrasjon». @@ -2792,7 +2787,7 @@ pl = Wczytano zakładki! Można odnaleźć je na mapie lub na ekranie menedżera zakładek. pt = Os favoritos foram carregados com sucesso! Pode encontrá-los no mapa ou no ecrã de gestão dos favoritos. pt-BR = Favoritos carregados com sucesso! Você pode encontrá-los no mapa ou na tela de gestão dos favoritos. - ro = Locuri preferate încărcate cu succes! Le poți găsi pe hartă sau în „Gestionare Locuri preferate”. + ro = Marcaje încărcate cu succes! Le puteți găsi pe hartă sau pe ecranul „Gestionare marcaje”. ru = Метки успешно загружены! Вы можете увидеть их на карте или в ваших сохраненных метках. sk = Záložky boli úspešne načítané! Môžete ich nájst na mape alebo na obrazovke Správca záložiek. sv = Bokmärkena lästes in! Du kan hitta dem på kartan eller i Bokmärkeshanteraren. @@ -2805,7 +2800,7 @@ [load_kmz_failed] comment = Kml file loading failed - tags = android,ios + tags = android, ios en = Bookmarks upload failed. The file may be corrupted or defective. ar = فشلت عملية تحميل الإشارات المرجعية. قد يكون الملف تالف. be = Не атрамалася запампаваць закладкі. Файл можа быць пашкоджаны альбо дэфектыўны. @@ -2821,7 +2816,7 @@ he = טעינת רשימת האתרים נכשלה. יתכן שהקובץ פגום. hu = Könyvjelzők feltöltése sikertelen. A fájl sérült lehet. id = Gagal mengunggah penanda lokasi. Berkas mungkin rusak. - it = Caricamento dei luoghi preferiti non riuscito. Il file potrebbe essere corrotto o difettoso. + it = Caricamento dei segnalibri non riuscito. Il file potrebbe essere corrotto o difettoso. ja = ブックマークのアップロードに失敗しました。ファイルが破損していた、または問題があった可能性があります。 ko = 즐겨찾기 업로드가 실패했습니다. 파일이 훼손되었거나 결함이 있을지도 모릅니다. nb = Opplasting av bokmerker mislyktes. Filen kan være skadet eller defekt. @@ -2829,7 +2824,7 @@ pl = Nieudane wczytywanie zakładek. Plik może być uszkodzony lub posiadać defekty. pt = Surgiu uma falha ao enviar os favoritos. O ficheiro pode estar corrompido ou com defeito. pt-BR = Falha no envio dos favoritos. O arquivo pode estar corrompido ou com defeito. - ro = Încărcarea locurilor preferate a eșuat. Fișierul poate fi defect. + ro = Încărcarea marcajelor a eșuat. Fișierul poate fi corupt sau defect. ru = Файл с метками не был загружен. Возможно, файл поврежден или неисправен. sk = Načítavanie záložiek sa nepodarilo. Súbor môže byť poškodený alebo chybný. sv = Inläsningen av bokmärkena misslyckades. Filen kan vara skadad eller defekt. @@ -2842,7 +2837,7 @@ [edit] comment = resource for context menu - tags = android,ios + tags = android, ios en = Edit ar = تعديل be = Правіць @@ -2878,7 +2873,7 @@ [unknown_current_position] comment = Warning message when doing search around current position - tags = android,ios + tags = android, ios en = Your location hasn't been determined yet ar = لم يتم التعرف على موقعك بعد. be = Ваша месцазнаходжанне пакуль не вызначана @@ -2902,12 +2897,12 @@ pl = Nie określono jeszcze aktualnego położenia pt = A sua localização ainda não foi determinada pt-BR = A sua localização ainda não foi determinada - ro = Poziția ta nu a fost stabilită încă + ro = Poziția ta nu a fost stabilită încă. ru = Ваше местоположение еще не определено sk = Vaša poloha zatiaľ nebola určená sv = Din position har inte bestämts ännu th = ตำแหน่งที่ตั้งของคุณยังไม่ได้รับการกำหนด - tr = Konumunuz henüz belirlenmedi + tr = Yeriniz henüz belirlenmedi uk = Ваше місце розташування не визначено vi = Chưa xác định được vị trí của bạn zh-Hans = 您的位置尚未确定 @@ -2931,7 +2926,7 @@ he = . פעילה כרגע מצטערים, הגדרת "שמירת מפה" אינה hu = Sajnáljuk, a térképek tárolása jelenleg ki van kapcsolva. id = Maaf, pengaturan Penyimpanan Peta saat ini sedang non-aktif. - it = Le impostazioni di archiviazione delle mappe sono disabilitate. + it = Siamo spiacenti, ma le impostazioni di archiviazione delle mappe sono disabilitate. ja = 恐れ入ります、マップストレージ設定が無効になっています。 ko = 죄송합니다, 지도 스토리지 설정이 비활성화되어 있습니다. nb = Beklager, innstillingene for kartlagring er for øyeblikket deaktivert. @@ -2939,7 +2934,7 @@ pl = Przepraszamy, ustawienia pamięci mapy są aktualnie wyłączone. pt = Lamentamos, as definições do armazenamento do mapa estão atualmente desativadas. pt-BR = Lamentamos, as configurações do Map Storage estão atualmente desativadas. - ro = Opțiunile pentru stocarea hărților sînt dezactivate în acest moment. + ro = Ne pare rău. Setările pentru stocarea hărților sunt dezactivate în acest moment. ru = Извините, настройки места хранения карт сейчас недоступны. sk = Prepáčte, nastavenie uloženia máp je dočasne nedostupné. sv = Ledsen, Kartlagring är inaktiverat i inställningar @@ -2968,7 +2963,7 @@ he = הודת מפת המדינה מתבצעת כרגע. hu = Országletöltés folyamatban. id = Pengunduhan negara sedang berjalan. - it = Il download della mappa è in corso. + it = Il download della nazione è in corso. ja = ダウンロードを実行中です ko = 국가 다운로드가 지금 진행 중입니다. nb = Nedlasting av land pågår nå. @@ -2976,7 +2971,7 @@ pl = Trwa pobieranie mapy kraju. pt = O descarregamento do país está a ser feito neste momento. pt-BR = O download do país está atualmente em progresso. - ro = Harta este în curs de descărcare. + ro = Descărcarea hărților pentru țara dorită este în curs. ru = Идет процесс загрузки карт. sk = Práve prebieha sťahovanie krajiny. sv = Nedladdning av landet är startat nu. @@ -3004,7 +2999,7 @@ he = . אין ברשותך מפות לא מקוונות? הורד Organic Maps! %1$@ or %2$@ הי, בדוק את מיקומי הנוכחי ב. https://omaps.app/get הורד אותן מ: hu = Nézd meg a Organic Maps helyzetemet! %1$@ vagy %2$@ A program letöltése: https://omaps.app/get id = Hei, lihat lokasiku saat ini di Organic Maps! %1$@ atau %2$@ belum memiliki peta offline? Unduh di sini: https://omaps.app/get - it = Guarda la mia posizione in Organic Maps! %1$@ o %2$@ Non hai scaricato l'app? La puoi scaricare da qui: https://omaps.app/get + it = Vedi dove sono ora. Apri %1$@ o %2$@ ja = 私は今ここにいます。リンク: %1$@, %2$@ ko = 현재 위치를 알아 보십시오. %1$@ 또는 %2$@ 열기 nb = Hei, se posisjonen min på Organic Maps! %1$@ eller %2$@ Har du ikke offline-kart? Last dem ned her: https://omaps.app/get @@ -3012,7 +3007,7 @@ pl = Zobacz gdzie jestem. Link %1$@ lub %2$@ pt = Veja onde estou agora. Abra a hiperligação: %1$@ ou %2$@ Não tem um mapa offline instalado? Descarregue em https://omaps.app/get pt-BR = Veja onde estou agora. Abra o link: %1$@ ou %2$@ Não tem um aplicativo de mapa offline? Baixe aqui: https://omaps.app/get - ro = Poți vedea poziția mea pe harta Organic Maps! %1$@ sau %2$@ Nu ai descărcat aplicația? O poți descărca de aici: https://omaps.app/get + ro = Hei, îmi poți vedea poziția actuală pe Organic Maps! %1$@ sau %2$@ Nu ai hărțile offline? Descarcă de aici: https://omaps.app/get ru = Смотри где я сейчас. Жми %1$@ или %2$@ sk = Pozri kde som. Otvor odkaz: %1$@ alebo %2$@ sv = Hej, kolla på min nuvarande position på Organic Maps! %1$@ eller %2$@ Har du inte offline-kartor? Ladda ner här: https://omaps.app/get @@ -3025,7 +3020,7 @@ [bookmark_share_email_subject] comment = Subject for emailed bookmark - tags = android,ios + tags = android, ios en = Hey, check out my pin in Organic Maps! ar = هاي، تفقد الدبوس الخاص بي على خريطة Organic Maps! be = Гэй, глядзі маю метку на Organic Maps! @@ -3040,7 +3035,7 @@ he = הי, בדוק את הסיכה שלי במפה של Organic Maps! hu = Nézze meg a Organic Maps jelzőmet id = Hei, lihat pinku di peta Organic Maps - it = Puoi vedere il mio luogo preferito sulla mappa Organic Maps! + it = Dai uno sguardo al mio pin sulla mappa di Organic Maps ja = Organic Mapsでピン情報を確認 ko = Organic Maps 지도에서 내 핀 보기 nb = Hei, se merket mitt på Organic Maps-kartet @@ -3048,7 +3043,7 @@ pl = Obejrzyj mój znacznik na mapie w Organic Maps pt = Veja o meu marcador no mapa do Organic Maps. pt-BR = Veja o meu marcador no mapa do Organic Maps. - ro = Poți vedea locul meu preferat pe harta Organic Maps! + ro = Hei, poți vedea care este poziția mea pe harta Organic Maps! ru = Смотри мою метку на карте Organic Maps sk = Pozri na moju značku na mape Organic Maps sv = Hej, kolla på min pin på Organic Maps kartan @@ -3061,7 +3056,7 @@ [my_position_share_email_subject] comment = Subject for emailed position - tags = android,ios + tags = android, ios en = Hey, check out my current location on the Organic Maps map! ar = يا هلا، تحقق من موقعي الحالي على خريطة Organic Maps! be = Гэй, глядзі дзе я зараз на мапе Organic Maps! @@ -3076,7 +3071,7 @@ he = היי, בדקו את המיקום הנוכחי שלי במפה של Organic Maps! hu = Nézze meg a helyzetemet a Organic Maps térképen! id = Hei, lihat lokasiku saat ini di peta Organic Maps! - it = Guarda dove mi trovo attualmente sulla mappa Organic Maps! + it = Guarda dove mi trovo attualmente sulla mappa Organic Maps ja = Organic Mapsで現在地を確認 ko = Organic Maps 지도에서 제 현재 위치를 살펴 보시기 바랍니다 nb = Hei, se posisjonen min på Organic Maps-kartet! @@ -3084,7 +3079,7 @@ pl = Zobacz moją aktualną lokalizację na mapie przy użyciu Organic Maps pt = Veja a minha localização atual no mapa Organic Maps! pt-BR = Veja a minha localização atual no mapa Organic Maps! - ro = Poți vedea poziția mea pe harta Organic Maps! + ro = Hei, îmi poți vedea poziția actuală pe harta Organic Maps! ru = Посмотри на карте Organic Maps, где я сейчас нахожусь sk = Pozrite si moju aktuálnu polohu na mape Organic Maps sv = Hej, kolla på min nuvarande position på Organic Maps kartan! @@ -3120,7 +3115,7 @@ pl = Cześć,\n\nJestem teraz tutaj: %1$@. Naciśnij na ten link %2$@ lub ten %3$@, aby zobaczyć to miejsce na mapie.\n\nDziękuję. pt = Olá,\n\nEstou neste momento aqui: %1$@. Clique nesta ligação %2$@ ou nesta %3$@ para ver o local no mapa.\n\nObrigado. pt-BR = Olá,\n\nEstou aqui agora: %1$@. Clique neste link %2$@ ou neste %3$@ para ver o local no mapa.\n\nObrigado. - ro = Bună,\n\nAcum sînt aici: %1$@. Apasă pe adresa %2$@ sau pe %3$@ pentru a vedea locul pe hartă.\n\nMulțumesc. + ro = Bună,\n\nAcum sunt aici: %1$@. Apasă pe adresa %2$@ sau pe %3$@ pentru a vedea locul pe hartă.\n\nMulțumesc. ru = Привет!\n\nЯ сейчас здесь: %1$@. Чтобы увидеть это место на карте Organic Maps, открой эту ссылку %2$@ или эту %3$@\n\nСпасибо. sk = Ahoj,\n\nPráve som tu: %1$@. Stlačte jeden z týchto odkazov %2$@, %3$@ a uvidíte toto miesto na mape.\n\nVďaka sv = Hej,\n\nJag är här nu: %1$@. Klicka på denna länk %2$@ eller denna %3$@ för att se platsen på kartan.\n\nTack. @@ -3133,7 +3128,7 @@ [share] comment = Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. - tags = android,ios + tags = android, ios en = Share ar = مشاركة be = Падзяліцца @@ -3157,7 +3152,7 @@ pl = Udostępnij pt = Partilhar pt-BR = Compartilhar - ro = Trimite + ro = Partajare ru = Поделиться sk = Zdielať sv = Dela @@ -3170,7 +3165,7 @@ [email] comment = Share by email button text, also used in editor. - tags = android,ios + tags = android, ios en = Email ar = البريد الالكتروني be = Email @@ -3222,7 +3217,7 @@ he = הועתקו לזכרון זמני %1$@ hu = A vágólapra másolva: %1$@ id = Telah Disalin ke Papan Klip: %1$@ - it = Copiato in appunti: %1$@ + it = Copiato sugli Appunti: %1$@ ja = クリップボードにコピーしました: %1$@ ko = 클립보드에 복사됨: %1$@ nb = Kopiert til utklippstavlen: %1$@ @@ -3230,7 +3225,7 @@ pl = Skopiowano do schowka: %1$@ pt = Copiado para a área de transferência: %1$@ pt-BR = Copiado para a área de transferência: %1$@ - ro = Copiat în notițe: %1$@ + ro = Copiat în clipboard: %1$@ ru = Скопировано в буфер обмена: %1$@ sk = Skopírované do schránky: %1$@ sv = Kopierat till urklippsbordet: %1$@ @@ -3259,7 +3254,7 @@ he = מידע hu = Info id = Info - it = Info + it = Informazioni ja = 情報 ko = 정보 nb = Informasjon @@ -3267,7 +3262,7 @@ pl = Informacje pt = Informação pt-BR = Info - ro = Info + ro = Informații ru = Информация sk = Viacej informácií sv = Info @@ -3280,7 +3275,7 @@ [done] comment = Used for bookmark editing - tags = android,ios + tags = android, ios en = Done ar = تم be = Гатова @@ -3296,7 +3291,7 @@ he = בוצע hu = Kész id = Selesai - it = Fatto + it = Fine ja = 完了 ko = 완료 nb = Ferdig @@ -3354,7 +3349,7 @@ [data_version] comment = Data version in «About» screen - tags = android,ios + tags = android, ios en = Data version: %d be = Версія дадзеных: %d bg = Версия на данните: %d @@ -3363,12 +3358,10 @@ es = Versión de datos: %d fa = ورژن داده: %d fr = Version des données: %d - it = Versione: %d nl = Gegevensversie: %d pl = Wersja danych: %d pt = Versão dos dados: %d pt-BR = Versão dos dados: %d - ro = Versiune: %d ru = Версия данных: %d tr = Veri sürümü: %d zh-Hans = 资料版本: %d @@ -3400,7 +3393,7 @@ pl = Kontynuować? pt = Quer mesmo continuar? pt-BR = Tem certeza que deseja continuar? - ro = Vrei să continui? + ro = Sunteți sigur că doriți să continuați? ru = Вы уверены, что хотите продолжить? sk = Naozaj chcete pokračovať? sv = Är du säker på att du vill fortsätta? @@ -3413,7 +3406,7 @@ [tracks_title] comment = Title for tracks category in bookmarks manager - tags = android,ios + tags = android, ios en = Tracks ar = المسارات be = Сцежкі @@ -3429,7 +3422,7 @@ he = נתיבים hu = Csoportok id = Jalur - it = Percorsi + it = Tracciati ja = トラック ko = 트랙 nb = Ruter @@ -3437,7 +3430,7 @@ pl = Trasy pt = Percursos pt-BR = Percursos - ro = Trasee + ro = Rute ru = Треки sk = Stopy sv = Rutter @@ -3450,7 +3443,7 @@ [length] comment = Length of track in cell that describes route - tags = android,ios + tags = android, ios en = Length ar = الطول be = Даўжыня @@ -3486,7 +3479,7 @@ zh-Hant = 長度 [share_my_location] - tags = android,ios + tags = android, ios en = Share My Location ar = مشاركة موقعي be = Падзяліцца месцазнаходжаннем @@ -3502,7 +3495,7 @@ he = שתף את מקומי hu = Helyzetem megosztása id = Bagikan Lokasi Saya - it = Condividi la mia posizione + it = Condividi la mia location ja = 位置情報を共有する ko = 내 위치 공유 nb = Del posisjonen min @@ -3510,7 +3503,7 @@ pl = Udostępnij aktualne położenie pt = Partilhar a minha localização pt-BR = Compartilhar a minha localização - ro = Trimite poziția mea + ro = Partajează-mi poziția ru = Поделиться местоположением sk = Zdielať moje umiestnenie sv = Dela Min Plats @@ -3532,12 +3525,10 @@ fa = تنظیمات عمومی fi = Yleiset asetukset fr = Paramètres généraux - it = Opzioni generali nl = Algemene instellingen pl = Ustawienia ogólne pt = Configurações gerais pt-BR = Configurações gerais - ro = Opțiuni generale ru = Общие настройки tr = Genel ayarlar zh-Hans = 常规设置 @@ -3554,19 +3545,17 @@ fa = اطلاعات fi = Tietoja fr = Information - it = Informazioni nl = Informatie pl = Informacje pt = Informação pt-BR = Informação - ro = Informații ru = Информация tr = Bilgi zh-Hans = 信息 zh-Hant = 資訊 [prefs_group_route] - tags = android,ios + tags = android, ios en = Navigation ar = الملاحة be = Навігацыя @@ -3589,7 +3578,7 @@ pl = Nawigacja pt = Navegação pt-BR = Navegação - ro = Navigare + ro = Navigație ru = Навигация sk = Navigácia sv = Navigering @@ -3601,7 +3590,7 @@ zh-Hant = 導航 [pref_zoom_title] - tags = android,ios + tags = android, ios en = Zoom buttons ar = أزرار التكبير be = Кнопкі маштаба @@ -3653,7 +3642,7 @@ he = הצג על המסך hu = Mutassa a kijelzőn id = Tampilkan pada layar - it = Mostra sulla mappa + it = Condividi la mia location ja = 画面上に表示 ko = 화면에 표시 nb = Vis på skjermen @@ -3661,7 +3650,7 @@ pl = Wyświetla na ekranie pt = Mostrar no ecrã pt-BR = Mostrar na tela - ro = Arată pe hartă + ro = Afișare pe ecran ru = Показать на карте sk = Zobraziť na obrazovke sv = Visa på skärmen @@ -3674,7 +3663,7 @@ [pref_map_style_title] comment = Settings «Map» category: «Night style» title - tags = android,ios + tags = android, ios en = Night Mode ar = الوضع الليلي be = Начны рэжым @@ -3710,7 +3699,7 @@ [pref_map_style_default] comment = «Map style» entry value - tags = android,ios + tags = android, ios en = Off ar = إغلاق be = Выключаны @@ -3746,7 +3735,7 @@ [pref_map_style_night] comment = «Map style» entry value - tags = android,ios + tags = android, ios en = On ar = تشغيل be = Уключаны @@ -3782,7 +3771,7 @@ [pref_map_style_auto] comment = «Map style» entry value - tags = android,ios + tags = android, ios en = Auto ar = تلقائي be = Аўтаматычна @@ -3797,7 +3786,7 @@ fr = Automatique hu = Automatikus id = Otomatis - it = Automatico + it = Auto ja = 自動 ko = 자동 nb = Auto @@ -3818,7 +3807,7 @@ [pref_map_3d_title] comment = Settings «Map» category: «Perspective view» title - tags = android,ios + tags = android, ios en = Perspective view ar = العرض المنظوري be = Перспектыўны выгляд @@ -3841,12 +3830,12 @@ pl = Widok z perspektywy pt = Visão em perspetiva pt-BR = Visão em perspectiva - ro = Vedere în perspectivă + ro = Vizualizare în perspectivă ru = Перспективный вид sk = Perspektívne zobrazenie sv = Perspektivvy th = มุมมองเพอร์สเปกทีฟ - tr = Perspektif görünüş + tr = Perspektif görünüm uk = Перспективний вид vi = Góc nhìn phối cảnh zh-Hans = 透视图 @@ -3854,7 +3843,7 @@ [pref_map_3d_buildings_title] comment = Settings «Map» category: «3D buildings» title - tags = android,ios + tags = android, ios en = 3D buildings ar = مباني ثلاثية الأبعاد be = 3D будынкі @@ -3869,7 +3858,7 @@ fr = Bâtiments en 3D hu = 3D-s épületek id = Bangunan 3D - it = Edifici 3D + it = Edifici in 3D ja = 3Dビルディング ko = 주변 건물 3D nb = Bygninger i 3D @@ -3890,7 +3879,7 @@ [pref_tts_enable_title] comment = Settings «Route» category: «Tts enabled» title - tags = android,ios + tags = android, ios en = Voice Instructions ar = تعليمات صوتية be = Галасавыя інструкцыі @@ -3918,7 +3907,7 @@ sk = Hlasové povely sv = Röstinstruktioner th = คำแนะนำด้วยเสียง - tr = Sesli Yönlendirme + tr = Sesli Talimatlar uk = Голосові інструкції vi = Hướng dẫn bằng Giọng nói zh-Hans = 语音指导 @@ -3926,7 +3915,7 @@ [pref_tts_language_title] comment = Settings «Route» category: «Tts language» title - tags = android,ios + tags = android, ios en = Voice Language ar = لغة الصوت be = Мова агучвання @@ -4021,7 +4010,7 @@ pl = Inny pt = Outro pt-BR = Outro - ro = Altceva + ro = Alta ru = Другой sk = Iný sv = Övrigt @@ -4057,7 +4046,7 @@ pl = Ostatnia trasa pt = Percurso recente pt-BR = Percurso recente - ro = Traseu recent + ro = Rute recente ru = Недавний путь sk = Posledná trasa sv = Senaste resväg @@ -4069,7 +4058,7 @@ zh-Hant = 最近的軌跡 [pref_map_auto_zoom] - tags = android,ios + tags = android, ios en = Auto zoom ar = تكبير تلقائي be = Аўтаматычны маштаб @@ -4104,7 +4093,7 @@ zh-Hant = 自動縮放 [duration_disabled] - tags = android,ios + tags = android, ios en = Off ar = لا يعمل be = Выключана @@ -4119,7 +4108,7 @@ fr = Désactivé hu = Kikapcsolva id = Nonaktif - it = Spento + it = Disabilitato ja = オフ ko = 선택 안 함 nb = Av @@ -4139,7 +4128,7 @@ zh-Hant = 關閉 [duration_1_hour] - tags = android,ios + tags = android, ios en = 1 hour ar = 1 ساعة be = 1 гадзіна @@ -4174,7 +4163,7 @@ zh-Hant = 1小時 [duration_2_hours] - tags = android,ios + tags = android, ios en = 2 hours ar = 2 ساعة be = 2 гадзіны @@ -4209,7 +4198,7 @@ zh-Hant = 2小時 [duration_6_hours] - tags = android,ios + tags = android, ios en = 6 hours ar = 6 ساعات be = 6 гадзін @@ -4244,7 +4233,7 @@ zh-Hant = 6小時 [duration_12_hours] - tags = android,ios + tags = android, ios en = 12 hours ar = 12 ساعة be = 12 гадзін @@ -4279,7 +4268,7 @@ zh-Hant = 12小時 [duration_1_day] - tags = android,ios + tags = android, ios en = 1 day ar = 1 يوم be = 1 дзень @@ -4329,7 +4318,7 @@ fr = Ceci vous permet d’enregistrer le chemin emprunté pendant un certain temps et de le voir sur la carte. Veuillez noter : l’activation de cette fonction entraîne une grande utilisation de la batterie. La route sera supprimée automatiquement de la carte lorsque l’intervalle de temps sera arrivé à expiration. hu = Ez lehetővé teszi a bejárt útvonal rögzítését és megtekintését a térképen bizonyos időre. Kérjük, vegye figyelembe, hogy ezen funkció aktiválásával megnöveli az akkumulátor használatát. Az útvonal automatikusan törlődik a térképről az időtartam lejártával. id = Ini memungkinkan Anda untuk merekam jalur yang telah dilalui selama jangka waktu tertentu dan melihatnya pada peta. Harap ketahui: aktivasi fungsi ini menyebabkan peningkatan penggunaan baterai. Trek akan dihapus secara otomatis dari peta setelah selang waktu berakhir. - it = Consente di registrare il percorso effettuato in un determinato periodo di tempo e di vederlo sulla mappa. Nota: l'attivazione di questa funzione incrementa l'uso della batteria. Il percorso viene rimosso automaticamente dalla mappa allo scadere dell'intervallo di tempo. + it = Consente di registrare il tratto percorso in un determinato periodo di tempo e vedere lo stesso sulla mappa. Nota: l'attivazione di questa funzione incrementa l'uso della batteria. Il tratto viene rimosso automaticamente dalla mappa allo scadere dell'intervallo di tempo. ja = 移動経路を一定期間記録し、地図上で確認できるようにします。注意:この機能を有効にすると、バッテリーの消費量が増えます。表示期間が終了すると、走行軌跡は地図から自動的に削除されます。 ko = 특정 기간 동안 이동된 경로를 기록하고 지도에서 그 경로를 볼 수 있습니다. 참고: 이 기능을 활성화하면 배터리 사용량이 증가하게 됩니다. 시간 간격이 만료된 후 지도에서 해당 트랙이 자동으로 제거됩니다. nb = Det lar deg lagre ruten du har reist i en spesifikk periode og se den på kartet. Merk: Aktivering av funksjonen øker batteriforbruket. Ruten fjernes automatisk fra kartet når tidsintervallet utløper. @@ -4337,7 +4326,7 @@ pl = Umożliwia na pewien okres zapisanie przebytej trasy i obejrzenie jej na mapie. Uwaga: włączenie tej funkcji spowoduje większe zużycie baterii. Trasa zostanie usunięta z mapy automatycznie po upływie określonego czasu. pt = Permite-lhe gravar um caminho percorrido durante um determinado período e vê-lo no papa. Nota: esta funcionalidade usa mais bateria. A rota será automaticamente removida do mapa após o intervalo de tempo expirar. pt-BR = Permite você salvar um caminho percorrido durante um determinado período e o ver no papa. Nota: esta funcionalidade usa mais bateria. A rota será automaticamente removida do mapa após o intervalo de tempo expirar. - ro = Permite înregistrarea traseului parcurs pentru o anumită perioadă de timp și să îl vezi pe hartă. Reține: activarea acestei funcții crește consumul bateriei. Traseul va fi eliminat automat de pe hartă după expirarea intervalului de timp. + ro = Vă permite să înregistrați traseul parcurs pentru o anumită perioadă și să îl vedeți pe hartă. Rețineți: activarea acestei funcții crește consumul bateriei. Traseul va fi eliminat automat de pe hartă după expirarea intervalului de timp. ru = Эта функция позволяет записывать пройденный путь за определенный период времени и видеть его на карте. Внимание: активация этой функции может привести к повышенному расходу батареи. Записанный трек будет удален с карты по истечении этого срока. sk = Umožňuje zaznamenať precestovanú trasu za určité obdobie a zobraziť ju na mape. Upozornenie: zapnutie tejto funkcie spôsobí vyššiu spotrebu batérie. Trasa sa z mapy automaticky odstráni po uplynutí časového intervalu. sv = Detta gör att du kan spara en resväg för en viss tidsperiod och visa den på kartan. Obs: aktivering av den här funktionen ökar batterianvändningen. Spåret tas bort automatiskt från kartan när tidsintervallet slutar gälla. @@ -4384,7 +4373,7 @@ zh-Hant = 距离 [search_show_on_map] - tags = android,ios + tags = android, ios en = View on map ar = مشاهدة على الخريطة be = Паглядзець на мапе @@ -4408,7 +4397,7 @@ pl = Wyświetl na mapie pt = Ver no mapa pt-BR = Ver no mapa - ro = Vezi pe hartă + ro = Vizualizare pe hartă ru = Посмотреть на карте sk = Zobraziť na mape sv = Visa på kartan @@ -4421,7 +4410,7 @@ [website] comment = Text in menu - tags = android,ios + tags = android, ios en = Website ar = الموقع الإلكتروني be = Вэб-сайт @@ -4457,31 +4446,31 @@ [github] comment = Text in menu - tags = android,ios + tags = android, ios en = GitHub [telegram] comment = Text in menu - tags = android,ios + tags = android, ios en = Telegram [facebook] comment = Text in menu - tags = android,ios + tags = android, ios en = Facebook zh-Hans = 脸书 zh-Hant = 臉書 [twitter] comment = Text in menu - tags = android,ios + tags = android, ios en = Twitter zh-Hans = 推特 zh-Hant = 推特 [instagram] comment = Text in menu - tags = android,ios + tags = android, ios en = Instagram [vk] @@ -4496,13 +4485,13 @@ [openstreetmap] comment = Text in menu - tags = android,ios + tags = android, ios en = OpenStreetMap zh-Hant = 開放街圖 [feedback] comment = Settings: Send feedback button and dialog title - tags = android,ios + tags = android, ios en = Feedback ar = تعقيب be = Водгук @@ -4538,7 +4527,7 @@ [rate_the_app] comment = Text in menu - tags = android,ios + tags = android, ios en = Rate the app ar = تقييم التطبيق be = Ацаніць дадатак @@ -4562,7 +4551,7 @@ pl = Oceń aplikację pt = Avaliar a aplicação pt-BR = Avaliar o aplicativo - ro = Evaluează aplicația + ro = Votați-ne aplicația ru = Оценить приложение sk = Ohodnotiť aplikáciu sv = Ge appen ett betyg @@ -4575,7 +4564,7 @@ [help] comment = Text in menu - tags = android,ios + tags = android, ios en = Help ar = مساعدة be = Дапамога @@ -4628,7 +4617,7 @@ he = תובושתו תולאש hu = Kérdések és válaszok id = Pertanyaan dan jawaban - it = Domande frequenti + it = Domande e risposte ja = 質問と回答 ko = 질문과 답변 nb = Spørsmål og svar @@ -4636,7 +4625,7 @@ pl = Pytania i odpowiedzi pt = Perguntas e respostas pt-BR = Perguntas e respostas - ro = Întrebări frecvente + ro = Intrebari si raspunsuri ru = Вопросы и ответы sk = Otázky a odpovede sv = Frågor och svar @@ -4666,7 +4655,7 @@ he = כיצד לתמוך בנו? hu = Hogyan támogat minket? id = Bagaimana cara mendukung kami? - it = Come sostenerci? + it = Come supportarci? ja = どのように私たちを支持する方法? ko = 우리를 지원하는 방법? nb = Hvordan støtte oss? @@ -4687,7 +4676,7 @@ [copyright] comment = Button in the main Help dialog - tags = android,ios + tags = android, ios en = Copyright ar = حقوق الطبع والنشر be = Капірайт @@ -4724,7 +4713,7 @@ [report_a_bug] comment = Text in menu + Button in the main Help dialog - tags = android,ios + tags = android, ios en = Report a bug ar = الإبلاغ عن خطأ be = Паведаміць аб памылцы @@ -4740,7 +4729,7 @@ he = דווחו על באג hu = Hibabejelentés id = Laporkan gangguan - it = Segnala un errore + it = Riporta un bug ja = バグを報告 ko = 오류 신고 nb = Rapporter en feil @@ -4777,7 +4766,7 @@ he = יישום הדוא"ל לא הוגדר. אנא קבעו את תצורתו או השתמשו בכל דרך אחרת על מנת ליצור עמנו קשר בכתובת %@ hu = Az email kliens nincs beállítva. Kérjük, konfiguráld vagy próbálj meg valamilyen más módon kapcsolatba lépni velünk a %@ email címen keresztül. id = Surel pelanggan belum diatur. Mohon konfigurasikan atau gunakan cara lain untuk menghubungi kami di %@ - it = L'app per e-mail non è stata configurata. Si prega di configurarla o di usare altro metodo per contattarci all'indirizzo %@ + it = Il client email non è stato configurato. Si prega di configurarlo o di usare qualsiasi altro metodo per contattarci all'indirizzo %@ ja = このメールクライアントはセットアップされていません。設定するか、他の方法で%@にご連絡ください。 ko = 이메일 클라이언트가 설정되지 않았습니다. 이를 구성하거나 %@로 연락할 다른 방법을 사용하십시오. nb = E-postklienten har ikke blitt konfigurert. Konfigurer den eller bruk en annen måte å kontakte oss på %@ @@ -4785,7 +4774,7 @@ pl = Email klienta nie został założony. Proszę skonfigurować adres email, bądź skorzystać z innych opcji, aby się z nami skontaktować na %@ pt = O programa de email não está configurado. Por favor, configure-o ou utilize qualquer outra forma de nos contactar através de %@ pt-BR = O cliente de email não está configurado. Por favor, configure-o ou utilize qualquer outro modo para nos contatar através de %@ - ro = Nu a fost stabilită aplicația de e-mail. Stabilește-o sau utilizează alt mod de a ne contacta la %@. + ro = Nu a fost stabilit programul de e-mail. Stabilește-l sau utilizează un alt mod de a ne contacta la %@. ru = Почтовый клиент не настроен. Настройте его или используйте другие способы для связи. Наш адрес - %@. sk = Emailový klient nebol nastavený. Nakonfigurujte ho prosím alebo použite iný spôsob k tomu, abyste nás kontaktovali na %@ sv = Emailklienten har inte konfigurerats. Konfigurera den eller använd ett annat sätt att kontakta oss på %@ @@ -4822,7 +4811,7 @@ pl = Błąd wysyłania wiadomości pt = Erro ao enviar o email pt-BR = Erro no envio de email - ro = Eroare trimitere e-mail + ro = Eroare trimitere e-mail. ru = Ошибка при отправлении письма sk = Chyba pri odosielaní emailu sv = Fel när mailet skulle skickas @@ -4851,7 +4840,7 @@ he = כיול המצפן hu = Iránytű kalibrálás id = Kalibrasi kompas - it = Calibrazione bussola + it = Calibrazione del compasso ja = コンパスの調整 ko = 나침반 보정 nb = Kompasskalibrering @@ -4872,7 +4861,7 @@ [wifi] comment = Search category - tags = android,ios + tags = android, ios en = WiFi ar = واي-فاي be = WiFi @@ -4887,7 +4876,7 @@ fr = WiFi hu = WiFi id = WiFi - it = Wi-Fi + it = WiFi ja = 無線LAN ko = WiFi 인터넷 nb = WiFi @@ -4895,7 +4884,7 @@ pl = WiFi pt = WiFi pt-BR = WiFi - ro = Wi-Fi + ro = WiFi ru = WiFi sk = WiFi th = WiFi @@ -4907,7 +4896,7 @@ [downloader_update_all_button] comment = Update all button text - tags = android,ios + tags = android, ios en = Update All ar = تحديث الكل be = Абнавіць усё @@ -4980,7 +4969,7 @@ [downloader_downloaded_subtitle] comment = Downloaded maps category - tags = android,ios + tags = android, ios en = Downloaded ar = تم تنزيلها be = Спампаваныя @@ -5038,7 +5027,7 @@ pl = Dostępne pt = Disponível pt-BR = Disponível - ro = Disponibilă + ro = Disponibil ru = Доступные sk = Dostupné sv = Tillgänglig @@ -5051,7 +5040,7 @@ [downloader_queued] comment = Country queued for download - tags = android,ios + tags = android, ios en = Queued ar = مَصْفوف be = У чарзе @@ -5075,7 +5064,7 @@ pl = W kolejce pt = Na fila pt-BR = Na fila - ro = În așteptare + ro = În lista de așteptare ru = В очереди sk = V rade sv = Köade @@ -5087,7 +5076,7 @@ zh-Hant = 已佇列 [downloader_near_me_subtitle] - tags = android,ios + tags = android, ios en = Near me ar = بالقرب مني be = Каля мяне @@ -5110,7 +5099,7 @@ pl = Blisko mnie pt = Perto de mim pt-BR = Perto de mim - ro = Lîngă mine + ro = Aproape de mine ru = Возле меня sk = Neďaleko mňa sv = Nära mig @@ -5122,7 +5111,7 @@ zh-Hant = 在我附近 [downloader_status_maps] - tags = android,ios + tags = android, ios en = Maps ar = الخرائط be = Мапы @@ -5157,7 +5146,7 @@ zh-Hant = 地圖 [downloader_download_all_button] - tags = android,ios + tags = android, ios en = Download All ar = تنزيل الكل be = Спампаваць усё @@ -5180,7 +5169,7 @@ pl = Pobierz wszystkie pt = Descarregar tudo pt-BR = Baixar tudo - ro = Descarcă tot + ro = Descărcați toate ru = Загрузить все sk = Stiahnuť všetko sv = Ladda ned alla @@ -5192,7 +5181,7 @@ zh-Hant = 下載全部 [downloader_downloading] - tags = android,ios + tags = android, ios en = Downloading: ar = يتم تنزيل: be = Спампоўваецца: @@ -5215,7 +5204,7 @@ pl = Pobieranie: pt = A descarregar: pt-BR = Baixando: - ro = Se descarcă: + ro = Descărcare: ru = Загружается: sk = Sťahovanie: sv = Ladda ner: @@ -5249,7 +5238,7 @@ pl = Znaleziono pt = Encontrado pt-BR = Encontrado - ro = Găsite + ro = S-au găsit ru = Найдено sk = Nájdených sv = Hittat @@ -5286,7 +5275,7 @@ pl = Aktualizacja pt = Atualizar pt-BR = Atualizar - ro = Actualizează + ro = Actualizare ru = Обновить sk = Aktualizácia sv = Uppdatera @@ -5336,7 +5325,7 @@ [downloader_delete_map_while_routing_dialog] comment = Displayed in a dialog that appears when a user tries to delete a map while the app is in the follow route mode - tags = android,ios + tags = android, ios en = To delete map, please stop navigation. ar = لحذف الخريطة يرجى إيقاف الملاحة. be = Каб выдаліць мапу, спыніце навігацыю. @@ -5359,7 +5348,7 @@ pl = Aby usunąć mapę, zatrzymaj nawigację. pt = Para eliminar o mapa, por favor pare a navegação. pt-BR = Favor parar a navegação para apagar o mapa. - ro = Pentru a șterge harta, oprește navigarea. + ro = Pentru a șterge harta, vă rugăm să opriți navigarea. ru = Чтобы удалить карту, пожалуйста, остановите навигацию. sk = Ak chcete odstrániť mapy, prosím, zastavte navigáciu. sv = Avsluta navigering för att radera kartan. @@ -5372,7 +5361,7 @@ [routing_failed_cross_mwm_building] comment = PointsInDifferentMWM - tags = android,ios + tags = android, ios en = Routes can only be created that are fully contained within a map of a single region. ar = يمكن فقط إنشاء المسارات التي توجد بشكل كامل ضمن خريطة واحدة. be = Маршруты могуць быць пракладзены толькі ў межах карты аднаго рэгіёна. @@ -5388,7 +5377,7 @@ he = ניתן ליצור רק מסלולים שמוכלים במלואם בתוך מפה אחת. hu = Útvonalakat csak akkor lehet készíteni, ha teljesen rajta vannak egy térképen. id = Rute hanya dapat dibuat dengan yang seluruhnya ada di dalam peta tunggal. - it = Si possono creare solo percorsi che sono completamente contenuti in una mappa di una singola regione. + it = I percorsi possono essere creati solo se interamente presenti in una singola mappa. ja = 一つの地図に完全に収まるルートのみ作成可能です。 ko = 경로는 하나의 지도에 완전히 포함되도록만 생성할 수 있습니다. nb = Det kan bare opprettes ruter som passer fullstendig innenfor ett enkelt kart. @@ -5396,7 +5385,7 @@ pl = Trasy można tworzyć tylko pod warunkiem, że zawarte będą w ramach pojedynczej mapy. pt = Só podem ser criadas rotas que estejam completamente contidas num único mapa. pt-BR = Só podem ser criadas rotas que estejam completamente contidas num único mapa. - ro = Se pot crea numai trasee cuprinse în întregime în cadrul unei hărți a unei singure regiuni. + ro = Pot fi create doar rutele ce se află în întregime într-o singură hartă. ru = Маршрут может быть проложен только внутри карты одного региона. sk = Cesty môžu byť vytvorené len tak, že sú plne obsiahnuté v jednej mape. sv = Rutter kan endast skapas om de finns inom en enda karta. @@ -5409,7 +5398,7 @@ [downloader_download_map] comment = Context menu item for downloader. - tags = android,ios + tags = android, ios en = Download map ar = تنزيل الخريطة be = Спампаваць мапу @@ -5433,7 +5422,7 @@ pl = Pobierz mapę pt = Descarregar mapa pt-BR = Baixar o mapa - ro = Descarcă harta + ro = Descărcați harta ru = Загрузить карту sk = Stiahnuť mapu sv = Ladda ner kartan @@ -5446,7 +5435,7 @@ [downloader_retry] comment = Item status in downloader. - tags = android,ios + tags = android, ios en = Retry ar = تكرار be = Паспрабаваць зноў @@ -5461,7 +5450,7 @@ fr = Réessayer hu = Ismétlés id = Ulangi - it = Riprova + it = Ripeti ja = リピート ko = 반복 nb = Gjenta @@ -5469,7 +5458,7 @@ pl = Powtórz pt = Repetir pt-BR = Repetir - ro = Mai încearcă + ro = Repetare ru = Повторить sk = Zopakovať sv = Repetera @@ -5482,7 +5471,7 @@ [downloader_delete_map] comment = Item in context menu. - tags = android,ios + tags = android, ios en = Delete Map ar = حذف الخريطة be = Выдаліць мапу @@ -5506,7 +5495,7 @@ pl = Usuń mapę pt = Eliminar mapa pt-BR = Apagar mapa - ro = Șterge harta + ro = Ștergere hartă ru = Удалить карту sk = Zmazať mapu sv = Radera karta @@ -5543,7 +5532,7 @@ pl = Aktualizuj mapę pt = Atualizar mapa pt-BR = Atualizar mapa - ro = Actualizează harta + ro = Actualizare hartă ru = Обновить карту sk = Aktualizovať mapu sv = Uppdatera karta @@ -5579,7 +5568,7 @@ pl = Używa usług Google Play do ustalenia aktualnego położenia pt = Use os Serviços Google Play para determinar a sua localização atual pt-BR = Usar Serviços do Google Play para determinar a sua localização atual - ro = Folosește serviciile Google Play, pentru a obține poziția actuală + ro = Utilizați serviciile Google Play, pentru a vă obține poziția actuală. ru = Использовать Google Play Services для определения позиции sk = Pomocou Google Play služieb získajte svoju aktuálnu polohu sv = Använd Google Play Services för att bestämma din aktuella position @@ -5614,7 +5603,7 @@ pl = Właśnie oceniłem Waszą aplikację pt = Acabei de avaliar a sua aplicação pt-BR = Acabei de avaliar o seu app - ro = Tocmai v-am evaluat aplicația + ro = Tocmai ți-am votat aplicația ru = Я только что оценил Organic Maps sk = Práve som hodnotil vašu aplikáciu sv = Jag har precis betygsatt er app @@ -5650,7 +5639,7 @@ pl = Dziękujemy! pt = Obrigado! pt-BR = Obrigado! - ro = Mulțumim! + ro = Îți mulțumim! ru = Спасибо! sk = Ďakujeme vám! sv = Tack! @@ -5686,7 +5675,7 @@ pl = Podziel się z nami pomysłami lub problemami, a pozwoli to nam usprawnić aplikację. pt = Partilhe quaisquer ideias ou problemas para que possamos melhorar a aplicação para todos. pt-BR = Compartilhe quaisquer ideias ou problemas para que possamos melhorar o app para você. - ro = Comunică-ne ideile tale și problemele aplicației, pentru a o putea îmbunătăți pentru tine. + ro = Comunică-ne ideile tale și problemele aplicației, astfel încât să o putem îmbunătăți pentru tine. ru = Что-то не так? Расскажите, что бы мы могли исправить или улучшить в приложении. sk = Podeľte sa o svoje nápady alebo problémy, aby sme pre vás mohli vylepšiť aplikáciu. sv = Dela med dig av dina idéer eller problem så att vi kan förbättra appen åt dig. @@ -5722,7 +5711,7 @@ pl = Wyślij opinię pt = Enviar comentário pt-BR = Enviar comentário - ro = Trimite părerea + ro = Trimitere feedback ru = Напишите нам sk = Odoslať spätnú väzbu sv = Skicka återkoppling @@ -5735,7 +5724,7 @@ [routing_download_maps_along] comment = Text for routing error dialog - tags = android,ios + tags = android, ios en = Download all of the maps along your route ar = تنزيل الخرائط على طول الطريق be = Спампаваць усе мапы на вашым шляху @@ -5758,7 +5747,7 @@ pl = Pobierz mapy wzdłuż trasy pt = Descarregar todos os mapas ao longo do trajeto pt-BR = Baixar todos os mapas ao longo do trajeto - ro = Descarcă hărțile de pe traseu + ro = Descarcă hărțile adiacente rutei ru = Загрузите все карты по пути следования sk = Stiahnite si mapy pozdĺž trasy sv = Ladda ned kartor längs vägen @@ -5771,7 +5760,7 @@ [routing_requires_all_map] comment = Text for routing error dialog - tags = android,ios + tags = android, ios en = In order to create a route, we need to download and update all the maps from your location to your destination. ar = Creare un percorso necessita la presenza di tutte le mappe scaricate e aggiornate dalla tua posizione alla destinazione. be = Каб пракласці маршрут, трэба спампаваць і абнавіць усе мапы на на вашым шляху. @@ -5794,7 +5783,7 @@ pl = Tworzenie tras wymaga pobrania i zaktualizowania wszystkich map od Twojej lokalizacji do celu podróży. pt = É necessário descarregar e atualizar todos os mapas entre a sua localização e o destino para criar uma rota. pt-BR = É necessário baixar e atualizar todos os mapas entre a sua localização e o destino para criar uma rota. - ro = Crearea unui traseu necesită ca toate hărțile de la poziția ta pînă la destinație să fie descărcate și actualizate. + ro = Crearea unui traseu necesită ca toate hărțile de la locația dvs. până la destinație să fie descărcate și actualizate. ru = Для создания маршрута необходимо загрузить и обновить все карты на пути следования. sv = Att kunna skapa en navigeringsväg kräver att alla kartorna från din plats till din destination är nerladdade och uppdaterade. th = การสร้างเส้นทางจำเป็นต้องใช้แผนที่จากสถานที่ตั้งของคุณไปยังปลายทางที่มีการดาวน์โหลดและอัปเดต @@ -5821,7 +5810,7 @@ fr = Pas assez d'espace hu = Nincs elég hely id = Ruang simpan tidak cukup - it = Spazio insufficiente + it = Spazio non sufficiente ja = 空き容量が足りません ko = 여유 공간 부족 nb = Ikke nok ledig minne @@ -5829,7 +5818,7 @@ pl = Brak wolnego miejsca pt = Espaço insuficiente pt-BR = Espaço insuficiente - ro = Spațiu insuficient + ro = Nu există spațiu suficient ru = Недостаточно места sk = Nedostatok miesta sv = För lite utrymme kvar @@ -5858,7 +5847,7 @@ he = סימניה hu = könyvjelző id = bookmark - it = preferito + it = segnalibro ja = お気に入り ko = 북마크 nb = bokmerk @@ -5866,7 +5855,7 @@ pl = zakładka pt = favorito pt-BR = favorito - ro = preferat + ro = marcaj ru = метка sk = záložka sv = bokmärke @@ -5894,7 +5883,7 @@ fr = Veuillez activer les services de localisation hu = Kérjük kapcsolja be a helyzetmeghatározó szolgáltatást id = Mohon aktifkan Layanan Lokasi - it = Abilita i servizi di localizzazione + it = Cortesemente abilita i servizi di localizzazione ja = 位置情報サービスを有効化してください ko = 위치 서비스를 작동시켜 주십시요. nb = Aktiver posisjonstjenester @@ -5902,7 +5891,7 @@ pl = Proszę włączyć usługi lokalizacji pt = Por favor ative os serviços de localização pt-BR = Por favor, ative os Serviços de Localização - ro = Activează serviciile de localizare + ro = Vă rugăm să activați serviciile de localizare ru = Пожалуйста, включите геолокацию sk = Prosím, povoľte Služby určovania polohy sv = Vänligen aktivera platstjänster @@ -5914,7 +5903,7 @@ zh-Hant = 請啟用定位服務 [save] - tags = android,ios + tags = android, ios en = Save ar = حفظ be = Захаваць @@ -5937,7 +5926,7 @@ pl = Zapisz pt = Guardar pt-BR = Salvar - ro = Salvează + ro = Salvare ru = Сохранить sk = Uložiť sv = Spara @@ -5964,7 +5953,7 @@ fr = Vos descriptions (version texte ou html) hu = Az ön leírásai (sima szöveg vagy html) id = Deskripsi Anda (teks atau html) - it = Le tue descrizioni (testo o html) + it = Le tue descrizioni (formato testo o html) ja = 説明(テキストまたはHTML) ko = 설명(텍스트 또는 HTML) nb = Dine beskrivelser (tekst eller html) @@ -5972,7 +5961,6 @@ pl = Twoje opisy (tekst lub html) pt = As suas descrições (texto ou html) pt-BR = Suas descrições (texto ou html) - ro = Descrierile tale (text sau html) ru = Ваше описание (текст или html) sk = Váš popis (text alebo html) sv = Dina beskrivningar (text eller html) @@ -5984,7 +5972,7 @@ zh-Hant = 您的描述(文字或 html) [create] - tags = android,ios + tags = android, ios en = create ar = إنشاء be = стварыць @@ -6020,7 +6008,7 @@ [red] comment = red color - tags = android,ios + tags = ios en = Red ar = أحمر be = Чырвоны @@ -6057,7 +6045,7 @@ [yellow] comment = yellow color - tags = android,ios + tags = ios en = Yellow ar = أصفر be = Жоўты @@ -6094,7 +6082,7 @@ [blue] comment = blue color - tags = android,ios + tags = ios en = Blue ar = أزرق be = Сіні @@ -6131,7 +6119,7 @@ [green] comment = green color - tags = android,ios + tags = ios en = Green ar = أخضر be = Зялёны @@ -6168,7 +6156,7 @@ [purple] comment = purple color - tags = android,ios + tags = ios en = Purple ar = أرجواني be = Пурпурны @@ -6192,7 +6180,7 @@ pl = Fioletowy pt = Roxo pt-BR = Roxo - ro = Violet + ro = Purpuriu ru = Пурпурный sk = Purpurová sv = Lila @@ -6205,7 +6193,7 @@ [orange] comment = orange color - tags = android,ios + tags = ios en = Orange ar = برتقالي be = Аранжавы @@ -6242,7 +6230,7 @@ [brown] comment = brown color - tags = android,ios + tags = ios en = Brown ar = بني be = Карычневы @@ -6279,7 +6267,7 @@ [pink] comment = pink color - tags = android,ios + tags = ios en = Pink ar = وردي be = Ружовы @@ -6316,7 +6304,7 @@ [deep_purple] comment = deep purple color - tags = android,ios + tags = ios en = Deep Purple ar = أرجواني داكن be = Цёмна-пурпурны @@ -6339,7 +6327,7 @@ pl = Ciemnopurpurowy pt = Purpúreo escuro pt-BR = Lilás escuro - ro = Violet închis + ro = Purpuriu închis ru = Тёмно-пурпурный sk = Tmavofialová sv = Mörk purpur @@ -6353,7 +6341,7 @@ [light_blue] comment = light blue color - tags = android,ios + tags = ios en = Light Blue ar = أزرق فاتح be = Блакітны @@ -6390,7 +6378,7 @@ [cyan] comment = cyan color - tags = android,ios + tags = ios en = Cyan ar = أزرق سماوي be = Сіне-зялёны @@ -6405,7 +6393,7 @@ fr = Cyan hu = Cián id = Biru Kehijauan - it = Ciano + it = Cyan ja = シアン ko = 시안 nb = Blågrønn @@ -6413,7 +6401,7 @@ pl = Niebieskozielony pt = Azul-verde pt-BR = Ciano - ro = Turcoaz + ro = Albastru-verziu ru = Сине-зелёный sk = Tyrkysová sv = Blågrön @@ -6427,7 +6415,7 @@ [teal] comment = teal color - tags = android,ios + tags = ios en = Teal ar = أخضر فاتح be = Смарагдавы @@ -6442,7 +6430,7 @@ fr = Émeraude hu = Zöldeskék id = Biru Gelap - it = Blu tè + it = Verde smeraldo ja = ティール ko = 틸 nb = Smaragdgrønn @@ -6464,7 +6452,7 @@ [lime] comment = lime color - tags = android,ios + tags = ios en = Lime ar = ليموني be = Лайм @@ -6487,7 +6475,7 @@ pl = Lima pt = Lima pt-BR = Lima - ro = Verde aprins + ro = Var ru = Лайм sk = Limetková sv = Limefärg @@ -6501,7 +6489,7 @@ [deep_orange] comment = deep orange color - tags = android,ios + tags = ios en = Deep Orange ar = برتقالي داكن be = Цёмна-аранжавы @@ -6538,7 +6526,7 @@ [gray] comment = gray color - tags = android,ios + tags = ios en = Gray ar = رمادي be = Шэры @@ -6575,7 +6563,7 @@ [blue_gray] comment = blue gray color - tags = android,ios + tags = ios en = Blue Gray ar = رمادي أزرق be = Блакітна-шэры @@ -6612,7 +6600,7 @@ [WiFi_available] comment = Wi-Fi available - tags = android,ios + tags = android, ios en = Yes ar = نعم be = Так @@ -6650,7 +6638,7 @@ [[Routing dialogs strings]] [dialog_routing_disclaimer_title] - tags = android,ios + tags = android, ios en = When following the route, please keep in mind: ar = عند اتباع المسار، يُرجى وضع ما يلي في الاعتبار: be = Рухаючыся па маршруце, майце на ўвазе: @@ -6674,19 +6662,19 @@ pl = Jadąc wyznaczoną trasą, pamiętaj, że: pt = Ao seguir a rota, lembre-se que: pt-BR = Ao seguir a rota, lembre-se de que: - ro = Cînd parcurgi traseul, ai în vedere următoarele: + ro = Când urmaţi traseul, aveţi în vedere următoarele: ru = При движении по маршруту помните: sk = Pri sledovaní trasy majte na pamäti nasledujúce: sv = När du följer vägen, kom ihåg att: th = ขณะกำลังเดินทางตามเส้นทาง โปรดจำไว้ว่า: - tr = Rotanızı takip ederken şunları lütfen unutmayın: + tr = Güzergahınızı takip ederken şunları lütfen unutmayın: uk = Під час руху за маршрутом пам'ятайте: vi = Khi đi theo tuyến đường, hãy lưu ý: zh-Hans = 按照路线行进时,请谨记: zh-Hant = 依照路線行進時,請牢記: [dialog_routing_disclaimer_priority] - tags = android,ios + tags = android, ios en = — Road conditions, traffic laws, and road signs always take priority over the navigation hints; ar = — دائمًا ما يكون لظروف الطريق وقوانين وإشارات المرور الأولوية على المشورة الملاحية; be = — Дарожныя абставіны, правілы дарожнага руху і дарожныя знакі заўсёды маюць прыярытэт над падказкамі навігацыі; @@ -6702,7 +6690,7 @@ he = — תנאי הכביש, חוקי התנועה והתמרורים תמיד מקבלים עדיפות על פני הנחיות הניווט; hu = — Az útviszonyok, forgalmi törvények és jelzőtáblák mindig elsőbbséget élveznek a navigációs útmutatásokkal szemben; id = — Kondisi jalan, peraturan lalu lintas, dan marka jalan harus selalu didahulukan daripada saran navigasi; - it = — Le condizioni stradali, il codice della strada e la segnaletica stradale hanno sempre precedenza sulle indicazioni del navigatore; + it = — Le condizioni stradali, il codice della strada e la segnaletica stradale hanno sempre precedenza sui consigli di navigazione; ja = — 道路の状況や道路交通法、道路標識をナビゲーションよりも常に優先してください。; ko = — 도로 상황, 교통법, 도로 표지판을 항상 내비게이션 안내보다 먼저 고려하세요; nb = – Veiforhold, trafikkregler og skilt skal alltid prioriteres fremfor navigasjonsråd; @@ -6710,7 +6698,7 @@ pl = — Warunki na drodze, przepisy ruchu drogowego i znaki drogowe zawsze są ważniejsze niż wskazówki nawigacji; pt = — As condições da estrada, as leis de trânsito e os sinais de trânsito têm sempre prioridade sobre as indicações de navegação; pt-BR = — As condições da estrada, as leis de trânsito e as sinalizações da pista sempre terão prioridade acima das sugestões de navegação; - ro = — Condiţiile de drum, legile şi semnele rutiere sînt mai importante decît indicațiile navigatorului; + ro = — Condiţiile de drum, legile şi semnele rutiere sunt mai prioritare decât sfaturile de navigaţie; ru = — Дорожная обстановка, ПДД и знаки приоритетнее советов приложения; sk = — Podmienky na ceste, dopravné predpisy a značenie majú vždy prednosť pred pokynmi z navigácie; sv = — Vägförhållanden, trafiklagar och vägskyltar alltid ska prioriteras över navigeringsråd; @@ -6722,7 +6710,7 @@ zh-Hant = — 路況、交通規則及號誌優先於導航意見; [dialog_routing_disclaimer_precision] - tags = android,ios + tags = android, ios en = — The map might be inaccurate, and the suggested route might not always be the most optimal way to reach the destination; ar = — قد تكون الخريطة غير دقيقة وقد لا يكون المسار المقترح هو المسار الأمثل دائمًا للوصول إلى الوجهة.; be = — Мапа можа быць недакладнай, а прапанаваны маршрут не заўжды найлепшым; @@ -6751,14 +6739,14 @@ sk = — Mapa nemusí byť presná a navrhovaná trasa nemusí byť vždy optimálna na dosiahnutie cieľa; sv = — Kartan kan vara felaktig och den föreslagna vägen inte alltid är det optimala sättet att ta sig till destinationen; th = — แผนที่อาจมีความคลาดเคลื่อนและเส้นทางที่แนะนำอาจไม่ใช่เส้นทางที่เหมาะสมที่สุดเสมอไปสำหรับการไปยังที่หมาย; - tr = — Harita doğru olmayabilir, önerilen rota da hedefinize ulaşmak için en uygun yol olmayabilir; + tr = — Harita doğru olmayabilir, önerilen güzergah da hedefinize ulaşmak için en uygun yol olmayabilir; uk = — Мапа може бути неточною, а запропонований маршрут не завжди оптимальний; vi = — Bản đồ có thể không chính xác và tuyến đường được đề xuất có thể không luôn là cách tối ưu nhất để đi đến đích; zh-Hans = — 地图可能不准确,建议的路线可能并非总是去往目的地的最佳路径; zh-Hant = — 地圖可能不準確,建議的路線不盡然是最佳選擇; [dialog_routing_disclaimer_recommendations] - tags = android,ios + tags = android, ios en = — Suggested routes should only be understood as recommendations; ar = — يتم التعامل مع المسارات المقترحة كتوصيات فقط; be = — Прапанаваныя маршруты трэба ўспрымаць толькі як рэкамендацыі; @@ -6787,14 +6775,14 @@ sk = — Navrhované trasy by sa mali brať len ako odporúčania; sv = — Föreslagna vägar endast är rekommendationer; th = — เส้นทางที่แนะนำเป็นเพียงคำแนะนำเท่านั้น; - tr = — Önerilen rotalar yalnızca tavsiye olarak kabul edilmelidir; + tr = — Önerilen güzergahlar yalnızca tavsiye olarak kabul edilmelidir; uk = — Запропоновані маршрути — лише рекомендації; vi = — Các tuyến đường được đề nghị chỉ nên được coi là các khuyến nghị; zh-Hans = — 建议的路线仅作为推荐路线供您采纳; zh-Hant = — 建議的路線僅供推薦參考; [dialog_routing_disclaimer_borders] - tags = android,ios + tags = android, ios en = — Exercise caution with routes in border zones: the routes created by our app may sometimes cross country borders in unauthorized places. ar = — تحذير بشأن مسارات في منطقة حدودية: المسارات التي تم إنشاؤها بواسطة تطبيقنا قد تعبر حدود الدولة في أماكن غير مصرح بها في بعض الأحيان; be = — Будзьце ўважлівы з маршрутамі ў памежных зонах: маршруты пракладзеныя нашым дадаткам часамі могуць перасякаць мяжу ў недазволеных месцах. @@ -6817,7 +6805,7 @@ pl = — Prosimy zachować ostrożność na trasach w strefie nadgranicznej: wyznaczone przez naszą aplikację trasy mogą przecinać granice państw w niedozwolonych do przekroczenia miejscach; pt = — Use com cautela em rotas de zonas fronteiriças: as rotas criadas pela nossa aplicação podem algumas vezes cruzar fronteiras nacionais em locais não autorizados; pt-BR = — Tenha cautela com rotas em zonas fronteiriças: as rotas criadas por nosso aplicativo podem algumas vezes cruzar fronteiras nacionais em locais não autorizados. - ro = — Ai grijă în zonele de graniță: traseele create de aplicația noastră ar putea, ocazional, să treacă granița prin locuri nepermise; + ro = — Aveți grijă în zonele de graniță: rutele create de aplicația noastră ar putea, ocazional, să treacă granița prin locuri nepermise; ru = — Будьте внимательны с маршрутами в приграничных зонах: в построенных программой маршрутах иногда возможны пересечения границ в неположенных местах; sk = — Buďte opatrní na cestách v pohraničných oblastiach: trasy vytvorené aplikáciou môžu prekročiť hranice štátov na nepovolených miestach; sv = — Iakttag försiktighet med rutter i gränszoner: rutterna som vår app skapat kan ibland korsa landsgränser på otillåtna platser; @@ -6829,7 +6817,7 @@ zh-Hant = — 小心對待國界區的路線:我們應用程式建立的路線有時會在未經授權的地方跨越國界; [dialog_routing_disclaimer_beware] - tags = android,ios + tags = android, ios en = Please stay alert and safe on the roads! ar = يجب أن تظل يقظًا وآمنًا على الطريق! be = Будзьце пільнымі і паводзьце сябе бяспечна на дарозе! @@ -6853,7 +6841,7 @@ pl = Podczas podróży zachowaj czujność i prowadź ostrożnie! pt = Fique sempre atento nas estradas! pt-BR = Fique sempre alerta nas estradas! - ro = Fii vigilent şi condu în siguranţă! + ro = Rămâneţi vigilenţi şi conduceţi în siguranţă! ru = Будьте внимательны на дорогах и берегите себя! sk = Na cestách buďte vždy ostražitý a dbajte na bezpečnosť! sv = Var uppmärksam och kör säkert på vägarna! @@ -6865,7 +6853,7 @@ zh-Hant = 請保持警戒,一路平安! [dialog_routing_check_gps] - tags = android,ios + tags = android, ios en = Check GPS signal ar = تحقق من إشارة نظام تحديد المواقع العالمي "GPS" be = Праверце сігнал GPS @@ -6889,7 +6877,7 @@ pl = Sprawdź sygnał GPS pt = Verifique o sinal do GPS pt-BR = Verifique o sinal do GPS - ro = Verifică semnalul GPS + ro = Verificaţi semnalul GPS ru = Проверьте сигнал GPS sk = Skontrolujte signál GPS sv = Kontrollera GPS-signal @@ -6901,7 +6889,7 @@ zh-Hant = 查看 GPS 訊號 [dialog_routing_error_location_not_found] - tags = android,ios + tags = android, ios en = Unable to create route. Current GPS coordinates could not be identified. ar = تعذر إنشاء مسار. لا يمكن تحديد إحداثيات GPS الحالية. be = Не атрымалася пракласци маршрут. Каардынаты GPS не вызначаны. @@ -6925,19 +6913,19 @@ pl = Nie można wyznaczyć trasy. Nie można ustalić współrzędnych GPS. pt = A rota não foi criada, porque não foi possível identificar as coordenadas do GPS. pt-BR = A rota não foi traçada, pois não foi possível identificar as coordenadas do GPS. - ro = Crearea traseului a eşuat. Coordonatele GPS actuale nu au putut fi identificate. + ro = Crearea traseului a eşuat. Coordonatele GPS curente nu au putut fi identificate. ru = Маршрут не построен. Текущая геопозиция не определена. sk = Nedá sa vytvoriť trasa. Aktuálne súradnice GPS sa nedajú identifikovať. sv = Kan inte skapa väg. Nuvarande GPS-koordinater kan inte identifieras. th = ไม่สามารถสร้างเส้นทางได้ ไม่สามารถระบุพิกัด GPS ปัจจุบันได้ - tr = Rota oluşturulamıyor. Mevcut GPS koordinatları tanımlanamadı. + tr = Güzergah oluşturulamıyor. Mevcut GPS koordinatları tanımlanamadı. uk = Маршрут не побудовано. Поточну геопозицію не визначено. vi = Không thể tạo tuyến đường. Không xác định được tọa độ GPS hiện tại. zh-Hans = 无法创建路线。当前 GPS 坐标无法识别。 zh-Hant = 無法產生路線。 無法定位目前 GPS 座標。 [dialog_routing_location_turn_wifi] - tags = android,ios + tags = android, ios en = Please check your GPS signal. Enabling Wi-Fi will improve your location accuracy. ar = يُرجى التحقق من إشارة GPS لديك. ويساعد تمكين خدمة Wi-Fi في تحسين دقة تحديد موقعك. be = Калі ласка, праверце сігнал GPS. Для больш дакладнага вызначэння месцазнаходжання уключыце Wi-Fi. @@ -6961,7 +6949,7 @@ pl = Sprawdź sygnał GPS. Aktywacja Wi-Fi pomoże w precyzyjnym określeniu położenia. pt = Verifique o sinal do GPS. Ative o Wi-Fi para melhorar a precisão da localização. pt-BR = Verifique o sinal do GPS. Ative o Wi-Fi para melhorar a precisão da localização. - ro = Verifică semnalul GPS. Pentru a îmbunătăţi precizia localizării, activează Wi-Fi. + ro = Verificaţi semnalul GPS. Pentru a îmbunătăţi precizia localizării, activaţi Wi-Fi. ru = Пожалуйста, проверьте сигнал GPS. Для улучшения точности геопозиции включите Wi-Fi. sk = Skontrolujte signál GPS. Zapnutie Wi-Fi zlepší presnosť vašej lokalizácie. sv = Kontrollera din GPS-signal. Aktivera Wi-Fi-anslutning för att förbättra platsprecisionen. @@ -6973,7 +6961,7 @@ zh-Hant = 請確認您的 GPS 訊號。啟用無線網路將提升地理位置定位準確度。 [dialog_routing_location_turn_on] - tags = android,ios + tags = android, ios en = Enable location services ar = تمكين خدمات المواقع be = Уключыць геалагацыю @@ -6997,7 +6985,7 @@ pl = Włącz usługi określania lokalizacji pt = Ative os serviços de localização pt-BR = Ative os serviços de localização - ro = Activează serviciile de localizare + ro = Activaţi serviciile de localizare ru = Включите режим определения геопозиции sk = Zapnite lokalizačné služby sv = Aktivera platstjänster @@ -7009,7 +6997,7 @@ zh-Hant = 啟用定位服務 [dialog_routing_location_unknown_turn_on] - tags = android,ios + tags = android, ios en = Unable to locate current GPS coordinates. Enable location services to calculate route. ar = تعذر تحديد إحداثيات نظام تحديد المواقع العالمي GPS الحالية. قم بتمكين خدمات المواقع لحساب المسار. be = Не атрымалася вызначыць каардынаты GPS. Уключыце геалакацыю каб пракласці маршрут. @@ -7033,12 +7021,12 @@ pl = Nie można ustalić współrzędnych GPS. Włącz usługi określania lokalizacji, aby wyznaczyć trasę. pt = Não foi possível localizar as coordenadas do GPS. Ative os serviços de localização para que a rota seja criada. pt-BR = Não foi possível localizar as coordenadas do GPS. Ative os serviços de localização para que a rota seja traçada. - ro = Localizarea coordonatelor GPS curente a eşuat. Pentru a calcula traseul, activează serviciile de localizare. + ro = Localizarea coordonatelor GPS curente a eşuat. Pentru a calcula traseul, activaţi serviciile de localizare. ru = Текущая геопозиция не определена. Для построения маршрута включите режим определения геопозиции. sk = Aktuálne súradnice GPS sa nedajú lokalizovať. Aktivujte lokalizačné služby na výpočet trasy. sv = Kan inte lokalisera nuvarande GPS-koordinater. Aktivera platstjänster för att beräkna väg. th = ไม่สามารถหาตำแหน่งพิกัด GPS ปัจจุบันได้ เปิดใช้บริการหาตำแหน่งเพื่อคำนวณเส้นทาง - tr = Mevcut GPS koordinatları belirlenemiyor. Rota hesaplamak için konum hizmetlerini etkinleştirin. + tr = Mevcut GPS koordinatları belirlenemiyor. Güzergah hesaplamak için konum hizmetlerini etkinleştirin. uk = Поточну геопозицію не визначено. Для побудови маршруту увімкніть режим визначення геопозиції. vi = Không thể xác định vị trí tọa độ GPS hiện tại. Bật các dịch vụ định vị để tính toán tuyến đường. zh-Hans = 无法定位当前 GPS 坐标。请启用定位服务以计算路线。 @@ -7069,7 +7057,7 @@ pl = Pobierz wymagane pliki pt = Descarregar os ficheiros necessários pt-BR = Baixar os arquivos necessários - ro = Descarcă fişierele necesare + ro = Descărcaţi fişierele necesare ru = Загрузите необходимые файлы sk = Prevezmite si požadované súbory sv = Ladda ned nödvändiga filer @@ -7104,19 +7092,19 @@ pl = Pobierz i zaktualizuj dane mapy i wyznaczania trasy wzdłuż planowanej drogi, aby wyznaczyć trasę. pt = Descarregue e atualize todos os dados do mapa e roteamento ao longo do trajeto desejado para que a rota seja criada. pt-BR = Baixe e atualize todos os dados de mapa e roteamento referentes ao trajeto desejado para que a rota seja traçada. - ro = Pentru calcularea traseului, descarcă şi actualizează toate hărţile şi informaţiile de stabilire a traseului pentru calea estimată. + ro = Pentru calcularea traseului, descărcaţi şi actualizaţi toate hărţile şi informaţiile de stabilire a traseului pentru calea estimată. ru = Для построения маршрута загрузите и обновите все карты и файлы маршрутов по пути следования. sk = Prevezmite si a aktualizujte všetky mapy a informácie o trase pozdĺž naplánovanej trasy na výpočet trasy. sv = Ladda ned och uppdatera all kart- och väginformation längs den beräknade vägbanan för att beräkna vägen. th = ดาวน์โหลดและอัปเดตแผนที่กับข้อมูลเส้นทางทั้งหมดตามเส้นทางที่คาดหมายเพื่อคำนวณเส้นทาง - tr = Planlanan yoldaki tüm harita ve rota bilgilerini indirip güncelleyerek rotayı hesaplayın. + tr = Planlanan yoldaki tüm harita ve güzergah bilgilerini indirip güncelleyerek güzergahı hesaplayın. uk = Для побудови маршруту завантажте і обновіть всі мапи і файли маршрутів на шляху руху. vi = Tải về và cập nhật tất cả các bản đồ và các thông tin tuyến đường dọc theo lộ trình dự kiến để tính toán tuyến đường. zh-Hans = 下载和更新所有地图和预定路径沿途的路线信息,以计算路线。 zh-Hant = 若要產生路線,請下載並更新所有地圖及沿路線的路線檔案。 [dialog_routing_unable_locate_route] - tags = android,ios + tags = android, ios en = Unable to locate route ar = تعذر تحديد موقع المسار be = Не атрымалася знайсці маршрут @@ -7145,7 +7133,7 @@ sk = Trasa sa nedá lokalizovať sv = Kan inte lokalisera väg th = ไม่สามารถหาเส้นทางได้ - tr = Rota belirlenemiyor + tr = Güzergah belirlenemiyor uk = Маршрут не знайдено vi = Không thể xác định tuyến đường zh-Hans = 无法定位路线 @@ -7181,14 +7169,14 @@ sk = Trasa sa nedá vytvoriť. sv = Kan inte skapa väg. th = ไม่สามารถสร้างเส้นทางได้ - tr = Rota oluşturulamıyor. + tr = Güzergah oluşturulamıyor. uk = Не вдалося побудувати маршрут. vi = Không thể tạo tuyến đường. zh-Hans = 无法创建路线。 zh-Hant = 無法產生路線。 [dialog_routing_change_start_or_end] - tags = android,ios + tags = android, ios en = Please adjust your starting point or your destination. ar = برجاء تعديل نقطة بدء وجهتك. be = Калі ласка, змяніце пункт адпраўлення альбо прызначэння. @@ -7212,7 +7200,7 @@ pl = Zmień punkt początkowy lub docelowy. pt = Ajuste o ponto de partida ou o ponto de chegada. pt-BR = Ajuste o ponto de partida ou o ponto de chegada. - ro = Schimbă punctul de plecare sau destinaţia. + ro = Ajustaţi punctul iniţial sau destinaţia. ru = Пожалуйста, измените начальную или конечную точку маршрута. sk = Prosím, upravte váš východiskový bod alebo cieľové miesto. sv = Justera din startpunkt eller din destination. @@ -7224,7 +7212,7 @@ zh-Hant = 請變更起點或最終目的地。 [dialog_routing_change_start] - tags = android,ios + tags = android, ios en = Adjust starting point ar = تعديل نقطة البدء be = Змяніце пункт адпраўлення @@ -7248,7 +7236,7 @@ pl = Zmień punkt początkowy pt = Ajuste o ponto de partida pt-BR = Ajuste o ponto de partida - ro = Schimbă punctul de plecare + ro = Ajustaţi punctul iniţial ru = Измените начальную точку маршрута sk = Nastavte východiskový bod sv = Justera startpunkt @@ -7260,7 +7248,7 @@ zh-Hant = 變更起點 [dialog_routing_start_not_determined] - tags = android,ios + tags = android, ios en = Route was not created. Unable to locate starting point. ar = لم يتم إنشاء المسار. تعذر تحديد موقع نقطة البدء. be = Маршрут не пракладзены. Не знойдзены пункт адпраўлення. @@ -7284,19 +7272,19 @@ pl = Nie wyznaczono trasy. Nie można zlokalizować punktu początkowego. pt = A rota não foi criada, porque não foi possível localizar o ponto de partida. pt-BR = A rota não foi traçada, pois não foi possível localizar o ponto de partida. - ro = Traseul nu a fost creat. Localizarea punctului de plecare a eşuat. + ro = Traseul nu a fost creat. Localizarea punctului iniţial a eşuat. ru = Маршрут не построен. Не определена начальная точка маршрута. sk = Trasa nebola vytvorená. Nedá sa lokalizovať východiskový bod. sv = Ingen väg skapades. Kan inte lokalisera startpunkt. th = ไม่มีการสร้างเส้นทาง ไม่สามารถหาจุดเริ่มต้นได้ - tr = Rota oluşturulamadı. Başlangıç noktası belirlenemiyor. + tr = Güzergah oluşturulamadı. Başlangıç noktası belirlenemiyor. uk = Маршрут не побудовано. Не визначено початкову точку маршруту. vi = Tuyến đường chưa được tạo. Không thể xác định vị trí điểm bắt đầu. zh-Hans = 路线未创建。无法定位起点。 zh-Hant = 此路線尚未產生。無法定位起點。 [dialog_routing_select_closer_start] - tags = android,ios + tags = android, ios en = Please select a starting point closer to a road. ar = يُرجى تحديد نقطة بدء أكثر قربًا للطريق. be = Выберыце пункт адпраўлення бліжэй да дарогі. @@ -7320,7 +7308,7 @@ pl = Wybierz punkt początkowy położony bliżej drogi. pt = Selecione um ponto de partida mais perto de uma estrada. pt-BR = Selecione um ponto de partida mais perto de uma estrada. - ro = Alege un punct de plecare mai aproape de un drum. + ro = Setaţi punctul iniţial mai aproape de un drum. ru = Пожалуйста, выберите начальную точку маршрута ближе к дороге. sk = Vyberte východiskový bod bližšie k ceste. sv = Välj en startpunkt närmare en väg. @@ -7332,7 +7320,7 @@ zh-Hant = 請選擇更接近道路的起點。 [dialog_routing_change_end] - tags = android,ios + tags = android, ios en = Adjust destination ar = تعديل الوجهة be = Змяніце пункт прызначэння @@ -7356,7 +7344,7 @@ pl = Zmień punkt docelowy pt = Ajuste o ponto de chegada pt-BR = Ajuste o ponto de chegada - ro = Schimbă destinaţia + ro = Ajustaţi destinaţia finală ru = Измените конечную точку маршрута sk = Nastavte cieľové miesto sv = Justera destination @@ -7368,7 +7356,7 @@ zh-Hant = 變更目的地 [dialog_routing_end_not_determined] - tags = android,ios + tags = android, ios en = Route was not created. Unable to locate the destination. ar = لم يتم إنشاء المسار. تعذر تحديد موقع الوجهة. be = Маршрут не пракладзены. Не знойдзены пункт прызначэння. @@ -7397,14 +7385,14 @@ sk = Trasa nebola vytvorená. Nedá sa lokalizovať cieľové miesto. sv = Ingen väg skapades. Kan inte lokalisera destination. th = ไม่มีการสร้างเส้นทาง ไม่สามารถหาที่หมายได้ - tr = Rota oluşturulamadı. Hedef belirlenemiyor. + tr = Güzergah oluşturulamadı. Hedef belirlenemiyor. uk = Маршрут не побудовано. Не визначено кінцеву точку маршруту. vi = Tuyến đường chưa được tạo. Không thể xác định vị trí điểm đến. zh-Hans = 路线未创建。无法定位目的地。 zh-Hant = 未產生路線。無法定位目的地。 [dialog_routing_select_closer_end] - tags = android,ios + tags = android, ios en = Please select a destination point located closer to a road. ar = يُرجى تحديد نقطة وجهة تقع أكثر قربًا من الطريق. be = Выберыце пункт прызначэння бліжэй да дарогі. @@ -7428,7 +7416,7 @@ pl = Wybierz punkt docelowy położony bliżej drogi. pt = Selecione um ponto de chegada mais perto de uma estrada. pt-BR = Selecione um ponto de chegada mais perto de uma estrada. - ro = Alege un punct de destinaţie mai aproape de un drum. + ro = Setaţi un punct de destinaţie mai aproape de un drum. ru = Пожалуйста, выберите конечную точку маршрута ближе к дороге. sk = Vyberte cieľové miesto nachádzajúce sa bližšie k ceste. sv = Välj en destinationspunkt närmare en väg. @@ -7440,7 +7428,7 @@ zh-Hant = 請選擇更接近道路的目的地。 [dialog_routing_change_intermediate] - tags = android,ios + tags = android, ios en = Unable to locate the intermediate point. ar = تعذر تحديد مكان النقطة الوسيطة. be = Не знойдзена прамежкавая кропка маршрута. @@ -7475,7 +7463,7 @@ zh-Hant = 找不到中途休息站。 [dialog_routing_intermediate_not_determined] - tags = android,ios + tags = android, ios en = Please adjust your intermediate point. ar = الرجاء ضبط النقطة الوسيطة الخاصة بك. be = Змяніце прамежкавы пункт. @@ -7490,7 +7478,7 @@ fr = Veuillez modifier votre point intermédiaire hu = Kérjük, állítsa be köztes pontját. id = Harap sesuaikan titik antara Anda. - it = Modifica il punto intermedio. + it = Regolare il punto intermedio. ja = 中間地点を調整してください。 ko = 중간 지점을 조정하세요. nb = Kontroller og juster mellomstopp. @@ -7498,7 +7486,7 @@ pl = Dokonaj korekty punktu postoju. pt = Ajuste o ponto intermédio. pt-BR = Ajuste seu ponto intermédio. - ro = Schimbă punctul intermediar. + ro = Ajustați punctul intermediar. ru = Пожалуйста, измените промежуточную точку маршрута. sk = Upravte zastávku. sv = Justera din mellanliggande punkt. @@ -7511,7 +7499,7 @@ zh-Hant = 請調整您的中途休息站。 [dialog_routing_system_error] - tags = android,ios + tags = android, ios en = System error ar = خطأ في النظام be = Памылка сістэмы @@ -7535,7 +7523,7 @@ pl = Błąd systemowy pt = Erro de sistema pt-BR = Erro de sistema - ro = Eroare de sistem + ro = Eroare sistem ru = Системная ошибка sk = Systémová chyba sv = Systemfel @@ -7547,7 +7535,7 @@ zh-Hant = 系統錯誤 [dialog_routing_application_error] - tags = android,ios + tags = android, ios en = Unable to create route due to an application error. ar = تعذر إنشاء مسار نتيجة وجود خطأ في التطبيق. be = Не атрымалася пракласці маршрут з-за памылкі дадатка. @@ -7576,14 +7564,14 @@ sk = Nedá sa vytvoriť trasa z dôvodu aplikačnej chyby. sv = Kan inte skapa väg på grund av ett programfel. th = ไม่สามารถสร้างเส้นทางได้เนื่องจากเกิดข้อผิดพลาดของแอปพลิเคชัน - tr = Uygulama hatası nedeniyle rota oluşturulamadı. + tr = Uygulama hatası nedeniyle güzergah oluşturulamadı. uk = Не вдалося прокласти маршрут через помилки програми. vi = Không thể tạo tuyến đường do lỗi ứng dụng. zh-Hans = 由于应用程序错误,无法创建路线。 zh-Hant = 由於此錯誤,尚未建立路線。 [dialog_routing_try_again] - tags = android,ios + tags = android, ios en = Please try again ar = برجاء إعادة المحاولة be = Паспрабуйце зноў @@ -7607,7 +7595,7 @@ pl = Spróbuj ponownie pt = Tente novamente pt-BR = Por favor, tente novamente - ro = Încearcă din nou + ro = Încercaţi din nou ru = Попробуйте снова sk = Skúste znova, prosím sv = Försök igen @@ -7655,7 +7643,7 @@ zh-Hant = 現在不要 [dialog_routing_download_and_build_cross_route] - tags = android,ios + tags = android, ios en = Would you like to download the map and create a more optimal route spanning more than one map? ar = هل ترغب في تنزيل الخريطة وإنشاء مسار أفضل يمتد عبر أكثر من خريطة؟ be = Спампаваць мапу і пракласці лепшы маршрут праз некалькі мапаў? @@ -7679,19 +7667,19 @@ pl = Chcesz pobrać mapę i wyznaczyć lepszą trasę, obejmującą więcej map? pt = Quer descarregar o mapa e traçar uma rota melhor, mas que se estenda por mais de um mapa? pt-BR = Deseja baixar o mapa e traçar uma rota melhor, mas que se estenda por mais de um mapa? - ro = Vrei să descarci harta şi să creezi un traseu mai bun care include mai multe hărți? + ro = Doriţi să descărcaţi harta şi să creaţi un traseu mai direct care include mai mult decât o hartă? ru = Загрузить карту и построить более оптимальный маршрут с пересечением границы карты? sk = Chcete si prevziať mapu a vytvoriť optimálnejšiu trasu, ktorá si vyžaduje viac ako jednu mapu? sv = Vill du ladda ned kartan och skapa en optimalare väg som sträcker sig över fler än en karta? th = คุณต้องการดาวน์โหลดแผนที่และสร้างเส้นทางที่เหมาะสมกว่าซึ่งข้ามเกินหนึ่งแผนที่หรือไม่? - tr = Haritayı indirerek birden fazla haritaya uzanan daha uygun bir rota oluşturmak ister misiniz? + tr = Haritayı indirerek birden fazla haritaya uzanan daha uygun bir güzergah oluşturmak ister misiniz? uk = Завантажити мапу і побудувати більш оптимальний маршрут з перетином межі мапи? vi = Bạn có muốn tải về bản đồ và tạo một tuyến đường tối ưu hơn kéo dài trên nhiều hơn một bản đồ? zh-Hans = 您是否要下载地图并创建一条跨越多张地图的更佳路线? zh-Hant = 您是否要下載地圖,產生跨越邊界的更好路線? [dialog_routing_download_cross_route] - tags = android,ios + tags = android, ios en = Download additional maps to create a better route that crosses the boundaries of this map. ar = تنزيل الخريطة لإنشاء مسار أفضل يعبر حافة هذه الخريطة. be = Спампаваць дадатковыя мапы, каб пракласці лепшы маршрут, каторы перасякае межы гэтай мапы. @@ -7707,7 +7695,7 @@ he = הורד את המפה כדי ליצור מסלול מיטבי יותר, החוצה את הגבול של מפה זו. hu = Töltse le a térképet, hogy létrehozzon egy optimálisabb útvonalat, amely áthalad a jelenlegi térkép szélén. id = Unduh peta untuk membuat rute yang lebih optimal yang melewati ujung peta ini. - it = Scarica altre mappe per creare un percorso migliore che attraversi i confini di questa mappa. + it = Per creare un percorso migliore che oltrepassa il limite di questa mappa, scarica la mappa. ja = このマップの境界を越えて複数マップを利用し、より最適なルートを作成するには、マップをダウンロードしてください。 ko = 이 지도의 경계를 통과하는 더 최적화된 경로를 설정하려면 지도를 다운로드하세요. nb = Last ned kartet for å opprette en mer optimal rute som går utenfor dette kartet. @@ -7715,12 +7703,12 @@ pl = Pobierz mapę i wyznacz lepszą trasę, wykraczającą poza granice bieżącej mapy. pt = Descarregue o mapa para traçar uma rota melhor que vai além dos limites deste mapa. pt-BR = Baixe o mapa para traçar uma rota melhor que vai além dos limites desse mapa. - ro = Descarcă hărți suplimentare pentru a crea un traseu mai bun care să traverseze limitele acestei hărți. + ro = Pentru a crea un traseu mai adecvat care trece de limita acestei hărţi, descărcaţi harta. ru = Для построения более оптимального маршрута с пересечением границы требуется загрузить карту. sk = Prevezmite si mapu na vytvorenie optimálnejšej trasy, ktorá prekračuje okraje tejto mapy. sv = Ladda ned kartan för att skapa en optimalare väg som sträcker sig utanför den här kartan. th = ดาวน์โหลดแผนที่เพื่อสร้างเส้นทางที่เหมาะสมกว่าซึ่งข้ามเลยขอบของแผนที่นี้ - tr = Bu haritanın bir kısmından geçen daha uygun bir rota oluşturmak için haritayı indirin. + tr = Bu haritanın bir kısmından geçen daha uygun bir güzergah oluşturmak için haritayı indirin. uk = Для побудови більш оптимального маршруту з перетином межі потрібно завантажити мапу. vi = Tải về bản đồ để tạo tuyến đường tối ưu hơn mà đi qua cạnh của bản đồ này. zh-Hans = 下载地图,创建一条跨越此地图边缘的更佳路线。 @@ -7753,7 +7741,7 @@ pl = Aby rozpocząć wyszukiwanie i tworzenie tras, pobierz mapę, a nie będzie ci już potrzebne połączenie z Internetem. pt = Para começar a pesquisar e criar rotas, por favor, descarregue o mapa. Desta forma não irá precisra mais de uma ligação à Internet. pt-BR = Para começar a pesquisar e criar rotas, por favor, baixe o mapa. Assim, você não precisará mais de uma conexão com a internet. - ro = Pentru a putea începe căutarea și crearea unor trasee, descarcă harta, iar apoi nu vei mai avea nevoie de conexiune la internet. + ro = Pentru a putea începe căutarea și crearea unor rute, vă rugăm să descărcați harta, iar apoi nu veți mai avea nevoie de conexiune la internet. ru = Для поиска мест и построения маршрутов скачайте карту, и интернет вам больше не понадобится. sk = Stiahnutím mapy už nebudete potrebovať pripojenie k internetu a môžete si začať vyhľadávať a vytvárať trasy. sv = För att börja söka och skapa rutter, ladda ner kartan, och du behöver inte Internet-anslutning längre. @@ -7789,7 +7777,7 @@ pl = Wybierz mapę pt = Selecionar mapa pt-BR = Selecionar Mapa - ro = Alege harta + ro = Selectați harta ru = Выбрать карту sk = Vybrať mapu sv = Välj kartan @@ -7802,7 +7790,7 @@ [show] comment = «Show» context menu - tags = android,ios + tags = android, ios en = Show ar = عرض be = Паказаць @@ -7825,7 +7813,7 @@ pl = Pokaż pt = Mostrar pt-BR = Mostrar - ro = Arată + ro = Afișare ru = Показать sk = Ukázať sv = Visa @@ -7838,7 +7826,7 @@ [hide] comment = «Hide» context menu - tags = android,ios + tags = android, ios en = Hide ar = إخفاء be = Схаваць @@ -7861,7 +7849,7 @@ pl = Ukryj pt = Ocultar pt-BR = Ocultar - ro = Ascunde + ro = Ascundere ru = Скрыть sk = Skryť sv = Göm @@ -7897,7 +7885,7 @@ pl = Planowanie trasy nieudane pt = Falha no planeamento da rota pt-BR = Falha no planejamento da rota - ro = Planificarea traseului a eșuat + ro = Planificarea rutei a eșuat ru = Ошибка построения маршрута sk = Plánovanie trasy zlyhalo sv = Ruttplanering misslyckades @@ -7910,7 +7898,7 @@ [routing_arrive] comment = Arrive routing message in navigation view - tags = android,ios + tags = android, ios en = Arrival at %s ar = الوصول: %s be = Прыбыццё а %s @@ -7925,7 +7913,7 @@ fr = Arrivée: %s hu = Megérkezik: %s id = Kedatangan: %s - it = Arrivo a %s + it = Arrivo: %s ja = 到着予定: %s ko = 도착: %s nb = Ankomme: %s @@ -7933,7 +7921,7 @@ pl = Przybycie: %s pt = Chegada: %s pt-BR = Chegada: %s - ro = Sosire la %s + ro = Sosire: %s ru = Прибытие в %s sk = Pricestovať: %s sv = Ankomst: %s @@ -7966,7 +7954,7 @@ pl = Aby utworzyć trasę, pobierz i zaktualizuj wszystkie właściwe dla niej mapy. pt = Para criar uma rota, por favor, baixe e atualize todos os mapas ao longo do trajeto. pt-BR = Para criar uma rota, por favor, baixe e atualize todos os mapas ao longo do trajeto. - ro = Pentru a crea un traseu,descarcă și actualizează toate hărțile de pe parcursul traseului. + ro = Pentru a crea o rută, vă rugăm să descărcați și să actualizați toate hărțile de pe parcursul rutei. ru = Для построения маршрута загрузите и обновите все карты по пути следования. sk = Prosím, pre vytvorenie trasy si stiahnite a aktualizujte všetky mapy pozdĺž trasy. sv = För att skapa en rutt, ladda ner och uppdatera alla kartor längs rutten. @@ -8001,7 +7989,7 @@ pl = Lubisz tę aplikację? pt = Gosta da aplicação? pt-BR = Você gosta do aplicativo? - ro = Îți place aplicația? + ro = Vă place aplicația? ru = Нравится приложение? sk = Páči sa vám aplikácia? sv = Gillar du appen? @@ -8036,7 +8024,7 @@ pl = Dziękujemy za korzystanie z Organic Maps. Prosimy wystawić aplikacji ocenę. Twoja opinia pozwoli nam udoskonalać nasze produkty. pt = Obrigado por usar o Organic Maps. Por favor avalie a aplicação. A sua resposta pode ajudar-nos a desenvolver a aplicação. pt-BR = Obrigado por usar Organic Maps. Por favor, avalie o aplicativo. Seu feedback nos ajuda a melhorar. - ro = Îți mulțumim că folosești Organic Maps. Te rugăm să evaluezi aplicația. Comentariul tău ne ajută să devenim mai buni. + ro = Vă mulțumim că folosiți Organic Maps. Vă rugăm să dați o notă aplicației. Comentariile dvs. ne ajută să devenim mai buni. ru = Спасибо что пользуетесь картами Organic Maps. Пожалуйста, оцените приложение. Ваши оценки и отзывы помогают нам становиться лучше. sk = Ďakujeme, že používate Organic Maps. Prosím, ohodnoťte aplikáciu. Vaše názory nám pomôžu zlepšiť sa. sv = Tack för att du använder Organic Maps. Betygsätt gärna appen. Din feedback hjälper oss att bli bättre. @@ -8063,7 +8051,7 @@ fr = Super ! Nous vous aimons aussi ! hu = Hurrá! Mi is szeretjük magát! id = Hore! Kami juga sangat menyukai Anda! - it = Urrà! Anche noi ti amiamo! + it = Hooray! Anche noi amiamo i nostri utenti! ja = やったー! 相思相愛! ko = 야호! 저희는 당신도 사랑합니다! nb = Hurra! Vi elsker deg også! @@ -8071,7 +8059,7 @@ pl = Hurra! My też Cię uwielbiamy! pt = Viva! Também gostamos de si! pt-BR = Viva! Também amamos você! - ro = Ura! Și noi te iubim! + ro = Ura! Și noi vă iubim! ru = Ура! Мы вас тоже любим! sk = Hurá! Aj my vás taky páči! sv = Hurra! Vi älskar dig också! @@ -8106,7 +8094,7 @@ pl = Dziękujemy, zrobimy co w naszej mocy! pt = Obrigado, faremos o melhor possível! pt-BR = Obrigado, faremos o nosso melhor! - ro = Mulțumim, vom face tot ce ne stă în putință! + ro = Vă mulțumim, vom face tot ce ne stă în putință! ru = Спасибо, мы будем стараться! sk = Ďakujeme vám, urobíme, čo bude v našich silách! sv = Tack, vi ska göra vårt bästa! @@ -8141,7 +8129,7 @@ pl = Czy masz pomysł, w jaki sposób możemy dokonać ulepszeń? pt = Tem alguma ideia de como podemos melhorar? pt-BR = Alguma ideia sobre como podemos melhorar? - ro = Ai vreo idee prin care putem să îmbunătățim aplicația? + ro = Aveți vreo idee prin care putem să îmbunătățim aplicația? ru = Расскажите, что мы могли бы улучшить? sk = Nejaký nápad, ako ju môžeme vylepšiť? sv = Har du någon idé om hur vi ska bli bättre? @@ -8153,7 +8141,7 @@ zh-Hant = 有沒有想法我們能怎麽把它變得更好? [categories] - tags = android,ios + tags = android, ios en = Categories ar = التصنيفات be = Катэгорыі @@ -8188,7 +8176,7 @@ zh-Hant = 類別 [history] - tags = android,ios + tags = android, ios en = History ar = السجل be = Гісторыя @@ -8211,7 +8199,7 @@ pl = Historia pt = Histórico pt-BR = Histórico - ro = Cronologia + ro = Istoric ru = История sk = Archív sv = Historik @@ -8223,7 +8211,7 @@ zh-Hant = 記錄 [closed] - tags = android,ios + tags = android, ios en = Closed ar = مغلق be = Зачынена @@ -8258,7 +8246,7 @@ zh-Hant = 已關閉 [search_not_found] - tags = android,ios + tags = android, ios en = Oops, no results found. ar = المعذرة، لم أعثر على أي شيء. be = Нічога не знойдзена. @@ -8273,7 +8261,7 @@ fr = Désolé, je n'ai rien trouvé. hu = Sajnos, semmit nem találtam. id = Maaf, saya tidak menemukan apa pun. - it = Non ho trovato nulla. + it = Spiacente, non ho trovato nulla. ja = 申し訳ありませんが該当するものは見つかりませんでした。 ko = 죄송합니다. 아무것도 찾지 못했습니다. nb = Beklager, jeg fant ingenting. @@ -8281,7 +8269,7 @@ pl = Przepraszamy, nic nie znaleziono. pt = Lamento, mas não foram encontrados resultados. pt-BR = Sinto muito, nenhum resultado foi encontrado. - ro = Nu s-a găsit nimic. + ro = Ne pare rău, nu s-au găsit rezultate. ru = К сожалению, мы ничего не нашли. sk = Ľutujeme, ale nič sme nenašli. sv = Ledsen, jag hittade ingenting. @@ -8293,7 +8281,7 @@ zh-Hant = 很抱歉,找不到任何東西。 [search_not_found_query] - tags = android,ios + tags = android, ios en = Try changing your search criteria. ar = يرجى تجربة استعلام آخر. be = Паспрабуйце змяніць умовы пошуку. @@ -8316,7 +8304,7 @@ pl = Wpisz inne zapytanie. pt = Por favor, tente outro termo de pesquisa. pt-BR = Por favor, tente outro termo de busca. - ro = Caută altfel. + ro = Vă rugăm să încercați altă căutare. ru = Попробуйте изменить условия поиска. sk = Vyskúšajte, prosím, iný hľadaný výraz. sv = Försök med en annan sökförfrågan. @@ -8328,7 +8316,7 @@ zh-Hant = 請嘗試其他搜尋字詞。 [search_history_title] - tags = android,ios + tags = android, ios en = Search History ar = سجل البحث be = Гісторыя пошуку @@ -8343,7 +8331,7 @@ fr = Historique de recherche hu = Előző keresések id = Riwayat Pencarian - it = Cronologia delle ricerche + it = Cerca nella cronologia ja = 検索履歴 ko = 검색 기록 nb = Søkehistorikk @@ -8351,7 +8339,7 @@ pl = Historia wyszukiwania pt = Histórico de pesquisas pt-BR = Histórico de Busca - ro = Cronologia căutărilor + ro = Istoricul căutărilor ru = История поиска sk = História vyhľadávania sv = Sökhistorik @@ -8363,7 +8351,7 @@ zh-Hant = 搜尋歷史紀錄 [search_history_text] - tags = android,ios + tags = android, ios en = View recent searches. ar = الوصول إلى استعلامات البحث الحديثة بسرعة. be = Праглядзець нядаўныя пошукі. @@ -8378,7 +8366,7 @@ fr = Accédez rapidement aux dernières recherches. hu = Aktuális keresés gyors elérése. id = Akses kueri pencarian terbaru dengan cepat. - it = Visualizza le ricerche recenti. + it = Accedi velocemente alle stringhe di ricerca recenti. ja = 最近の検索クエリに素早くアクセス。 ko = 최근 검색 쿼리에 신속하게 액세스할 수 있습니다. nb = Vis de siste søkene raskt. @@ -8386,19 +8374,19 @@ pl = Uzyskaj szybki dostęp do ostatniego hasła wyszukiwania. pt = Ver as pesquisas recentes. pt-BR = Visualizar as buscas recentes. - ro = Arată căutările recente. + ro = Accesare rapidă a căutărilor recente. ru = Быстрый доступ к последним поисковым запросам. sk = Rýchlo pristupujte k nedávnym hľadaným výrazom. sv = Få snabbare åtkomst till senaste sökförfrågan. th = เข้าถึงคำถามที่ใช้ในการค้นหาเมื่อเร็ว ๆ นี้ได้อย่างรวดเร็ว - tr = Son aramaları görüntüleyin. + tr = En son yapılan arama sorgularını görüntüle. uk = Швидкий доступ до недавніх результатів пошуку. vi = Truy cập nhanh chóng đến câu hỏi tìm kiếm gần đây. zh-Hans = 快速访问最近的搜索查询。 zh-Hant = 檢視最近的搜尋。 [clear_search] - tags = android,ios + tags = android, ios en = Clear Search History ar = مسح تاريخ البحث be = Ачысціць гісторыю пошуку @@ -8421,12 +8409,12 @@ pl = Wyczyść historię wyszukiwania pt = Limpar histórico de pesquisas pt-BR = Limpar histórico de pesquisa - ro = Șterge cronologia căutărilor + ro = Ștergere istoric de căutare ru = Очистить историю поиска sk = Vymazať históriu vyhľadávania sv = Rensa sökhistorik th = ล้างการค้นหาประวัติ - tr = Arama Geçmişini Temizle + tr = Arama Geçmişini temizle uk = Очистити історію пошуку vi = Xóa Lịch sử Tìm kiếm zh-Hans = 清除历史搜索 @@ -8440,18 +8428,14 @@ el = Wikipedia fa = ویکی پدیا fr = Wikipédia - it = Wikipedia pt = Wikipédia pt-BR = Wikipédia - ro = Wikipedia - ru = Википедия tr = Vikipedi - uk = Вікіпедія zh-Hans = 维基百科 zh-Hant = 維基百科 [p2p_your_location] - tags = android,ios + tags = android, ios en = Your Location ar = موقعك be = Ваша месцазнаходжанне @@ -8474,7 +8458,7 @@ pl = Twoja lokalizacja pt = Localização atual pt-BR = Localização atual - ro = Poziția ta + ro = Locația dvs. ru = Ваше местоположение sk = Vaša poloha sv = Din plats @@ -8486,7 +8470,7 @@ zh-Hant = 您的位置 [p2p_start] - tags = android,ios + tags = android, ios en = Start ar = البداية be = Пачаць @@ -8509,7 +8493,7 @@ pl = Start pt = Iniciar pt-BR = Iniciar - ro = Pornește + ro = Start ru = Начать sk = Štart sv = Start @@ -8521,7 +8505,7 @@ zh-Hant = 開始 [p2p_from_here] - tags = android,ios + tags = android, ios en = Route from ar = من be = Адсюль @@ -8544,7 +8528,7 @@ pl = Z pt = De pt-BR = De - ro = De la + ro = Din ru = Отсюда sk = Cesta z sv = Från @@ -8556,7 +8540,7 @@ zh-Hant = 從 [p2p_to_here] - tags = android,ios + tags = android, ios en = Route to ar = الطريق إلى be = Дасюль @@ -8571,7 +8555,7 @@ fr = Itinéraire vers hu = Ide id = Rute ke - it = A + it = Percorso per ja = 目的地 ko = 목적지 nb = Rute til @@ -8579,7 +8563,7 @@ pl = Droga do pt = Itinerário para pt-BR = Para - ro = La + ro = Ruta la ru = Сюда sk = Cesta do sv = Rutt till @@ -8591,7 +8575,7 @@ zh-Hant = 路線終點 [p2p_only_from_current] - tags = android,ios + tags = android, ios en = Navigation is available only from your current location. ar = تتوافر إمكانية التنقل فقط من خلال موقعك الحالي. هل تريد أن نخطط لك طريقاً بديلاً؟ be = Навігацыя магчыма толькі ад цяперашняга месцазнаходжання. @@ -8614,7 +8598,7 @@ pl = Nawigacja jest dostępna tylko od twojej bieżącej lokalizacji. pt = Só é possível navegar a partir da sua localização atual. pt-BR = Só é possível navegar a partir da sua localização atual. - ro = Navigația este disponibilă doar avînd ca punct de plecare poziția ta actuală. + ro = Navigația este disponibilă doar având ca punct de pornire locațiacctuală. ru = Навигация возможна только из текущего местоположения. sk = Navigácia je dostupná iba z vašej aktuálnej polohy. sv = Navigering är endast tillgänglig från din aktuella plats. @@ -8626,7 +8610,7 @@ zh-Hant = 導航只能從您目前的位置開始。 [p2p_reroute_from_current] - tags = android,ios + tags = android, ios en = Do you want us to plan a route from your current location? ar = هل ترغب في أن نرسم مسار لك من موقعك الحالي؟ be = Хочаце перапракласці маршрут ад цяперашняга месцазнаходжання? @@ -8641,7 +8625,7 @@ fr = Souhaitez-vous que nous planifiions un itinéraire à partir de votre emplacement actuel ? hu = Szeretne útvonaltervet készíttetni a jelenlegi pozíciójától? id = Apakah Anda ingin kami merencanakan sebuah rute dari lokasi Anda saat ini? - it = Vuoi che pianifichiamo un percorso dalla tua posizione attuale? + it = Vuoi che impostiamo il percorso dalla tua posizione corrente? ja = 現在位置からのルートを作成しますか? ko = 현재 위치에서 경로를 계획하시겠습니까? nb = Vil du vi skal planlegge en rute fra din nåværende posisjon? @@ -8649,7 +8633,7 @@ pl = Czy chcesz, byśmy zaplanowali trasę z Twojej bieżącej lokalizacji? pt = Quer planear uma rota a partir da sua localização atual? pt-BR = Deseja planejar uma rota a partir da sua localização atual? - ro = Vrei să planificăm un traseu din poziția ta actuală? + ro = Doriți să vă planificăm o rută având ca punct de pornire locația actuală? ru = Хотите перестроить маршрут от вашего местоположения? sk = Doriți să vă planificăm o rută având ca punct de pornire locația actuală? sv = Vill du att vi planerar en färdväg från din nuvarande plats? @@ -8685,7 +8669,7 @@ pl = Dalej pt = Próxima pt-BR = Próxima - ro = Următorul + ro = Următoarea ru = Далее sk = Nasledujúca sv = Nästa @@ -8697,7 +8681,7 @@ zh-Hant = 下一頁 [editor_time_add] - tags = android,ios + tags = android, ios en = Add Schedule ar = إضافة جدول be = Дадаць расклад @@ -8712,7 +8696,7 @@ fr = Ajouter un horaire d'ouverture hu = Időrend felvitele id = Tambah Jadwal - it = Aggiungi pianificazione + it = Aggiungi orari ja = スケジュール追加 ko = 스케줄 추가 nb = Legg til tidsrom @@ -8720,7 +8704,7 @@ pl = Dodaj harmonogram pt = Adicionar horário pt-BR = Adicionar horário - ro = Adaugă planificare + ro = Adăugare planificare ru = Добавить расписание sk = Pridať rozvrh sv = Lägg till schema @@ -8732,7 +8716,7 @@ zh-Hant = 新增排程 [editor_time_delete] - tags = android,ios + tags = android, ios en = Delete Schedule ar = حذف جدول be = Выдаліць расклад @@ -8747,7 +8731,7 @@ fr = Supprimer un horaire d'ouverture hu = Időrend törlése id = Hapus Jadwal - it = Elimina pianificazione + it = Elimina orari ja = スケジュール削除 ko = 스케줄 삭제 nb = Slett tidsrom @@ -8755,7 +8739,7 @@ pl = Usuń harmonogram pt = Eliminar horário pt-BR = Apagar Horário - ro = Elimină planificarea + ro = Eliminare planificare ru = Удалить расписание sk = Zmazať rozvrh sv = Ta bort schema @@ -8768,7 +8752,7 @@ [editor_time_allday] comment = Text for allday switch. - tags = android,ios + tags = android, ios en = All Day (24 hours) ar = طوال اليوم (24 ساعة) be = Цэлы дзень (24 гадзіны) @@ -8791,7 +8775,7 @@ pl = Całą dobę (24 godziny) pt = Todo o dia (24 horas) pt-BR = O Dia Todo (24 horas) - ro = Toată ziua (24 ore) + ro = Toată ziua (non-stop) ru = Весь день (24 часа) sk = Nepretržite (24 hodín) sv = Alla dagar (24 timmar) @@ -8803,7 +8787,7 @@ zh-Hant = 全天 (24 小時) [editor_time_open] - tags = android,ios + tags = android, ios en = Open ar = مفتوح be = Адчынена @@ -8826,7 +8810,7 @@ pl = Otwarte pt = Aberto pt-BR = Aberto - ro = Deschis + ro = Deschidere ru = Открыто sk = Otvorené sv = Öppet @@ -8838,7 +8822,7 @@ zh-Hant = 營業中 [editor_time_close] - tags = android,ios + tags = android, ios en = Closed ar = مغلق be = Зачынена @@ -8861,7 +8845,7 @@ pl = Zamknięte pt = Fechado pt-BR = Fechado - ro = Închis + ro = Închidere ru = Закрыто sk = Zatvorené sv = Stängt @@ -8873,7 +8857,7 @@ zh-Hant = 休息時間 [editor_time_add_closed] - tags = android,ios + tags = android, ios en = Add Non-Business Hours ar = إضافة ساعات راحة be = Дадаць час, калі зачынена @@ -8896,7 +8880,7 @@ pl = Dodaj godziny zamknięcia pt = Inserir horas de encerrrado pt-BR = Inserir Horas Sem Funcionamento - ro = Adaugă ore de închidere + ro = Adăugare oră de închidere ru = Добавить перерыв sk = Pridať hodiny zatvorenia sv = Lägg till stängda timmar @@ -8908,7 +8892,7 @@ zh-Hant = 新增休息時間 [editor_time_title] - tags = android,ios + tags = android, ios en = Business Hours ar = ساعات العمل be = Час працы @@ -8931,7 +8915,7 @@ pl = Godziny pracy pt = Horário de funcionamento pt-BR = Horário de Funcionamento - ro = Ore de deschidere + ro = Program ru = Время работы sk = Otváracie hodiny sv = Öppettider @@ -8943,7 +8927,7 @@ zh-Hant = 營業時間 [editor_time_advanced] - tags = android,ios + tags = android, ios en = Advanced Mode ar = الوضع المتقدم be = Расшыраны рэжым @@ -8978,7 +8962,7 @@ zh-Hant = 進階模式 [editor_time_simple] - tags = android,ios + tags = android, ios en = Simple Mode ar = الوضع البسيط be = Просты рэжым @@ -9013,7 +8997,7 @@ zh-Hant = 簡易模式 [editor_hours_closed] - tags = android,ios + tags = android, ios en = Non-Business Hours ar = ساعات الراحة be = Час, калі зачынена @@ -9036,7 +9020,7 @@ pl = Godziny zamknięcia pt = Horas sem funcionamento pt-BR = Horas Sem Funcionamento - ro = Ore de închidere + ro = Ora închiderii ru = Перерыв sk = Hodiny zatvorenia sv = Stängda timmar @@ -9048,7 +9032,7 @@ zh-Hant = 休息時間 [editor_example_values] - tags = android,ios + tags = android, ios en = Example Values ar = أمثلة على القيم be = Прыклады значэнняў @@ -9063,7 +9047,7 @@ fr = Exemple de valeurs hu = Példa értékek id = Contoh Nilai - it = Esempi + it = Valori esemplificativi ja = 値の例 ko = 예제 nb = Eksempelverdier @@ -9071,7 +9055,7 @@ pl = Przykładowe wartości pt = Valores de exemplo pt-BR = Valores de exemplo - ro = Exemple + ro = Exemple de valori ru = Примеры значений sk = Príklady hodnôt sv = Exempelvärden @@ -9118,7 +9102,7 @@ zh-Hant = 修正錯誤 [editor_add_select_location] - tags = android,ios + tags = android, ios en = Location ar = الموقع be = Месцазнаходжанне @@ -9141,7 +9125,7 @@ pl = Lokalizacja pt = Local pt-BR = Local - ro = Poziția + ro = Locație ru = Местоположение sk = Poloha sv = Plats @@ -9176,7 +9160,7 @@ pl = Dokonałeś zmian na mapie świata. Nie kryj się z tym! Powiadom znajomych i edytujcie mapę razem. pt = Alterou o mapa mundial. Não mantenha as alterações para si mesmo! Diga aos seus amigos e editem-no juntos. pt-BR = Você modificou o mapa-múndi. Não esconda isto! Diga aos seus amigos e editem-no juntos. - ro = Ai modificat harta lumii. Nu ascunde acest lucru! Spune-le prietenilor și modificați-o împreună. + ro = Ați modificat harta lumii. Nu ascundeți acest lucru! Spuneți-le prietenilor dvs. și modificați-o împreună. ru = Вы изменили карту мира. Не скрывайте это, расскажите друзьям и редактируйте вместе. sk = Zmenili ste mapu sveta. Nemusíte to skrývať! Povedzte o tom svojim priateľom a začnite ju spolu upravovať. sv = Du har ändrat världskartan. Dölj inte detta! Berätta för dina vänner och redigera den tillsammans. @@ -9211,7 +9195,7 @@ pl = Udostępnij znajomym pt = Partilhar com amigos pt-BR = Compartilhar com amigos - ro = Trimite prietenilor + ro = Partajează cu prietenii ru = Поделиться с друзьями sk = Zdieľaj s priateľmi sv = Dela med vänner @@ -9246,7 +9230,7 @@ pl = Prosimy o szczegółowe opisanie problemu, aby użytkownicy OpenStreetMap mogli naprawić błąd. pt = Por favor, descreva o problema ao pormenor para que a comunidade OpenStreeMap possa corrigir o erro. pt-BR = Por favor, descreva o problema em detalhes para que a comunidade OpenStreeMap possa corrigir o erro. - ro = Descrie problema în detaliu, astfel încît comunitatea OpenStreeMap să poată remedia eroarea. + ro = Vă rugăm să descrieți problema în detaliu, astfel încât comunitatea OpenStreeMap să poată remedia eroarea. ru = Пожалуйста, напишите подробно о проблеме, чтобы сообщество OpenStreetMap исправило ошибку. sk = Prosím, pridajte detailný popis problému, aby mohla komunita OpenStreetMap opraviť danú chybu. sv = Beskriv problemet i detalj så att OpenStreeMaps community kan lösa felet. @@ -9281,7 +9265,7 @@ pl = Albo zrób to sam na https://www.openstreetmap.org/ pt = Ou faça-o em https://www.openstreetmap.org/ pt-BR = Ou faça-o você mesmo em https://www.openstreetmap.org/ - ro = Sau corecteaz-o tu pe https://www.openstreetmap.org/ + ro = Sau faceți-o pe https://www.openstreetmap.org/ ru = Или сделайте это самостоятельно на сайте https://www.openstreetmap.org/ sk = K oprave môžete prispieť aj vy na stránke https://www.openstreetmap.org/ sv = Eller gör det själv på https://www.openstreetmap.org/ @@ -9293,7 +9277,7 @@ zh-Hant = 或者在 https://www.openstreetmap.org/ 上親自修復此錯誤 [editor_report_problem_send_button] - tags = android,ios + tags = android, ios en = Send ar = إرسال be = Адправіць @@ -9316,7 +9300,7 @@ pl = Wyślij pt = Enviar pt-BR = Enviar - ro = Trimite + ro = Trimiteți ru = Отправить sk = Odoslať sv = Skicka @@ -9386,7 +9370,7 @@ pl = To miejsce nie istnieje pt = O lugar não existe pt-BR = O lugar não existe - ro = Acest loc nu există + ro = Această locație nu există ru = Места не существует sk = Dané miesto neexistuje sv = Platsen existerar inte @@ -9456,7 +9440,7 @@ pl = Powielone miejsce pt = Lugar em duplicado pt-BR = Lugar duplicado - ro = Loc duplicat + ro = Locație dublată ru = Повторяющееся место sk = Duplicitné miesto sv = Duplicerad plats @@ -9468,7 +9452,7 @@ zh-Hant = 重複的地點 [autodownload] - tags = android,ios + tags = android, ios en = Auto-download ar = التنزيل التلقائي be = Аўтаматычная спампоўка @@ -9540,7 +9524,7 @@ [daily] comment = Place Page opening hours text - tags = android,ios + tags = android, ios en = Daily ar = يوميا be = Штодзённа @@ -9575,7 +9559,7 @@ zh-Hant = 每天 [twentyfour_seven] - tags = android,ios + tags = android, ios en = 24/7 ar = ليلا ونهارا be = 24/7 @@ -9591,7 +9575,7 @@ he = יום ולילה hu = Nappal és éjszaka id = siang dan malam - it = 24/7 + it = Giorno e notte ja = 昼と夜 ko = 24 시간 nb = Dag og natt @@ -9599,7 +9583,7 @@ pl = Dzień i noc pt = 24 horas por dia pt-BR = 24 horas por dia - ro = 24/7 + ro = Zi și noapte ru = Круглосуточно sk = Deň a noc sv = dag och natt @@ -9611,7 +9595,7 @@ zh-Hant = 全天候 [day_off_today] - tags = android,ios + tags = android, ios en = Closed today ar = مغلق اليوم be = Сёння зачынена @@ -9646,7 +9630,7 @@ zh-Hant = 今天沒有營業 [day_off] - tags = android,ios + tags = android, ios en = Closed ar = مغلق be = Зачынена @@ -9681,7 +9665,7 @@ zh-Hant = 沒有營業 [today] - tags = android,ios + tags = android, ios en = Today ar = اليوم be = Сёння @@ -9739,7 +9723,7 @@ pl = Dodaj godziny otwarcia pt = Adicionar horário de funcionamento pt-BR = Adicionar horário de funcionamento - ro = Adaugă ore de funcționare + ro = Adăugare ore de funcționare ru = Добавить время работы sk = Pridať otváracie hodiny sv = Lägg till öppettider @@ -9774,7 +9758,7 @@ pl = Edytuj godziny otwarcia pt = Editar horário de funcionamento pt-BR = Editar horário de funcionamento - ro = Modifică ore de funcționare + ro = Editare ore de funcționare ru = Редактировать время работы sk = Upraviť otváracie hodiny sv = Redigera öppettider @@ -9786,7 +9770,7 @@ zh-Hant = 編輯營業時間 [no_osm_account] - tags = android,ios + tags = android, ios en = Don't have an OpenStreetMap account? ar = ليس لديك حساب في OpenStreetMap؟ be = Не зарэгістраваныя на OpenStreetMap? @@ -9801,7 +9785,7 @@ fr = Vous n'avez pas de compte sur OpenStreetMap? hu = Nem rendelkezel még OpenStreetMap-felhasználói fiókkal? id = Tidak ada akun di OpenStreetMap? - it = Non hai un account OpenStreetMap? + it = Non hai un account su OpenStreetMap? ja = OpenStreetMapのアカウントがありませんか? ko = OpenStreetMap에서 계정이 없습니까? nb = Har du ingen konto hos OpenStreetMap? @@ -9809,7 +9793,7 @@ pl = Nie masz konta w OpenStreetMap? pt = Não tem uma conta no OpenStreetMap? pt-BR = Sem conta no OpenStreetMap? - ro = Nu ai un cont OpenStreetMap? + ro = Nu aveți un cont în OpenStreetMap? ru = Не зарегистрированы в OpenStreetMap? sk = Nemáte účet v OpenStreetMap? sv = Inget konto hos OpenStreetMap? @@ -9821,7 +9805,7 @@ zh-Hant = 沒有 OpenStreeMap 帳號嗎? [register_at_openstreetmap] - tags = android,ios + tags = android, ios en = Register at OSM ar = التسجيل be = Зарэгістравацца на OpenStreetMap @@ -9836,7 +9820,7 @@ fr = Inscription hu = Regisztráció id = Mendaftar - it = Iscriviti + it = Registrati ja = 登録 ko = 등록 nb = Registrer deg @@ -9844,7 +9828,7 @@ pl = Zarejestruj się pt = Crie uma conta no OSM pt-BR = Cadastrar-se - ro = Înscrie-te + ro = Înregistrați-vă ru = Зарегистрироваться sk = Zaregistrovať sa sv = Registrera @@ -9879,7 +9863,7 @@ pl = Hasło (minimum 8 znaków) pt = Palavra-chave (mínimo de 8 caracteres) pt-BR = Senha (mínimo de 8 caracteres) - ro = Parola (minim 8 caractere) + ro = Parolă (minim 8 caractere) ru = Пароль (минимум 8 символов) sk = Heslo (8 minimálne znakov) sv = Lösenord (minst 8 tecken) @@ -9926,7 +9910,7 @@ zh-Hant = 無效的使用者名稱或密碼。 [login] - tags = android,ios + tags = android, ios en = Log In ar = تسجيل الدخول be = Увайсці @@ -9984,7 +9968,7 @@ pl = Hasło pt = Palavra-chave pt-BR = Senha - ro = Parola + ro = Parolă ru = Пароль sk = Heslo sv = Lösenord @@ -9996,7 +9980,7 @@ zh-Hant = 密碼 [forgot_password] - tags = android,ios + tags = android, ios en = Forgot your password? ar = هل نسيت كلمة المرور؟ be = Забылі пароль? @@ -10019,7 +10003,7 @@ pl = Nie pamiętasz hasła? pt = Esqueceu-se da palavra-chave? pt-BR = Esqueceu sua senha? - ro = Ai uitat parola? + ro = Ați uitat parola? ru = Забыли пароль? sk = Zabudli ste heslo? sv = Glömt lösenord? @@ -10066,7 +10050,7 @@ zh-Hant = OSM 帳號 [logout] - tags = android,ios + tags = android, ios en = Log Out ar = تسجيل الخروج be = Выйсці @@ -10089,7 +10073,7 @@ pl = Wyloguj pt = Terminar sessão pt-BR = Encerrar sessão - ro = Deconectare + ro = Ieșire ru = Выйти sk = Odhlásiť sa sv = Logga ut @@ -10137,7 +10121,7 @@ zh-Hant = 上次上傳 [thank_you] - tags = android,ios + tags = android, ios en = Thank You ar = شكرا لك be = Дзякуй @@ -10160,7 +10144,7 @@ pl = Dziękujemy pt = Obrigado pt-BR = Obrigado - ro = Mulțumesc + ro = Vă mulțumim ru = Спасибо sk = Ďakujeme Vám sv = Tack @@ -10172,7 +10156,7 @@ zh-Hant = 謝謝您 [edit_place] - tags = android,ios + tags = android, ios en = Edit Place ar = تعديل المكان be = Правіць месца @@ -10195,7 +10179,7 @@ pl = Edytuj miejsce pt = Editar o local pt-BR = Editar o local - ro = Modifică locul + ro = Editați loc ru = Редактировать место sk = Upraviť miesto sv = Ändra platsen @@ -10230,7 +10214,7 @@ pl = Nazwa miejsca pt = Nome do local pt-BR = Nome do local - ro = Numele locului + ro = Denumire loc ru = Название sk = Názov miesta sv = Platsens namn @@ -10242,7 +10226,7 @@ zh-Hant = 地點名稱 [add_language] - tags = android,ios + tags = android, ios en = Add a language ar = إضافة لغة be = Дадаць мову @@ -10265,7 +10249,7 @@ pl = Dodaj język pt = Adicionar um idioma pt-BR = Adicionar um idioma - ro = Adaugă o limbă + ro = Adăugare limbă ru = Добавить язык sk = Pridať jazyk sv = Lägg till ett språk @@ -10313,7 +10297,7 @@ [house_number] comment = Editable House Number text field (in address block). - tags = android,ios + tags = android, ios en = Building number ar = رقم المنزل be = Нумар будынка @@ -10336,7 +10320,7 @@ pl = Numer domu pt = Nº de porta pt-BR = N.º do endereço - ro = Număr + ro = Număr casă ru = Номер дома sk = Číslo domu sv = Ett husnummer @@ -10348,7 +10332,7 @@ zh-Hant = 門牌號碼 [details] - tags = android,ios + tags = android, ios en = Details ar = التفاصيل be = Падрабязнасці @@ -10384,7 +10368,7 @@ [add_street] comment = Text field to enter non-existing street name, below list of known streets around - tags = android,ios + tags = android, ios en = Add a street ar = إضافة شارع be = Дадаць вуліцу @@ -10399,7 +10383,7 @@ fr = Ajouter une rue hu = Utca hozzáadása id = Tambahkan jalan - it = Aggiungi una via + it = Aggiungi una strada ja = 通りを追加 ko = 거리 추가 nb = Legg til en gate @@ -10407,7 +10391,7 @@ pl = Dodaj ulicę pt = Adicionar uma rua pt-BR = Adicionar uma rua - ro = Adaugă o stradă + ro = Adăugare stradă ru = Добавить улицу sk = Pridať ulicu sv = Lägg till en gata @@ -10431,14 +10415,12 @@ el = Εισαγάγετε ένα όνομα οδού es = Ingrese un nombre de calle fa = ﺪﯿﻨﮐ ﺩﺭﺍﻭ ﺍﺭ ﻥﺎﺑﺎﯿﺧ ﻡﺎﻧ - it = Inserire il nome della via - ro = Introdu numele străzii ru = Введите название улицы tr = Lütfen bir sokak adı girin uk = Введіть назву вулиці [choose_language] - tags = android,ios + tags = android, ios en = Choose a language ar = اختر اللغة be = Выбраць мову @@ -10461,7 +10443,7 @@ pl = Wybierz język pt = Escolher um idioma pt-BR = Escolher um idioma - ro = Alege o limbă + ro = Alegeți o limbă ru = Выбрать язык sk = Vybrať jazyk sv = Välj ett språk @@ -10473,7 +10455,7 @@ zh-Hant = 選擇語言 [choose_street] - tags = android,ios + tags = android, ios en = Choose a street ar = اختر الشارع be = Выбраць вуліцу @@ -10488,7 +10470,7 @@ fr = Choisir une rue hu = Utca kiválasztása id = Pilih jalan - it = Scegli una via + it = Scegli una strada ja = 通りを選択 ko = 거리 선택 nb = Velg en gate @@ -10496,7 +10478,7 @@ pl = Wybierz ulicę pt = Escolher uma rua pt-BR = Escolher uma rua - ro = Alege o stradă + ro = Alegeți o stradă ru = Выбрать улицу sk = Vybrať ulicu sv = Välj en gata @@ -10508,7 +10490,7 @@ zh-Hant = 選擇街道 [postal_code] - tags = android,ios + tags = android, ios en = Postal Code ar = الرمز البريدي be = Паштовы індэкс @@ -10530,7 +10512,7 @@ pl = Kod pocztowy pt = Código postal pt-BR = CEP - ro = Cod poștal + ro = Cod postal ru = Почтовый индекс sk = PSČ sv = Postkod @@ -10542,7 +10524,7 @@ zh-Hant = 郵遞區號 [cuisine] - tags = android,ios + tags = android, ios en = Cuisine ar = المطبخ be = Кухня @@ -10577,7 +10559,7 @@ zh-Hant = 料理 [select_cuisine] - tags = android,ios + tags = android, ios en = Select cuisine ar = اختر المطبخ be = Выбраць кухню @@ -10600,7 +10582,7 @@ pl = Wybierz kuchnię pt = Selecione a culinária pt-BR = Selecione a Culinária - ro = Alege bucătăria + ro = Selectați tipul de bucătărie ru = Выбрать кухню sk = Vyberte si kuchyňu sv = Välj kök @@ -10613,7 +10595,7 @@ [email_or_username] comment = login text field - tags = android,ios + tags = android, ios en = Email or username ar = البريد الإلكتروني أو اسم المستخدم be = Email альбо імя карыстальніка @@ -10628,7 +10610,7 @@ fr = Email ou nom d'utilisateur hu = Email vagy felhasználónév id = Surel atau nama pengguna - it = E-mail o nome utente + it = Email o nome utente ja = メールアドレスまたはユーザー名 ko = 이메일 또는 사용자 이름 nb = E-postadresse eller brukernavn @@ -10636,7 +10618,7 @@ pl = Email lub nazwa użytkownika pt = Email ou nome de utilizador pt-BR = Email ou nome de usuário - ro = E-mail sau nume de utilizator + ro = Adresa de email sau numele de utilizator ru = Эл. почта или имя пользователя sk = Email alebo používateľské meno sv = E-postadress eller användarnamn @@ -10687,9 +10669,7 @@ en = Add Phone de = Telefon hinzufügen fr = Ajouter un numéro de téléphone - it = Aggiungi numero pl = Dodaj numer telefonu - ro = Adaugă un număr ru = Добавить телефон tr = Telefon Ekle zh-Hant = 新增電話 @@ -10710,7 +10690,7 @@ fr = À noter hu = Megjegyzés id = Harap diperhatikan - it = Avviso + it = Si prega di notare ja = ご注意ください ko = 참고 사항 nb = Vær oppmerksom på at @@ -10718,7 +10698,7 @@ pl = Uwaga! pt = Aviso pt-BR = Aviso - ro = Reține + ro = Actualizați hărțile ru = Обратите внимание sk = Upozorňujeme vás, že sv = Observera @@ -10730,7 +10710,7 @@ zh-Hant = 請註意 [downloader_delete_map_dialog] - tags = android,ios + tags = android, ios en = All of your map edits will be deleted together with the map. ar = سيتم حذف جميع التغييرات بالخريطة بالإضافة إلى حذف الخريطة نفسها. be = Усе вашы праўкі мапы будуць выдаленыя разам з мапай. @@ -10745,7 +10725,7 @@ fr = Toutes vos modifications de la carte seront supprimées avec elle. hu = A térképekkel együtt minden rajtuk végzett módosítás is törlésre kerül. id = Semua perubahan peta akan dihapus bersama dengan peta. - it = Tutte le tue modifiche alla mappa saranno cancellate insieme alla mappa. + it = Tutti i cambiamenti nella mappa saranno cancellati insieme alla mappa. ja = この地図を削除すると、今まで行った変更の全ても一緒に削除されます。 ko = 모든 지도의 변경 사항은 지도와 함께 삭제됩니다. nb = Alle endringer i kartet vil slettes sammen med kartet. @@ -10753,7 +10733,7 @@ pl = Wszystkie zmiany dotyczące mapy zostaną usunięte wraz z nią. pt = Todas as alterações ao mapa serão eliminadas juntamente com o mapa. pt-BR = Todas as alterações ao mapa serão eliminadas juntamente com o mapa. - ro = Toate modificările aduse hărții vor fi șterse împreună cu harta. + ro = Pentru a crea un traseu, trebuie să actualizați toate hărțile, iar apoi să planificați traseul încă o dată. ru = Вместе с картой удалятся и внесенные вами правки на этой карте. sk = Všetky zmeny týkajúce sa mapy budú vymazané spolu s mapou. sv = Alla kartändringar kommer att raderas tillsammans med kartan. @@ -10765,7 +10745,7 @@ zh-Hant = 所有對地圖的修改都將與地圖一起被刪除。 [downloader_update_maps] - tags = android,ios + tags = android, ios en = Update Maps ar = تحديث الخرائط be = Абнавіць мапы @@ -10788,7 +10768,7 @@ pl = Aktualizuj mapy pt = Atualizar mapas pt-BR = Atualizar mapas - ro = Actualizează hărțile + ro = Actualizați hărțile ru = Обновите карты sk = Aktualizovať mapy sv = Uppdatera kartor @@ -10823,7 +10803,7 @@ pl = Aby utworzyć trasę, należy zaktualizować wszystkie mapy, a następnie ponownie zaplanować trasę. pt = Para criar um itinerário é necessário atualizar todos os mapas e, em seguida, planeá-lo novamente. pt-BR = Para criar um itinerário é necessário atualizar todos os mapas e, em seguida, planejá-lo novamente. - ro = Pentru a crea un traseu, trebuie să actualizezi toate hărțile, iar apoi să planifici traseul încă o dată. + ro = Pentru a crea un traseu, trebuie să actualizați toate hărțile, iar apoi să planificați traseul încă o dată. ru = Для построения маршрутов необходимо обновить все карты и построить маршрут заново. sk = Ak chcete vytvoriť cestu, musíte najskôr aktualizovať všetky mapy a potom odznova naplánovať trasu. sv = För att skapa en rutt måste du uppdatera alla kartor och sedan planera rutten igen. @@ -10835,7 +10815,7 @@ zh-Hant = 為了建立路線,您需要更新全部地圖並重新規劃路線。 [downloader_search_field_hint] - tags = android,ios + tags = android, ios en = Find map ar = اعثر على الخريطة be = Знайсці мапу @@ -10858,7 +10838,7 @@ pl = Znajdź mapę pt = Encontrar o mapa pt-BR = Encontrar o mapa - ro = Caută harta + ro = Găsiți harta ru = Найти карту sk = Nájsť mapu sv = Hitta kartan @@ -10885,7 +10865,7 @@ fr = Erreur de téléchargement hu = Letöltési hiba id = Unduh kesalahan - it = Errore download + it = Errore nel download ja = ダウンロードエラー ko = 다운로드 오류 nb = Nedlastningsfeil @@ -10905,7 +10885,7 @@ zh-Hant = 下載錯誤 [common_check_internet_connection_dialog] - tags = android,ios + tags = android, ios en = Please check your settings and make sure your device is connected to the Internet. ar = يرجى التحقق من الإعدادات والتأكد من اتصال جهازك بالإنترنت. be = Праверце налады і ўпэўніцеся, што прылада падключана да інтэрнэту. @@ -10920,7 +10900,7 @@ fr = Veuillez vérifier vos paramètres et vous assurer que votre appareil est bien connecté à Internet. hu = Kérjük, ellenőrizd a beállításaid és győződj meg arról, hogy a készüléked kapcsolódik az internethez. id = Harap memeriksa pengaturan Anda dan pastikan perangkat Anda terhubung dengan internet. - it = Verifica le tue impostazioni e assicurarti che il tuo dispositivo sia connesso a internet. + it = Sei pregato di verificare le tue impostazioni e assicurarti che il tuo dispositivo sia connesso a internet. ja = 設定をチェックし、デバイスがインターネットに接続されているか確認してください。 ko = 설정을 확인하고 장치가 인터넷에 연결되어 있는지 확인하십시오. nb = Kontroller innstillingene dine og sørg for at enheten din er koblet til internett. @@ -10928,7 +10908,7 @@ pl = Sprawdź swoje ustawienia i upewnij się, że urządzenie ma połączenie z Internetem. pt = Por favor, verifique as suas opções e certifique-se que o dispositivo está ligado à Internet. pt-BR = Por favor, verifique as suas configurações e certifique-se de que o dispositivo está conectado à Internet. - ro = Verifică dacă aparatul tău este conectat la internet. + ro = Vă rugăm să vă verificați setările și să vă asigurați că dispozitivul dvs. este conectat la Internet. ru = Проверьте настройки и убедитесь, что устройство подключено к интернету. sk = Prosím, skontrolujte svoje nastavenia a uistite sa, že váš počítač je pripojený k internetu. sv = Kontrollera dina inställningar och se till att din enhet är ansluten till internet. @@ -10940,7 +10920,7 @@ zh-Hant = 請檢查您的設定並確保您的設備已連接至網路。 [downloader_no_space_title] - tags = android,ios + tags = android, ios en = Not enough space ar = مساحة غير كافية be = Не хапае месца @@ -10975,7 +10955,7 @@ zh-Hant = 無足夠的空間 [downloader_no_space_message] - tags = android,ios + tags = android, ios en = Please delete any unnecessary data ar = من فضلك، قم بإزالة البيانات غير الضرورية be = Выдаліце непатрэбныя дадзеныя @@ -10998,7 +10978,7 @@ pl = Usuń niepotrzebne dane pt = Por favor, remova os dados desnecessários pt-BR = Por favor, remova os dados desnecessários - ro = Șterge datele care nu sînt necesare + ro = Vă rugăm să ștergeți datele care nu sunt necesare ru = Удалите ненужные данные sk = Prosím, odstráňte prebytočné dáta sv = Ta bort onödig data @@ -11045,7 +11025,7 @@ zh-Hant = 登入錯誤。 [editor_profile_changes] - tags = android,ios + tags = android, ios en = Verified Changes ar = التغييرات التي تم التحقق منها be = Правераныя змены @@ -11080,7 +11060,7 @@ zh-Hant = 已驗證的變更 [editor_focus_map_on_location] - tags = android,ios + tags = android, ios en = Drag the map to select the correct location of the object. ar = اسحب الخريطة لتحدد الموقع الصحيح للهدف. be = Перацягніце мапу каб выбраць правільнае месцазнаходжанне аб'екта. @@ -11103,7 +11083,7 @@ pl = Przeciągnij mapę, aby wybrać poprawną lokalizację obiektu. pt = Mova o mapa para selecionar o lugar correto do objeto. pt-BR = Mova o mapa para selecionar o lugar correto do objeto. - ro = Trage de hartă pentru a alege poziția corectă a obiectului. + ro = Trageți de hartă pentru a selecta locația corectă a obiectului. ru = Потяните карту, чтобы выбрать правильное местоположение объекта. sk = Ak chcete nastaviť správnu polohu objektu, posuňte mapu. sv = Dra på kartan för att välja objektets rätta plats. @@ -11138,7 +11118,7 @@ pl = Wybierz kategorię pt = Selecionar categoria pt-BR = Selecionar categoria - ro = Alege categoria + ro = Selectați categoria ru = Выбрать категорию sk = Vybrať kategóriu sv = Välj kategori @@ -11165,7 +11145,7 @@ fr = Populaire hu = Népszerűek id = Populer - it = Popolare + it = Popolari ja = 人気 ko = 인기있는 nb = Populære @@ -11220,7 +11200,7 @@ zh-Hant = 所有類別 [editor_edit_place_title] - tags = android,ios + tags = android, ios en = Editing ar = تعديل be = Праўка @@ -11243,7 +11223,7 @@ pl = Edycja pt = Edição pt-BR = Edição - ro = Modifică + ro = Editare ru = Редактирование sk = Úprava sv = Redigerar @@ -11255,7 +11235,7 @@ zh-Hant = 編輯中 [editor_add_place_title] - tags = android,ios + tags = android, ios en = Adding ar = إٍضافة be = Даданне @@ -11270,7 +11250,7 @@ fr = Ajout hu = Hozzáadás id = Menambahkan - it = Aggiungi + it = Aggiunta ja = 追加中 ko = 첨가 중 nb = Legger til @@ -11278,7 +11258,7 @@ pl = Dodawanie pt = A adicionar pt-BR = Adicionando - ro = Adaugă + ro = Adăugare ru = Добавление sk = Nové sv = Lägger till @@ -11290,7 +11270,7 @@ zh-Hant = 新增中 [editor_edit_place_name_hint] - tags = android,ios + tags = android, ios en = Name of the place ar = اسم المكان be = Назва месца @@ -11313,7 +11293,7 @@ pl = Nazwa miejsca pt = Nome do lugar pt-BR = Nome do lugar - ro = Numele locului + ro = Denumirea locației ru = Название места sk = Názov miesta sv = Namn på platsen @@ -11325,7 +11305,7 @@ zh-Hant = 該地點的名稱 [editor_edit_place_category_title] - tags = android,ios + tags = android, ios en = Category ar = الفئة be = Катэгорыя @@ -11375,7 +11355,7 @@ fr = Description détaillée du problème hu = A probléma részletes leírása id = Gambaran terperinci tentang masalah - it = Descrizione dettagliata del problema + it = Descrizione dettagliata di un problema ja = 問題の詳細な説明 ko = 문제에 대한 자세한 설명 nb = Detaljert beskrivelse av problemet @@ -11383,7 +11363,7 @@ pl = Szczegółowy opis problemu pt = Descrição detalhada do problema pt-BR = Descrição detalhada do problema - ro = Descriere detaliată a problemei + ro = Descrierea detaliată a problemei ru = Подробное описание проблемы sk = Podrobný popis problému sv = Detaljerad beskrivning av ett problem @@ -11408,7 +11388,7 @@ fa = مشکلی دیگر fi = Eri ongelma fr = Un problème différent - hu = Különböző problémaDifferent problem + hu = Különböző probléma id = Masalah yang berbeda it = Un problema diverso ja = 異なる問題 @@ -11445,7 +11425,7 @@ fr = Ajouter une organisation hu = Szervezet hozzáadása id = Tambahkan organisasi - it = Aggiungi attività + it = Aggiungi organizzazione ja = 団体を追加 ko = 조직 추가 nb = Legg til organisasjon @@ -11453,7 +11433,7 @@ pl = Dodaj organizację pt = Adicionar uma organização pt-BR = Adicionar uma empresa - ro = Adaugă o firmă + ro = Adăugare organizație ru = Добавить организацию sk = Pridať organizáciu sv = Lägg till organisation @@ -11480,7 +11460,7 @@ fr = Ajoutez de nouveaux lieux sur la carte et modifiez les lieux existants directement depuis l'appli. hu = Adj hozzá új helyeket a térképhez, és szerkeszd a meglévőket közvetlenül az alkalmazásból. id = Tambahkan tempat-tempat baru di peta, dan edit peta-peta yang ada langsung dari aplikasi. - it = Aggiungi nuovi luoghi sulla mappa e modifica quelli esistenti direttamente dall'app. + it = Aggiungi nuovi luoghi alla mappa, e modifica quelli già esistenti direttamente dall’app. ja = アプリから直接地図に新しい場所を追加したり、既存の場所を編集できます。 ko = 지도에 새로운 장소를 추가하고 응용 프로그램에서 직접 기존 편집 할 수 있습니다. nb = Legg til nye steder i kartet og rediger eksisterende steder direkte fra appen. @@ -11488,7 +11468,7 @@ pl = Dodawaj nowe miejsca do mapy i edytuj już istniejące bezpośrednio z poziomu aplikacji. pt = Adicione novos lugares ao mapa e edite os já existentes diretamente a partir da aplicação. pt-BR = Adicione novos lugares ao mapa e edite os já existentes diretamente a partir do app. - ro = Adaugă locuri noi pe hartă și modifică-le pe cele existente direct din aplicație. + ro = Adăugați locuri noi pe hartă și modificați-le pe cele existente direct din aplicație. ru = Добавляйте новые объекты и редактируйте старые прямо из приложения. sk = Na mapu môžete pridávať nové miesta a upravovať tie, ktoré sú už pridané. sv = Lägg till nya platser till kartan och redigera de befintliga direkt från appen. @@ -11523,7 +11503,7 @@ pl = Zmień lokalizację pt = Mudar local pt-BR = Mudar local - ro = Schimbă poziția + ro = Schimbare locație ru = Измените местоположение sk = Zmeniť polohu sv = Ändra placering @@ -11535,7 +11515,7 @@ zh-Hant = 改變位置 [message_invalid_feature_position] - tags = android,ios + tags = android, ios en = No object can be located here ar = لا يمكن تحديد موقع الكائن هنا be = Аб'ект не можа знаходзіцца тут @@ -11550,7 +11530,7 @@ fr = Aucun objet ne peut être localisé ici hu = Célpont áthelyezése ide nem lehetséges id = Objek tidak dapat diletakkan di sini - it = Nessun oggetto può essere posizionato qui + it = Un oggetto non può essere posizionato qui ja = ここにはオブジェクトを配置できません ko = 목적지를 이곳에서 찾을 수 없습니다 nb = Et objekt kan ikke plasseres her @@ -11558,7 +11538,7 @@ pl = Obiekt nie może znajdować się tutaj pt = Nenhum objeto pode ser posicionado aqui pt-BR = Nenhum objeto pode ser posicionado aqui - ro = Niciun obiect nu poate fi poziționat aici + ro = În acest loc nu poate fi localizat un obiect ru = Объект не может находиться в этом месте sk = Objekt sa tu nedá umiestniť sv = Ett objekt kan inte placeras här @@ -11570,7 +11550,7 @@ zh-Hant = 物件無法設置在這裡 [login_to_make_edits_visible] - tags = android,ios + tags = android, ios en = Log in so other users can see the changes that you have made ar = قم بتسجيل الدخول حتى يتمكن باقي المستخدمين من رؤية التغييرات التي قمت بها. be = Аўтарызуйцеся, каб іншыя карыстальнікі бачылі вашыя змены. @@ -11593,7 +11573,7 @@ pl = Zaloguj się, by inni użytkownicy mogli zobaczyć Twoje zmiany. pt = Inicie a sessão para que outros utilizadores vejam as alterações que fez. pt-BR = Fazer login para que outros usuários vejam as mudanças que você fez. - ro = Autentifică-te pentru ca modificările pe care le-ai făcut să poată fi văzute și de alți utilizatori. + ro = Autentificați-vă pentru ca modificările pe care le-ați efectuat să poată fi văzute și de alți utilizatori. ru = Войдите, чтобы ваши изменения увидели другие пользователи. sk = Prihláste sa, aby mohli ostatní užívatelia vidieť Vami vykonané zmeny. sv = Logga in så att andra användare kan se de ändringar du gjort. @@ -11629,7 +11609,7 @@ pl = Aby pobrać, potrzebujesz więcej miejsca. Usuń niepotrzebne dane. pt = Para descarregar, é necessário mais espaço. Por favor, elimine os dados desnecessários. pt-BR = É necessário mais espaço para baixar. Por favor, elimine dados desnecessários. - ro = Ai nevoie de mai mult spațiu pentru a descărca. Trebuie să ștergi toate datele inutile. + ro = Aveți nevoie de mai mult spațiu ca să descărcați. Vă rugăm să ștergeți toate informațiile inutile. ru = Для загрузки требуется больше свободного места. Пожалуйста, удалите ненужные данные. sk = Ak chcete pokračovať v sťahovaní, musíte uvoľniť viac miesta na ukladacom priestore. Prosím, odstráňte prebytočné dáta. sv = Du behöver mer utrymme för att ladda ned. Radera onödig data. @@ -11677,7 +11657,7 @@ [downloader_of] comment = Downloaded 10 **of** 20 <- it is that "of" - tags = android,ios + tags = android, ios en = %1$d of %2$d ar = %1$d من%2$d be = %1$d з %2$d @@ -11712,7 +11692,7 @@ zh-Hant = %1$d個/共%2$d個 [download_over_mobile_header] - tags = android,ios + tags = android, ios en = Download over a cellular network connection? ar = تنزيل باستخدام اتصال الشبكة الخلوية؟ be = Спампаваць праз мабільны інтэрнэт? @@ -11734,7 +11714,7 @@ pl = Czy pobrać, używając połączenia z siecią komórkową? pt = Descarregar utilizando uma conexão de rede de telemóveis? pt-BR = Baixar usando uma conexão de rede celular? - ro = Vrei să descarci prin rețeaua de telefonie mobilă? + ro = Descărcați utilizând o conexiune prin rețeaua de telefonie mobilă? ru = Загрузить через сотовую связь? sk = Sťahovať prostredníctvom pripojenia na mobilnú sieť? sv = Ladda ned med mobildata? @@ -11746,7 +11726,7 @@ zh-Hant = 用手機網路連線下載嗎? [download_over_mobile_message] - tags = android,ios + tags = android, ios en = This could be considerably expensive with some plans or if roaming. ar = قد يكون هذا مكلفا جدا لبعض الخطط أو عند التجوال. be = Гэта можа быць даволі дорага з некаторымі тарыфнымі планамі альбо ў роўмінгу. @@ -11768,7 +11748,7 @@ pl = Może to być kosztowne przy niektórych planach taryfowych lub w roamingu. pt = Isto pode ser muito caro com alguns planos ou em roaming. pt-BR = Isto pode ser muito caro com alguns planos ou se você estiver em roaming. - ro = Aceasta poate fi destul de costisitoare în cazul unor abonamente sau în roaming. + ro = Aceasta poate fi destul de costisitoare în cazul unor abonamente sau dacă sunteți pe roaming. ru = На некоторых тарифных планах или в роуминге это может привести к значительным расходам. sk = V prípade niektorých plánov alebo použitím roamingu by to mohlo byť značne nákladné. sv = Detta kan vara mycket dyrt med vissa abonnemang och vid roaming. @@ -11780,7 +11760,7 @@ zh-Hant = 用某些方案或漫遊的話這可能相當昂貴。 [error_enter_correct_house_number] - tags = android,ios + tags = android, ios en = Enter a valid building number ar = أدخل رقم منزل صحيح be = Увядзіце нумар дома правільна @@ -11803,7 +11783,7 @@ pl = Wprowadź poprawny numer domu pt = Introduza um número de endereço correto pt-BR = Informe o número correto do endereço - ro = Introdu un număr corect + ro = Introduceți numărul corect al casei ru = Введите корректный номер дома sk = Zadajte správne číslo domu sv = Ange korrekt husnummer @@ -11815,7 +11795,7 @@ zh-Hant = 輸入正確的門牌號碼 [editor_storey_number] - tags = android,ios + tags = android, ios en = Number of floors (maximum of %d) ar = عدد الطوابق (بحد أقصى %d) be = Колькасць паверхаў (максімум %d) @@ -11838,7 +11818,7 @@ pl = Liczba pięter (maks. %d) pt = Número de pisos (máx. %d) pt-BR = Número de andares (máx. %d) - ro = Număr de etaje (maximum %d) + ro = Număr de etaje (max %d) ru = Количество этажей (максимум %d) sk = Počet poschodí (max %d) sv = Antal våningar (max %d) @@ -11851,7 +11831,7 @@ [error_enter_correct_storey_number] comment = Error message in Editor when a user tries to set the number of floors for a building higher than 25 - tags = android,ios + tags = android, ios en = The number of floors must non exceed 25 ar = تحرير المبنى بحد أقصى 25 طابقًا be = Колькасць паверхаў павінна быць не больш за 25 @@ -11866,7 +11846,7 @@ fr = Le nombre d'étages ne doit pas dépasser 25 hu = Legfeljebb 25 emeletes épület szerkesztése id = Edit bangunan dengan maksimum 25 lantai - it = Il numero di piani non deve superare 25 + it = Modificare l'edificio con un massimo di 25 piani ja = 最高25階までのビルを編集 ko = 최대 25층까지 입력하세요 nb = Rediger bygningen med maks. 25 etasjer @@ -11874,7 +11854,7 @@ pl = Edytuj budynek z maksymalną liczbą 25 pięter pt = Editar o edifício com um máximo de 25 pisos pt-BR = O número de andares não pode ultrapassar 25 - ro = Numărul de etaje nu trebuie să depășească 25 + ro = Editare clădire cu maximum 25 de etaje ru = Количество этажей не должно превышать 25 sk = Upraviť s maximálne 25 poschodiami sv = Redigera byggnaden med max 25 våningar @@ -11886,7 +11866,7 @@ zh-Hant = 編輯最多 25 層的建築 [editor_zip_code] - tags = android,ios + tags = android, ios en = ZIP Code ar = الرمز البريدي be = Паштовы індэкс @@ -11921,7 +11901,7 @@ zh-Hant = 郵遞區號 [error_enter_correct_zip_code] - tags = android,ios + tags = android, ios en = Enter a valid ZIP code ar = أدخل الرمز البريدي الصحيح be = Увядзіце паштовы індэкс правільна @@ -11944,7 +11924,7 @@ pl = Podaj prawidłowy kod pocztowy pt = Introduza o código postal correto pt-BR = Informe o CEP correto - ro = Introdu codul poștal corect + ro = Introduceți codul poștal corect ru = Введите корректный почтовый индекс sk = Zadajte správne PSČ sv = Ange korrekt postnr @@ -11957,7 +11937,7 @@ [core_placepage_unknown_place] comment = Place Page title for long tap - tags = android,ios + tags = android, ios en = Unknown Place ar = مكان غير معروف be = Невядомае месца @@ -11992,7 +11972,7 @@ zh-Hant = 未知的位置 [editor_other_info] - tags = android,ios + tags = android, ios en = Send a note to OSM editors ar = ارسل ملاحظة إلى محرري OSM be = Адправіць нататку рэдактарам OSM @@ -12008,7 +11988,7 @@ fr = Informer les éditeurs OSM hu = Küldjön jegyzetet az OSM editornak id = Kirim catatan ke editor OSM - it = Invia un messaggio a OSM + it = Invia una nota agli editor di OSM ja = OSMエディタにメモを送信 ko = OSM 편집인들에게 쪽지 보내기 nb = Send et notat til OSM-redaktørene @@ -12016,7 +11996,7 @@ pl = Poinformuj redaktorów OSM pt = Enviar nota aos editores OSM pt-BR = Envie uma nota para os editores OSM - ro = Trimite un mesaj către OSM + ro = Trimite o notă editorilor OSM ru = Отправить заметку редакторам OSM sk = Odoslať poznámku OSM editorom sv = Skicka en not till OSM-redaktörer @@ -12029,7 +12009,7 @@ zh-Hant = 給OSM編輯器發送標記 [editor_detailed_description_hint] - tags = android,ios + tags = android, ios en = Detailed comment ar = تعليق مفصل be = Падрабязны каментар @@ -12064,7 +12044,7 @@ zh-Hant = 詳細註釋 [editor_detailed_description] - tags = android,ios + tags = android, ios en = Your suggested map changes will be sent to the OpenStreetMap community. Describe any additional details that cannot be edited in Organic Maps. ar = سيتم إرسال التغييرات التي اقترحتها إلى مجتمع OpenStreetMap. اذكر التفاصيل التي لا يمكن تحريرها في Organic Maps be = Запрапанаваныя вамі змены будуць дасланыя суполцы OpenStreetMap. Апішыце любыя іншыя падрабязнасці, каторыя нельга паправіць у Organic Maps. @@ -12079,7 +12059,7 @@ fr = Vos modifications suggérées seront envoyées à la communauté OpenStreetMap. Décrivez les détails qui ne peuvent pas être modifiés dans Organic Maps. hu = Javasolt változtatásait elküldjük az OpenStreetMap közösségnek. Írja le a további információkat, amelyek nem szerkeszthetők a Organic Maps-ben. id = Saran perubahan Anda akan dikirimkan ke komunitas OpenStreetMap. Jelaskan detail yang tidak dapat diedit di Organic Maps. - it = Le modifiche alla mappa da te suggerite saranno inviate alla comunità di OpenStreetMap. Descrivi qualsiasi dettaglio aggiuntivo che non può essere modificato in Organic Maps. + it = Le modifiche suggerite saranno inviate alla community OpenStreetMap. Descrivere i dettagli che non è possibile modificare in Organic Maps. ja = あなたが提案した変更は、OpenStreetMapのコミュニティに送信されます。Organic Mapsで編集できない詳細を説明してください。 ko = 귀하가 제안한 변경 사항은 OpenStreetMap 커뮤니티로 전송됩니다. Organic Maps에서 편집할 수 없는 세부정보를 작성해 주세요. nb = De foreslåtte endringene vil sendes til OpenStreetMap-gruppen. Beskriv detaljene som ikke kan redigeres i Organic Maps. @@ -12087,7 +12067,7 @@ pl = Twoje sugestie zmian zostaną wysłane do społeczności OpenStreetMap. Opisz szczegóły, których nie można edytować w Organic Maps. pt = As suas alterações sugeridas irão ser enviadas para a comunidade OpenStreetMap. Descreva os dados que não podem ser editados no Organic Maps. pt-BR = Suas sugestões de mudança serão enviadas para a comunidade OpenStreetMap. Descreva em detalhes o que não pode ser editado com o Organic Maps. - ro = Modificările aduse hărții, sugerate de tine, vor fi trimise comunității OpenStreetMap. Descrie orice detalii suplimentare care nu pot fi modificate în Organic Maps. + ro = Modificările sugerate vor trimise către comunitatea OpenStreetMap. Descrieți detalii ce nu pot fi adăugate în be the details which cannot be edited in Organic Maps. ru = Предложенные вами изменения на карте будут отправлены в OpenStreetMap. Опишите дополнительные сведения об объекте, которые Organic Maps не позволяет отредактировать. sk = Vami navrhované zmeny sa odošlú do komunity OpenStreetMap. Popíšte detaily, ktoré sa nedajú upraviť v Organic Maps. sv = Dina föreslagna ändringar kommer att skcikas till OpenStreetMap-communityt. Beskriv detaljerna som inte kan redigeras i Organic Maps. @@ -12099,7 +12079,7 @@ zh-Hant = 您建議的變更將傳送至 OpenStreetMap 社群。說明無法在 Organic Maps 中編輯的詳細資料。 [editor_more_about_osm] - tags = android,ios + tags = android, ios en = More about OpenStreetMap ar = المزيد عن OpenStreetMap be = Падрабязней пра OpenStreetMap @@ -12114,7 +12094,7 @@ fr = En savoir plus sur OpenStreetMap hu = További részletek az OpenStreetMap-ról id = Selengkapnya tentang OpenStreetMap - it = Informazioni su OpenStreetMap + it = Ulteriori informazioni su OpenStreetMap ja = OpenStreetMapについての詳細 ko = OpenStreetMap 정보 nb = Mer om OpenStreetMap @@ -12134,7 +12114,7 @@ zh-Hant = 關於 OpenStreetMap 的更多資訊 [editor_operator] - tags = android,ios + tags = android, ios en = Owner ar = معامل be = Уладальнік @@ -12149,7 +12129,7 @@ fr = Opérateur hu = Üzemeltető id = Pemilik - it = Proprietario + it = Titolare ja = オペレーター ko = 소유자 nb = Eier @@ -12157,7 +12137,7 @@ pl = Operator pt = Operador pt-BR = Operador - ro = Proprietar + ro = Operator ru = Владелец sk = Prevádzkovateľ sv = Användare @@ -12168,8 +12148,42 @@ zh-Hans = 运营者 zh-Hant = 營運者 + [downloader_my_maps_title] + tags = ios + en = My maps + ar = خرائطي + be = Мае мапы + cs = Mé mapy + da = Mine kort + de = Meine Karten + el = Οι χάρτες μου + es = Mis mapas + fa = نقشه های من + fi = Omat kartat + fr = Mes cartes + hu = Térképeim + id = Peta saya + it = Le mie mappe + ja = マイマップ + ko = 내 지도 + nb = Mine kart + nl = Mijn kaarten + pl = Moje mapy + pt = Os meus mapas + pt-BR = Meus mapas + ro = Hărțile mele + ru = Мои карты + sk = Moje mapy + sv = Mina kartor + th = แผนที่ของฉัน + tr = Haritalarım + uk = Мої мапи + vi = Bản đồ của tôi + zh-Hans = 我的地图 + zh-Hant = 我的地圖 + [downloader_no_downloaded_maps_title] - tags = android,ios + tags = android, ios en = You haven't downloaded any maps ar = لم تقم بتنزيل أية خرائط be = Вы не спампавалі ніводнай мапы @@ -12192,7 +12206,7 @@ pl = Nie pobrano żadnych map pt = Não descarregou quaisquer mapas pt-BR = Você não fez o download de nenhum mapa - ro = Nu ai descărcat nicio hartă + ro = Nu ați descărcat nicio hartă ru = У вас нет загруженных карт sk = Neprevzali ste žiadne mapy sv = Du har inte laddat ner några kartor @@ -12204,7 +12218,7 @@ zh-Hant = 您尚未下載任何地圖 [downloader_no_downloaded_maps_message] - tags = android,ios + tags = android, ios en = Download maps to search for a location and use navigation offline. ar = قم بتنزيل خرائط للبحث عن مكان والتنقل بدون اتصال بالإنترنت. be = Спампуйце мапы, каб шукаць месцы і карыстацца навігацыяй без інтэрнэту. @@ -12219,7 +12233,7 @@ fr = Téléchargez des cartes pour rechercher un lieu et utiliser la navigation hors ligne hu = Töltse le a szükséges térképeket, hogy megtalálja a helyet és internet nélkül is navigálhasson. id = Unduh peta untuk menemukan lokasi dan bernavigasi secara offline. - it = Scarica mappe per trovare un luogo e navigare offline. + it = Scarica mappe per trovare il luogo e navigare offline. ja = ロケーションの検索とオフラインナビゲートのためにマップをダウンロードしてください。 ko = 오프라인으로 위치를 검색하려면 지도를 다운로드하세요. nb = Last ned kart for å finne plasseringen og navigere frakoblet. @@ -12227,7 +12241,7 @@ pl = Aby znajdować miejsca i nawigować bez połączenia z internetem, musisz pobrać mapy. pt = Descarregar mapas para encontrar a localização e navegar offline. pt-BR = Baixe mapas para pesquisar locais e usar navegação offline. - ro = Descarcă hărți pentru a căuta un loc și a naviga fără conectare la internet. + ro = Descărcați hărți pt. a găsi locația și navigați offline. ru = Загрузите необходимые карты, чтобы находить места и пользоваться навигацией без интернета. sk = Prevziať mapy na nájdenie pozície a navigovanie off-line. sv = Ladda ner kartor för att hitta platsen och navigera offline. @@ -12240,7 +12254,7 @@ [current_location_unknown_title] comment = Error title that appears after certain time without location. - tags = android,ios + tags = android, ios en = Continue detecting your current location? ar = هل تريد متابعة اكتشاف موقعك الحالي؟ be = Працягнуць вызначэнне месцазнаходжання? @@ -12255,7 +12269,7 @@ fr = Continuer la détection de votre emplacement actuel ? hu = Folytatja tartózkodási helyének keresését? id = Terus mendeteksi lokasi Anda saat ini? - it = Continuare a rilevare la tua posizione attuale? + it = Continuare a rilevare la posizione attuale? ja = あなたの現在地を検出し続けますか? ko = 현재 위치검색을 계속하시겠습니까? nb = Fortsette å oppdage din gjeldende plassering? @@ -12263,7 +12277,7 @@ pl = Kontynuować wykrywanie bieżącej lokalizacji? pt = Continuar a detetar a sua localização atual? pt-BR = Continuar detectando sua localização atual? - ro = Continui cu detectarea poziției tale actuale? + ro = Continuați cu detectarea locației dvs. curente? ru = Продолжить поиск местоположения? sk = Pokračovať v mazaní vašej súčasnej pozície? sv = Fortsätt detektera din nuvarande plats? @@ -12276,7 +12290,7 @@ [current_location_unknown_message] comment = Error that appears after certain time without location. - tags = android,ios + tags = android, ios en = Current location is unknown. Maybe you are in a building or in a tunnel. ar = الموقع الحالي غير معروف. ربما تتواجد داخل مبنى أو نفق. be = Месцазнаходжанне невядома. Магчыма вы ў будынку альбо ў танэлі. @@ -12299,7 +12313,7 @@ pl = Aktualna lokalizacja jest nieznana. Może znajdujesz się w budynku lub tunelu. pt = A localização atual é desconhecida. Talvez esteja num edifício ou num túnel. pt-BR = A localização atual é desconhecida. Talvez você esteja em um edifício ou túnel. - ro = Poziția actuală este necunoscută. Poate te afli într-o clădire sau un tunel. + ro = Locația curentă este necunoscută. Poate vă aflați într-o clădire sau un tunel. ru = Местоположение не найдено. Возможно, вы находитесь в помещении или в туннеле. sk = Súčasná pozícia je neznáma. Možno sa nachádzate v budove alebo v tuneli. sv = Nuvarande plats okänd. Du kanske är i en byggnad eller tunnel. @@ -12311,7 +12325,7 @@ zh-Hant = 目前位置未知,可能您在建築物內或隧道內。 [current_location_unknown_continue_button] - tags = android,ios + tags = android, ios en = Continue ar = استمرار be = Працягнуць @@ -12334,7 +12348,7 @@ pl = Kontynuuj pt = Continuar pt-BR = Continuar - ro = Continuă + ro = Continuare ru = Продолжить sk = Pokračovať sv = Fortsätt @@ -12346,7 +12360,7 @@ zh-Hant = 繼續 [current_location_unknown_stop_button] - tags = android,ios + tags = android, ios en = Stop ar = إيقاف be = Спыніць @@ -12361,7 +12375,7 @@ fr = Arrêter hu = Leállítás id = Berhenti - it = Ferma + it = Arresta ja = 止める ko = 중지 nb = Stopp @@ -12369,7 +12383,7 @@ pl = Stop pt = Parar pt-BR = Parar - ro = Oprește + ro = Oprire ru = Стоп sk = Zastaviť sv = Stopp @@ -12403,7 +12417,7 @@ pl = Aktualna lokalizacja jest nieznana. pt = A localização atual é desconhecida. pt-BR = A localização atual é desconhecida. - ro = Poziția actuală este necunoscută. + ro = Locația curentă este necunoscută. ru = Местоположение не найдено. sk = Súčasná pozícia je neznáma. sv = Den nuvarande platsen är okänd. @@ -12430,7 +12444,7 @@ fr = Une erreur est survenue lors de la recherche de votre emplacement. Vérifiez que le périphérique fonctionne correctement et réessayez ultérieurement hu = Hiba történt tartózkodási helye keresésekor. Ellenőrizze készüléke működését és próbálkozzon újra. id = Terjadi kesalahan saat mencari lokasi Anda. Periksa apakah perangkat Anda bekerja dengan benar dan coba lagi nanti. - it = Si è verificato un errore durante la ricerca della tua posizione. Controlla che il tuo dispositivo funzioni correttamente e riprova più tardi. + it = Si è verificato un errore durante la ricerca della posizione. Controllare che il dispositivo utilizzato funzioni correttamente e riprovare. ja = お住まいの地域の検索中にエラーが発生しました。お使いのデバイスが正常に動作していることを確認してから再度試してください。 ko = 위치 검색 중 오류가 발생했습니다. 장치가 올바르게 작동되는지 확인하고 다시 시도하세요. nb = Det oppstod en feil under søking etter plasseringen din. Kontroller at plasseringen din virker som den skal, og prøv på nytt senere. @@ -12438,7 +12452,7 @@ pl = Podczas szukania twojej lokalizacji wystąpił błąd. Sprawdź czy twoje urządzenie działa poprawnie i spróbuj ponownie później. pt = Ocorreu um erro ao pesquisar a sua localização. Verifique se o seu dispositivo está a funcionar devidamente e volte a tentar mais tarde. pt-BR = Ocorreu um erro na busca por sua localização. Verifique se o seu dispositivo está funcionando corretamente e tente novamente mais tarde. - ro = S-a produs o eroare la căutarea poziției tale. Verifică dacă aparatul funcționează corect și încearcă din nou. + ro = S-a produs o eroare la căutarea locației. Verificați dacă dispozitivul funcționează corect și încercați din nou. ru = При поиске местоположения произошла неизвестная ошибка. Проверьте работоспособность устройства и попробуйте найти местоположение позднее. sk = Počas vyhľadávania vašej pozície došlo k chybe. Skontrolujte, či zariadenie pracuje správne a skúste to znova. sv = Ett fel inträffade vid sökning efter din plats. Kontrollera att din enhet fungerar och försök igen senare. @@ -12466,7 +12480,7 @@ he = זיהוי המיקום אינו מופעל hu = Helyzetmeghatározás kikapcsolva id = Identifikasi lokasi dinonaktifkan - it = I servizi di localizzazione sono disabilitati + it = La geolocalizzazione è disabilitata ja = 位置情報認識機能が無効になっています ko = 위치 식별 사용할 수 없음 nb = Lokalisering er deaktivert @@ -12474,7 +12488,7 @@ pl = Identyfikacja lokalizacji jest wyłączona pt = Os serviços de localização estão desativados pt-BR = Serviços de localização estão desativados - ro = Serviciile de localizare sînt dezactivate + ro = Geolocalizarea este dezactivată ru = Определение местоположения отключено sk = Identifikácia lokality je zablokovaná sv = Platsidentifiering avaktiverad @@ -12510,7 +12524,7 @@ pl = Włącz dostęp do geolokalizacji w ustawieniach urządzenia pt = Conceda o acesso à geolocalização nas configurações do dispositivo pt-BR = Permita o acesso à geolocalização nas configurações do dispositivo - ro = Activează accesul la geolocalizare din reglările aparatului + ro = Activaţi accesul la geolocalizare din setările dispozitivului ru = Разрешите доступ к геопозиции в настройках устройства. sk = Povoliť prístup ku geolokalizácii v nastaveniach prístroja sv = Aktivera tillgång till geografisk plats i enhetens inställningar @@ -12546,7 +12560,7 @@ pl = 1. Uruchom ustawienia pt = 1. Abra as configurações pt-BR = 1. Abra as configurações - ro = 1. Deschide reglările + ro = 1. Deschideți setările ru = 1. Откройте Настройки sk = 1. Otvorte Nastavenia sv = 1. Öppna inställningar @@ -12581,7 +12595,7 @@ pl = 2. Dotknij „Lokalizacja” pt = 2. Toque em "Localização" pt-BR = 2. Toque em "Localização" - ro = 2. Apasă pe Localizare + ro = 2. Apăsați pe Localizare ru = 2. Нажмите Геопозиция sk = 2. Kliknite na položku Lokalita sv = 2. Tryck på Plats @@ -12608,7 +12622,7 @@ fr = 3. Sélectionner tout en utilisant l'app hu = 3. Kiválaszt az alkalmazás használata alatt id = 3. Pilih While Using the App - it = 3. Seleziona Mentre usi l'app + it = 3. Seleziona mentre usi l'app ja = 3. アプリの使用中を選択してください ko = 3. 앱 사용 중에 선택 nb = 3.Velg når appen er i bruk @@ -12616,7 +12630,7 @@ pl = 3. Zaznacz Podczas korzystania z aplikacji pt = 3. Selecione "Durante a utilização da aplicação" pt-BR = 3. Selecione Durante Uso do Aplicativo - ro = 3. Alege „În timp ce folosești aplicația” + ro = 3. Selectați în timp ce folosiți aplicația ru = 3. Выберите «При использовании программы» sk = 3. Vyberte si počas používania aplikácie sv = 3. Välj Medan appen används @@ -12628,7 +12642,7 @@ zh-Hant = 3. 使用應用時選擇 [meter] - tags = android,ios + tags = android, ios en = m ar = م be = м @@ -12662,7 +12676,7 @@ zh-Hant = 公尺 [kilometer] - tags = android,ios + tags = android, ios en = km ar = كم be = км @@ -12696,7 +12710,7 @@ zh-Hant = 公里 [kilometers_per_hour] - tags = android,ios + tags = android, ios en = km/h ar = كم/ساعة be = км/г @@ -12709,7 +12723,7 @@ fr = km/h hu = km/h id = km/j - it = km/h + it = chilometri orari (km/h) ja = キロメートル毎時 ko = km/시 nb = km/t @@ -12729,7 +12743,7 @@ zh-Hant = 公里每小時 [mile] - tags = android,ios + tags = android, ios en = mi ar = ميل be = міля @@ -12763,7 +12777,7 @@ zh-Hant = 英哩 [foot] - tags = android,ios + tags = android, ios en = ft ar = قدم be = фут @@ -12777,7 +12791,7 @@ fr = pied hu = ft id = kaki - it = piede + it = ft ja = フィート ko = 풋 nb = fot @@ -12797,7 +12811,7 @@ zh-Hant = 英尺 [miles_per_hour] - tags = android,ios + tags = android, ios en = mph ar = ميل/ساعة be = міль/г @@ -12844,7 +12858,7 @@ fr = h hu = ó id = j - it = o + it = h ja = 時間 ko = t nb = t @@ -12898,7 +12912,7 @@ zh-Hant = 分鐘 [placepage_place_description] - tags = android,ios + tags = android, ios en = Description ar = الوصف be = Апісанне @@ -12932,7 +12946,7 @@ zh-Hant = 說明 [placepage_more_button] - tags = android,ios + tags = android, ios en = More ar = المزيد be = Яшчэ @@ -12947,7 +12961,7 @@ fr = Plus hu = Még id = Lainnya - it = Di più + it = Altro ja = さらに詳しく ko = 자세히 nb = Mer @@ -12955,7 +12969,7 @@ pl = Więcej pt = Mais pt-BR = Mais - ro = Mai mult + ro = Mai multe ru = Ещё sk = Viac sv = Mer @@ -13004,7 +13018,7 @@ zh-Hant = 更多評論 [book_button] - tags = android,ios + tags = android, ios en = Book ar = حجز be = Забраніраваць @@ -13038,7 +13052,7 @@ zh-Hant = 預約 [placepage_call_button] - tags = android,ios + tags = android, ios en = Call ar = اتصال be = Патэлефанаваць @@ -13061,7 +13075,7 @@ pl = Zadzwoń pt = Telefonar pt-BR = Ligar - ro = Apelează + ro = Apel ru = Позвонить sk = Zavolať sv = Ring @@ -13073,7 +13087,7 @@ zh-Hant = 呼叫 [placepage_edit_bookmark_button] - tags = android,ios + tags = android, ios en = Edit Bookmark ar = تحرير العلامة المرجعية be = Правіць закладку @@ -13088,7 +13102,7 @@ fr = Éditer le signet hu = Könyvjelző szerkesztése id = Edit Bookmark - it = Modifica luogo preferito + it = Modifica segnalibro ja = ブックマークを編集 ko = 즐겨찾기 편집 nb = Rediger bokmerke @@ -13096,7 +13110,7 @@ pl = Edytuj zakładkę pt = Editar favorito pt-BR = Editar favorito - ro = Modifică locul preferat + ro = Editare marcaj ru = Редактировать метку sk = Upraviť záložku sv = Redigera bokmärke @@ -13123,7 +13137,7 @@ fr = Nom du signet hu = Könyvjelző neve id = Nama Bookmark - it = Nome luogo preferito + it = Nome segnalibro ja = ブックマーク名 ko = 즐겨찾기 이름 nb = Bokmerkenavn @@ -13131,7 +13145,7 @@ pl = Nazwa zakładki pt = Nome do favorito pt-BR = Nome do favorito - ro = Numele locului preferat + ro = Nume marcaj ru = Название метки sk = Názov záložky sv = Namn bokmärke @@ -13165,7 +13179,7 @@ pl = Notatki osobiste pt = Notas pessoais pt-BR = Anotações pessoais - ro = Însemnări personale + ro = Note personale ru = Примечание sk = Osobné poznámky sv = Personlig anteckning @@ -13191,7 +13205,7 @@ fr = Supprimer signet hu = Könyvjelző törlése id = Hapus Bookmark - it = Elimina luogo preferito + it = Elimina segnalibro ja = ブックマークを削除 ko = 즐겨찾기 삭제 nb = Slett bokmerke @@ -13199,7 +13213,7 @@ pl = Usuń zakładkę pt = Eliminar favorito pt-BR = Apagar favorito - ro = Șterge locul preferat + ro = Ștergere marcaj ru = Удалить метку sk = Zmazať záložku sv = Radera bokmärke @@ -13246,7 +13260,7 @@ zh-Hant = 您的建議已傳送 [editor_comment_hint] - tags = android,ios + tags = android, ios en = Comment… ar = تعليق… be = Каментар… @@ -13261,7 +13275,7 @@ fr = Commentaire… hu = Megjegyzés… id = Komentar… - it = Commento… + it = Commenta… ja = コメント… ko = 설명… nb = Kommentar… @@ -13281,7 +13295,7 @@ zh-Hant = 註解… [editor_reset_edits_message] - tags = android,ios + tags = android, ios en = Discard all local changes? ar = هل تريد مسح كافة التغييرات المحلية؟ be = Скінуць усе лакальныя змены? @@ -13296,7 +13310,7 @@ fr = Abandonner toutes les modifications locales ? hu = Elveti az összes helyi módosítást? id = Atur ulang perubahan lokal? - it = Cancellare tutte le modifiche locali? + it = Reimpostare tutte le modifiche locali? ja = すべてのローカルの変更をリセットしますか? ko = 지역 변경 사항을 재설정하시겠습니까? nb = Nullstille alle lokale endringer? @@ -13304,7 +13318,7 @@ pl = Usunąć wszystkie lokalne zmiany? pt = Eliminar todas as alterações locais? pt-BR = Descartar todas as modificações locais? - ro = Ștergi toate modificările locale? + ro = Resetați toate modificările locale? ru = Сбросить все локальные правки? sk = Resetovať všetky miestne časy? sv = Återställ alla lokala ändringar? @@ -13316,7 +13330,7 @@ zh-Hant = 重設所有本機變更? [editor_reset_edits_button] - tags = android,ios + tags = android, ios en = Discard ar = مسح be = Скінуць @@ -13331,7 +13345,7 @@ fr = Réinitialiser hu = Elvetés id = Atur Ulang - it = Cancella + it = Reimposta ja = リセット ko = 재설정 nb = Nullstill @@ -13339,7 +13353,7 @@ pl = Usuń pt = Eliminar pt-BR = Descartar - ro = Șterge + ro = Resetare ru = Сбросить sk = Resetovať sv = Återställ @@ -13351,7 +13365,7 @@ zh-Hant = 重設 [editor_remove_place_message] - tags = android,ios + tags = android, ios en = Delete added place? ar = إزالة مكان تمت إضافته؟ be = Выдаліць даданае месца? @@ -13366,7 +13380,7 @@ fr = Supprimer le lieu ajouté ? hu = Eltávolít egy hozzáadott objektumot? id = Hapus tempat yang ditambahkan? - it = Eliminare il luogo aggiunto? + it = Rimuovere il luogo aggiunto? ja = 追加された場所を削除しますか? ko = 추가한 장소를 삭제하시겠습니까? nb = Fjerne et tilføyd sted? @@ -13374,7 +13388,7 @@ pl = Usunąć dodane miejsce? pt = Eliminar o local adicionado? pt-BR = Remover local adicionado? - ro = Elimini locul adăugat? + ro = Eliminați locul adăugat? ru = Удалить добавленный вами объект? sk = Odstrániť pridané miesto? sv = Ta bort en tillagd plats? @@ -13386,7 +13400,7 @@ zh-Hant = 移除已新增的位置? [editor_remove_place_button] - tags = android,ios + tags = android, ios en = Delete ar = إزالة be = Выдаліць @@ -13401,7 +13415,7 @@ fr = Supprimer hu = Eltávolítás id = Hapus - it = Elimina + it = Rimuovi ja = 削除 ko = 삭제 nb = Fjern @@ -13409,7 +13423,7 @@ pl = Usuń pt = Eliminar pt-BR = Remover - ro = Elimină + ro = Eliminare ru = Удалить sk = Odstrániť sv = Ta bort @@ -13421,7 +13435,7 @@ zh-Hant = 移除 [editor_place_doesnt_exist] - tags = android,ios + tags = android, ios en = Place does not exist ar = المكان غير موجود be = Месца не існуе @@ -13436,7 +13450,7 @@ fr = Ce lieu n'existe pas hu = A hely nem létezik id = Tempat tidak ada - it = Il luogo non esiste + it = Luogo inesistente ja = 存在しない場所 ko = 존재하지 않는 장소입니다. nb = Sted finnes ikke @@ -13460,8 +13474,6 @@ tags = android en = Please indicate the reason for deleting the place be = Калі ласка, укажыце прычыну выдалення - it = Indicare il motivo dell' eliminazione del luogo - ro = Indică motivul pentru care ai eliminat locul ru = Пожалуйста, укажите причину удаления tr = Lütfen bu yerin silinmesinin nedenini belirtin uk = Будь ласка, вкажіть причину видалення @@ -13482,7 +13494,7 @@ fr = …Afficher la suite hu = …tovább id = …selebihnya - it = …di più + it = …continua ja = …続き ko = …기타 nb = …mer @@ -13490,7 +13502,7 @@ pl = …więcej pt = …mais pt-BR = …mais - ro = …mai mult + ro = …mai multe ru = …ещё sk = …viac sv = …mer @@ -13503,7 +13515,7 @@ [error_enter_correct_phone] comment = Phone number error message - tags = android,ios + tags = android, ios en = Enter a valid phone number ar = أدخل رقم هاتف صحيح be = Увядзіце нумар тэлефона правільна @@ -13526,7 +13538,7 @@ pl = Wprowadź poprawny numer telefonu pt = Introduza um número de telefone correto pt-BR = Insira o número correto do telefone - ro = Introdu un număr de telefon corect + ro = Introduceți numărul de telefon corect ru = Введите корректный номер телефона sk = Zadajte správne telefónne číslo sv = Ange korrekt telefonnummer @@ -13538,7 +13550,7 @@ zh-Hant = 輸入正確的電話號碼 [error_enter_correct_web] - tags = android,ios + tags = android, ios en = Enter a valid web address ar = أدخل عنوان ويب صالح be = Увядзіце web-адрас правільна @@ -13561,7 +13573,7 @@ pl = Wpisz prawidłowy adres strony internetowej pt = Preencha com um endereço válido na Internet pt-BR = Preencha com um endereço válido na internet - ro = Introdu o adresă web corectă + ro = Introduceți o adresă web validă ru = Введите корректный веб-адрес sk = Zadajte platnú webovú adresu sv = Ange en giltig webadress @@ -13573,7 +13585,7 @@ zh-Hant = 輸入有效網址 [error_enter_correct_email] - tags = android,ios + tags = android, ios en = Enter a valid email ar = أدخل بريدا إلكترونيا صالحا be = Увядзіце email правільна @@ -13588,7 +13600,7 @@ fr = Saisissez un email valide hu = Adj meg egy érvényes email-címet id = Masukkan surel valid - it = Inserisci un'e-mail valida + it = Inserisci un'email valida ja = 有効なメールアドレスを入力してください ko = 유효한 이메일 주소 입력 nb = Oppgi en gyldig epostadresse @@ -13596,7 +13608,7 @@ pl = Wpisz prawidłowy email pt = Preencha com um endereço válido de email pt-BR = Preencha com um endereço válido de email - ro = Introdu un e-mail valabil + ro = Introduceți o adresă de email validă ru = Введите корректный email sk = Zadajte platný email sv = Ange en giltig e-postadress @@ -13613,9 +13625,7 @@ de = Geben Sie eine gültige Facebook-Webadresse, ein Konto oder einen Seitennamen ein es = Introduce una dirección web, una cuenta o un nombre de página de Facebook válidos fr = Saisissez une adresse web, un compte ou un nom de page Facebook valide - it = Inserisci un indirizzo web, un account o un nome di pagina Facebook valido pl = Wprowadź poprawny link, nazwę konta lub nazwę strony na Facebooku - ro = Introdu o adresă web, un cont sau un nume de pagină Facebook valabil ru = Введите корректный веб-адрес Facebook страницы или имя пользователя tr = Geçerli bir Facebook web adresi, hesap veya sayfa adı girin uk = Введіть вірну веб-адресу Facebook сторінки або і'мя користувача @@ -13627,9 +13637,7 @@ de = Geben Sie eine gültige Instagram-Webadresse oder einen Kontonamen ein es = Introduce una dirección web o un nombre de cuenta de Instagram válidos fr = Saisissez une adresse web, un nom de compte Instagram valide - it = Inserisci un indirizzo web o un nome di account Instagram valido pl = Wprowadź poprawny link lub nazwę konta na Instagramie - ro = Introdu o adresă web sau un nume de cont Instagram valabil ru = Введите корректный веб-адрес Instagram страницы или имя пользователя tr = Geçerli bir İnstagram web adresi veya hesap adı girin uk = Введіть вірну веб-адресу Instagram сторінки або і'мя користувача @@ -13641,9 +13649,7 @@ de = Geben Sie eine gültige Twitter-Webadresse oder einen Benutzernamen ein es = Introduzca una dirección web o un nombre de usuario válido de Twitter fr = Saisissez une adresse web, un nom de compte Twitter valide - it = Inserisci un indirizzo web o un nome utente Twitter valido pl = Wprowadź poprawny adres lub nazwę konta na Twitterze - ro = Introdu o adresă web sau un nume de utilizator Twitter valabil ru = Введите корректный веб-адрес Twitter страницы или имя пользователя tr = Geçerli bir Twitter web adresi veya kullanıcı adı girin uk = Введіть вірну веб-адресу Twitter сторінки або і'мя користувача @@ -13655,9 +13661,7 @@ de = Geben Sie eine gültige VK-Webadresse oder einen Kontonamen ein es = Introduce una dirección web o un nombre de cuenta de VK válidos fr = Saisissez une adresse web, un nom de compte VK valide - it = Inserisci un indirizzo web o un nome di account VK valido pl = Wprowadź poprawny adres lub nazwę konta na VK - ro = Introdu o adresă web sau un nume de cont VK valabil ru = Введите корректный веб-адрес VK страницы или имя пользователя tr = Geçerli bir VK web adresi veya hesap adı girin uk = Введіть вірну веб-адресу VK сторінки або і'мя користувача @@ -13667,8 +13671,6 @@ tags = android en = Enter a valid LINE web address or LINE ID be = Упішыце вэб-адрас LINE старонкі або LINE ID - it = Inserisca un indirizzo web LINE valido o un ID LINE - ro = Introdu o adresă web LINE valabilă sau un ID LINE ru = Введите корректный веб-адрес LINE страницы или LINE ID tr = Geçerli bir Line web adresi veya Line ID'si girin uk = Введіть вірну веб-адресу LINE сторінки або LINE ID @@ -13689,7 +13691,7 @@ fr = Mettre à jour hu = Frissítés id = Memperbarui - it = Aggiorna + it = Aggiornare ja = 更新 ko = 최신 정보 nb = Oppdatere @@ -13697,7 +13699,7 @@ pl = Uaktualnić pt = Atualizar pt-BR = Atualizar - ro = Actualizează + ro = Actualizați ru = Обновить sk = Aktualizovať sv = Uppdatera @@ -13709,7 +13711,7 @@ zh-Hant = 更新 [placepage_add_place_button] - tags = android,ios + tags = android, ios en = Add a place to the map ar = إضافة مكان ما للخريطة be = Дадаць месца на мапу @@ -13732,7 +13734,7 @@ pl = Dodaj miejsce do mapy pt = Adicionar um local ao mapa pt-BR = Adicionar um local ao mapa - ro = Adaugă un loc pe hartă + ro = Adăugați un loc pe hartă ru = Добавить место на карту sk = Pridať miesto na mape sv = Lägg till en plats på kartan @@ -13745,7 +13747,7 @@ [editor_share_to_all_dialog_title] comment = Displayed when saving some edits to the map to warn against publishing personal data - tags = android,ios + tags = android, ios en = Do you want to send it to all users? ar = هل ترغب في إرساله لجميع المستخدمين؟ be = Хочаце адправіць усім карыстальнікам? @@ -13768,7 +13770,7 @@ pl = Czy chcesz wysłać je wszystkim użytkownikom? pt = Quer enviar para todos os utilizadores? pt-BR = Deseja enviar para todos os usuários? - ro = Vrei să-l trimiți tuturor utilizatorilor? + ro = Doriți să îl trimiteți tuturor utilizatorilor? ru = Отправить всем пользователям? sk = Odoslať všetkým používateľom? sv = Vill du skicka det till alla användare? @@ -13781,7 +13783,7 @@ [editor_share_to_all_dialog_message_1] comment = iOS Dialog before publishing the modifications to the public map. - tags = android,ios + tags = android, ios en = Make sure you did not enter any personal data. ar = تأكد من أنك لم تقم بإدخال أي بيانات شخصية. be = Упэўніцеся, што вы не ўвялі ніякіх асабістых дадзеных. @@ -13804,7 +13806,7 @@ pl = Upewnij się, że nie podałeś osobistych danych. pt = Certifique-se que não incluiu nenhuns dados pessoais. pt-BR = Certifique-se de não ter incluído nenhum dado pessoal. - ro = Asigură-te că nu ai introdus niciun fel de date personale. + ro = Asigurați-vă că nu ați introdus niciun fel de date personale. ru = Убедитесь, что вы не ввели личные данные. sk = Nezadávajte žiadne osobné udaje. sv = Se till att du inte angett någon personinformation @@ -13816,7 +13818,7 @@ zh-Hant = 確保您沒有輸入任何個人資料。 [editor_share_to_all_dialog_message_2] - tags = android,ios + tags = android, ios en = We will check the changes. If we have any questions we will contact you via email. ar = سنقوم بمراجعة هذه التغييرات. إذا كانت لدينا أي أسئلة فسوف نتصل بك عبر البريد الإلكتروني. be = Мы праверым змены. Калі ў нас з'явяцца пытанні, мы з вамі звяжамся праз email. @@ -13831,7 +13833,7 @@ fr = Nous vérifierons les changements. Si nous avons des questions quelles qu’elles soient, nous vous contacterons par courriel. hu = Ellenőrizni fogjuk a változásokat. Ha bármilyen kérdésünk van, emailben keresünk. id = Kami akan memeriksa perubahan tersebut. Jika kami memiliki pertanyaan maka kami akan menghubungi Anda melalui surel. - it = Controlleremo le modifiche. Se avremo delle domande, ti contatteremo via e-mail. + it = Controlleremo le modifiche. Se avremo delle domande, ti contatteremo via email. ja = 弊社で変更を確認します。質問がある場合はメールでご連絡します。 ko = 저희가 변경 사항을 확인할 것입니다. 질문이 있으신 경우, 저희에게 이메일을 통해 연락하십시오. nb = Vi vil sjekke endringene. Vi kontakter deg via e-post dersom vi har spørsmål. @@ -13839,7 +13841,7 @@ pl = Zapoznamy się ze zmianami. W przypadku pytań skontaktujemy się z Tobą przez email. pt = Vamos verificar as alterações. Se tivermos alguma pergunta, vamos contactá-lo por email. pt-BR = Verificaremos as alterações. Se tivermos perguntas, entraremos em contato com você por email. - ro = Vom verifica modificările. Dacă vor apărea întrebări, te vom contacta prin e-mail. + ro = Vom verifica modificările. Dacă vor apărea întrebări, vă vom contacta prin email. ru = Если при проверке изменений возникнут вопросы, мы напишем вам на email. sk = Skontrolujeme zmeny. V prípade otázok vás budeme kontaktovať emailom. sv = Vi kommer att kontrollera ändringar. Om vi har några frågor kontaktar vi dig via e-post. @@ -13872,7 +13874,7 @@ pl = stop pt = parar pt-BR = parar - ro = oprește + ro = stop ru = стоп sk = stop sv = stopp @@ -13908,7 +13910,7 @@ pl = Wyłączyć rejestrowanie niedawno przebytej trasy? pt = Desativar gravação da sua rota recente? pt-BR = Desabilitar registro de sua rota recente? - ro = Dezactivezi înregistrarea celui mai recent traseu efectuat? + ro = Dezactivați înregistrarea celui mai recent traseu urmat? ru = Выключить запись недавно пройденого пути? sk = Znemožniť nahrávanie vami nedávno precestovanej trasy? sv = Avaktivera inspelning av din senaste resta rutt? @@ -13943,7 +13945,7 @@ pl = Wyłącz pt = Desativar pt-BR = Desabilitar - ro = Dezactivează + ro = Dezactivare ru = Выключить sk = Znemožniť sv = Avaktivera @@ -13971,7 +13973,7 @@ fr = Consultez hu = Tekintse meg id = Lihat - it = Controlla + it = Dai uno sguardo ja = ご覧ください ko = 체크아웃 nb = Sjekk ut @@ -13979,7 +13981,7 @@ pl = Sprawdź pt = Verificar pt-BR = Procure - ro = Verifică + ro = Aruncați o privire ru = Посмотри sk = Pozrite si sv = Kolla in @@ -14006,7 +14008,7 @@ fr = Organic Maps utilise votre géolocalisation en arrière-plan pour enregistrer vos itinéraires récents. hu = A Organic Maps a geopozíciód használatával a háttérben rögzíti a legutóbb megtett utad. id = Organic Maps menggunakan geoposisi di latar belakang untuk merekam rute yang baru Anda lalui. - it = Organic Maps usa la tua posizione geografica per registrare il tuo percorso effettuato più di recente. + it = Organic Maps usa la tua posizione geografica in background per registrare il tuo percorso effettuato più di recente. ja = Organic Mapsは、あなたの位置情報をバックグラウンドで使用して最近の走行ルートを記録します。 ko = Organic Maps는 최근 여행한 경로를 녹음하기 위해 배경 화면에서 지역 위치 서비스를 사용합니다. nb = Organic Maps bruker geografiske funksjoner i bakgrunnen for å registrere din nylig reiste rute. @@ -14014,7 +14016,7 @@ pl = Organic Maps używa w tle geolokalizacji w celu rejestrowania niedawno przebytej trasy. pt = O Organic Maps usa a sua localização geográfica em segundo plano para gravar a sua rota recente. pt-BR = O Organic Maps usa sua localização geográfica em segundo plano para registrar sua rota recente. - ro = Organic Maps folosește poziția ta geografică pentru a înregistra cel mai recent traseu urmat. + ro = Organic Maps folosește în fundal geo-locația pentru a înregistra cel mai recent traseu urmat. ru = Organic Maps использует вашу геопозицию в фоновом режиме для записи недавно пройденного пути. sk = Organic Maps používa vašu geopozíciu na pozadí pre zaznamenávanie vami nedávno precestovanej trasy. sv = Organic Maps använder din geografiska position i bakgrunden för att spela in din senaste resta rutt. @@ -14027,7 +14029,7 @@ [about_description] comment = Text under the version number in the Help dialog. - tags = android,ios + tags = android, ios en = Organic Maps is a free and open-source offline maps application. No ads. No tracking. If you see an error on the map, please fix it in OpenStreetMap. The project is created by enthusiasts in our free time, so we need your feedback and support. ar = Organic Maps هي تطبيق خرائط مجاني ومفتوح المصدر بلا اتصال بالإنترنت. لا اعلانات. لا تتبع. إذا رأيت خطأً على الخريطة ، فيرجى إصلاحه في OpenStreetMap. تم إنشاء المشروع بواسطة المتحمسين في أوقات فراغنا ، لذلك نحتاج إلى ملاحظاتك ودعمك. be = Organic Maps – бясплатныя мапы з адкрытым зыходным кодам, якія працуюць без інтэрнэту. Ніякай рэкламы. Ніякага адсочвання. Калі вы бачыце памылку на карце, выпраўце яе ў OpenStreetMap. Праект ствараецца энтузіястамі ў вольны час, таму нам патрэбны вашы водгукі і падтрымка. @@ -14043,7 +14045,7 @@ he = Organic Maps היא אפליקציית מפות לא מקוונות בחינם ובקוד פתוח. ללא פרסומות. אין מעקב. אם אתה רואה שגיאה במפה, אנא תקן אותה ב-OpenStreetMap. הפרויקט נוצר על ידי חובבים בזמננו הפנוי, אז אנו זקוקים למשוב ולתמיכה שלכם. hu = Az Organic Maps egy ingyenes, nyílt forráskódú offline térképalkalmazás. Nincsenek hirdetések. Nincs nyomkövetés. Ha hibát lát a térképen, javítsa ki az OpenStreetMap segítségével. A projektet a lelkesek készítik szabadidőnkben, ezért szükségünk van az Ön visszajelzésére és támogatására. id = Organic Maps adalah aplikasi peta offline sumber terbuka dan gratis. Tanpa iklan. Tidak ada pelacakan. Jika Anda melihat kesalahan pada peta, harap perbaiki di OpenStreetMap. Proyek ini dibuat oleh para penggemar di waktu luang kami, jadi kami membutuhkan masukan dan dukungan Anda. - it = Organic Maps è un'applicazione gratuita e open-source di mappe offline. Nessuna pubblicità. Nessun tracciamento. Se vedi un errore sulla mappa, correggilo in OpenStreetMap. Il progetto è creato da appassionati nel nostro tempo libero, quindi abbiamo bisogno del vostro parere e sostegno. + it = Organic Maps è un'applicazione di mappe offline gratuita e open source. Nessuna pubblicità. No tracciabilità. Se vedi un errore sulla mappa, correggilo in OpenStreetMap. Il progetto è creato da appassionati nel nostro tempo libero, quindi abbiamo bisogno del tuo feedback e supporto. ja = Organic Mapsは、無料のオープンソースのオフラインマップアプリケーションです。広告なし。全く追跡しません。地図上にエラーが表示された場合は、OpenStreetMapで修正してください。プロジェクトは私たちの自由な時間に愛好家によって作成されているため、フィードバックとサポートが必要です。 ko = Organic Maps는 무료 오픈 소스 오프라인 지도 애플리케이션입니다. 광고 없음. 추적이 없습니다. 지도에 오류가 표시되면 OpenStreetMap에서 수정하세요. 이 프로젝트는 여가 시간에 열광자들에 의해 만들어지므로 여러분의 피드백과 지원이 필요합니다. nb = Organic Maps er en gratis og åpen kildekode-app for offline kart. Ingen annonser. Ingen sporing. Hvis du ser en feil på kartet, må du rette den i OpenStreetMap. Prosjektet er laget av entusiaster på fritiden vår, så vi trenger din tilbakemelding og støtte. @@ -14051,7 +14053,7 @@ pl = Organic Maps to bezpłatna aplikacja do map offline typu open source. Bez reklam. Bez śledzenia. Jeśli zobaczysz błąd na mapie, napraw go w OpenStreetMap. Projekt jest tworzony przez entuzjastów w czasie wolnym, dlatego potrzebujemy Twojej opinii i wsparcia. pt = Organic Maps é uma aplicação gratuita e de código aberto de mapas offline. Sem anúncios. Sem seguimento. Se vir um erro no mapa, por favor repare-o em OpenStreetMap. O projecto é criado por entusiastas no nosso tempo livre, por isso precisamos do seu feedback e apoio. pt-BR = Organic Maps é uma aplicação gratuita e de código aberto de mapas off-line. Sem anúncios. Sem rastreamento. Se você vir um erro no mapa, por favor, corrija em OpenStreetMap. O projeto é criado por entusiastas em nosso tempo livre, então precisamos de seu feedback e suporte. - ro = Organic Maps este o aplicație gratuită și cod sursă public care permite descărcarea hărților și navigare fără internet. Fără reclame. Fără urmărire. Dacă vezi o eroare pe hartă, te rugăm să o corectezi în OpenStreetMap. Proiectul este creat de entuziaști în timpul nostru liber, așa că avem nevoie de părerea și sprijinul tău. + ro = Organic Maps este o aplicație gratuită și open source pentru hărți offline. Fără reclame. Fără urmărire. Dacă vedeți o eroare pe hartă, remediați-o în OpenStreetMap. Proiectul este creat de entuziaști în timpul nostru liber, așa că avem nevoie de feedback-ul și asistența dvs.. ru = Organic Maps — бесплатные офлайновые карты с открытым исходным кодом, без рекламы и без сбора ваших персональных данных, созданные энтузиастами в свободное от основной работы время. Так как все данные мы берём из OpenStreetMap, то ошибки на карте нужно исправлять именно там. Будем рады вашей поддержке и обратной связи. sk = Organic Maps je bezplatná offline aplikácia máp s otvoreným zdrojom. Žiadne reklamy. Žiadne sledovanie. Ak na mape vidíte chybu, opravte ju v OpenStreetMap. Projekt vytvárajú nadšenci v našom voľnom čase, preto potrebujeme vašu spätnú väzbu a podporu. sv = Organic Maps är en gratis offlinekartapplikation med öppen källkod. Inga annonser. Ingen spårning. Om du ser ett fel på kartan, åtgärda det i OpenStreetMap. Projektet skapas av entusiaster på vår fritid, så vi behöver din feedback och support. @@ -14087,7 +14089,7 @@ pl = Ustawienia ogólne pt = Configurações gerais pt-BR = Definições gerais - ro = Opțiuni generale + ro = Setări generale ru = Общие настройки sk = Všeobecné nastavenia sv = Allmänna inställningar @@ -14100,7 +14102,7 @@ [accept] comment = For the first routing - tags = android,ios + tags = android, ios en = Accept ar = قبول be = Прыняць @@ -14123,7 +14125,7 @@ pl = Zaakceptuj pt = Aceitar pt-BR = Aceitar - ro = Acceptă + ro = Acceptați ru = Принять sk = Prijať sv = Acceptera @@ -14136,7 +14138,7 @@ [decline] comment = For the first routing - tags = android,ios + tags = android, ios en = Decline ar = رفض be = Адхіліць @@ -14159,7 +14161,7 @@ pl = Odrzuć pt = Recusar pt-BR = Declinar - ro = Refuză + ro = Refuzați ru = Отклонить sk = Odmietnuť sv = Neka @@ -14171,8 +14173,8 @@ zh-Hant = 拒絕 [search_in_table] - comment = A noun - a button name used to show search results in list form - tags = android,ios + comment = noun + tags = android, ios en = List ar = قائمة be = Спіс @@ -14207,7 +14209,7 @@ zh-Hant = 清單 [mobile_data_dialog] - tags = android,ios + tags = android, ios en = Use mobile internet to show detailed information? ar = استخدام إنترنت المحمول لإظهار المعلومات التفصيلية؟ be = Ужываць мабільны інтэрнэт для паказу больш падрабязнай інфармацыі? @@ -14230,7 +14232,7 @@ pl = Wykorzystać internet mobilny, aby wyświetlić dane szczegółowe? pt = Utilizar os dados móveis para mostrar informações detalhadas? pt-BR = Utilizar a internet móvel para mostrar informações detalhadas? - ro = Folosești internetul mobil pentru a vedea informaţii detaliate? + ro = Folosiți internetul mobil pentru a afişa informaţii detaliate? ru = Загружать дополнительную информацию через мобильный интернет? sk = Použiť mobilný internet na zobrazenie podrobnejších informácií? sv = Använd mobilt nätverk för att visa detaljerad information? @@ -14242,7 +14244,7 @@ zh-Hant = 使用手機網路顯示詳細資訊? [mobile_data_option_always] - tags = android,ios + tags = android, ios en = Use Always ar = استخدام دائمًا be = Заўсёды @@ -14265,19 +14267,19 @@ pl = Stosuj zawsze pt = Utilizar sempre pt-BR = Utilizar sempre - ro = Folosește mereu + ro = Folosiți întotdeauna ru = Всегда sk = Vždy použiť sv = Använd alltid th = ใช้เสมอ - tr = Her Zaman Kullan + tr = Her zaman kullan uk = Завжди vi = Luôn Sử dụng zh-Hans = 始终使用 zh-Hant = 一律使用 [mobile_data_option_today] - tags = android,ios + tags = android, ios en = Only Today ar = اليوم فقط be = Толькі сёння @@ -14312,7 +14314,7 @@ zh-Hant = 僅限今天 [mobile_data_option_not_today] - tags = android,ios + tags = android, ios en = Do not Use Today ar = عدم الاستخدام اليوم be = Не сёння @@ -14335,7 +14337,7 @@ pl = Nie stosuj dzisiaj pt = Não utilizar hoje pt-BR = Não utilizar hoje - ro = Nu folosi astăzi + ro = Nu folosiți astăzi ru = Не сегодня sk = Dnes nepoužiť sv = Använd inte idag @@ -14347,7 +14349,7 @@ zh-Hant = 今天不使用 [mobile_data] - tags = android,ios + tags = android, ios en = Mobile Internet ar = انترنت المحمول be = Мабільны інтэрнэт @@ -14382,7 +14384,7 @@ zh-Hant = 手機網路 [mobile_data_description] - tags = android,ios + tags = android, ios en = Mobile internet is required for displaying detailed information about places, such as photographs, prices and reviews. ar = الإنترنت المحمول مطلوب لعرض معلومات تفصيلية عن الأماكن مثل الصور الفوتوغرافية والأسعار والمراجعات. be = Мабільны інтэрнэт патрэбны каб паказваць падрабязную інфармацыю пра месцы, такую як фотаздымкі, цэны і водгукі. @@ -14417,7 +14419,7 @@ zh-Hant = 需有手機網路才能顯示相片、價格與評論等詳細資訊和地點。 [mobile_data_option_never] - tags = android,ios + tags = android, ios en = Never Use ar = عدم الاستخدام مطلقًا be = Ніколі не ужываць @@ -14440,7 +14442,7 @@ pl = Nigdy nie stosuj pt = Nunca utilizar pt-BR = Nunca utilizar - ro = Nu utiliza niciodată + ro = Nu utilizați niciodată ru = Никогда не использовать sk = Nikdy nepoužiť sv = Använd aldrig @@ -14452,7 +14454,7 @@ zh-Hant = 絕不使用 [mobile_data_option_ask] - tags = android,ios + tags = android, ios en = Always Ask ar = السؤال دوماً be = Заўсёды пытаць @@ -14475,7 +14477,7 @@ pl = Zawsze pytaj pt = Perguntar sempre pt-BR = Perguntar sempre - ro = Întreabă mereu + ro = Întrebați întotdeauna ru = Всегда спрашивать sk = Vždy sa opýtať sv = Fråga alltid @@ -14487,7 +14489,7 @@ zh-Hant = 一律詢問 [traffic_update_maps_text] - tags = android,ios + tags = android, ios en = To display traffic data, maps must be updated. ar = لعرض البيانات المرورية، يجب تحديث الخرائط. be = Для паказу інфармацыі пра рух, трэба абнавіць мапы. @@ -14522,7 +14524,7 @@ zh-Hant = 若要顯示交通資料,必須更新地圖。 [big_font] - tags = android,ios + tags = android, ios en = Increase font size on the map ar = زيادة حجم الخط على الخريطة be = Павялічыць шрыфт мапы @@ -14537,7 +14539,7 @@ fr = Augmenter la taille de police sur la carte hu = Betűméret növelése a térképen id = Perbesar ukuran huruf pada peta - it = Aumenta caratteri sulla mappa + it = Aumenta dimensione carattere sulla mappa ja = 地図上のフォントサイズを大きく ko = 지도에서 글꼴 크기 늘리기 nb = Forstørr skriften på kartet @@ -14545,7 +14547,7 @@ pl = Powiększ rozmiar czcionki na mapie pt = Aumentar tamanho da fonte no mapa pt-BR = Aumentar tamanho da fonte no mapa - ro = Mărește literele pe hartă + ro = Măriți dimensiunea fontului pe hartă ru = Увеличить шрифт на карте sk = Zväčšiť veľkosť písma na mape sv = Öka teckenstorlek på kartan @@ -14580,7 +14582,7 @@ pl = Zaktualizuj Organic Maps pt = Atualize o Organic Maps pt-BR = Atualize o Organic Maps - ro = Actualizează Organic Maps + ro = Vă rugăm să actualizaţi Organic Maps ru = Обновите Organic Maps sk = Aktualizujte si aplikáciu Organic Maps sv = Uppdatera Organic Maps @@ -14629,7 +14631,7 @@ [traffic_data_unavailable] comment = "traffic" as in "road congestion" - tags = android,ios + tags = android, ios en = Traffic data is not available ar = البيانات المرورية غير متاحة be = Інфармацыі пра рух няма @@ -14652,7 +14654,7 @@ pl = Dane o ruchu są niedostępne pt = Os dados de tráfego não estão disponíveis pt-BR = Não existem dados de tráfego - ro = Datele privind traficul nu sînt disponibile + ro = Datele privind traficul nu sunt disponibile ru = Данные о пробках недоступны sk = Dopravné informácie nie sú k dispozícii sv = Trafikdata är inte tillgänglig @@ -14679,7 +14681,7 @@ fr = Activer le journal hu = Naplózás engedélyezése id = Aktifkan pencatatan - it = Abilita i registri + it = Abilita registrazione ja = ログを有効化 ko = 로깅 사용 nb = Aktiver loggføring @@ -14687,7 +14689,7 @@ pl = Włącz logowanie pt = Ativar o histórico pt-BR = Ativar o histórico - ro = Activează jurnalizarea + ro = Activare jurnalizare ru = Включить запись логов sk = Zapnúť zaznamenávanie sv = Aktivera loggning @@ -14700,7 +14702,7 @@ [feedback_general] comment = Settings: "Send general feedback" button - tags = android,ios + tags = android, ios en = General Feedback ar = تعقيب عام be = Агульны водгук @@ -14723,7 +14725,7 @@ pl = Ogólne uwagi pt = Opinão geral pt-BR = Opinão geral - ro = Părere generală + ro = Feedback general ru = Отправить отзыв sk = Všeobecné pripomienky sv = Allmän feedback @@ -14736,7 +14738,7 @@ zh-Hant = 一般反應 [on] - tags = android,ios + tags = android, ios en = On ar = تشغيل be = Укл. @@ -14751,7 +14753,7 @@ fr = On hu = Be id = On - it = Acceso + it = On ja = オン ko = 켜기 nb = På @@ -14759,7 +14761,7 @@ pl = Wł. pt = Lig. pt-BR = Lig. - ro = Pornit + ro = Activat ru = Вкл. sk = Zap. sv = På @@ -14772,7 +14774,7 @@ zh-Hant = 開 [off] - tags = android,ios + tags = android, ios en = Off ar = إيقاف be = Выкл. @@ -14787,7 +14789,7 @@ fr = Off hu = Ki id = Mati - it = Spento + it = Off ja = オフ ko = 끄기 nb = Av @@ -14795,7 +14797,7 @@ pl = Wył. pt = Deslig. pt-BR = Deslig. - ro = Oprit + ro = Dezactivat ru = Выкл. sk = Vyp. sv = Av @@ -14831,7 +14833,7 @@ pl = Stosujemy system TTS dla komend głosowych. Stosuje go wiele urządzeń z systemem Android, można go pobrać lub zaktualizować z Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) pt = Utilizamos o sistema TTS para as instruções de voz. Muitos dispositivos Android usam o Google TTS, pode transferir ou atualizá-lo a partir do Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) pt-BR = Utilizamos o sistema TTS para instruções de voz. Muitos dispositivos Android usam o Google TTS, pode transferir ou atualizá-lo a partir do Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) - ro = Pentru instrucțiuni vocale utilizăm sistemul TTS. Multe dispozitive cu Android folosesc Google TTS. Poți descărca sau actualiza aplicația din Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) + ro = Pentru instrucțiuni vocale utilizăm sistemul TTS. Multe dispozitive cu Android folosesc Google TTS. Puteți descărca sau actualiza aplicația din Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) ru = Подсказки озвучиваются системным синтезатором речи (TTS). На многих устройствах используется Google TTS, его можно загрузить или обновить в Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) sk = Na hlasové pokyny používame systém TTS. Mnohé zariadenia s Adroidom používajú Google TTS, ktorý si môžete stiahnuť alebo aktualizovať z obchodu Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) sv = Vi använder TTS-system för röstinstruktioner. Flera Android-enheter använder Google TTS. Du kan ladda ned eller uppdatera det på Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) @@ -14859,14 +14861,14 @@ fr = Pour certaines langues, il vous faudra installer un autre logiciel de synthèse vocale ou un pack de langue supplémentaire depuis l’app store (Google Play Market, Samsung Apps). Ouvrez les paramètres de votre appareil → Langue et saisie → Reconnaissance vocale → Saisie vocale. Ici, vous pouvez gérer les paramètres pour la synthèse vocale (par exemple, télécharger un pack de langue pour une utilisation en mode hors ligne) et sélectionner un autre moteur de saisie vocale. hu = Egyes nyelveknél másik beszédszintetizátort vagy további nyelvi csomagot kell telepítenie az alkalmazás-áruházból (Google Play Market, Samsung Apps). Nyissa meg a készülék beállításait → Nyelv és bevitel → Beszéd → Szöveg-beszéd átalakító kimenet. Itt kezelheti a beszédszintézis beállításokat (például nyelvi csomag letöltése kapcsolat nélküli használatra) és másik szövegfelolvasót jelölhe tki. id = Untuk beberapa bahasa, Anda perlu menginstal synthesizer suara atau paket bahasa tambahan dari toko aplikasi (Google Play Market, Samsung Apps).\nBuka pengaturan perangkat Anda → Language and input (Bahasa dan input) → Speech (Suara) → Text to speech (Teks ke suara).\nDi sini, Anda dapat mengelola pengaturan untuk sintesis suara (contohnya, mengunduh paket bahasa untuk penggunaan tanpa internet) dan memilih mesin tekske suara lain. - it = Per alcune lingue, sarà necessario installare un altro sintetizzatore vocale o un language pack aggiuntivo dall'app store (Google Play, Samsung Apps).\nApri le impostazioni del tuo dispositivo → Lingua e inserimento → Da testo a voce → Motore sintesi vocale.\nQui puoi gestire le impostazioni di sintesi vocale (ad esempio, scaricare una lingua per l'utilizzo offline) e selezionare un altro motore di sintesi vocale. + it = Per alcune lingue, sarà necessario installare un altro sintetizzatore vocale o un language pack aggiuntivo dall'app store (Google Play Market, Samsung Apps).\nApri le impostazioni del tuo dispositivo → Lingua e input → Riconoscimento vocale → Output sintesi vocale.\nQui puoi gestire le impostazioni di sintesi vocale (ad esempio, scaricare un language pack per l'utilizzo offline) e selezionare un altro motore di sintesi vocale. ja = いくつかの言語では、アプリストアからその他の音声合成または追加の言語パックをインストールする必要があります (Google Play マーケット、Samsung Apps) 。お使いのデバイスで [設定] → [言語と入力] → [音声] → [音声出力] を開いてください。ここで音声合成の設定 (たとえば、オフラインで使用する言語パックのダウンロードなど) を管理し、別の音声合成エンジンを選択することができます。 ko = 일부 언어의 경우 앱 스토어(Google Play Market, Samsung Apps)에서 다른 음성 합성기 또는 추가 언어 팩을 설치해야 합니다.\n장치의 설정 → 언어 및 입력 → 음성 → 텍스트-음성 변환 출력을 엽니다.\n여기서 음성 합성에 대한 설정을 관리하고(예: 오프라인 사용을 위한 언어 팩 다운로드) 다른 텍스트-음성 변환 엔진을 선택할 수 있습니다. nb = For enkelte språk er det nødvendig å installere en annen talesyntese eller en ekstra språkpakke fra appbutikken (Google Play Market, Samsung Apps).\nGå til enhetens innstillinger → Språk og input → Tale → Tekst til tale output.\nHer kan du administrere innstillingene for talesyntese (for eksempel laste ned språkpakke for offline bruk) og velge en annen tekst-til-tale-motor. nl = Voor sommige talen dient u een andere spraaksynthese software of een aanvullende taalpakket te installeren van de app store (Google Play Market, Samsung Apps).\nOpen de instellingen van uw toestel → Taal en invoer → Spraak → Uitvoer voor tekst-naar-spraak.\nHier kunt u instellingen voor spraaksynthese beheren (bijvoorbeeld taalpakket downloaden voor offline gebruik) en een andere tekst-naar-spraak engine selecteren. pl = W przypadku niektórych języków wymagana będzie instalacja innego syntezatora lub pakietu językowego ze strony aplikacji (Google Play Market, Samsung Apps). Otwórz ustawienia urządzenia → Język i klawiatura → Mowa → Przetwarzanie tekstu na mowę.\nMożesz w tym miejscu zarządzać ustawieniami syntezy mowy (np. pobrać pakiet językowy do stosowania offline) i wybrać inny silnik przetwarzania tekstu na mowę. pt = Para alguns idiomas, precisará de instalar outro sintetizador de voz ou um pacote de idiomas adicional a partir da loja de aplicações (Google Play Market, Samsung Apps). Abra as Configurações do seu dispositivo → Idioma e entrada → Voz → Saída de texto para voz. Aqui pode gerir as configurações de síntese de voz (por exemplo, transferir um pacote de idioma para poder utilizá-lo sem estar ligado à Internet) ou selecionar outro motor de texto para voz. - ro = Pentru unele limbi trebuie să instalezi alt sintetizator de voce sau un pachet lingvistic suplimentar din Magazinul de aplicații (Google Play, Samsung Apps).\nDeschide reglările aparatului → Limbă → Transformare text în vorbire → Motor preferat.\nAici poți alege motorul de transformare a textului în vorbire și poți descărca o limbă pentru utilizare fără internet. + ro = Pentru unele limbi trebuie să instalați alt sintetizator de voce sau un pachet lingvistic suplimentar din Magazinul de aplicații (Google Play Market, Samsung Apps).\nDeschideți setările aplicației → Limbă și introducere → Voce → Conversie text în voce.\nAici puteți administra setările pentru sintetizatoarele vocale (de exemplu, descărcați pachetul lingvistic pentru utilizare offline) și selectați alt motor de conversie din text în voce. ru = Для некоторых языков, возможно, необходимо установить дополнительный синтезатор речи (TTS) из магазина приложений (Google Play Market, Samsung Apps).\nЧтобы настроить синтезатор речи, перейдите в Настройки → Язык и ввод → Синтез речи.\nЗдесь можно установить дополнительные языковые пакеты или выбрать синтезатор речи. sk = Pre niektoré jazyky bude potrebné nainštalovať syntetizátor reči alebo balík doplnkového jazyka z obchodu s aplikáciami (Google Play, Samsung Apps). Otvorte nastavenia zariadenia → Jazyk a vstup → Reč → Prevod textu na reč. Tu môžete spravovať nastavenia pre syntézu reči (napríklad stiahnuť jazykový balík pre použitie v režime offline) a vybrať iný jazyk. sv = För vissa språk måste du installera en annan talsyntes eller ett annat språkpaket från appbutiken (Google Play Market, Samsung-appar).\nÖppna inställningarna på enheten → Språk och inmatning → Tal → Text till tal-uppspelning.\nHär kan du hantera inställningarna för talsyntes (till exempel, ladda ned språkpaket för användning offline) och välja en annan text till tal-motor. @@ -14902,7 +14904,7 @@ pl = Aby uzyskać więcej informacji, sprawdź ten poradnik. pt = Para obter mais informações, consulte este guia. pt-BR = Para obter mais informações, consulte este guia. - ro = Consultă acest ghid pentru informații suplimentare. + ro = Consultați acest ghid pentru informații suplimentare. ru = Более подробная информация — в этом руководстве. sk = Viac informácií nájdete v tomto návode. sv = Kolla in den här guiden för mer information. @@ -14915,7 +14917,7 @@ zh-Hant = 如需更多資訊,請參閱本指南。 [transliteration_title] - tags = android,ios + tags = android, ios en = Transliteration into Latin af = Transliterasie na Latynse alfabet ar = كتابة بالحروف اللاتينية @@ -14930,12 +14932,12 @@ fa = ترجمه به لاتین fi = Translitterointi latinaksi fr = Translittération en latin - fr-CA = Translittération vers l'alphabet latin + fr_CA = Translittération vers l'alphabet latin he = תעתיק ללטינית hi = लैटिन में लिप्यंतरण hu = Átírás latin nyelvre id = Transliterasi ke dalam bahasa Latin - it = Trascrizione in latino + it = Traslitterazione in latino ja = ラテン文字への字訳 ko = 라틴어로 음역 nb = Omskrivning til latin @@ -14943,13 +14945,13 @@ pl = Transkrypcja na alfabet łaciński pt = Transliteração para o latim pt-BR = Transliteração para alfabeto latino - ro = Transcrie în alfabet latin + ro = Transcriere în alfabet latin ru = Латинская транслитерация sk = Prepis do latinčiny sv = Transkribering till latin sw = Tafsiri kwa lugha ya Kilatini th = การทับศัพท์เป็นภาษาละติน - tr = Latin harf çevirisi + tr = Latin alfabesine çevirme uk = Транслітерація латинськими літерами vi = Chuyển ngữ sang chữ Latinh zh-Hans = 直译成拉丁文 @@ -14971,7 +14973,7 @@ fr = En savoir plus hu = Tudjon meg többet id = Pelajari selengkapnya - it = Scopri di più + it = Ulteriori informazioni ja = 詳細情報 ko = 자세히 알아보기 nb = Finn ut mer @@ -14992,7 +14994,7 @@ zh-Hant = 瞭解更多資訊 [core_exit] - tags = android,ios + tags = android, ios en = Exit ar = خروج be = Выхад @@ -15007,7 +15009,7 @@ fr = Quitter hu = Kilépés id = Keluar - it = Uscita + it = Esci ja = 終了 ko = 끝내기 nb = Avslutt @@ -15028,7 +15030,7 @@ zh-Hant = 退出 [routing_add_start_point] - tags = android,ios + tags = android, ios en = Add a starting point to plan a route ar = أضف نقطة البداية لتخطيط المسار be = Дадайце пункт адпраўлення каб пракласці маршрут @@ -15051,7 +15053,7 @@ pl = Aby zaplanować trasę, dodaj punkt początkowy pt = Adicionar ponto de partida para planear uma rota pt-BR = Adicionar ponto de partida para planejar uma rota - ro = Adaugă un punct de plecare pentru a planifica un traseu + ro = Adăugați punctul de plecare pentru a planifica un traseu ru = Добавьте стартовую точку, чтобы построить маршрут sk = Pridaním počiatočného bodu začnite plánovať trasu sv = Lägg till startpunkt för att planera en rutt @@ -15064,7 +15066,7 @@ zh-Hant = 新增起點以計劃路線 [routing_add_finish_point] - tags = android,ios + tags = android, ios en = Add a destination to plan a route ar = أضف النهاية لتخطيط المسار be = Дадайце пункт прызначэння каб пракласці маршрут @@ -15087,7 +15089,7 @@ pl = Aby zaplanować trasę, dodaj punkt końcowy pt = Adicionar final da viagem para planear uma rota pt-BR = Adicionar final da viagem para planejar uma rota - ro = Adaugă un punct de sosire pentru a planifica un traseu + ro = Adăugați punctul de sosire pentru a planifica un traseu ru = Добавьте конечную точку, чтобы построить маршрут sk = Pridaním cieľového bodu naplánujete trasu sv = Lägg till slutpunkt för att planera en rutt @@ -15115,7 +15117,7 @@ fr = Quitter hu = Kilépés id = Keluar - it = Uscita + it = Esci ja = 終了 ko = 끝내기 nb = Avslutt @@ -15159,7 +15161,7 @@ pl = Zarządzaj trasą pt = Gerir rota pt-BR = Gerir rota - ro = Gestionare traseu + ro = Administrare traseu ru = Изменить маршрут sk = Spravovať trasu sv = Hantera rutt @@ -15195,7 +15197,7 @@ pl = Zaplanuj pt = Planear pt-BR = Planejar - ro = Planifică + ro = Planificare ru = Построить sk = Naplánovať sv = Planera @@ -15208,7 +15210,7 @@ zh-Hant = 計畫 [placepage_remove_stop] - tags = android,ios + tags = android, ios en = Remove ar = إزالة be = Выдаліць @@ -15231,7 +15233,7 @@ pl = Usuń pt = Remover pt-BR = Remover - ro = Elimină + ro = Eliminare ru = Удалить sk = Odstrániť sv = Ta bort @@ -15267,7 +15269,7 @@ pl = Przeciągnij tu, aby usunąć pt = Arraste aqui para remover pt-BR = Arraste aqui para remover - ro = Trage aici pentru a elimina + ro = Trageți aici pentru a elimina ru = Перетяните сюда, чтобы удалить sk = Presunutím sem odstránite sv = Dra här för att ta bort @@ -15280,7 +15282,7 @@ zh-Hant = 在此拖曳以移除 [placepage_add_stop] - tags = android,ios + tags = android, ios en = Add Stop ar = إضافة نقطة توقف be = Дадаць прыпынак @@ -15303,7 +15305,7 @@ pl = Dodaj postój pt = Adicionar paragem pt-BR = Adicionar parada - ro = Adaugă oprire + ro = Adăugare oprire ru = Заехать sk = Pridať zastávku sv = Lägg till stopp @@ -15338,7 +15340,7 @@ pl = Zacznij od pt = Iniciar a partir de pt-BR = Iniciar a partir de - ro = Pornește de la + ro = Începând de la ru = Начать от sk = Začať od sv = Starta från @@ -15366,7 +15368,7 @@ fr = Oups, une erreur s'est produite. Essayez de vous connecter à nouveau. hu = Hoppá, volt egy hiba. Próbáljon meg újra bejelentkezni. id = Ah, tadi ada kesalahan. Coba masuk kembali. - it = Si è verificato un errore. Prova a ripetere l'accesso più tardi. + it = Ops, si è verificato un errore. Prova a ripetere l'accesso più tardi. ja = エラーが発生しました。もう一度サインインしてみてください。 ko = 죄송합니다. 오류가 발생했습니다. 다시 로그인해 보세요. nb = Oops, en feil oppstod. Prøv å logge inn på nytt. @@ -15374,7 +15376,7 @@ pl = Ups, nastąpił błąd. Spróbuj zalogować się ponownie. pt = Ups, ocorreu um erro. Tente iniciar sessão novamente. pt-BR = Ups, ocorreu um erro. Tente iniciar sessão novamente. - ro = A apărut o eroare. Încearcă să te conectezi din nou. + ro = Ups, a survenit o eroare. Încercați să vă conectați din nou. ru = Упс, произошла ошибка. Попробуйте авторизоваться повторно. sk = Ups, vyskytla sa chyba. Skúste sa prihlásiť znova. sv = Hoppsan, ett fel har inträffat. Försök att logga in igen. @@ -15403,7 +15405,7 @@ fr = Problème d'accès au stockage hu = Tároló hozzáférési hiba id = Masalah akses penyimpanan - it = Problema di accesso alla memoria + it = Problema di accesso all'archivio ja = ストレージアクセスの問題 ko = 저장소 액세스 문제 nb = Problemer med tilgang til lagring @@ -15411,7 +15413,7 @@ pl = Problem z dostępem do pamięci masowej pt = Problema de acesso ao armazenamento pt-BR = Problema de acesso ao armazenamento - ro = Problemă de acces la spațiul de stocare + ro = Problemă de accesare spațiu de stocare ru = Проблема с доступом к хранилищу sk = Problém s prístupom k úložisku sv = Lagringsåtkomstproblem @@ -15440,7 +15442,7 @@ fr = Le stockage externe n'est pas disponible. La carte SD a probablement été enlevée, endommagée ou le système est en lecture seule. Veuillez vérifier et nous contacter via support@organicmaps.app hu = Külső tároló nem áll rendelkezésre, valószínűleg az SD-kártyát eltávolították vagy sérült, vagy rendszerfájl csak olvasható. Ellenőrizze, és lépjen kapcsolatba velünk a support@organicmaps.app címen id = Penyimpanan eksternal tidak tersedia, mungkin Kartu SD sudah dilepaskan, rusak, atau sistem berkasnya hanya dapat dibaca. Silakan periksa dan beri tahu kami di alamat support@ maps.me - it = Archivio esterno non disponibile, probabilmente la scheda SD è stata rimossa, è danneggiata o il file system è di sola lettura. Controllala o contattaci su support@organicmaps.app + it = Archivio esterno non disponibile, probabilmente la scheda SD è stata rimossa, è danneggiata o il file system è di sola lettura. Controllala e contattaci su support@organicmaps.app ja = 外部ストレージは使用できません。おそらく SD カードが取り外されたか、破損している、あるいはファイルシステムが読み取り専用になっています。確認後、support@organicmaps.app までご連絡ください。 ko = 외부 저장소를 사용할 수 없습니다. SD 카드가 제거되었거나 손상되었거나 파일 시스템이 읽기 전용일 수 있습니다. 확인 후 support@organicmaps.app로 문의하세요. nb = Ekstern lagring er ikke tilgjengelig. Sannsynligvis er SD-kortet fjernet eller skadet eller så er filsystemet skrivebeskyttet. Undersøk og kontakt oss på support@organicmaps.app @@ -15448,7 +15450,7 @@ pl = Zewnętrzny nośnik pamięci masowej jest niedostępny. Prawdopodobnie usunięto lub uszkodzono kartę SD bądź jej system plików służy tylko do odczytu. Zweryfikuj to i skontaktuj się z nami pod adresem support@organicmaps.app pt = O armazenamento externo não está disponível. Provavelmente porque o cartão SD foi removido, danificado ou o sistema de ficheiros é apenas para leitura. Verifique e contacte-nos através do email support@organicmaps.app pt-BR = O armazenamento externo não está disponível, é provável que o cartão SD tenha sido removido, danificado ou o sistema de arquivo seja apenas para leitura. Verifique e entre em contato conosco em support@organicmaps.app - ro = Spațiul de stocare extern nu este disponibil. Probabil cardul SD nu este introdus, este deteriorat sau sistemul de fișiere este doar pentru citire. Verifică sau contactează-ne la support@organicmaps.app + ro = Spațiul de stocare extern nu este disponibil. Probabil cardul SD nu este introdus, este deteriorat sau sistemul de fișiere este read-only. Verifică și contactează-ne la support@organicmaps.app ru = Внешняя память устройства недоступна, возможно SD карта была удалена, повреждена или файловая система доступна только для чтения. Проверьте это и свяжитесь, пожалуйста, с нами support@organicmaps.app sk = Externý úložný priestor nie je dostupný, pravdepodobne je vytiahnutá alebo poškodená SD karta alebo je systém súborov určený iba na čítanie. Skontrolujte to, prosím, a kontaktujte nás na support@organicmaps.app sv = Extern lagring är inte tillgänglig. SD-kortet är borttaget, skadat eller så är filsystemet är skrivskyddat. Kontrollera det och kontakta oss på support@organicmaps.app @@ -15485,7 +15487,7 @@ pl = Emuluj wadliwą pamięć masową pt = Emular o armazenamento defeituoso pt-BR = Emular memória ruim - ro = Simulare arhivă deteriorată + ro = Emulare stocare eronată ru = Эмуляция ошибки с внешней памятью sk = Imitovať poškodené úložisko sv = Emulera dålig lagring @@ -15498,7 +15500,7 @@ zh-Hant = 模擬不良儲存空間 [core_entrance] - tags = android,ios + tags = android, ios en = Entrance ar = المدخل be = Уваход @@ -15535,7 +15537,7 @@ zh-Hant = 入口 [error_enter_correct_name] - tags = android,ios + tags = android, ios en = Please, enter a correct name ar = الرجاء إدخال اسم صحيح be = Калі ласка, увядзіце назву правільна @@ -15572,7 +15574,7 @@ zh-Hant = 請輸入正確的名稱 [bookmark_lists] - tags = android,ios + tags = android, ios en = Lists ar = قوائم be = Спісы @@ -15610,7 +15612,7 @@ [bookmark_lists_hide_all] comment = Do not display all bookmark lists on the map - tags = android,ios + tags = android, ios en = Hide all ar = إخفاء الكل be = Схаваць усе @@ -15634,7 +15636,7 @@ pl = Ukryj wszystkie pt = Ocultar tudo pt-BR = Ocultar tudo - ro = Ascunde tot + ro = Ascundere toate ru = Спрятать все sk = Skryť všetko sv = Dölj alla @@ -15647,7 +15649,7 @@ zh-Hant = 隱藏全部 [bookmark_lists_show_all] - tags = android,ios + tags = android, ios en = Show all ar = إظهار الكل be = Паказаць усе @@ -15671,7 +15673,7 @@ pl = Pokaż wszystkie pt = Mostrar tudo pt-BR = Exibir tudo - ro = Arată tot + ro = Afișare toate ru = Показать все sk = Zobraziť všetko sv = Visa alla @@ -15703,8 +15705,7 @@ fr = %d signets hu = könyvjelzők %d id = %d markah - it:one = %d preferito - it:other = %d preferiti + it = %d preferiti ja = %d個のブックマーク ko = %d 북마크 nb = %d bokmerker @@ -15714,8 +15715,7 @@ pt-BR:other = %d favoritos pt:one = %d favorito pt:other = %d favoritos - ro:one = %d preferat - ro:other = %d preferate + ro = %d semne de carte ru:few = %d метки ru:one = %d метка ru:other = %d меток @@ -15730,7 +15730,7 @@ zh-Hant = %d 個書籤 [bookmarks_create_new_group] - tags = android,ios + tags = android, ios en = Create new list ar = إنشاء قائمة جديدة be = Стварыць новы спіс @@ -15746,7 +15746,7 @@ fr = Créer une nouvelle liste hu = Új lista létrehozása id = Buat daftar baru - it = Crea un nuovo elenco + it = Crea una nuova lista ja = 新しいリストを作成する ko = 새 목록 만들기 nb = Opprett ny liste @@ -15754,7 +15754,7 @@ pl = Utwórz nową listę pt = Criar nova lista pt-BR = Criar nova lista - ro = Creează o listă nouă + ro = Creați o listă nouă ru = Создать новый список sk = Vytvoriť nový zoznam sv = Skapa ny lista @@ -15776,11 +15776,9 @@ es = Importar marcadores fi = Tuo kirjamerkit fr = Importer des signets - it = Importa luoghi preferiti pl = Import zakładek pt = Importar favoritos pt-BR = Importar favoritos - ro = Importă locuri preferate ru = Импортировать метки tr = Yer imlerini içe aktar zh-Hant = 匯入書籤 @@ -15810,7 +15808,7 @@ pl = Ukryj ekran pt = Ocultar ecrã pt-BR = Ocultar tela - ro = Ascunde pagina + ro = Ascundere ecran ru = Скрыть sk = Skryť obrazovku sv = Dölj skärm @@ -15884,7 +15882,7 @@ pl = Pobieranie %s… pt = A transferir %s… pt-BR = Baixando %s… - ro = Se descarcă %s… + ro = Descărcare %s… ru = Загрузка %s… sk = Sťahovanie %s… sv = Ladda ned %s… @@ -15921,7 +15919,7 @@ pl = Stosowanie zmian %s… pt = A aplicar %s… pt-BR = Aplicando %s… - ro = Se aplică %s… + ro = Aplicare %s… ru = Применение %s… sk = Použitie %s… sv = Tillämpar %s… @@ -15934,7 +15932,7 @@ zh-Hant = 應用 %s 中…… [bookmarks_error_message_share_general] - tags = android,ios + tags = android, ios en = Unable to share due to an application error ar = تعذرت المشاركة بسبب خطأ في التطبيق be = Не атрымалася падзяліцца з-за памылкі дадатка @@ -15958,7 +15956,7 @@ pl = Nie można udostępnić z powodu błędu aplikacji pt = Não foi possível partilhar devido a um erro da aplicação pt-BR = Impossível compartilhar devido a um erro do aplicativo - ro = Imposibil de trimis din cauza unei erori a aplicației + ro = Imposibil de distribuit din cauza unei erori a aplicației ru = Не удалось поделиться из-за ошибки приложения sk = Pre chybu aplikácie nie je zdieľanie možné sv = Kunde inte delas på grund av ett applikationsfel @@ -15971,7 +15969,7 @@ zh-Hant = 由於 app 出錯而無法分享 [bookmarks_error_title_share_empty] - tags = android,ios + tags = android, ios en = Sharing error ar = خطأ في المشاركة be = Памылка пры спробе падзяліцца @@ -15995,7 +15993,7 @@ pl = Błąd udostępniania pt = Erro ao partilhar pt-BR = Erro de compartilhamento - ro = Eroare la trimitere + ro = Eroare la distribuire ru = Ошибка при попытке поделиться sk = Chyba zdieľania sv = Delningsfel @@ -16008,7 +16006,7 @@ zh-Hant = 分享錯誤 [bookmarks_error_message_share_empty] - tags = android,ios + tags = android, ios en = Cannot share an empty list ar = لا يمكن مشاركة قائمة فارغة be = Нельга падзяліцца пустым спісам @@ -16024,7 +16022,7 @@ fr = Impossible de partager une liste vide hu = Üres lista nem osztható meg id = Tidak dapat membagikan daftar kosong - it = Impossibile condividere un elenco vuoto + it = Impossibile condividere una lista vuota ja = 空のリストは共有できません ko = 빈 목록을 공유 할 수 없습니다 nb = Kan ikke dele en tom liste @@ -16032,7 +16030,7 @@ pl = Nie można udostępnić pustej listy pt = Não é possível partilhar uma lista vazia pt-BR = Impossível compartilhar uma lista vazia - ro = Nu se poate trimite o listă goală + ro = Nu se poate distribui o listă goală ru = Нельзя делиться пустыми списками sk = Prázdny zoznam nie je možné zdieľať sv = Kan inte dela en tom lista @@ -16069,7 +16067,7 @@ pl = Nazwa nie może być pusta pt = O nome não pode estar em branco pt-BR = O nome não podia estar vazio - ro = Numele este necesar + ro = Numele nu poate fi gol ru = Имя списка не может быть пустым sk = Názov nemôže byť prázdny sv = Namnet kunde inte vara tomt @@ -16082,7 +16080,7 @@ zh-Hant = 名字不能為空 [bookmarks_error_message_empty_list_name] - tags = android,ios + tags = android, ios en = Please enter the list name ar = يرجى إدخال اسم القائمة be = Увядзіце назву спіса @@ -16098,7 +16096,7 @@ fr = Veuillez entrer le nom de la liste hu = Adja meg a lista nevét id = Silakan masukkan nama daftar - it = Inserire il nome dell'elenco + it = Si prega di inserire il nome della lista ja = リスト名を入力してください ko = 목록 이름을 입력하십시오. nb = Vennligst skriv inn listenavnet @@ -16106,7 +16104,7 @@ pl = Wprowadź nazwę listy pt = Por favor introduza o nome da lista pt-BR = Por favor insira o nome da lista - ro = Introdu numele listei + ro = Introduceți numele listei ru = Введите имя списка, пожалуйста sk = Zadajte názov zoznamu sv = Vänligen ange listnamnet @@ -16135,7 +16133,7 @@ fr = Nouvelle liste hu = Új lista id = Daftar baru - it = Nuovo elenco + it = Nuova lista ja = 新しいリスト ko = 새 목록 nb = Ny liste @@ -16143,7 +16141,7 @@ pl = Nowa lista pt = Nova lista pt-BR = Nova lista - ro = Listă nouă + ro = Lista nouă ru = Новый список sk = Nový zoznam sv = Ny lista @@ -16156,7 +16154,7 @@ zh-Hant = 新的列表 [bookmarks_error_title_list_name_already_taken] - tags = android,ios + tags = android, ios en = This name is already taken ar = هذا الاسم أخذ سابقا be = Гэтая назва ўжо занятая @@ -16180,7 +16178,7 @@ pl = Ta nazwa jest już zajęta pt = Este nome já está a ser utilizado pt-BR = Esse nome já está sendo usado - ro = Acest nume este deja ales + ro = Acest nume este deja luat ru = Такое имя уже занято sk = Tento názov už bol prijatý sv = Det här namnet är redan taget @@ -16209,7 +16207,7 @@ fr = Merci de choisir un autre nom hu = Kérjük, válasszon másik nevet id = Silakan pilih nama lain - it = Scegliere un altro nome + it = Si prega di scegliere un altro nome ja = 別の名前を選んでください ko = 다른 이름을 선택하십시오. nb = Vennligst velg et annet navn @@ -16217,7 +16215,7 @@ pl = Wybierz inną nazwę pt = Por favor escolha outro nome pt-BR = Por favor, escolha outro nome - ro = Alege un alt nume + ro = Alegeți un alt nume ru = Выберите, пожалуйста, другое имя sk = Vyberte iné meno sv = Vänligen välj ett annat namn @@ -16253,7 +16251,7 @@ pl = Ta nazwa jest za długa pt = Este nome é muito longo pt-BR = Este nome é muito longo - ro = Acest nume e prea lung + ro = Acest nume este prea lung ru = Слишком длинное название sk = Tento názov je príliš dlhý sv = Det här namnet är för långt @@ -16267,7 +16265,7 @@ [please_wait] tags = android - en = Please wait… + en = Please wait� ar = أرجو الإنتظار… be = Калі ласка, пачакайце… bg = Моля, изчакайте… @@ -16282,21 +16280,21 @@ fr = S'il vous plaît, attendez… hu = Kérlek várj… id = Mohon tunggu… - it = Attendere… + it = Attendere prego… ja = お待ちください… ko = 잠시만 기다려주십시오… nb = Vennligst vent… nl = Even geduld aub… pl = Proszę czekać… - pt = Por favor aguarde… - pt-BR = Espere, por favor… - ro = Așteaptă… + pt = Por favor aguarde� + pt-BR = Espere, por favor� + ro = Te rog asteapta… ru = Пожалуйста, подождите… sk = Prosím čakajte… sv = Vänligen vänta… sw = Tafadhali subiri… th = โปรดรอสักครู่ … - tr = Lütfen bekleyin… + tr = Lütfen bekleyin� uk = Будь ласка, зачекайте… vi = Vui lòng chờ… zh-Hans = 请稍候… @@ -16312,7 +16310,7 @@ de = Telefonnummer el = Τηλεφωνικό νούμερο es = Número de teléfono - es-MX = Número de teléfono + es_MX = Número de teléfono fa = شماره تلفن fi = Puhelinnumero fr = Numéro de téléphone @@ -16326,7 +16324,7 @@ pl = Numer telefonu pt = Número de telefone pt-BR = Número de telefone - ro = Număr de telefon + ro = Numar de telefon ru = Номер телефона sk = Telefónne číslo sv = Telefonnummer @@ -16339,7 +16337,7 @@ zh-Hant = 電話號碼 [profile] - tags = android,ios + tags = android, ios en = OpenStreetMap profile ar = الملف الشخصي OpenStreetMap be = Профіль OpenStreetMap @@ -16411,7 +16409,7 @@ zh-Hant = 檢測到新文件 [bookmarks_detect_message] - tags = android,ios + tags = android, ios en:one = %d file was found. You can see it after conversion. en:other = %d files were found. You can see them after conversion. ar = تم العثور على %d ملفات. سوف تراهم بعد التحويل. @@ -16442,7 +16440,7 @@ id:one = %d file ditemukan. Anda akan melihatnya setelah mengonversi. id:other = %d file telah ditemukan. Anda akan melihatnya setelah konversi. it:one = %d file è stato trovato. Lo vedrai dopo la conversione. - it:other = %d file trovati. Li vedrai dopo la conversione. + it:other = %d file trovati Li vedrai dopo la conversione. ja = %d ファイルが見つかりました。 あなたは変換後にそれらを見るでしょう。 ko = %d 파일을 찾았습니다. 회심 후 그들을 볼 수 있습니다. nb:one = %d filen ble funnet. Du vil se dem etter konverteringen. @@ -16456,11 +16454,11 @@ pt-BR:other = %d arquivos foram encontrados. Você os verá depois da conversão. pt:one = %d ficheiro encontrado. Pode vê-lo depois da conversão. pt:other = %d ficheiros encontrados. Pode vê-los depois da conversão. - ro:one = A fost găsit %d fișier. Îl vei vedea după conversiune. - ro:other = Au fost găsite %d fișiere. Le vei vedea după conversiune. - ru:few = %d файла были найдены. Вы увидите их после конвертации. - ru:one = %d файл был найден. Вы увидите его после конвертации. - ru:other = %d файлов было найдено. Вы увидите их после конвертации. + ro:one = %d fișier a fost găsit. Veți vedea după conversie. + ro:other = Au fost găsite %d fișiere. Veți vedea după convertire. + ru:few = %d файла были найдены. Вы увидете их после конвертации. + ru:one = %d файл был найден. Вы увидете его после конвертации. + ru:other = %d файлов было найдено. Вы увидете их после конвертации. sk:few = Boli nájdené %d súbory. Uvidíte ich po konverzii. sk:one = Bol nájdený %d súbor. Uvidíte to po konverzii. sk:other = Bolo nájdených %d súborov. Uvidíte ich po konverzii. @@ -16470,9 +16468,9 @@ sw:other = Files %d zimepatikana. Utawaona baada ya uongofu. th = %d ไฟล์ที่ค้นพบ คุณจะเห็นพวกเขาหลังจากการแปลง tr = %d dosya bulundu. Dönüşümden sonra onları göreceksiniz. - uk:few = %d файлу були знайдені. Ви побачите їх після конвертації. uk:one = %d файл був знайдений. Ви побачите його після перетворення. uk:other = %d файлів було знайдено. Ви побачите їх після конвертації. + uk:two = %d файлу були знайдені. Ви побачите їх після конвертації. vi:one = %d dã tìm thấy một tệp. Bạn sẽ thấy nó sau khi chuyển đổi. vi:other = %d tập tin đã được tìm thấy. Bạn sẽ thấy chúng sau khi chuyển đổi. zh-Hans = 找到%d个文件。 转换后你会看到它。 @@ -16503,7 +16501,7 @@ pl = konwertować pt = Converter pt-BR = Converter - ro = Convertește + ro = Convertit ru = Конвертировать sk = Premeniť sv = Konvertera @@ -16606,7 +16604,7 @@ fr = Restaurer cette version? hu = A verzió visszaállítása? id = Kembalikan versi ini? - it = Ripristinare questa versione? + it = Ripristina questa versione? ja = このバージョンを復元しますか? ko = 이 버전을 복원 하시겠습니까? nb = Gjenopprett denne versjonen? @@ -16614,7 +16612,7 @@ pl = Przywróć tę wersję? pt = Restaurar esta versão? pt-BR = Restaurar esta versão? - ro = Restabilești această versiune? + ro = Restabiliți această versiune? ru = Восстановить эту версию? sk = Obnoviť túto verziu? sv = Återställ den här versionen? @@ -16651,7 +16649,7 @@ pl = Brak połączenia z internetem pt = Sem ligação à Internet pt-BR = Sem conexão com a Internet - ro = Nicio conexiune la internet + ro = Fără conexiune internet ru = Нет интернет соединения sk = Žiadne internetové pripojenie sv = Ingen internetanslutning @@ -16688,7 +16686,7 @@ pl = Wystąpił nieznany błąd pt = Surgiu um erro desconhecido pt-BR = Ocorreu um erro desconhecido - ro = A apărut o eroare necunoscută + ro = O eroare necunoscută s-a întamplat ru = Произошла неизвестная ошибка sk = Vyskytla sa neznáma chyba sv = Ett okänt fel uppstod @@ -16717,7 +16715,7 @@ fr = Restaurer hu = Visszaállítás id = Mengembalikan - it = Ripristina + it = Ristabilire ja = リストア ko = 복원 nb = Restaurere @@ -16725,7 +16723,7 @@ pl = Przywracać pt = Restaurar pt-BR = Restaurar - ro = Restabilește + ro = Restabili ru = Восстановить sk = Obnoviť sv = Återställa @@ -16738,7 +16736,7 @@ zh-Hant = 恢復 [objects] - tags = android,ios + tags = android, ios en:one = %d object en:other = %d objects ar = المكان %d @@ -16760,22 +16758,21 @@ fr = lieu %d hu = %d hely id = tempat %d - it:one = %d oggetto - it:other = %d oggetti + it = %d luogo ja = %dの場所 ko = %d 장소 - nb = %d sted nl = %d plaats + no = %d sted pl = %d miejsce pt-BR:one = %d objeto pt-BR:other = %d objetos pt:one = %d objeto pt:other = %d objetos - ro:one = %d obiect - ro:other = %d obiecte + ro = %d localitate ru:few = %d объекта ru:one = %d объект ru:other = %d объектов + ru:two = %d объекта sk = %d miesto sv = %d plats sw = Eneo %d @@ -16810,22 +16807,21 @@ fr:other = %d lieux hu = %d hely id = tempat %d - it:one = %d luogo - it:other = %d luoghi + it = %d luoghi ja = %dの場所 ko = %d 장소들 - nb = %d steder nl = %d plaatsen + no = %d steder pl = %d miejsc pt-BR:one = %d lugar pt-BR:other = %d lugares pt:one = %d lugar pt:other = %d lugares - ro:one = %d loc - ro:other = %d locuri + ro = %d localităti ru:few = %d места ru:one = %d место ru:other = %d мест + ru:two = %d места sk = %d miesta sv = %d platser sw = Maeneo %d @@ -16837,7 +16833,7 @@ zh-Hant = %d 地點 [tracks] - tags = android,ios + tags = android, ios en:one = %d track en:other = %d tracks ar = المسارات %d @@ -16859,22 +16855,21 @@ fr = pistes %d hu = %d út id = trek %d - it:one = %d percorso - it:other = %d percorsi + it = %d tracce ja = %dの追跡 ko = %d 추적 - nb = %d stier nl = %d routes + no = %d stier pl = %d tras pt-BR:one = %d percurso pt-BR:other = %d percursos pt:one = %d percurso pt:other = %d percursos - ro:one = %d traseu - ro:other = %d trasee + ro = %d bande ru:few = %d трека ru:one = %d трек ru:other = %d треков + ru:two = %d трека sk = %d sledovania sv = %d spår sw = Njia %d @@ -16902,15 +16897,15 @@ fr = Paramètres de suivi hu = Követési beállítások id = Pengaturan treking - it = Impostazioni percorso + it = Impostazioni di tracciamento ja = 追跡の設定 ko = 추적 설정 - nb = Turinnstillinger nl = Tracking-instellingen + no = Turinnstillinger pl = Ustawienia śledzenia pt = Configurações de rastreamento pt-BR = Configurações de rastreamento - ro = Opțiuni traseu + ro = Setări de servire ru = Настройки сопровождения sk = Nastavenie sledovania sv = Spårningsinställningar @@ -16939,15 +16934,15 @@ fr = Rapport d'accident hu = Hibajelentés id = Laporan tabrakan - it = Rapporto d'arresto + it = Rapporto incidenti ja = クラッシュレポート ko = 오류 보고서 - nb = Krasjrapport nl = Crash rapport + no = Krasjrapport pl = Raport o błędzie pt = Relatório de erros pt-BR = Relatório de erros - ro = Raport de eroare + ro = Rapoarte de eroare ru = Отчеты об ошибках sk = Hlásenie chýb sv = Olycksrapport @@ -16976,15 +16971,15 @@ fr = Nous pouvons utiliser vos données pour améliorer l'expérience de Organic Maps. Les modifications prendront effet après le redémarrage de l'application. hu = A Organic Maps fejlesztéséhez felhasználhatjuk az adatait. A változtatások az alkalmazás újraindítása után lépnek életbe. id = Kami dapat menggunakan data Anda untuk meningkatkan pengalaman Organic Maps. Perubahan akan berlaku setelah Anda memulai ulang aplikasi. - it = Potremmo utilizzare i tuoi dati per migliorare l'esperienza di Organic Maps. Le modifiche avranno effetto dopo aver riavviato l'app. + it = Potremmo utilizzare i tuoi dati per migliorare l'esperienza Organic Maps. Le modifiche avranno effetto dopo il riavvio dell'applicazione. ja = Organic Maps体験を向上させるため、お客様のデータを使用する可能性があります。変更は、アプリを再起動した後に、反映されます。 ko = 당사는 Organic Maps 경험을 개선하기 위해 귀하의 데이터를 활용할 수 있습니다. 앱을 다시 시작한 후 변경사항이 적용됩니다. - nb = Vi kan bruke dine data for å forbedre Organic Maps-opplevelsen. Endringer vil bli aktive når du restarter appen. nl = Wij kunnen uw gegevens gebruiken om Organic Maps te verbeteren. Wijzigingen treden in werking na het opnieuw opstarten van de app. + no = Vi kan bruke dine data for å forbedre Organic Maps-opplevelsen. Endringer vil bli aktive når du restarter appen. pl = Możemy używać Twoich danych do usprawnienia działania Organic Maps. Zmiany zostaną zastosowane po ponownym uruchomieniu aplikacji. pt = Podemos utilizar os seus dados para melhorar a experiência no Organic Maps. As alterações entrarão em vigor quando reiniciar a aplicação. pt-BR = Nós podemor utilizar seus dados para melhorar a experiência Organic Maps As mudanças terão efeitos após reiniciar o app. - ro = Putem folosi datele tale pentru a îmbunătăți Organic Maps. Modificările vor intra în vigoare după repornirea aplicației. + ro = Putem folosi datele dvs. pentru a dezvolta și de a îmbunătăți Organic Maps. Modificările vor intra în vigoare după repornirea aplicației. ru = Мы можем использовать ваши данные, чтобы развивать и улучшать Organic Maps. Изменения вступят в силу после перезапуска приложения. sk = Vaše údaje môžeme použiť na zlepšenie skúseností s programom Organic Maps. Zmeny sa prejavia po reštartovaní aplikácie. sv = Vi kan komma att använda din data för att förbättra Organic Maps upplevelsen. Ändringarna kommer träda i kraft när du startar om appen. @@ -16997,7 +16992,7 @@ zh-Hant = 我們可以使用您的數據來開發和改進Organic Maps。更改將再重新啟動 app 後生效。 [privacy_policy] - tags = android,ios + tags = android, ios en = Privacy policy ar = سياسة الخصوصية be = Палітыка прыватнасці @@ -17013,15 +17008,15 @@ fr = Politique de confidentialité hu = Adatvédelmi irányelvek id = Kebijakan privasi - it = Riservatezza + it = Politica sulla riservatezza ja = 個人情報保護方針 ko = 개인정보 보호 방침 - nb = Personvernpolitikk nl = Privacy beleid + no = Personvernpolitikk pl = Polityka prywatności pt = Política de privacidade pt-BR = Política de privacidade - ro = Confidențialitate + ro = Politica de confidențialitate ru = Политика конфиденциальности sk = Zásady ochrany osobných údajov sv = Integritetspolicy @@ -17034,7 +17029,7 @@ zh-Hant = 隱私政策 [terms_of_use] - tags = android,ios + tags = android, ios en = Terms of use ar = شروط الاستخدام be = Умовы выкарыстання @@ -17053,8 +17048,8 @@ it = Condizioni d'uso ja = ご利用規約 ko = 사용 약관 - nb = Bruksbetingelser nl = Gebruiksvoorwaarden + no = Bruksbetingelser pl = Warunki użytkowania pt = Termos de utilização pt-BR = Termos de uso @@ -17071,7 +17066,7 @@ zh-Hant = 使用條款 [button_layer_traffic] - tags = android,ios + tags = android, ios en = Traffic ar = حركة مرور be = Рух @@ -17090,12 +17085,12 @@ it = Traffico ja = 交通状況 ko = 트래픽 - nb = Trafikk nl = Verkeer + no = Trafikk pl = Ruch drogowy pt = Tráfego pt-BR = Tráfego - ro = Trafic + ro = Dopuri ru = Пробки sk = Vyťaženie sv = Trafik @@ -17108,7 +17103,7 @@ zh-Hant = 路況 [button_layer_subway] - tags = android,ios + tags = android, ios en = Subway ar = مترو الانفاق be = Метро @@ -17127,8 +17122,8 @@ it = Metropolitana ja = 地下鉄 ko = 지하철 - nb = T-bane nl = Metro + no = T-bane pl = Metro pt = Metropolitano pt-BR = Metrô @@ -17145,7 +17140,7 @@ zh-Hant = 捷運 [layers_title] - tags = android,ios + tags = android, ios en = Map layers ar = طبقات الخريطة be = Слаі карты @@ -17164,8 +17159,8 @@ it = Livelli mappa ja = マップレイヤー ko = 맵 레이어 - nb = Kartlag nl = Map layers + no = Kartlag pl = Warstwy map pt = Camadas do mapa pt-BR = Camadas de mapa @@ -17182,7 +17177,7 @@ zh-Hant = 地圖圖層 [subway_data_unavailable] - tags = android,ios + tags = android, ios en = Subway map is unavailable ar = خريطة مترو الانفاق غير متوفرة be = Мапа метро недасягальная @@ -17201,8 +17196,8 @@ it = La mappa della metropolitana non è disponibile ja = 地下鉄路線図はご利用いただけません ko = 지하철 지도가 가용하지 않습니다. - nb = T-banekart er utilgjengelig nl = Metrokaart is niet beschikbaar + no = T-banekart er utilgjengelig pl = Mapa metra jest niedostępna pt = O mapa de metropolitano não está disponível pt-BR = Mapa de metrô está indisponível @@ -17235,11 +17230,11 @@ fr = Cette liste est vide hu = A lista üres id = Daftar ini kosong - it = Questo elenco è vuoto + it = Questa lista è vuota ja = このリストは空です ko = 이 목록은 비어있습니다. - nb = Denne listen er tom nl = Deze lijst is leeg + no = Denne listen er tom pl = Lista jest pusta pt = Esta lista está vazia pt-BR = Esta lista está vazia @@ -17272,16 +17267,16 @@ fr = Pour ajouter un signet, appuyez sur un lieu sur la carte, puis appuyez sur l'icône étoile hu = A könyvjelző hozzáadásához, érintsen meg a térképen egy helyet majd érintse meg a csillag ikont id = Untuk menambahkan bookmark, ketuk satu tempat di peta lalu ketuk ikon bintang - it = Per aggiungere un luogo preferito, tieni premuto un punto sulla mappa e poi tocca l'icona a forma di stella + it = Per aggiungere un segnalibro, toccare un punto sulla mappa e successivamente toccare l'icona a forma di stella ja = ブックマークを追加するには、地図上の場所をタップし、星のアイコンをタップします。 ko = 북마크를 추가하려면 맵에서 장소를 탭하고 별 모양 아이콘을 탭하세요. - nb = For å legge til et bokmerke, trykk et sted på kartet og trykk så stjerneikonet nl = Om een bladwijzer toe te voegen, tikt u op een plaats op de kaart en vervolgens op het sterpictogram + no = For å legge til et bokmerke, trykk et sted på kartet og trykk så stjerneikonet pl = Aby dodać zakładkę, dotknij miejsca na mapie, a następnie dotknij ikony gwiazdy. pt = Para adicionar um favorito, toque num lugar do mapa e em seguida toque no ícone da estrela pt-BR = Para adicionar um favorito, toque no mapa e então toque no ícone de estrela - ro = Pentru a adăuga un loc preferat, ține apăsat un loc pe hartă și după aceea atinge simbolul în formă de stea - ru = Чтобы добавить метку, нажмите на место на карте, а затем на иконку звёздочки + ro = Pentru a adăuga un nou tag, faceți clic pe pictograma stea în fișa de obiect + ru = Чтобы добавить новую метку, нажмите на значок звездочки в карточке объекта sk = Pre pridanie záložky kliknite na miesto na mape a potom na ikonu hviezdy sv = För att lägga till bokmärken, tryck på kartan och sedan på stjärnikonen sw = Ili kuongeza ramani, gusa mahali kwenye ramani na kisha gusa ikoni ya nyota @@ -17312,8 +17307,8 @@ it = …altro ja = 詳細 ko = …기타 정보 - nb = …mer nl = …meer + no = …mer pl = …więcej pt = …mais pt-BR = …mais @@ -17349,8 +17344,8 @@ it = Si è verificato un errore ja = エラーが発生しました ko = 오류가 발생했습니다. - nb = Det oppsto en feil nl = Er is een fout opgetreden + no = Det oppsto en feil pl = Wystąpił błąd pt = Surgiu um erro pt-BR = Um erro ocorreu @@ -17374,17 +17369,15 @@ de = Beliebt fa = مشهور fr = Populaire - it = Popolare pl = Popularne pt = Popular pt-BR = Popular - ro = Populare ru = Популярно tr = Popüler zh-Hant = 受歡迎的 [export_file] - tags = android,ios + tags = android, ios en = Export file ar = ملف التصدير be = Экспартаваць файл @@ -17408,7 +17401,7 @@ pl = Eksportuj plik pt = Exportar o ficheiro pt-BR = Exportar arquivo - ro = Exportă fișierul + ro = Exportați fișierul ru = Экспортировать файл sk = Exportovať súbor sv = Exportera fil @@ -17421,7 +17414,7 @@ zh-Hant = 導出文件 [list_settings] - tags = android,ios + tags = android, ios en = List Settings ar = قائمة الإعدادات be = Налады спіса @@ -17445,7 +17438,7 @@ pl = Ustawienia listy pt = Configurações de listas pt-BR = Configurações de lista - ro = Opțiunile listei + ro = Elaborarea listei ru = Настройки списка sk = Nastavenie zoznamu sv = Listinställningar @@ -17458,7 +17451,7 @@ zh-Hant = 列表設定 [delete_list] - tags = android,ios + tags = android, ios en = Delete list ar = حذف القائمة be = Выдаліць спіс @@ -17482,7 +17475,7 @@ pl = Usuń listę pt = Eliminar lista pt-BR = Deletar lista - ro = Șterge lista + ro = Ștergerea listei ru = Удалить список sk = Vymazať zoznam sv = Radera listan @@ -17510,7 +17503,7 @@ fr = Masquer de la carte hu = Lefedés a térképen id = Sembunyikan dari peta - it = Nascondi sulla mappa + it = Nascondere sulla mappa ja = マップから隠す ko = 지도에서 숨기기 nb = Skjul fra kart @@ -17518,7 +17511,7 @@ pl = Ukryj mapy pt = Remover do mapa pt-BR = Esconder do mapa - ro = Ascunde de pe hartă + ro = Ascundeți de pe hartă ru = Скрыть с карты sk = Skryť z mapy sv = Dölj från kort @@ -17605,7 +17598,7 @@ zh-Hant = 私人空間 [bookmark_list_description_hint] - tags = android,ios + tags = android, ios en = Type a description (text or html) ar = اكتب وصفًا (نص أو html) be = Дабаўце апісанне (тэкст альбо html) @@ -17621,7 +17614,7 @@ fr = Tapez une description (texte ou html) hu = Leírás hozzáadása (szöveg vagy html) id = Ketikkan deskripsi (teks atau html) - it = Scrivi una descrizione (testo o html) + it = Aggiungere la descrizione (testo o html) ja = 説明(テキストまたはhtml)を記入してください ko = 묘사를 적으세요 (글자 혹은 html) nb = Lag en beskrivelse (text or html) @@ -17629,7 +17622,7 @@ pl = Dodaj opis (tekst lub html) pt = Introduza uma descrição (texto ou html) pt-BR = Digite uma descrição (texto ou html) - ro = Adaugă o descriere (text sau html) + ro = Adăugați o descriere (text sau html) ru = Добавьте описание (текст или html) sk = Zadajte popis (text alebo html) sv = Lägg till en beskrivning (text eller html) @@ -17695,7 +17688,7 @@ fr = Une erreur s'est produite lors du chargement des tags, veuillez réessayer hu = A tag-ek feltöltésekor hiba történt, kérjük próbálja meg még egyszer id = Kesalahan terjadi saat memuat tag, silakan coba lagi - it = Si è verificato un errore durante il caricamento delle etichette, per favore riprova + it = Si è verificato un errore durante il caricamento dei tag. Si prega di riprovare ja = タグのロード中にエラーが起きました。もう一度やり直してください ko = 태그를 불러오는 중 에러가 발생했습니다. 다시 시도해보세요 nb = Det oppsto en feil under lasting av emneknagger, prøv igjen @@ -17703,7 +17696,7 @@ pl = Wystąpił błąd podczas pobierania tagów, spróbuj ponownie pt = Surgiu um erro ao carregar as etiquetas, por favor tente novamente pt-BR = Um erro ocorreu enquanto carregava as etiquetas, por favor, tente novamente - ro = A apărut o eroare la încărcarea etichetelor, încearcă din nou + ro = În timpul încărcării tag-urilor s-a produs o eroare, vă rugăm să încercați încă odată ru = Во время загрузки тегов произошла ошибка, пожалуйста, попробуйте еще раз sk = Počas načítavania značiek sa vyskytla chyba, skúste to znova sv = Ett fel uppstod när du laddar taggarna, försök igen @@ -17731,7 +17724,7 @@ fr = Téléchargez hu = Letöltés id = Unduh - it = Scarica + it = Scaricare ja = ダウンロード ko = 다운로드 nb = Last ned @@ -17739,7 +17732,7 @@ pl = Pobierz pt = Descarregar pt-BR = Baixar - ro = Descarcă + ro = Descărcați ru = Скачать sk = Stiahnuť sv = Nedladdning @@ -17752,7 +17745,7 @@ zh-Hant = 下載 [speedcams_alert_title] - tags = android,ios + tags = android, ios en = Speed cameras ar = كاميرات السرعة be = Камеры хуткасці @@ -17768,7 +17761,7 @@ fr = Radars de vitesse hu = Sebességmérő kamerák id = Kamera cepat - it = Autovelox + it = Autovelox o Tutor ja = 自動速度違反取締装置 ko = 속도 감시 카메라 nb = Fartskamera @@ -17776,7 +17769,7 @@ pl = Fotoradary pt = Radares de velocidade pt-BR = Câmeras de trânsito - ro = Radare + ro = Camere de supraveghere video a vitezei ru = Камеры скорости sk = Rýchlostné kamery sv = Hastighetskameror @@ -17789,7 +17782,7 @@ zh-Hant = 超速照相機 [speedcam_option_auto] - tags = android,ios + tags = android, ios en = Auto ar = السيارات be = Аўтаматычна @@ -17826,7 +17819,7 @@ zh-Hant = 自動 [speedcam_option_always] - tags = android,ios + tags = android, ios en = Always ar = دائما be = Заўсёды @@ -17863,7 +17856,7 @@ zh-Hant = 總是 [speedcam_option_never] - tags = android,ios + tags = android, ios en = Never ar = مطلقا be = Ніколі @@ -17900,7 +17893,7 @@ zh-Hant = 從不 [place_description_title] - tags = android,ios + tags = android, ios en = Place Description ar = وصف المكان be = Апісанне месца @@ -17954,7 +17947,7 @@ fr = Téléchargeur carte hu = Kártyák letöltése id = Pengunduh peta - it = Scaricamento mappe + it = Caricamento mappe ja = マップダウンローダー ko = 맵 다운로더 nb = Nedlast kart @@ -17962,7 +17955,7 @@ pl = Pobieranie map pt = Descarregador de mapas pt-BR = Downloader do mapa - ro = Descărcarea hărților + ro = Încărcarea hărților ru = Загрузка карт sk = Sťahovač máp sv = Kartladdning @@ -17991,7 +17984,7 @@ fr = Auto - Alerte sur les radars en cas de risque de dépassement de la limite de vitesse\nToujours - Toujours avertir des radars\nJamais - Jamais avertir à propos des radars hu = Autó - Figyelmeztetés a sebesség kamerákról, ha van kockázat a sebesség korlátozás megsértéséről\nMindig - Mindig figyelmeztet a kamerákról\nSoha - Soha ne figyelmezet a kamerákról id = Auto - Peringatkan tentang kamera kecepatan saat terdapat risiko melebihi batas kecepatan\nSelalu - Selalu peringatkan tentang kamera kecepatan\nTidak pernah - Jangan pernah peringatkan tentang kamera kecepatan - it = Auto - Avvisare di autovelox in caso di rischio eccesso velocità\nSempre - Avvisare sempre di autovelox\nMai - Non avvisare mai di autovelox + it = Auto - Avvisare di autovelox in caso di rischio eccesso velocità\nSempre - avvisare sempre di autovelox\nMai - Non avvisare mai di autovelox ja = 自動-速度制限超過の危険性がある場合には、自動速度違反取締装置について警告します\n常時-自動速度違反取締装置について常に警告します\n無効-自動速度違反取締装置を警告しません ko = 자동 - 속도 제한 초과 위험이 있을때 스피드캠에 대해 경고하기\n항상 - 스피드캠에 대해 항상 경고하기\n절대 아님 - 스피드캠에 대해 경고하지 않기 nb = Auto - Advarsel om fartskamera hvis det er fare for å overskride fartsgrensen\nAlltid - Advar alltid om farskameraer\nAldri - Advar aldri om fartskameraer @@ -17999,7 +17992,7 @@ pl = Auto – Ostrzegać o kamerach, jeśli istnieje ryzyko przekroczenia ograniczenia prędkości\nZawsze – Zawsze ostrzegaj o kamerach\nNigdy – Nigdy nie ostrzegaj o kamerach pt = Automático - avisa sobre os radares de velocidade se houver risco de exceder o limite de velocidade\nSempre - avisa sempre sobre os radares\nNunca - nunca avisar sobre os radares pt-BR = Automático - Avisar sobre radar se houver risco de ultrapassar o limite de velocidade\nSempre - Sempre avisar sobre radares\nNunca - Nunca avisar sobre radares - ro = Auto - Avertizează cu privire la radare dacă există riscul depășirii limitei de viteză\nMereu - Avertizează mereu cu privire la radare\nNiciodată - Nu avertiza niciodată cu privire la radare + ro = Auto - De avertizat despre camerele video de înregistrare a vitezei, dacă există riscul depășirii limitei de viteză\nMereu - De avertizat întotdeauna despre camerele video\nNiciodată - De nu avertizat niciodată despre camerele video ru = Авто - Предупреждать о камерах скорости, если есть риск превышения скоростного лимита\nВсегда - Всегда предупреждать о камерах\nНикогда - Никогда не предупреждать о камерах sk = Automaticky - Upozornenie na rýchlostné kamery, ak existuje riziko prekročenia rýchlostného limitu\nVždy - Vždy upozorniť na rýchlostné kamery\nNikdy - Nikdy neupozorňovať na rýchlostné kamery sv = Auto - Varna om fartkameror om det finns risk att överskrida hastighetsgränsen\nAlltid - Varna alltid om kameror\nAldrig - Varna aldrig om kameror @@ -18012,7 +18005,7 @@ zh-Hant = 自動 - 如果存在超出速度限制的風險,則對速度照相機發出警告\n總是 - 始終提醒照相機\n從不 - 永遠不會對照相機發出警告 [power_managment_title] - tags = android,ios + tags = android, ios en = Power saving mode ar = وضع توفير الطاقة be = Рэжым захавання энергіі @@ -18028,7 +18021,7 @@ fr = Mode économie d'énergie hu = Energiatakarékos mód id = Mode hemat daya - it = Risparmio energetico + it = Modalità di risparmio energetico ja = 電力節約モード ko = 전력 절약 모드 nb = Strømsparemodus @@ -18036,7 +18029,7 @@ pl = Tryb oszczędzania energii pt = Modo de economia de energia pt-BR = Modo de economia de energia - ro = Economisire a energiei + ro = Modul de economisire a energiei ru = Режим энергосбережения sk = Úsporný režim sv = Energisparläge @@ -18049,7 +18042,7 @@ zh-Hant = 省電模式 [power_managment_description] - tags = android,ios + tags = android, ios en = When automatic mode is selected the application starts to disable battery draining features depending on the current battery charge level ar = عندما يتم اختيار الوضع التلقائي، يبدأ التطبيق بتعطيل الخصائص التي تستهلك البطارية بناءً على مستوى شحن البطارية be = Калі ўключаны рэжым захавання энергіі, дадатак пачынае выключаць энергазатратныя функцыі ў залежнасці ад зарада батарэі @@ -18073,7 +18066,7 @@ pl = Jeśli jest włączony tryb oszczędzania energii, wtedy aplikacja wyłączy funkcje energochłonne, zależnie od bieżącego poziomu załadowania telefonu pt = Se o modo automático estiver ativado, a aplicação vai desativar as funções que consomem energia, dependendo da carga atual do telemóvel pt-BR = Quando o modo automático é selecionado, o aplicativo começa a desativar as características que drenam a bateria dependendo do nível de energia atual - ro = Dacă este pornit modul de economisire a energiei, aplicația va deconecta caracteristicile care consumă multă energie în funcție de nivelul de încărcare a bateriei + ro = Dacă este pornit modul de economisire a energiei, aplicația va deconecta funcțiile care consumă multă energie în dependență de încărcarea bateriei telefonice ru = Если режим энергосбережения включен, приложение будет отключать энергозатратные функции в зависимости от текущего заряда телефона sk = Keď je zvolený automatický režim, aplikácia začne vypínať funkcie, ktoré vybíjajú batériu v závislosti od aktuálnej úrovne nabitia batérie sv = Om energisparläget är på, ska appen stänga av energikrävande funktioner beroende på telefonens nuvarande laddning @@ -18086,7 +18079,7 @@ zh-Hant = 如果開啟省電模式,應用程序將根據手機的當前電量關閉耗電功能 [power_managment_setting_never] - tags = android,ios + tags = android, ios en = Never ar = أبدًا be = Ніколі @@ -18123,7 +18116,7 @@ zh-Hant = 從不 [power_managment_setting_auto] - tags = android,ios + tags = android, ios en = Automatic ar = تلقائي be = Аўтаматычна @@ -18139,7 +18132,7 @@ fr = Automatique hu = Automatikus id = Otomatis - it = Automatico + it = Auto ja = 自動 ko = 자동 nb = Automatisk @@ -18147,7 +18140,7 @@ pl = Auto pt = Automático pt-BR = Automático - ro = Automat + ro = Auto ru = Авто sk = Automaticky sv = Automatiskt @@ -18160,7 +18153,7 @@ zh-Hant = 自動 [power_managment_setting_manual_max] - tags = android,ios + tags = android, ios en = Maximum power saving ar = توفير الطاقة القصوى be = Максімальнае захаванне энергіі @@ -18213,7 +18206,7 @@ fr = Cette option est activée pour l'identification des actions à des fins de diagnostic. Cela aide l’équipe à identifier les problèmes liés à l’application. Activez cette option uniquement à la demande du support Organic Maps. hu = Az opció bekapcsolja a diagnosztikai célú naplózást. Hasznos lehet a support csapatunknak, akik elhárítják az alkalmazás hibáit. Csak a Organic Maps support kérésére kapcsold be ezt az opciót. id = Opsi ini mengaktifkan pencatatan untuk tujuan diagnostik. Bisa amat membantu bagi staf dukungan kami yang memecahkan masalah dalam aplikasi. Aktifkan opsi ini hanya saat diminta oleh dukungan Organic Maps. - it = L'opzione attiva i registri per scopi diagnostici. Può essere utile al nostro team per risolvere i problemi dell'app. Abilita temporaneamente questa opzione per registrare e inviarci registri dettagliati sul tuo problema. + it = Questa opzione si attiva per registrare tutte le azioni ai fini diagnostici. Ciò aiuta il nostro staff ad ottimizzare il funzionamento dell'applicazione. Attiva l'opzione sulla richiesta dello staff di suporto di Organic Maps. ja = このオプションは診断目的でのデータ記録を有効にします。これはこのアプリケーションのトラブルシューティングを担当する当社のサポートスタッフの助けになります。このオプションはOrganic Mapsにリクエストされた場合にのみ有効にしてください。 ko = 이 옵션은 진단을 목적으로 로그를 엽니다 이를 통해 앱에 대한 문제를 분석하는 우리의 스탭을 도울 수 있습니다 이 옵션은 오직 Organic Maps 지원 요청에서만 가능합니다. nb = Alternativet slår på logging for diagnostiske formål. Det kan være nyttig for våre supportpersonale som feilsøker problemer med appen. Aktiver dette alternativet bare på forespørsel fra Organic Maps-brukerstøtte. @@ -18221,7 +18214,7 @@ pl = Ta opcja zostaje włączona do logowania działań w celach diagnostycznych. Pomaga to zespołowi zidentyfikować problemy z aplikacją. Włączaj opcję tylko na żądanie wsparcia technicznego Organic Maps. pt = Esta opção ativa o registo das ações para diagnóstico. Pode ser útil para os programadores descobrirem o problema na aplicação. Ative esta opção apenas a pedido dos programadores do Organic Maps. pt-BR = A opção ativa para realizar diagnósticos. Pode ser útil para nossa equipe de suporte que estão solucionando problemas com o aplicativo. Ative esta opção apenas ao ser solicitado pelo suporte do Organic Maps. - ro = Opțiunea activează jurnalizarea în scopuri de diagnosticare. Aceasta poate fi utilă pentru echipa noastră pentru a depana problemele cu aplicația. Activează temporar această opțiune pentru a înregistra și a ne trimite jurnale detaliate despre problema ta. + ro = Aceasta opțiune se pornește pentru logarea acțiunii în scopul diagnosticării. Aceasta va ajuta echipei să găsească problemele legate de aplicație. Conectați opțiunea numai la solicitarea serviciului de suport Organic Maps. ru = Данная настройка включается для записи действий в целях диагностики, чтобы помочь нашей команде выявить проблемы с приложением. Временно включайте эту настройку только для отправки детальной информации о найденной вами проблеме в приложении. sk = Táto možnosť zapína zaznamenávanie na diagnostické účely. Môže to byť užitočné pre našu technickú podporu, ktorá rieši problémy s aplikáciou. Povoliť túto možnosť iba na požiadanie podpory Organic Maps. sv = Denna funktion aktiveras för loggning av åtgärder för diagnostiska ändamål. Detta hjälper laget att identifiera problem med applikationen. Slå på funktionen endast på begäran av Organic Maps supporttjänst. @@ -18258,7 +18251,7 @@ pl = Edytowane online pt = Edição online pt-BR = Edição online - ro = Modifică în internet + ro = Se editează online ru = Редактируется онлайн sk = Online úprava sv = Redigeras online @@ -18271,7 +18264,7 @@ zh-Hant = 線上編輯 [driving_options_title] - tags = android,ios + tags = android, ios en = Routing options ar = خيارات قيادة be = Налады пракладкі маршрута @@ -18295,7 +18288,7 @@ pl = Ustawienia objazdu pt = Configurações de direção pt-BR = Opções de direção - ro = Opțiuni de ocolire + ro = Setarea ocolirii ru = Настройки объезда sk = Možnosti jazdy sv = Omvägsinställningar @@ -18308,7 +18301,7 @@ zh-Hant = 繞行設定 [driving_options_subheader] - tags = android,ios + tags = android, ios en = Avoid on every route ar = تجنب على كل الطرق be = Пазбягаць на кожным маршруце @@ -18345,7 +18338,7 @@ zh-Hant = 在每條線路上規避 [avoid_tolls] - tags = android,ios + tags = android, ios en = Toll roads ar = نقطة تحصيل رسوم be = Платныя дарогі @@ -18382,7 +18375,7 @@ zh-Hant = 收費公路 [avoid_unpaved] - tags = android,ios + tags = android, ios en = Unpaved roads ar = طرق غير ممهدة be = Грунтовыя дарогі @@ -18398,7 +18391,7 @@ fr = Routes non revêtues hu = Kövezetlen utak id = Jalan tanah - it = Strade non asfaltate + it = Strade sterrate ja = 未舗装道路 ko = 비포장 도로 nb = Uasfaltert vei @@ -18406,7 +18399,7 @@ pl = Drogi gruntowe pt = Estradas não pavimentadas pt-BR = Pistas sem pavimentação - ro = Drum neasfaltat + ro = Drum de țară ru = Грунтовые дороги sk = Nespevnené cesty sv = Kärrväg @@ -18419,7 +18412,7 @@ zh-Hant = 土路 [avoid_ferry] - tags = android,ios + tags = android, ios en = Ferry crossings ar = تقاطع عبارات be = Паромныя пераправы @@ -18456,7 +18449,7 @@ zh-Hant = 渡輪渡口 [avoid_motorways] - tags = android,ios + tags = android, ios en = Motorways ar = طرق سريعة be = Аўтамагістралі @@ -18480,7 +18473,7 @@ pl = Autostrady pt = Autoestradas pt-BR = Autoestradas - ro = Autostrăzi + ro = Magistrale ru = Магистрали sk = Diaľnice sv = Motorväg @@ -18493,7 +18486,7 @@ zh-Hant = 高速公路 [unable_to_calc_alert_title] - tags = android,ios + tags = android, ios en = Unable to calculate route ar = لا يمكن حساب الطريق be = Не атрымалася пракласці маршрут @@ -18509,7 +18502,7 @@ fr = Impossible de calculer l'itinéraire hu = Nem lehet útvonalat számítani id = Tidak dapat menghitung rute - it = Impossibile elaborare il percorso + it = Impossibile pianificare percorso ja = ルートを計算できません ko = 루트를 계산할 수 없습니다 nb = Kan ikke beregne rute @@ -18517,7 +18510,7 @@ pl = Brak możliwości zbudowania trasy pt = Não foi possível calcular a rota pt-BR = Incapaz de calcular rota - ro = Imposibil de creat un traseu + ro = Imposibil de elaborat un traseu ru = Невозможно построить маршрут sk = Nepodarilo sa vypočítať trasu sv = Det går inte att bygga ruttenen @@ -18530,7 +18523,7 @@ zh-Hant = 無法規劃路線 [unable_to_calc_alert_subtitle] - tags = android,ios + tags = android, ios en = Unfortunately, we couldn't find a route, probably due to the options you have chosen. Please change the settings and try again. ar = نأسف، لم نعثر على الطريق ربما بسبب الخيارات التي قمت بتحديدها. يرجى تغيير الاعدادات والمحاولة مجددًا be = Нажаль, мы не змаглі пракласці маршрут, магчыма з-за абраных вамі налад. Змяніце налады і паспрабуйце зноў. @@ -18546,7 +18539,7 @@ fr = Malheureusement, nous n'avons pas pu créer l'itinéraire avec les options sélectionnées. Modifiez les paramètres et réessayez hu = Sajnos nem találunk útvonalat, valószínűleg az általad meghatározott lehetőségek miatt. Kérjük változtass a beállításokon és próbáld újra id = Sayangnya kami tidak dapat menemukan rute karena opsi pilihan Anda. Harap ubah pengaturan lalu coba lagi - it = Purtroppo non siamo riusciti a trovare un percorso, probabilmente a causa delle opzioni che hai scelto. Si prega di cambiare le impostazioni e riprovare. + it = Impossibile creare percorso con modalità prescelte. Modifica impostazioni e riprova ja = 残念ながら恐らく設定されたオプションのためにルートが見つけられませんでした。設定を変更し、もう一度お試しください ko = 아쉽게도 귀하가 정의한 옵션으로는 루트를 찾을 수가 없습니다. 설정을 바꾸신다음 다시 시도해주세요 nb = Dessverre kunne vi ikke finne en rute sannsynligvis på grunn av dine definerte alternativer. Vennligst endre innstillingene og prøv igjen @@ -18554,7 +18547,7 @@ pl = Niestety, nie udało nam się zbudować trasy, która posiada obrane opcje. Zmień ustawienia i spróbuj ponownie pt = Infelizmente não não foi possível criar o percurso com as opções selecionadas. Altere as opções e tente novamente pt-BR = Infelizmente, não não conseguimos encontrar uma rota provavelmente por causa da opção escolhidas. Por favor, altere as configurações e tente novamente - ro = Din păcate, nu reușim să elaborăm un traseu cu opțiunile alese. Modifică-le și încearcă din nou. + ro = Din păcate, nu reușim să elaborăm un traseu cu opțiunile alese. Modificați setările și încercați încă o dată ru = К сожалению, мы не смогли построить маршрут с выбранными опциями. Измените настройки и повторите попытку sk = Bohužiaľ sme nemohli nájsť trasu pravdepodobne z dôvodu definovaných možností. Zmeňte nastavenia a skúste to prosím znova sv = Tyvärr kunde vi inte bygga en rutt med de valda alternativen. Ändra inställningar och försök igen @@ -18567,7 +18560,7 @@ zh-Hant = 很遺憾,我們無法使用所選選項規劃路線。請更改設定,然後重試 [define_to_avoid_btn] - tags = android,ios + tags = android, ios en = Define roads to avoid ar = حدد الطرق التي يجب تجنبها be = Задаць дарогі, якіх пазбягаць @@ -18583,7 +18576,7 @@ fr = Définissez les routes à éviter hu = Elkerülendő utak meghatározása id = Tentukan jalan yang dihindari - it = Definire le strade da evitare + it = Impostare modalità di deviazione ja = 回避するために道を設定 ko = 피할 도로 정의하기 nb = Definer veier som skal unngås @@ -18591,7 +18584,7 @@ pl = Dostosuj ścieżkę objazdu pt = Definir as estradas a evitar pt-BR = Definir as estradas a serem evitadas - ro = Stabilește drumurile de evitat + ro = Setați căile de ocolire ru = Настроить пути объезда sk = Definovať cesty, ktorým sa treba vyhnúť sv = Anpassa omvägsbana @@ -18604,7 +18597,7 @@ zh-Hant = 設定繞行路徑 [change_driving_options_btn] - tags = android,ios + tags = android, ios en = Routing options enabled ar = تم تفعيل خيارات الطريق be = Налады пракладкі маршрута ўключаны @@ -18620,7 +18613,7 @@ fr = Paramètres d'itinéraire activées hu = Vezetési lehetőségek bekapcsolva id = Opsi perutean diaktifkan - it = Opzioni di deviazione abilitate + it = Impostazioni di deviazione abilitate ja = 運転オプションはアクティブです ko = 운전 옵션이 가능합니다 nb = Kjørealternativer aktivert @@ -18628,7 +18621,7 @@ pl = Ustawienia objazdu są włączone pt = Configurações de direção ativadas pt-BR = Opções de direção ativadas - ro = Opțiuni de ocolire activate + ro = Setarea ocolirii este activată ru = Настройки объезда включены sk = Možnosti trasy povolené sv = Omvägsinställningar aktiverade @@ -18641,7 +18634,7 @@ zh-Hant = 繞行設定已開啟 [toll_road] - tags = android,ios + tags = android, ios en = Toll road ar = نقطة تحصيل رسوم be = Платная дарога @@ -18677,7 +18670,7 @@ zh-Hant = 收費公路 [unpaved_road] - tags = android,ios + tags = android, ios en = Unpaved road ar = طريق غير ممهدة be = Грунтовая дарога @@ -18692,7 +18685,7 @@ fr = Routes non revêtues hu = Kövezetlen utak id = Jalan tanah - it = Strada non asfaltata + it = Strada sterrata ja = 未舗装道路 ko = 비포장 도로 nb = Uasfaltert vei @@ -18700,7 +18693,7 @@ pl = Droga gruntowa pt = Estrada não pavimentada pt-BR = Pista não pavimentada - ro = Drum neasfaltat + ro = Drum de țară ru = Грунтовая дорога sk = Nespevnená cesta sv = Kärrvägen @@ -18713,7 +18706,7 @@ zh-Hant = 土路 [ferry_crossing] - tags = android,ios + tags = android, ios en = Ferry crossing ar = تقاطع عبارة be = Паромная пераправа @@ -18749,7 +18742,7 @@ zh-Hant = 渡輪 [avoid_toll_roads_placepage] - tags = android,ios + tags = android, ios en = Avoid toll roads ar = تجنب نقاط تحصيل الرسوم be = Пазбягаць платных дарог @@ -18773,7 +18766,7 @@ pl = Unikać dróg płatnych pt = Evitar estradas com portagem pt-BR = Evitar pedágios - ro = Evită drumurile cu plată + ro = De evitat drumurile cu plată ru = Избегать платных дорог sk = Vyhnúť sa spoplatneným cestám sv = Undvik betalvägar @@ -18786,7 +18779,7 @@ zh-Hant = 規避收費公路 [avoid_unpaved_roads_placepage] - tags = android,ios + tags = android, ios en = Avoid unpaved roads ar = تجنب الطرق الغير ممهدة be = Пазбягаць грунтовых дарог @@ -18802,7 +18795,7 @@ fr = Éviter les routes non revêtues hu = Kövezetlen utak elkerülése id = Hindari jalan tanah - it = Evitare le strade non asfaltate + it = Evitare strade sterrate ja = 未舗装道路を回避 ko = 비포장 도로 피하기 nb = Unngå uasfalterte veier @@ -18810,7 +18803,7 @@ pl = Unikać dróg gruntowych pt = Evitar estradas não pavimentadas pt-BR = Evitar pistas sem pavimentação - ro = Evită drumurile neasfaltate + ro = De evitat drumurile de țară ru = Избегать грунтовых дорог sk = Vyhnúť sa nespevneným cestám sv = Undvik kärrvägar @@ -18823,7 +18816,7 @@ zh-Hant = 規避土路 [avoid_ferry_crossing_placepage] - tags = android,ios + tags = android, ios en = Avoid ferry crossings ar = تجنب تقاطع العبارات be = Пазбягаць паромных перапраў @@ -18847,7 +18840,7 @@ pl = Unikać przepraw promowych pt = Evitar ferrys pt-BR = Evitar balsas - ro = Evită trecerile cu bac + ro = De evitat trecerile cu bac ru = Избегать паромных переправ sk = Vyhnúť sa prechodom na trajekte sv = Undvik färjetrafik @@ -18883,7 +18876,7 @@ pl = Jedźmy pt = Começar pt-BR = Vamos - ro = Să mergem + ro = Mergem ru = Поехали sk = Poďme sv = Kom igen @@ -18911,7 +18904,7 @@ fr = Point d'arrivée hu = Cél id = Tujuan - it = Destinazione + it = Meta ja = 目的地 ko = 목적지 nb = Destinasjon @@ -18919,7 +18912,7 @@ pl = Meta pt = Destino pt-BR = Destino - ro = Destinație + ro = Scop ru = Цель sk = Cieľ sv = Målet @@ -18955,7 +18948,7 @@ pl = Wyśrodkuj pt = Recentrar pt-BR = Re-centralizar - ro = Centrează + ro = Centrați ru = Отцентровать sk = Vycentrovať sv = Placera i mitten @@ -19019,7 +19012,7 @@ fr = Ensuite hu = Utána id = Lalu - it = Poi + it = Avanti ja = その後 ko = 그 다음 nb = Deretter @@ -19055,7 +19048,7 @@ fr = Voulez-vous reconstruire l'itinéraire ? hu = Szeretnél újratervezni egy útvonalat? id = Anda ingin membuat ulang rute? - it = Vuoi ricalcolare il percorso? + it = Vuoi modificare il percorso? ja = ルートを再構築しますか? ko = 루트를 재구축하길 원하시나요? nb = Vil du planlegge en rute på nytt? @@ -19063,7 +19056,7 @@ pl = Czy chcesz przebudować trasę? pt = Quer recalcular o percurso? pt-BR = Você deseja retraçar a rota? - ro = Vrei să refaci traseul? + ro = Doriți să refaceți traseul? ru = Хотите перестроить маршрут? sk = Chcete znova vytvoriť trasu? sv = Räknar om rutten? @@ -19163,7 +19156,7 @@ fr = Vous êtes arrivé ! hu = Megérkeztél! id = Anda telah tiba! - it = Sei arrivato! + it = Sei giunto a destinazione! ja = 到着しました! ko = 도착했습니다! nb = Du har ankommet! @@ -19171,7 +19164,7 @@ pl = Jesteś na miejscu! pt = Chegou ao destino! pt-BR = Você chegou! - ro = Ai ajuns! + ro = Ați sosit! ru = Вы прибыли! sk = Prišli ste do cieľa! sv = Du är framme! @@ -19207,7 +19200,7 @@ pl = Klawiatura nie jest dostępna podczas ruchu pt = O teclado não está disponível ao coduzir pt-BR = O teclado não está disponível enquanto dirige - ro = Tastatura nu este accesibilă în timpul deplasării + ro = Tastiera nu este accesibilă în timpul deplasării ru = Клавиатура недоступна во время движения sk = Počas jazdy nie je klávesnica k dispozícii sv = Tangentbordet är inte tillgängligt vid rörelsen @@ -19235,7 +19228,7 @@ fr = Impossible de créer un itinéraire à partir de votre position actuelle hu = Nem lehet útvonalat tervezni a jelenlegi helyedről id = Tidak dapat membuat rute dari lokasi saat ini - it = Impossibile creare un percorso dalla tua posizione attuale + it = Impossibile creare percorso dal punto di partenza selezionato ja = 現在位置からはルートを構築できません ko = 현재 위치에서 루트를 만들 수 없습니다 nb = Kan ikke planlegge rute fra din nåværende posisjon @@ -19243,7 +19236,7 @@ pl = Brak możliwości zbudowania trasy od bieżącej lokalizacji pt = Não foi possível calcular o percurso a partir da localização atual pt-BR = Desativar rota demarcada pela sua localização atual - ro = Imposibil de alcătuit traseul de la locul în care te afli + ro = Este imposibil de elabora traseul de la punctul de aflare ru = Невозможно построить маршрут от текущего местоположения sk = Z vašej aktuálnej polohy nie je možné vytvoriť trasu sv = Det gick inte att bygga rutten från nuvarande plats @@ -19271,7 +19264,7 @@ fr = Impossible de créer un itinéraire jusqu'au point final. Choisissez-en un autre hu = Nem lehet útvonalat tervezni a célodhoz. Kérjük válassz egy másik pontot id = Tidak dapat membuat rute ke tujuan Anda. Pilih titik lainnya - it = Impossibile creare un percorso per raggiungere la destinazione. Scegli un'altra destinazione. + it = Impossibile creare percorso per raggiungere la destinazione Scegli un'altra destinazione ja = 目的地へのルートは構築できません。別の地点を選択してください ko = 목적지 경로를 만들 수 없습니다. 다른 지점을 선택해주세요 nb = Kan ikke planlegge rute til din nåværende posisjon. Vennligst velg en annen posisjon @@ -19279,7 +19272,7 @@ pl = Brak możliwości zbudowania trasy do punktu końcowego. Wybierz inny pt = Não foi possível calcular o percurso para o destino. Escolha outro pt-BR = Incapaz de traçar rota para o seu destino. Por favor, escolha outro ponto de destino - ro = Imposibil de alcătuit traseul către destinația aleasă. Alege altă destinație. + ro = Este imposibil de elaborat traseu până la punctul de sosire. Selectați altul ru = Невозможно построить маршрут до конечной точки. Выберите другую sk = Nie je možné vytvoriť trasu do cieľa. Prosím vyberte iný bod sv = Det går inte att bygga rutten till slutpunkten. Välj en annan @@ -19315,7 +19308,7 @@ pl = Brak sygnału GPS. Dostań się do terenu otwartego pt = Sem sinal de GPS. Desloque-se para uma área sem obstáculos no céu pt-BR = Sem sinal de GPS. Por favor, vá para uma região aberta - ro = Nu este semnal GPS. Mergi la loc deschis. + ro = Nu este semnal GPS. Mergeți la loc deschis ru = Нет сигнала GPS. Проследуйте на открытую местность sk = Žiaden GPS signál. Presuňte sa na otvorené priestranstvo sv = Ingen GPS-signal. Följ till öppna området @@ -19343,7 +19336,7 @@ fr = Impossible de calculer l'itinéraire. Sélectionnez d'autres points d'itinéraire hu = Nem lehet útvonalat tervezni. Kérjük határozz meg más útvonal lehetőségeket id = Tidak dapat membuat rute. Harap tentukan titik rute lainnya - it = Impossibile creare un percorso. Specificare altri punti del percorso + it = Impossibile trovare percorso. Scegli altre tappe ja = ルートが構築できません。別のルート地点を設定して下さい ko = 루트를 만들 수 없습니다. 또 다른 루트 지점을 지정해주세요 nb = Kan ikke planlegge rute. Vennligst spesifiser en annen posisjon for rute @@ -19351,7 +19344,7 @@ pl = Brak możliwości zbudowania trasy. Wybierz inne punkty trasy pt = Não foi possível calcular o percurso. Escolha outros pontos do percurso pt-BR = Incapaz de traçar rota. Por favor, especifique outros pontos para a rota - ro = Imposibil de alcătuit un traseu. Alege alte puncte ale traseului + ro = Este imposibil de elaborat un traseu. Selectați alte puncte ale traseului ru = Невозможно построить маршрут. Выберите другие точки маршрута sk = Nie je možné vytvoriť trasu. Prosím zadajte iné body trasy sv = Det går inte att bygga ruten. Välj andra rutenspunkter @@ -19379,7 +19372,7 @@ fr = Pour créer l'itinéraire, téléchargez les cartes manquantes sur votre appareil hu = Útvonal létrehozásához töltsd le a hiányzó térképeket az eszközre id = Untuk membuat rute, unduh peta baru di perangkat anda - it = Per creare un percorso scarica le mappe mancanti sul proprio dispositivo + it = Per creare percorso scarica mappe mancanti sul proprio dispositivo ja = ルートを作成するには、地図に表示されていない部分を端末でダウンロードします ko = 루트를 만들려면, 빠진 맵을 기기에 다운로드하세요 nb = For å beregne rute last ned manglende kart på enheten din @@ -19387,7 +19380,7 @@ pl = Aby wyznaczyć trasę, pobierz brakujące mapy na Twoim urządzeniu pt = Para calcular o percurso é preciso descarregar primeiro os mapas pt-BR = Para criar uma rota, baixe os mapas ausentes no seu dispositivo - ro = Pentru a crea un traseu, descarcă hărțile lipsă în aparatul tău + ro = Pentru noi trasee, încărcați hărțile lipsa pe dispozitivul dvs. ru = Чтобы построить маршрут, загрузите недостающие карты на своем устройстве sk = Pre vytvorenie trasy si stiahnite do zariadenia chýbajúce mapy sv = För att skapa en rutt, ladda ner saknade kartor på din enhet @@ -19423,7 +19416,7 @@ pl = Wystąpił błąd. Uruchom aplikację ponownie pt = Surgiu um erro. Por favor reinicie a aplicação pt-BR = Ocorreu um erro. Por favor, reinicie o aplicativo - ro = Eroare. Repornește aplicația. + ro = Eroare. Restartați aplicația ru = Произошла ошибка. Перезапустите приложение sk = Vyskytla sa chyba. Prosím reštartujte aplikáciu sv = Ett fel uppstod. Starta om appen @@ -19451,7 +19444,7 @@ fr = L'itinéraire sera reconstruit à partir de votre position actuelle hu = Az útvonal újra lesz tervezve a jelenlegi helyzetedről id = Rute akan dibuat ulang dari lokasi saat ini - it = Il percorso sarà ricreato a partire dalla tua posizione attuale + it = Il percorso verrà impostato dalla tua posizione corrente ja = ルートは現在位置から再構築されます ko = 루트가 귀하의 현재 위치로부터 재생성됩니다 nb = Rute vil planlegges fra din nåværende posisjon @@ -19459,7 +19452,7 @@ pl = Trasa zostanie przebudowana z Twojej bieżącej lokalizacji pt = O percurso será recalculado a partir da sua localização atual pt-BR = A rota sera retraçada a partir de sua localização atual - ro = Traseul va fi refăcut de la locul în care te afli + ro = Traseul se va reface de la locul actual al aflării dvs ru = Маршрут будет перестроен от вашего текущего местоположения sk = Trasa bude obnovená z vašej aktuálnej polohy sv = Ruten kommer att byggas om från din nuvarande plats @@ -19487,7 +19480,7 @@ fr = L'itinéraire sera changé en mode Voiture hu = Az útvonal módosítva lesz egy autó számára id = Rute akan diubah untuk mobil - it = Il percorso sarà convertito in un percorso automobilistico + it = Il percorso verrà modificato in modalità Auto ja = ルートは自動車用として修正されます ko = 루트가 차량에 맞춰 수정됩니다 nb = Rute vil oppdateres til kjørerute @@ -19495,7 +19488,7 @@ pl = Trasa zostanie zmieniona na samochodową pt = O percurso será convertido num percurso para automóvel pt-BR = A rota será alterada para uma de automóvel - ro = Traseul va fi înlocuit cu unul pentru autovehicule + ro = Traseul va fi modificat cu unul automobilistic ru = Маршрут будет изменен на автомобильный sk = Trasa bude upravená na jazdu autom sv = Ruten kommer att ändras till bil @@ -19508,7 +19501,7 @@ zh-Hant = 該路線將改為汽車(路線) [ok] - tags = android,ios + tags = android, ios en = Ok ar = موافق be = Ок @@ -19532,7 +19525,7 @@ pl = Ok pt = Ok pt-BR = Tudo bem - ro = Bine + ro = Ok ru = Ок sk = Ok sv = Ok @@ -19560,7 +19553,7 @@ fr = Pas de route en terre hu = Nem földút id = Jalan aspal - it = No sterrate + it = No sterrati ja = 未舗装道路無し ko = 비포장 도로 없음 nb = Ikke grusvei @@ -19568,7 +19561,7 @@ pl = Bez gruntow. pt = Só vias pavimentadas pt-BR = Não pav. - ro = Fără neasfaltate + ro = Fără neasfal ru = Без грунт. sk = Nespevn. NIE sv = Utan kärrväg @@ -19596,7 +19589,7 @@ fr = Pas de route non revêtue hu = Földút kerülése id = Hindari tanah - it = No sterrate + it = No sterrati ja = 未舗装道路無し ko = 비포장 도로 없음 nb = Ikke uasfaltert @@ -19604,7 +19597,7 @@ pl = Bez gruntowych pt = Evitar vias não pavimentadas pt-BR = Evitar não pav. - ro = Fără neasfaltate + ro = Fără neasfaltat ru = Без грунтовых sk = Nespevnené ÁNO sv = Utan kärrvägar @@ -19712,7 +19705,7 @@ pl = Wył. płatne pt = Sem portagens pt-BR = Sem pedágio - ro = Drum gratis + ro = Gratis ru = Без платных sk = Spoplat. NIE sv = Utan betalda @@ -19748,7 +19741,7 @@ pl = Wyłącz płatne pt = Evitar portagens pt-BR = Evitar pedágios - ro = Drum gratis + ro = Gratis ru = Без платных sk = Spoplatnené ÁNO sv = Utan betalda @@ -19784,7 +19777,7 @@ pl = Kamery pt = Radares pt-BR = Radares - ro = Radare + ro = Cameră video ru = Камеры sk = Radary sv = Kameror @@ -19820,7 +19813,7 @@ pl = Info o kamerach pt = Avisos de velocidade pt-BR = Alertas de vel. - ro = Info radare + ro = Info camere ru = Инфо о камерах sk = Rýchl. upozorn. sv = Info om kameror @@ -19848,7 +19841,7 @@ fr = Téléchargez des cartes dans l'application Organic Maps sur votre appareil hu = Kérjük, töltsd le a térképeket a Organic Maps alkalmazásban az eszközödre id = Silakan unduh peta di apl Organic Maps pada perangkat Anda - it = Scarica le mappe nell'applicazione Organic Maps sul tuo dispositivo + it = Scarica l'applicazione Organic Maps sul tuo smartphone ja = あなたの機器のOrganic Mapsのアプリにマップをダウンロードしてください ko = Organic Maps 앱 안의 지도들을 디바이스에 다운로드하세요 nb = Vennligst last ned kart i Organic Maps appen på enheten din @@ -19856,7 +19849,7 @@ pl = Pobierz mapy do aplikacji Organic Maps na swoje urządzenie pt = Descarregue mapas da aplicação Organic Maps no seu dispositivo pt-BR = Por favor, baixe mapas no app Organic Maps em seu dispositivo - ro = Descarcă hărțile în aplicația Organic Maps din aparatul tău + ro = Vă rugăm să descărcați hărțile în aplicația Organic Maps de pe dispozitivul dvs. ru = Скачайте карты в приложении Organic Maps на своем устройстве sk = Prosím stiahnite si mapy v aplikácii Organic Maps vo vašom zariadení sv = Ladda ner kartor i applikation Organic Maps på din enhet @@ -19906,7 +19899,7 @@ [sort] comment = max. 10 symbols, both iOS and Android - tags = android,ios + tags = android, ios en = Sort… ar = تريتب… be = Сартаваць… @@ -19930,7 +19923,7 @@ pl = Sortuj… pt = Ordenar… pt-BR = Ordenar… - ro = Sortare… + ro = Sortați… ru = Сортировать… sk = Zoradiť… sv = Sortera… @@ -19960,7 +19953,7 @@ fr = Trier les signets hu = Könyvelzők rendezése id = Urutkan bookmark - it = Ordina i preferiti + it = Ordina i segnalibri ja = ブックマークの並び替え ko = 북마크 분류하기 nb = Sortere merker @@ -19968,7 +19961,7 @@ pl = Sortuj znaczniki pt = Ordenar favoritos pt-BR = Ordenar favoritos - ro = Aranjează preferatele + ro = Sortați inscripțiile ru = Сортировать метки sk = Zoradiť záložky sv = Sortera bokmärken @@ -19997,7 +19990,7 @@ fr = Trier par défaut hu = Alapértelmezés szerint id = Urutkan standar - it = Ordina come predefinito + it = Ordina per default ja = デフォルトで並び替え ko = 기본 값으로 분류 nb = Sortere som standard @@ -20005,7 +19998,7 @@ pl = Sortuj domyślnie pt = Ordenação predefinida pt-BR = Ordenar por padrão - ro = Aranjare prestabilită + ro = Sortați la modul implicit ru = Сортировать по умолчанию sk = Zoradiť Predvolené sv = Sortera som standard @@ -20041,7 +20034,7 @@ pl = Sortuj wg rodzaju pt = Ordenar por tipo pt-BR = Ordenar por tipo - ro = Aranjare după tip + ro = Sortați după dip ru = Сортировать по типу sk = Zoradiť podľa typu sv = Sortera efter typ @@ -20077,7 +20070,7 @@ pl = Sortuj wg odległości pt = Ordenar por distância pt-BR = Ordenar por distância - ro = Aranjare după distanță + ro = Sortați după distanță ru = Сортировать по расстоянию sk = Zoradiť podľa vzdialenosti sv = Sortera efter avstånd @@ -20113,7 +20106,7 @@ pl = Sortuj wg daty pt = Ordenar por data pt-BR = Ordenar por data - ro = Aranjare după dată + ro = Sortați după dată ru = Сортировать по дате sk = Zoradiť podľa dátumu sv = Sortera efter datum @@ -20143,7 +20136,7 @@ fr = Par défaut hu = Alapértelmezés szerint id = Standar - it = Predefinito + it = Per default ja = デフォルトで ko = 기본 값 nb = Som standard @@ -20151,7 +20144,7 @@ pl = Domyślnie pt = Predefinido pt-BR = Por padrão - ro = Prestabilit + ro = Mod implicit ru = По умолчанию sk = Podľa predvoleného sv = Som standard @@ -20278,7 +20271,7 @@ zh-Hant = 按時間 [week_ago_sorttype] - tags = android,ios + tags = android, ios en = A week ago ar = منذ أسبوع be = Тыдзень таму @@ -20301,7 +20294,7 @@ pl = Tydzień wstecz pt = Uma semana atrás pt-BR = Uma semana atrás - ro = Acum o săptămînă + ro = O săptămână în urmă ru = Неделю назад sk = Pred týždňom sv = För en vecka sedan @@ -20314,7 +20307,7 @@ zh-Hant = 一週前 [month_ago_sorttype] - tags = android,ios + tags = android, ios en = A month ago ar = منذ شهر be = Месяц таму @@ -20337,7 +20330,7 @@ pl = Miesiąc wstecz pt = Um mês atrás pt-BR = Um mês atrás - ro = Acum o lună + ro = O lună în urmă ru = Месяц назад sk = Pred mesiacom sv = För en månad sedan @@ -20350,7 +20343,7 @@ zh-Hant = 一個月前 [moremonth_ago_sorttype] - tags = android,ios + tags = android, ios en = More than a month ago ar = منذ أكثر من شهر be = Больш за месяц таму @@ -20373,7 +20366,7 @@ pl = Ponad miesiąc wstecz pt = Mais de um mês atrás pt-BR = Mais de um mês atrás - ro = Acum mai mult de o lună + ro = Mai mult de o lună în urmă ru = Больше месяца назад sk = Pred viac ako mesiacom sv = För över en månad sedan @@ -20386,7 +20379,7 @@ zh-Hant = 一個多月前 [moreyear_ago_sorttype] - tags = android,ios + tags = android, ios en = More than a year ago ar = منذ أكثر من سنة be = Больш за год таму @@ -20409,7 +20402,7 @@ pl = Ponad rok wstecz pt = Mais de um ano atrás pt-BR = Mais de um ano atrás - ro = Cu peste un an în urmă + ro = Mai mult de un an în urmă ru = Больше года назад sk = Pred viac ako rokom sv = För över ett år sedan @@ -20422,7 +20415,7 @@ zh-Hant = 一年多以前 [near_me_sorttype] - tags = android,ios + tags = android, ios en = Near me ar = قريب مني be = Каля мяне @@ -20445,7 +20438,7 @@ pl = Obok mnie pt = Perto de mim pt-BR = Proximo de mim - ro = Lîngă mine + ro = Alături de mine ru = Рядом со мной sk = Blízko mňa sv = Bredvid mig @@ -20458,7 +20451,7 @@ zh-Hant = 附近 [others_sorttype] - tags = android,ios + tags = android, ios en = Others ar = أخرى be = Іншыя @@ -20473,7 +20466,7 @@ fr = Autres hu = Más id = Lainnya - it = Altro + it = Altri ja = その他 ko = 기타 nb = Andre @@ -20494,7 +20487,7 @@ zh-Hant = 其他 [food_places] - tags = android,ios + tags = android, ios en = Food ar = طعام be = Ежа @@ -20517,7 +20510,7 @@ pl = Jedzenie pt = Comida pt-BR = Comida - ro = Mîncare + ro = Mâncare ru = Еда sk = Jedlo sv = Mat @@ -20530,7 +20523,7 @@ zh-Hant = 食物 [tourist_places] - tags = android,ios + tags = android, ios en = Sights ar = مشاهد be = Славутасці @@ -20553,7 +20546,7 @@ pl = Zabytki pt = Atrações turísticas pt-BR = Pontos turíticos - ro = Obiective turistice + ro = Locuri faimoase ru = Достопримечательности sk = Pamiatky sv = Sevärdheter @@ -20566,7 +20559,7 @@ zh-Hant = 觀光景點 [museums] - tags = android,ios + tags = android, ios en = Museums ar = متاحف be = Музеі @@ -20589,7 +20582,7 @@ pl = Muzea pt = Museus pt-BR = Museus - ro = Muzee + ro = Muzeu ru = Музеи sk = Múzeá sv = Museer @@ -20602,7 +20595,7 @@ zh-Hant = 博物館 [parks] - tags = android,ios + tags = android, ios en = Parks ar = حدائق be = Паркі @@ -20638,7 +20631,7 @@ zh-Hant = 公園 [swim_places] - tags = android,ios + tags = android, ios en = Swim ar = سباحة be = Плаванне @@ -20674,7 +20667,7 @@ zh-Hant = 游泳 [mountains] - tags = android,ios + tags = android, ios en = Mountains ar = جبال be = Горы @@ -20710,7 +20703,7 @@ zh-Hant = 山峰 [animals] - tags = android,ios + tags = android, ios en = Animals ar = حيوانات be = Жывёлы @@ -20746,7 +20739,7 @@ zh-Hant = 動物園 [hotels] - tags = android,ios + tags = android, ios en = Hotels ar = فنادق be = Гатэлі @@ -20782,7 +20775,7 @@ zh-Hant = 旅館 [buildings] - tags = android,ios + tags = android, ios en = Buildings ar = بنايات be = Будынкі @@ -20818,7 +20811,7 @@ zh-Hant = 建築物 [money] - tags = android,ios + tags = android, ios en = Money ar = نقود be = Грошы @@ -20854,7 +20847,7 @@ zh-Hant = 貨幣 [shops] - tags = android,ios + tags = android, ios en = Shops ar = متاجر be = Крамы @@ -20890,7 +20883,7 @@ zh-Hant = 商店 [parkings] - tags = android,ios + tags = android, ios en = Parkings ar = مواقف سيارات be = Паркоўкі @@ -20926,7 +20919,7 @@ zh-Hant = 停車場 [fuel_places] - tags = android,ios + tags = android, ios en = Gas stations ar = محطات وقود be = Запраўкі @@ -20962,7 +20955,7 @@ zh-Hant = 加油站 [water] - tags = android,ios + tags = android, ios en = Water ar = ماء be = Вада @@ -20998,7 +20991,7 @@ zh-Hant = 水 [medicine] - tags = android,ios + tags = android, ios en = Medicine ar = دواء be = Медыцына @@ -21021,7 +21014,7 @@ pl = Lecznictwo pt = Medicina pt-BR = Remédio - ro = Farmacii + ro = Medicină ru = Медицина sk = Medicína sv = Medicin @@ -21034,7 +21027,7 @@ zh-Hant = 醫療 [search_in_the_list] - tags = android,ios + tags = android, ios en = Search in the list ar = بحث في القائمة be = Шукаць у спіце @@ -21050,7 +21043,7 @@ fr = Chercher dans la liste hu = Keresés a listában id = Cari dalam daftar - it = Cerca nell'elenco + it = Cerca nella lista ja = リスト内で検索 ko = 리스트에서 검색 nb = Søk på lista @@ -21058,7 +21051,7 @@ pl = Wyszukaj na liście pt = Pesquisar na lista pt-BR = Buscar na lista - ro = Caută în listă + ro = Căutați în listă ru = Искать в списке sk = Vyhľadať v zozname sv = Söka i listan @@ -21071,7 +21064,7 @@ zh-Hant = 在列表中搜尋 [religious_places] - tags = android,ios + tags = android, ios en = Religious places ar = أماكن دينية be = Святыя месцы @@ -21123,7 +21116,7 @@ fr = Sélectionner une liste hu = Lista kiválasztása id = Pilih daftar - it = Seleziona l'elenco + it = Scegli la lista ja = リストを選択 ko = 목록 선택 nb = Velge liste @@ -21131,7 +21124,7 @@ pl = Wybierz listę pt = Selecionar lista pt-BR = Escolher a lista - ro = Alege lista + ro = Alegeți lista ru = Выбрать список sk = Vybrať zoznam sv = Välja lista @@ -21144,7 +21137,7 @@ zh-Hant = 選擇列表 [transit_not_found] - tags = android,ios + tags = android, ios en = Subway navigation in this region is not available yet ar = التنقل باستخدام مترو الأنفاق في هذه المنطقة غير متاح حتى الآن be = Навігацыі па метро для гэтага рэгіёна пакуль няма @@ -21160,7 +21153,7 @@ fr = La navigation en métro n'est pas encore disponible dans la région hu = Metró navigáció ebben a régióban még nem érhető el id = Navigasi kereta bawah tanah di wilayah ini belum tersedia - it = La navigazione in metropolitana in questa regione non è ancora disponibile + it = L'utilizzo della metro non è ancora disponibile in questa regione ja = この地域の地下鉄ナビはまだ利用できません ko = 이 지역의 지하철 노선 기능이 아직 없습니다 nb = T-bane navigasjon er ikke tilgjengelig i denne regionen ennå @@ -21181,7 +21174,7 @@ zh-Hant = 本區域的地鐵導航目前不可用 [dialog_pedestrian_route_is_long_header] - tags = android,ios + tags = android, ios en = Subway route is not found ar = لم يتم العثور على مترو الانفاق be = Маршрут на метро не знойдзены @@ -21205,7 +21198,7 @@ pl = Nie znaleziono trasy metra pt = Não foi encontrada nenhuma rota de metropolitano pt-BR = Rota por metrô não encontrada - ro = Traseul metroului nu a fost găsit + ro = Ruta metroului nu a fost găsită ru = Маршрут метро не найден sk = Trasa metra sa nenašla sv = Metro rutt hittades inte @@ -21218,7 +21211,7 @@ zh-Hant = 未找到捷運路線圖 [dialog_pedestrian_route_is_long_message] - tags = android,ios + tags = android, ios en = Please choose a start or end point closer to a subway station ar = يرجى اختيار نقطة بداية أو نهاية أقرب لمحطة المترو be = Выберыце пункт адпраўлення альбо прызначэння бліжэй да станцыі метро @@ -21234,7 +21227,7 @@ fr = Choisissez un point de départ ou d'arrivée plus proche d'une station de métro hu = Válasszon indulási vagy végpontot közelebb a metróállomáshoz id = Silakan pilih titik awal atau akhir yang lebih dekat ke stasiun kereta bawah tanah - it = Scegli un punto di partenza o di arrivo più vicino a una stazione della metropolitana + it = Seleziona il punto iniziale o finale del percorso più vicino alla stazione della metro ja = もっと地下鉄駅に近い出発地または目的地を選択してください ko = 지하철역에서 가까운 출발점 또는 종점을 선택하세요 nb = Velg utgangspunkt eller destinasjon som befinner seg nærmere en T-bane stasjon @@ -21242,7 +21235,7 @@ pl = Wybierz punkt początkowy lub końcowy trasy najbliżej do stacji metra pt = Escolha um ponto inicial ou final do percurso próximo da estação de metropolitano pt-BR = Escolha outro ponto de início ou fim perto da estação de metrô - ro = Alege un punct de plecare sau de sosire mai aproape de o stație de metrou + ro = Selectați punctul de început sau de sfârșit al rutei mai aproape de stația de metrou ru = Выберите начальную или конечную точку маршрута ближе к станции метро sk = Vyberte počiatočný alebo konečný bod bližšie k stanici metra sv = Välj ruttens start- eller slutpunkt närmare till tunnelbanestation @@ -21255,7 +21248,7 @@ zh-Hant = 選擇捷運站附近的起點和終點 [button_layer_isolines] - tags = android,ios + tags = android, ios en = Terrain ar = تضاريس be = Рэльеф @@ -21285,14 +21278,14 @@ sv = Terräng sw = Topografia th = ความสูง - tr = Arazi + tr = Yükseklikler uk = Висоти vi = Độ cao zh-Hans = 高度 zh-Hant = 高度 [isolines_activation_error_dialog] - tags = android,ios + tags = android, ios en = To activate and use the topographic layer please update or download the map of the area ar = لتفعيل الطبقة الطبوغرافية واستخدامها ، يرجى تحديث أوتنزيل خريطة المنطقة be = Каб карыстацца мапай рэльефа, абнавіце альбо спампуйце мапу патрэбнай мясцовасці @@ -21316,7 +21309,7 @@ pl = Do skorzystania z linii wysokości, zaktualizuj lub pobierz mapę obszaru, który potrzebujesz pt = Para ativar e usar a camada topográfica, por favor atualize ou descarregue o mapa da área pt-BR = Para ativar e usar a camada topográfica, atualize ou baixe o mapa da região - ro = Pentru a activa și utiliza stratul topografic actualizează sau descarcă harta zonei + ro = Pentru a utiliza liniile de înălțimi, actualizați sau descărcați harta zonei dorite ru = Чтобы воспользоваться линиями высот, обновите или загрузите карту нужной местности sk = Ak chcete aktivovať a používať topografickú vrstvu, aktualizujte alebo stiahnite mapu oblasti sv = Om du vill använda höjdlinjer, uppdatera eller ladda ner en karta över önskat område @@ -21329,7 +21322,7 @@ zh-Hant = 如需使用等高線,請更新或下載所需區域的地圖 [isolines_location_error_dialog] - tags = android,ios + tags = android, ios en = The topographic layer is not yet available in this area ar = الطبقة الطبوغرافية ليست متاحة بعد في هذه المنطقة be = Мапы рэльефа для гэтай мясцовасці пакуль што няма @@ -21353,7 +21346,7 @@ pl = W tej chwili nie są dostępne linie wysokości w tym regionie pt = A camada topográfica ainda não está disponível nesta área pt-BR = A camada topográfica ainda não está disponível para esta região - ro = Stratul topografic nu este încă disponibil în această zonă + ro = Liniile de înălțimi pană ce nu sunt disponibile în această regiune ru = Линии высот пока не доступны в этом регионе sk = Topografická vrstva ešte nie je v tejto oblasti k dispozícii sv = Höjningslinjer är ännu inte tillgängligt i den här regionen @@ -21511,7 +21504,7 @@ zh-Hant = 困難 [elevation_profile_ascent] - tags = android,ios + tags = android, ios en = Ascent ar = تصاعدي be = Пад'ём @@ -21527,7 +21520,7 @@ fr = Montée hu = Felemelkedés id = Menanjak - it = Salita + it = Ascesa ja = 上昇 ko = 올라가기 nb = Stigning @@ -21548,7 +21541,7 @@ zh-Hant = 上坡 [elevation_profile_descent] - tags = android,ios + tags = android, ios en = Descent ar = تنازلي be = Спуск @@ -21572,7 +21565,7 @@ pl = Zejście pt = Descida pt-BR = Descida - ro = Coborîre + ro = Coborâre ru = Спуск sk = Zostup sv = Backe @@ -21585,7 +21578,7 @@ zh-Hant = 下坡 [elevation_profile_minaltitude] - tags = android,ios + tags = android, ios en = Min. altitude ar = الحد الأدنى للارتفاع be = Мін. вышыня @@ -21609,7 +21602,7 @@ pl = Min. wysokość pt = Altura mínima pt-BR = Altitude mínima - ro = Înălțime minimă + ro = Înălțime min. ru = Мин. высота sk = Min. nadmorská výška sv = Min. höjd @@ -21622,7 +21615,7 @@ zh-Hant = 最小高度 [elevation_profile_maxaltitude] - tags = android,ios + tags = android, ios en = Max. altitude ar = الحد الأقصى للارتفاع be = Макс. вышыня @@ -21646,7 +21639,7 @@ pl = Maks. wysokość pt = Altura máxima pt-BR = Altitude máxima - ro = Înălțime maximă + ro = Înălțime max. ru = Макс. высота sk = Max. nadmorská výška sv = Max. höjd @@ -21659,7 +21652,7 @@ zh-Hant = 最大高度 [elevation_profile_difficulty] - tags = android,ios + tags = android, ios en = Difficulty ar = درجة الصعوبة be = Складанасць @@ -21712,7 +21705,7 @@ fr = Distance : hu = Táv.: id = Jarak: - it = Dist.: + it = Dist. ja = 距離: ko = 거리: nb = Avstand: @@ -21733,7 +21726,7 @@ zh-Hant = 距離: [elevation_profile_time] - tags = android,ios + tags = android, ios en = Time: ar = مدة: be = Час: @@ -21770,7 +21763,7 @@ zh-Hant = 時間: [isolines_toast_zooms_1_10] - tags = android,ios + tags = android, ios en = Zoom in to explore isolines ar = قرب لتكتشف خطوط الكنتور be = Павялічце маштаб, каб пабачыць рэльеф @@ -21794,7 +21787,7 @@ pl = Powiększ mapę, aby zobaczyć izolinie pt = Amplie o mapa para ver as curvas de nível pt-BR = Use o zoom para explorar as isolinhas - ro = Mărește harta pentru a vedea contururile + ro = Măriți harta pentru a vedea contururile ru = Увеличьте карту, чтобы увидеть изолинии sk = Priblížením preskúmajte izočiary sv = Förstora kartan för att se isolinjer @@ -21830,7 +21823,7 @@ pl = Aktualizacja pt = A atualizar pt-BR = Atualizando - ro = Se actualizează + ro = Actualizare ru = Обновление sk = Aktualizovanie sv = Uppdatering @@ -21858,7 +21851,7 @@ fr = Téléchargement hu = Letöltés id = Mengunduh - it = Download in corso + it = Caricamento ja = ダウンロード中 ko = 다운로드 중 nb = Nedlasting @@ -21866,7 +21859,7 @@ pl = Pobieranie pt = A descarregar pt-BR = Baixando - ro = Se descarcă + ro = Încărcare ru = Загрузка sk = Sťahovanie sv = Nedladdning @@ -21878,6 +21871,43 @@ zh-Hans = 加载 zh-Hant = 載入 + [key_information_title] + tags = ios + en = Key information + ar = معلومات رئيسية + be = Галоўная інфармацыя + bg = Ключова информация + cs = Klíčové informace + da = Central information + de = Wichtige Informationen + el = Βασικές πληροφορίες + es = Información clave + es-MX = Información clave + fa = اطلاعات کلیدی + fi = Avaintietoa + fr = Informations clés + hu = Kulcs információ + id = Informasi kunci + it = Informazioni importanti + ja = 重要情報 + ko = 핵심 정보 + nb = Nøkkelinformasjon + nl = Belangrijke informatie + pl = Kluczowe informacje + pt = Informação importante + pt-BR = Informação importante + ro = Informații importante + ru = Ключевая информация + sk = Kľúčová informácia + sv = Nyckelinformation + sw = Habari muhimu + th = ข้อมูลหลัก + tr = Anahtar bilgisi + uk = Ключова інформація + vi = Thông tin chìa khóa + zh-Hans = 关键信息 + zh-Hant = 關鍵資訊 + [download_map_title] tags = android en = Download the world map @@ -21887,11 +21917,9 @@ es = Descarga mapa mundial fi = Lataa maailmankartta fr = Télécharcher la carte du monde - it = Scarica la mappa del mondo pl = Pobierz mapę świata pt = Descarregar o mapa mundial pt-BR = Baixar mapa mundial - ro = Descarcă harta lumii ru = Скачать карту мира tr = Dünya haritasını indir @@ -21904,11 +21932,9 @@ es = Problema de conexión fi = Yhteysvirhe fr = Erreur de connexion - it = Errore di connessione pl = Błąd połączenia pt = Falha na coneção pt-BR = Falha na coneção - ro = Eroare de conectare ru = Ошибка подключения tr = Bağlantı hatası @@ -21921,9 +21947,7 @@ es = Desconecte el cable USB fi = Irrota USB-kaapeli fr = Déconnectez le câble USB - it = Scollegare il cavo USB pl = Odłącz kabel USB - ro = Deconectează cablul USB ru = Отсоедините USB кабель tr = USB kablosunu çıkarın zh-Hant = 拔除 USB 線 @@ -21953,7 +21977,7 @@ pl = Pozwól ekranowi spać pt = Permitir que o ecrã desligue pt-BR = Permitir que a tela hiberne - ro = Lasă ecranul să se stingă + ro = Permiteți ecranului să doarmă ru = Разрешить экрану спать sk = Nechajte obrazovku spať sv = Låt skärmen sova @@ -21982,7 +22006,7 @@ he = כאשר מופעל המסך יורשה לישון לאחר תקופה של חוסר פעילות. hu = Ha engedélyezve van, akkor a képernyő inaktivitás után alszik. id = Jika diaktifkan, layar akan diizinkan untuk tidur setelah beberapa saat tidak aktif. - it = Quando è abilitato, lo schermo si spegnerà dopo un periodo di inattività. + it = Quando abilitato, lo schermo potrà dormire dopo un periodo di inattività. ja = 有効にすると、画面は一定時間非アクティブになった後もスリープ状態になります。 ko = 활성화되면 일정 시간 동안 활동이 없으면 화면이 절전 모드로 전환됩니다. nb = Når den er aktivert, får skjermen lov til å sove etter en periode med inaktivitet. @@ -21990,7 +22014,7 @@ pl = Po włączeniu ekran będzie mógł spać po okresie bezczynności. pt = Quando ativado, o ecrá poderá desligar-se após um período de inatividade. pt-BR = Quando ativada, a tela poderá hibernar após um período de inatividade. - ro = Cînd este activat, ecranul se va stinge după o perioadă de inactivitate. + ro = Când este activat, ecranul va fi lăsat să doarmă după o perioadă de inactivitate. ru = При включении экран может переходить в спящий режим после периода бездействия. sk = Ak je táto možnosť povolená, obrazovka bude môcť po určitej dobe nečinnosti spať. sv = När den är aktiverad får skärmen sova efter en period av inaktivitet. @@ -22018,7 +22042,7 @@ fa = نقشه های دانلود شده خود را به روز کنید fi = Päivitä ladatut kartat fr = Mettez à jour vos cartes téléchargées - fr-CA = Mettez à jour vos cartes téléchargées + fr_CA = Mettez à jour vos cartes téléchargées he = עדכן את המפות שהורדת hi = अपने डाउनलोड किए गए मानचित्र अपडेट करें hu = Frissítse a letöltött térképeit @@ -22060,12 +22084,12 @@ fa = به روز رسانی نقشه ها اطلاعات مربوط به اشیا را به روز نگه می دارد fi = Karttojen päivittäminen pitää kohteita koskevat tiedot ajan tasalla fr = Actualiser les cartes permet d'actualiser également les informations sur les objets - fr-CA = La mise à jour des cartes permet d'avoir des informations à jour sur les objets + fr_CA = La mise à jour des cartes permet d'avoir des informations à jour sur les objets he = עדכון המפות שומר על המידע שבהן עדכני hi = मानचित्रों का अपडेट होना ऑब्जेक्ट्स के बारे में जानकारी अप टू डेट रखता है hu = A térképek frissítésével naprakészen tarthatja az objektumokra vonatkozó adatokat id = Memperbarui peta membuat informasi tentang objek tetap terkini - it = L'aggiornamento delle mappe mantiene aggiornate le informazioni sugli oggetti + it = Aggiornamento mappe mantiene aggiornate le informazioni sugli oggetti ja = 地図を更新することで物件情報を最新の状態に保ちます ko = 지도를 업데이트하면 개체에 대한 정보가 최신 상태로 유지됩니다. nb = Ved å oppdatere kart holder du også informasjonen om ulike elementer oppdatert @@ -22073,7 +22097,7 @@ pl = Aktualizacja map umożliwia uzyskanie bieżących informacji o obiektach pt = Atualizar os mapas mantém atualizada a informação sobre os objetos pt-BR = A atualização de mapas mantém as informações sobre objetos atualizadas - ro = Actualizarea hărților menține actualizate informațiile despre obiecte + ro = Actualizarea hărților vă ajută să păstrați actualizate informațiile despre obiecte ru = Обновление карт поддерживает информацию об объектах в актуальном состоянии sk = Vďaka aktualizácii máp budú informácie o objektoch na mape aktualizované sv = Uppdatering av kartor håller information om objekt uppdaterade @@ -22102,7 +22126,7 @@ fa = بروزرسانی (%s) fi = Päivitä (%s) fr = Mettre à jour (%s) - fr-CA = Mettre à jour (%s) + fr_CA = Mettre à jour (%s) he = עדכן (%s) hi = (%s) अपडेट करें hu = Frissítés (%s) @@ -22115,7 +22139,7 @@ pl = Zaktualizuj (%s) pt = Atualizar (%s) pt-BR = Atualizar (%s) - ro = Actualizează (%s) + ro = Actualizare (%s) ru = Обновить (%s) sk = Aktualizovať (%s) sv = Uppdatera (%s) @@ -22144,7 +22168,7 @@ fa = بعدا به صورت دستی به روزرسانی کنید fi = Päivitä manuaalisesti myöhemmin fr = Mettre à jour manuellement plus tard - fr-CA = Plus tard (manuel) + fr_CA = Plus tard (manuel) he = עדכן ידנית מאוחר יותר hi = बाद में मैनुअल रूप से अपडेट करें hu = Kézi frissítés később @@ -22157,7 +22181,7 @@ pl = Zaktualizuj ręcznie później pt = Atualizar manualmente mais tarde pt-BR = Atualizar manualmente mais tarde - ro = Actualizează manual mai tîrziu + ro = Actualizare manuală mai târziu ru = Обновить вручную позже sk = Manuálne aktualizovať neskôr sv = Uppdatera senare manuellt @@ -22178,9 +22202,7 @@ es = Borrar ruta fi = Poista reitti fr = Supprimer la route - it = Elimina percorso pl = Usuwanie trasy - ro = Elimină traseul ru = Удалить трек tr = Kaydı Sil zh-Hant = 刪除路徑 @@ -22193,9 +22215,7 @@ es = Nombre de la ruta fi = Reitin nimi fr = Nom de la route - it = Nome percorso pl = Nazwa trasy - ro = Numele traseului ru = Название трека tr = Kayıt Adı zh-Hant = 路徑名稱 @@ -22208,9 +22228,7 @@ es = Mover fi = Siirrä fr = Déplacer - it = Sposta pl = Przenieś - ro = Mută ru = Переместить zh-Hant = 移動 @@ -22232,7 +22250,7 @@ he = מַסלוּל hu = Útvonal id = Trek - it = Percorso + it = Traccia ja = トラック ko = 길 nb = Rute @@ -22240,7 +22258,7 @@ pl = Trasa pt = Percurso pt-BR = Percurso - ro = Traseu + ro = Rută ru = Трек sk = Šľapaj Stopy sv = Rutt diff --git a/data/strings/types_strings.txt b/data/strings/types_strings.txt index d6106d1a86..e4366088a0 100644 --- a/data/strings/types_strings.txt +++ b/data/strings/types_strings.txt @@ -2,79 +2,73 @@ [type.aerialway] en = Aerialway - de = Seilbahn el = Τελεφερίκ + de = Seilbahn fr = Transport par câble aérien ja = 索道 pl = Transport linowy pt = Transporte aéreo pt-BR = Transporte aéreo ru = Канатная дорога - uk = Канатна дорога zh-Hans = 缆车要素 [type.aerialway.cable_car] en = Aerialway - de = Pendelbahn el = Τελεφερίκ + de = Pendelbahn fr = Téléphérique ja = ロープウェイ pl = Kolej linowa pt = Teleférico pt-BR = Teleférico ru = Канатная дорога - uk = Канатна дорога zh-Hans = 缆车 zh-Hant = 纜車 [type.aerialway.chair_lift] en = Aerialway - de = Sessellift el = Τελεφερίκ + de = Sessellift fr = Télésiège ja = チェアリフト pl = Wyciąg krzesełkowy pt = Telecadeira pt-BR = Telecadeira ru = Кресельная канатная дорога - uk = Канатна дорога zh-Hans = 登山吊椅 [type.aerialway.drag_lift] en = Aerialway - de = Schlepplift el = Τελεφερίκ + de = Schlepplift fr = Téléski ja = 牽引リフト pl = Wyciąg orczykowy pt = Telesquis pt-BR = Telesquis ru = Бугельная канатная дорога - uk = Канатна дорога [type.aerialway.gondola] en = Aerialway - de = Gondelbahn el = Τελεφερίκ + de = Gondelbahn fr = Télécabine ja = ゴンドラ pl = Gondola kolejki linowej pt = Telecabine pt-BR = Telecabine ru = Канатная дорога - uk = Канатна дорога zh-Hans = 循环式索道 [type.aerialway.mixed_lift] en = Aerialway - de = Kombibahn el = Τελεφερίκ + de = Kombibahn ja = 混合リフト pl = Wyciąg mieszany pt = Teleférico híbrido pt-BR = Teleférico híbrido ru = Канатная дорога - uk = Канатна дорога [type.aerialway.station] en = Aerialway Station @@ -114,7 +108,6 @@ pt = Via aérea pt-BR = Via aérea ru = Аэропорт - uk = Аеропорт zh-Hans = 机场要素 [type.aeroway.aerodrome] @@ -190,8 +183,8 @@ pt = Plataforma de estacionamento de aviões pt-BR = Plataforma de estacionamento de aviões ru = Перрон - uk = Перон zh-Hans = 机场停机坪 + uk = Перон [type.aeroway.gate] en = Gate @@ -201,8 +194,8 @@ pt = Porta de embarque pt-BR = Porta de embarque ru = Выход на посадку - uk = Вихід на посадку zh-Hans = 登机口 + uk = Вихід на посадку [type.aeroway.helipad] en = Helipad @@ -243,9 +236,9 @@ pt = Pista de aeroporto ou aeródromo pt-BR = Pista de aeroporto ou aeródromo ru = Взлётно-посадочная полоса - uk = Злітно-посадкова смуга zh-Hans = 机场跑道 zh-Hant = 機場跑道 + uk = Злітно-посадкова смуга [type.aeroway.taxiway] en = aeroway-taxiway @@ -256,7 +249,6 @@ pt = Faixa de manobras pt-BR = Pista de rolagem ru = Рулёжная дорожка - uk = Рульова дорiжка zh-Hans = 滑行道 [type.aeroway.terminal] @@ -265,10 +257,10 @@ ja = 空港ターミナルビル pl = Terminal lotniskowy pt = Terminal de passageiros - pt-BR = Aerogare de passageiros + pt_BR = Aerogare de passageiros ru = Терминал - uk = Термінал zh-Hans = 航站楼 + uk = Термінал [type.amenity] en = Amenity @@ -1290,8 +1282,8 @@ pt = Praça de alimentação pt-BR = Praça de alimentação ru = Ресторанный дворик - uk = Ресторанний двір zh-Hans = 美食广场 + uk = Ресторанний двір [type.amenity.fountain] en = Fountain @@ -2547,8 +2539,8 @@ pt = Prisão pt-BR = Presidiário ru = Тюрьма - uk = В'язниця zh-Hans = 监狱 + uk = В'язниця [type.amenity.pub] en = Pub @@ -3146,7 +3138,7 @@ de = Toilette el = Τουαλέτα es = WC - fa = دستشویی + fa = دستشویی^ fi = WC fr = Toilettes hu = Mosdó @@ -3510,8 +3502,8 @@ pt = Barreira pt-BR = Barreira ru = Преграда - uk = Перешкода zh-Hans = 屏障 + uk = Перешкода [type.barrier.block] en = Block @@ -3611,8 +3603,8 @@ [type.barrier.chain] en = Chain - be = Ланцуг de = Kette + be = Ланцуг fr = Chaîne ru = Цепь uk = Ланцюг @@ -3626,8 +3618,8 @@ pt = Muralha de cidade pt-BR = Muralha de cidade ru = Городская стена - uk = Міська стіна zh-Hans = 城墙 + uk = Міська стіна [type.barrier.cycle_barrier] en = Cycle Barrier @@ -3680,8 +3672,8 @@ pt = Vedação pt-BR = Cerca ru = Забор - uk = Огорожа zh-Hans = 篱笆 + uk = Огорожа [type.barrier.gate] en = Gate @@ -3876,8 +3868,8 @@ pt = Muro pt-BR = Muro ru = Стена - uk = Стіна zh-Hans = 墙 + uk = Стіна [type.boundary] en = Boundary @@ -3887,8 +3879,8 @@ pt = Fronteira pt-BR = Fronteira ru = Граница - uk = Кордон zh-Hans = 边界 + uk = Кордон [type.boundary.administrative] en = boundary-administrative @@ -3898,32 +3890,32 @@ pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 行政区域界线 + uk = Адміністративний поділ [type.boundary.administrative.10] en = boundary-administrative-10 pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 10级行政区域界线 + uk = Адміністративний поділ [type.boundary.administrative.11] en = boundary-administrative-11 pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 11级行政区域界线 + uk = Адміністративний поділ [type.boundary.administrative.2] en = boundary-administrative-2 pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 2级行政区域界线 + uk = Адміністративний поділ [type.boundary.administrative.3] en = boundary-administrative-3 @@ -3937,56 +3929,56 @@ pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 4级行政区域界线 + uk = Адміністративний поділ [type.boundary.administrative.4.state] en = boundary-administrative-4-state pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 4级州省界线 + uk = Адміністративний поділ [type.boundary.administrative.5] en = boundary-administrative-5 pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 5级行政区域界线 + uk = Адміністративний поділ [type.boundary.administrative.6] en = boundary-administrative-6 pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 6级行政区域界线 + uk = Адміністративний поділ [type.boundary.administrative.7] en = boundary-administrative-7 pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 7级行政区域界线 + uk = Адміністративний поділ [type.boundary.administrative.8] en = boundary-administrative-8 pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 8级行政区域界线 + uk = Адміністративний поділ [type.boundary.administrative.9] en = boundary-administrative-9 pt = Fronteira administrativa pt-BR = Fronteira administrativa ru = Административная граница - uk = Адміністративний поділ zh-Hans = 9级行政区域界线 + uk = Адміністративний поділ [type.boundary.administrative.city] en = boundary-administrative-city @@ -3994,8 +3986,8 @@ pt = Fronteira de cidade pt-BR = Fronteira de cidade ru = Граница города - uk = Межа міста zh-Hans = 城市行政区域界线 + uk = Межа міста [type.boundary.administrative.country] en = boundary-administrative-country @@ -4003,8 +3995,8 @@ pt = Fronteira de país pt-BR = Fronteira de país ru = Граница страны - uk = Кордон країни zh-Hans = 国家行政区域界线 + uk = Кордон країни [type.boundary.administrative.county] en = boundary-administrative-county @@ -4012,8 +4004,8 @@ pt = Fronteira de condado pt-BR = Fronteira de condado ru = Граница округа - uk = Поділ округа zh-Hans = 县行政区域界线 + uk = Поділ округа [type.boundary.administrative.municipality] en = boundary-administrative-municipality @@ -4028,8 +4020,8 @@ pt = Fronteira de nação pt-BR = Fronteira de nação ru = Национальная граница - uk = Національний кордон zh-Hans = 国家行政区域界线 + uk = Національний кордон [type.boundary.administrative.region] en = boundary-administrative-region @@ -4037,8 +4029,8 @@ pt = Fronteira de região pt-BR = Fronteira de região ru = Граница региона - uk = Областний поділ zh-Hans = 1区域行政区域界线 + uk = Областний поділ [type.boundary.administrative.state] en = boundary-administrative-state @@ -4054,8 +4046,8 @@ pt = Fronteira de subúrbio pt-BR = Fronteira de subúrbio ru = Граница пригорода - uk = Приміська межа zh-Hans = 市郊行政区域界线 + uk = Приміська межа [type.boundary.national_park] en = National Park @@ -4250,8 +4242,8 @@ pt = Armazém pt-BR = Armazém ru = Склад - uk = Склад zh-Hans = 仓库 + uk = Склад [type.craft] en = Craft @@ -4261,8 +4253,8 @@ pt = Ofícios pt-BR = Ofícios ru = Мастерская - uk = Майстерня zh-Hans = 工艺作坊 + uk = Майстерня [type.craft.brewery] en = Craft Brewery @@ -5849,7 +5841,7 @@ nl = Hotdogs pl = Hot-dogi pt = Cachorro-quente - pt-BR = Cachorro-quente + pt-NR = Cachorro-quente ro = Hot dog ru = Хот-доги sk = Párok v rožku @@ -7505,8 +7497,6 @@ zh-Hans = 医学实验室 zh-Hant = 醫學實驗室 -[[Types: Roads]] - [type.highway] en = Highway de = Straße @@ -7515,34 +7505,51 @@ pt = Rodovia pt-BR = Rodovia ru = Дорога - uk = Дорога zh-Hans = 公路要素 [type.highway.bridleway] - en = Bridle Path + en = Rider's Path de = Reitweg fr = Chemin pour cavalier ja = 馬道 pl = Droga dla koni pt = Caminho para cavaleiros pt-BR = Caminho para cavaleiros - ru = Конная дорожка - uk = Кінна доріжка + ru = Дорога для всадников zh-Hans = 马道 [type.highway.bridleway.bridge] - ref = type.highway.bridleway + en = Rider's Path + de = Reitweg + fr = Chemin pour cavalier ja = 馬道(橋) pl = Most drogowy dla koni + pt = Caminho para cavaleiros + pt-BR = Caminho para cavaleiros + ru = Дорога для всадников + zh-Hans = 马道 [type.highway.bridleway.permissive] - ref = type.highway.bridleway + en = Rider's Path + de = Reitweg + fr = Chemin pour cavalier + ja = 馬道 pl = Droga dla koni ograniczona + pt = Caminho para cavaleiros + pt-BR = Caminho para cavaleiros + ru = Дорога для всадников + zh-Hans = 马道 [type.highway.bridleway.tunnel] - ref = type.highway.bridleway + en = Rider's Path + de = Reitweg + fr = Chemin pour cavalier ja = 馬道(トンネル) pl = Tunel drogowy dla koni + pt = Caminho para cavaleiros + pt-BR = Caminho para cavaleiros + ru = Дорога для всадников + zh-Hans = 马道 [type.highway.bus_stop] en = Bus Stop @@ -7577,7 +7584,7 @@ zh-Hant = 巴士站 [type.highway.construction] - en = Road Under Construction + en = Road under Construction ar = طريق تحت الإنشاء cs = Silnice v rekonstrukci da = Vej under opbygning @@ -7611,7 +7618,7 @@ zh-Hant = 在建道路 [type.highway.cycleway] - en = Cycle Path + en = Bike Path de = Radweg fr = Piste cyclable ja = 自転車道 @@ -7619,33 +7626,55 @@ pt = Ciclovia pt-BR = Ciclovia ru = Велодорожка - uk = Велодоріжка zh-Hans = 自行车道 + uk = Велодоріжка [type.highway.cycleway.bridge] - ref = type.highway.cycleway + en = Bike Path + de = Radweg + fr = Piste cyclable ja = 自転車道(橋) pl = Most drogowy dla rowerów + pt = Ciclovia + pt-BR = Ciclovia + ru = Велодорожка + zh-Hans = 自行车道 + uk = Велодоріжка [type.highway.cycleway.permissive] - ref = type.highway.cycleway + en = Bike Path + de = Radweg + fr = Piste cyclable + ja = 自転車道 pl = Droga rowerowa ograniczona + pt = Ciclovia + pt-BR = Ciclovia + ru = Велодорожка + zh-Hans = 自行车道 + uk = Велодоріжка [type.highway.cycleway.tunnel] - ref = type.highway.cycleway + en = Bike Path + de = Radweg + fr = Piste cyclable ja = 自転車道(トンネル) pl = Tunel drogowy dla rowerów + pt = Ciclovia + pt-BR = Ciclovia + ru = Велодорожка + zh-Hans = 自行车道 + uk = Велодоріжка [type.highway.elevator] en = Elevator - en-GB = Lift de = Aufzug + en-GB = Lift fr = Ascenseur ru = Лифт uk = Ліфт [type.highway.footway] - en = Foot Path + en = Path ar = مسار cs = Cesta da = Sti @@ -7677,66 +7706,324 @@ zh-Hant = 人行步道 [type.highway.footway.alpine_hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Alpinwanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad pl = Ścieżka wspinaczkowa pt = Caminho pedonal pt-BR = Caminho pedonal + ro = Cale + ru = Пешеходная дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường zh-Hans = 步行道路 + zh-Hant = 人行步道 [type.highway.footway.area] - ref = type.highway.footway - en = Pedestrian Zone + en = Path + ar = مسار + cs = Cesta + da = Sti + de = Fußweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad pl = Obszar chodnika - ru = Пешеходная зона - uk = Пішохідна зона + pt = Caminho pedonal + pt-BR = Caminho pedonal + ro = Cale + ru = Пешеходная дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 步行道路 + zh-Hant = 人行步道 [type.highway.footway.bridge] - ref = type.highway.footway + en = Path + ar = مسار + cs = Cesta + da = Sti + de = Fußweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad pl = Most dla pieszych + pt = Caminho pedonal + pt-BR = Caminho pedonal + ro = Cale + ru = Пешеходная дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 步行道路 + zh-Hant = 人行步道 [type.highway.footway.demanding_alpine_hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Anspruchsvoller Alpinwanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka pt = Caminho pedonal pt-BR = Caminho pedonal + ro = Cale + ru = Пешеходная дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường zh-Hans = 步行道路 + zh-Hant = 人行步道 [type.highway.footway.demanding_mountain_hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Anspruchsvoller Bergwanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka pt = Caminho pedonal pt-BR = Caminho pedonal + ro = Cale + ru = Пешеходная дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường zh-Hans = 步行道路 + zh-Hant = 人行步道 [type.highway.footway.difficult_alpine_hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Schwieriger Alpinwanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka pt = Caminho pedonal pt-BR = Caminho pedonal + ro = Cale + ru = Пешеходная дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường zh-Hans = 步行道路 + zh-Hant = 人行步道 [type.highway.footway.hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Wanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka pt = Caminho pedonal pt-BR = Caminho pedonal + ro = Cale + ru = Пешеходная дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường zh-Hans = 步行道路 + zh-Hant = 人行步道 [type.highway.footway.mountain_hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Bergwanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka pt = Caminho pedonal pt-BR = Caminho pedonal + ro = Cale + ru = Пешеходная дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường zh-Hans = 步行道路 + zh-Hant = 人行步道 [type.highway.footway.permissive] - ref = type.highway.footway + en = Path + ar = مسار + cs = Cesta + da = Sti + de = Fußweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Chodnik + pt = Caminho pedonal + pt-BR = Caminho pedonal + ro = Cale + ru = Пешеходная дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 步行道路 + zh-Hant = 人行步道 [type.highway.footway.tunnel] - ref = type.highway.footway + en = Path + ar = مسار + cs = Cesta + da = Sti de = Fußgängertunnel + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad pl = Tunel dla pieszych + pt = Caminho pedonal + pt-BR = Caminho pedonal + ro = Cale + ru = Пешеходная дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 步行道路 + zh-Hant = 人行步道 [type.highway.ford] en = Ford @@ -7772,7 +8059,7 @@ zh-Hant = 淺灘 [type.highway.living_street] - en = Living Street + en = Street ar = شارع cs = Ulice da = Gade @@ -7793,26 +8080,82 @@ pt = Zona de coexistência pt-BR = Zona de coexistência ro = Stradă - ru = Жилая зона + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Житлова зона + uk = Вулиця vi = Phố zh-Hans = 生活性街道 zh-Hant = 路 [type.highway.living_street.bridge] - ref = type.highway.living_street + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Spielstraße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Zone de rencontre + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Zona de coexistência + pt-BR = Zona de coexistência + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 生活性街道 + zh-Hant = 路 [type.highway.living_street.tunnel] - ref = type.highway.living_street + en = Street + ar = شارع + cs = Ulice + da = Gade de = Spielstraßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Zone de rencontre + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel ulicy + pt = Zona de coexistência + pt-BR = Zona de coexistência + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 生活性街道 + zh-Hant = 路 [type.highway.motorway] - en = Motorway + en = Street ar = شارع cs = Ulice da = Gade @@ -7833,28 +8176,82 @@ pt = Autoestrada pt-BR = Rodovia ro = Stradă - ru = Автомагистраль + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Автомагістраль + uk = Вулиця vi = Phố zh-Hans = 高速公路 zh-Hant = 高速公路 [type.highway.motorway.bridge] - ref = type.highway.motorway + en = Street + ar = شارع + cs = Ulice + da = Gade de = Autobahnbrücke + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Autoroute + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Most drogowy + pt = Autoestrada + pt-BR = Rodovia + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 高速公路 + zh-Hant = 高速公路 [type.highway.motorway.tunnel] - ref = type.highway.motorway + en = Street + ar = شارع + cs = Ulice + da = Gade de = Autobahntunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Autoroute + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel drogowy + pt = Autoestrada + pt-BR = Rodovia + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 高速公路 + zh-Hant = 高速公路 [type.highway.motorway_junction] - en = Road Exit + en = Exit ar = مخرج cs = Dopravní uzel da = Motorvejsafkørsel @@ -7884,20 +8281,100 @@ zh-Hant = 交流道 [type.highway.motorway_link] - ref = type.highway.motorway - en = Motorway Ramp + en = Street + ar = شارع + cs = Ulice + da = Gade de = Autobahnauffahrt + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica pt = Ligação a autoestrada - ru = Съезд с автомагистрали - uk = З'їзд з автомагістралі + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố zh-Hans = 高速公路连接路 zh-Hant = 高速公路連接路 [type.highway.motorway_link.bridge] - ref = type.highway.motorway_link + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Autobahnauffahrt + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Ligação a autoestrada + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 高速公路连接路 + zh-Hant = 高速公路連接路 [type.highway.motorway_link.tunnel] - ref = type.highway.motorway_link + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Autobahnauffahrt + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Ligação a autoestrada + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 高速公路连接路 + zh-Hant = 高速公路連接路 [type.highway.path] en = Path @@ -7921,67 +8398,370 @@ pt = Caminho pt-BR = Caminho ro = Cale - ru = Тропа + ru = Дорожка sk = Cesta sv = Gångväg th = เส้นทาง tr = Yol - uk = Стежка + uk = Пішохідна доріжка vi = Đường zh-Hans = 小道 zh-Hant = 人行步道 [type.highway.path.alpine_hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Alpinwanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad pl = Ścieżka wspinaczkowa + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.path.bicycle] - ref = type.highway.path - en = Cycle & Foot Path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Radweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad pl = Ścieżka dla rowerów - ru = Велопешеходная дорожка - uk = Велопішохідна доріжка + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.path.bridge] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti + de = Weg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.path.demanding_alpine_hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Anspruchsvoller Alpinwanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.path.demanding_mountain_hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Anspruchsvoller Bergwanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.path.difficult_alpine_hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Schwieriger Alpinwanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.path.hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Wanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.path.horse] - ref = type.highway.path - en = Bridle Path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Reitweg - ru = Конная тропа - uk = Кінна стежка + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.path.mountain_hiking] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti de = Bergwanderweg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.path.permissive] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti + de = Weg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Ścieżka + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.path.tunnel] - ref = type.highway.path + en = Path + ar = مسار + cs = Cesta + da = Sti + de = Weg + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Chemin + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Tunnel + pl = Ścieżka + pt = Caminho + pt-BR = Caminho + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 小道 + zh-Hant = 人行步道 [type.highway.pedestrian] - en = Pedestrian Street + en = Street ar = شارع cs = Ulice da = Gade @@ -8002,34 +8782,114 @@ pt = Rua pedonal pt-BR = Rua pedonal ro = Stradă - ru = Пешеходная улица + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Пішохідна вулиця + uk = Вулиця vi = Phố zh-Hans = 步行街 zh-Hant = 路 [type.highway.pedestrian.area] - ref = type.highway.pedestrian - en = Pedestrian Zone - ru = Пешеходная зона - uk = Пішохідна зона + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Fußgängerzone + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue piétonne + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Pasaż pieszy + pt = Rua pedonal + pt-BR = Rua pedonal + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố zh-Hans = 步行区域 + zh-Hant = 路 [type.highway.pedestrian.bridge] - ref = type.highway.pedestrian + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Fußgängerzone + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue piétonne + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Most pasażu pieszego + pt = Rua pedonal + pt-BR = Rua pedonal + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 步行街 + zh-Hant = 路 [type.highway.pedestrian.tunnel] - ref = type.highway.pedestrian + en = Street + ar = شارع + cs = Ulice + da = Gade de = Fußgängertunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue piétonne + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel pasażu pieszego + pt = Rua pedonal + pt-BR = Rua pedonal + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 步行街 + zh-Hant = 路 [type.highway.primary] - en = Primary Road + en = Street ar = شارع cs = Ulice da = Gade @@ -8050,37 +8910,175 @@ pt = Estrada primária pt-BR = Estrada ro = Stradă - ru = Шоссе + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Шосе + uk = Вулиця vi = Phố zh-Hans = 主要道路 zh-Hant = 主要道路 [type.highway.primary.bridge] - ref = type.highway.primary + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Hauptstraße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada primária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 主要道路 + zh-Hant = 主要道路 [type.highway.primary.tunnel] - ref = type.highway.primary + en = Street + ar = شارع + cs = Ulice + da = Gade de = Hauptstraßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel drogowy + pt = Estrada primária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 主要道路 + zh-Hant = 主要道路 [type.highway.primary_link] - ref = type.highway.primary - en = Primary Road Ramp - ru = Съезд с шоссе - uk = З'їзд з шосе + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada primária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố zh-Hans = 主要道路连接路 zh-Hant = 主要道路連接路 [type.highway.primary_link.bridge] - ref = type.highway.primary_link + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada primária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 主要道路连接路 + zh-Hant = 主要道路連接路 [type.highway.primary_link.tunnel] - ref = type.highway.primary_link + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada primária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 主要道路连接路 + zh-Hant = 主要道路連接路 [type.highway.raceway] en = Racetrack @@ -8109,7 +9107,7 @@ sv = Racerbana th = สนามแข่ง tr = Koşu yolu - uk = Гоночний трек + uk = Автодром vi = Đường đua zh-Hans = 赛车场 zh-Hant = 跑道 @@ -8147,17 +9145,103 @@ zh-Hant = 住宅區道路 [type.highway.residential.area] - ref = type.highway.residential + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Wohnstraße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Rua residencial + pt-BR = Rua residencial + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 住宅区道路 + zh-Hant = 住宅區道路 [type.highway.residential.bridge] - ref = type.highway.residential + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Wohnstraße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Rua residencial + pt-BR = Rua residencial + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 住宅区道路 + zh-Hant = 住宅區道路 [type.highway.residential.tunnel] - ref = type.highway.residential + en = Street + ar = شارع + cs = Ulice + da = Gade de = Wohnstraßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Rua residencial + pt-BR = Rua residencial + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 住宅区道路 + zh-Hant = 住宅區道路 [type.highway.rest_area] - en = Rest Area + en = Highway Rest Area ar = استراحة cs = Odpočívadlo da = Rasteplads @@ -8177,7 +9261,7 @@ pt = Área de descanso pt-BR = Área de descanso ro = Zonă de odihnă - ru = Зона отдыха + ru = Зона отдыха на трассе sk = Odpočívadlo sv = Viloplats th = บริเวณพักผ่อน @@ -8188,7 +9272,7 @@ zh-Hant = 休息區 [type.highway.road] - en = Road + en = Street ar = شارع cs = Ulice da = Gade @@ -8209,26 +9293,82 @@ pt = Estrada pt-BR = Estrada ro = Stradă - ru = Дорога + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Дорога + uk = Вулиця vi = Phố zh-Hans = 道路 zh-Hant = 道路 [type.highway.road.bridge] - ref = type.highway.road + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 道路 + zh-Hant = 道路 [type.highway.road.tunnel] - ref = type.highway.road + en = Street + ar = شارع + cs = Ulice + da = Gade de = Straßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel drogowy + pt = Estrada + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 道路 + zh-Hant = 道路 [type.highway.secondary] - en = Secondary Road + en = Street ar = شارع cs = Ulice da = Gade @@ -8249,42 +9389,178 @@ pt = Estrada secundária pt-BR = Estrada ro = Stradă - ru = Автодорога + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Автодорога + uk = Вулиця vi = Phố zh-Hans = 次要道路 zh-Hant = 次要道路 [type.highway.secondary.bridge] - ref = type.highway.secondary + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada secundária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 次要道路 + zh-Hant = 次要道路 [type.highway.secondary.tunnel] - ref = type.highway.secondary + en = Street + ar = شارع + cs = Ulice + da = Gade de = Straßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel drogowy + pt = Estrada secundária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 次要道路 + zh-Hant = 次要道路 [type.highway.secondary_link] - ref = type.highway.secondary - en = Secondary Road Ramp - ru = Съезд с автодороги - uk = З'їзд з автодороги + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada secundária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố zh-Hans = 次要道路连接路 zh-Hant = 次要道路連接路 [type.highway.secondary_link.bridge] - ref = type.highway.secondary_link + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada secundária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 次要道路连接路 + zh-Hant = 次要道路連接路 [type.highway.secondary_link.tunnel] - ref = type.highway.secondary_link + en = Street + ar = شارع + cs = Ulice + da = Gade de = Straßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel drogowy + pt = Estrada secundária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 次要道路连接路 + zh-Hant = 次要道路連接路 [type.highway.service] - en = Service Road + en = Street ar = شارع cs = Ulice da = Gade @@ -8305,59 +9581,185 @@ pt = Estrada de acesso ou serviço pt-BR = Estrada de acesso ou serviço ro = Stradă - ru = Проезд + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Проїзд + uk = Вулиця vi = Phố zh-Hans = 辅助道路 zh-Hant = 輔助道路 [type.highway.service.area] - ref = type.highway.service + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada de acesso ou serviço + pt-BR = Estrada de acesso ou serviço + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 辅助道路 + zh-Hant = 輔助道路 [type.highway.service.bridge] - ref = type.highway.service + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Most drogowy + pt = Estrada de acesso ou serviço + pt-BR = Estrada de acesso ou serviço + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 辅助道路 + zh-Hant = 輔助道路 [type.highway.service.driveway] - ref = type.highway.service - en = Driveway + en = Street + ar = شارع + cs = Ulice + da = Gade de = Zufahrt - ru = Подъезд - uk = Під'їзд + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada de acesso ou serviço + pt-BR = Estrada de acesso ou serviço + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố zh-Hans = 车道 zh-Hant = 車道 [type.highway.service.parking_aisle] - ref = type.highway.service - en = Parking Aisle + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu fr = Allée + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Miejsca parkingowe pt = Estrada de estacionamento pt-BR = Estrada de estacionamento - ru = Парковочный проезд - uk = Паркувальний проїзд + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố zh-Hans = 停车场通道 zh-Hant = 停車場通道 [type.highway.service.tunnel] - ref = type.highway.service + en = Street + ar = شارع + cs = Ulice + da = Gade de = Straßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel drogowy + pt = Estrada de acesso ou serviço + pt-BR = Estrada de acesso ou serviço + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 辅助道路 + zh-Hant = 輔助道路 [type.highway.services] - en = Service Area + en = Service on the Road de = Raststätte fr = Aire de service ja = サービスエリア pl = Miejsce obsługi podróżnych pt = Área de serviço pt-BR = Área de serviços de estrada - ru = Зона обслуживания - uk = Зона обслуговування + ru = СТО zh-Hans = 服务区 zh-Hant = 服務區 @@ -8394,7 +9796,7 @@ zh-Hant = 測速照相機 [type.highway.steps] - en = Stairs + en = Path ar = مسار cs = Cesta da = Sti @@ -8415,24 +9817,82 @@ pt = Escadas pt-BR = Escadas ro = Cale - ru = Лестница + ru = Дорожка sk = Cesta sv = Gångväg th = เส้นทาง tr = Yol - uk = Сходи + uk = Пішохідна доріжка vi = Đường zh-Hans = 阶梯 zh-Hant = 人行步道 [type.highway.steps.bridge] - ref = type.highway.steps + en = Path + ar = مسار + cs = Cesta + da = Sti + de = Stufen + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Escaliers + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Schody + pt = Escadas + pt-BR = Escadas + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 阶梯 + zh-Hant = 人行步道 [type.highway.steps.tunnel] - ref = type.highway.steps + en = Path + ar = مسار + cs = Cesta + da = Sti + de = Stufen + el = Διαδρομή + es = Camino + fa = مسیر + fi = Polku + fr = Escaliers + hu = Ösvény + id = Jalur + it = Sentiero + ja = 歩道 + ko = 길 + nb = Sti + nl = Pad + pl = Schody + pt = Escadas + pt-BR = Escadas + ro = Cale + ru = Дорожка + sk = Cesta + sv = Gångväg + th = เส้นทาง + tr = Yol + uk = Пішохідна доріжка + vi = Đường + zh-Hans = 阶梯 + zh-Hant = 人行步道 [type.highway.tertiary] - en = Tertiary Road + en = Street ar = شارع cs = Ulice da = Gade @@ -8453,42 +9913,178 @@ pt = Estrada terciária pt-BR = Estrada ro = Stradă - ru = Дорога + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Дорога + uk = Вулиця vi = Phố zh-Hans = 三级道路 zh-Hant = 三级道路 [type.highway.tertiary.bridge] - ref = type.highway.tertiary + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada terciária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 三级道路 + zh-Hant = 三级道路 [type.highway.tertiary.tunnel] - ref = type.highway.tertiary + en = Street + ar = شارع + cs = Ulice + da = Gade de = Straßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel drogowy + pt = Estrada terciária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 三级道路 + zh-Hant = 三级道路 [type.highway.tertiary_link] - ref = type.highway.tertiary - en = Tertiary Road Ramp - ru = Съезд с дороги - uk = З'їзд з дороги + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada terciária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố zh-Hans = 三级道路连接路 zh-Hant = 三级道路連接路 [type.highway.tertiary_link.bridge] - ref = type.highway.tertiary_link + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada terciária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 三级道路连接路 + zh-Hant = 三级道路連接路 [type.highway.tertiary_link.tunnel] - ref = type.highway.tertiary_link + en = Street + ar = شارع + cs = Ulice + da = Gade de = Straßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel drogowy + pt = Estrada terciária + pt-BR = Estrada + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 三级道路连接路 + zh-Hant = 三级道路連接路 [type.highway.track] - en = Track + en = Street ar = شارع cs = Ulice da = Gade @@ -8509,47 +10105,335 @@ pt = Carreiro florestal ou agrícola pt-BR = Estrada rústica ro = Stradă - ru = Грунтовка + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Ґрунтівка + uk = Вулиця vi = Phố zh-Hans = 土路 zh-Hant = 土路 [type.highway.track.area] - ref = type.highway.track + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Piste + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Carreiro florestal ou agrícola + pt-BR = Estrada rústica + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 土路 + zh-Hant = 土路 [type.highway.track.bridge] - ref = type.highway.track + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Piste + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Carreiro florestal ou agrícola + pt-BR = Estrada rústica + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 土路 + zh-Hant = 土路 [type.highway.track.grade1] - ref = type.highway.track + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Piste + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Carreiro florestal ou agrícola + pt-BR = Estrada rústica + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 土路 + zh-Hant = 土路 [type.highway.track.grade2] - ref = type.highway.track + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Piste + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Carreiro florestal ou agrícola + pt-BR = Estrada rústica + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 土路 + zh-Hant = 土路 [type.highway.track.grade3] - ref = type.highway.track + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Piste + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Carreiro florestal ou agrícola + pt-BR = Estrada rústica + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 土路 + zh-Hant = 土路 [type.highway.track.grade4] - ref = type.highway.track + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Piste + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Carreiro florestal ou agrícola + pt-BR = Estrada rústica + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 土路 + zh-Hant = 土路 [type.highway.track.grade5] - ref = type.highway.track + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Piste + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Carreiro florestal ou agrícola + pt-BR = Estrada rústica + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 土路 + zh-Hant = 土路 [type.highway.track.no.access] - ref = type.highway.track + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Piste + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Carreiro florestal ou agrícola + pt-BR = Estrada rústica + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 土路 + zh-Hant = 土路 [type.highway.track.permissive] - ref = type.highway.track + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Piste + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Carreiro florestal ou agrícola + pt-BR = Estrada rústica + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 土路 + zh-Hant = 土路 [type.highway.track.tunnel] - ref = type.highway.track + en = Street + ar = شارع + cs = Ulice + da = Gade de = Straßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Piste + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel drogowy + pt = Carreiro florestal ou agrícola + pt-BR = Estrada rústica + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 土路 + zh-Hant = 土路 [type.highway.traffic_signals] en = Traffic Lights @@ -8584,7 +10468,7 @@ zh-Hant = 紅綠燈 [type.highway.trunk] - en = National Highway + en = Street ar = شارع cs = Ulice da = Gade @@ -8605,40 +10489,178 @@ pt = Via rápida pt-BR = Via expressa ro = Stradă - ru = Трасса + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Траса + uk = Вулиця vi = Phố zh-Hans = 干线道路 zh-Hant = 主幹道 [type.highway.trunk.bridge] - ref = type.highway.trunk + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Schnellstraße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Voie rapide + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Via rápida + pt-BR = Via expressa + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 干线道路 + zh-Hant = 主幹道 [type.highway.trunk.tunnel] - ref = type.highway.trunk + en = Street + ar = شارع + cs = Ulice + da = Gade de = Schnellstraßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Voie rapide + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Via rápida + pt-BR = Via expressa + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 干线道路 + zh-Hant = 主幹道 [type.highway.trunk_link] - ref = type.highway.trunk - en = National Highway Ramp - ru = Съезд с трассы - uk = З'їзд з траси + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Via rápida + pt-BR = Via expressa + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố zh-Hans = 干线道路连接路 zh-Hant = 主幹道連接路 [type.highway.trunk_link.bridge] - ref = type.highway.trunk_link + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Via rápida + pt-BR = Via expressa + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 干线道路连接路 + zh-Hant = 主幹道連接路 [type.highway.trunk_link.tunnel] - ref = type.highway.trunk_link + en = Street + ar = شارع + cs = Ulice + da = Gade de = Straßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Via rápida + pt-BR = Via expressa + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 干线道路连接路 + zh-Hant = 主幹道連接路 [type.highway.unclassified] - en = Minor Road + en = Street ar = شارع cs = Ulice da = Gade @@ -8659,81 +10681,111 @@ pt = Estrada sem classificação pt-BR = Estrada sem classificação ro = Stradă - ru = Небольшая дорога + ru = Улица sk = Ulica sv = Gata th = ถนน tr = Cadde - uk = Невелика дорога + uk = Вулиця vi = Phố zh-Hans = 道路 zh-Hant = 道路 [type.highway.unclassified.area] - ref = type.highway.unclassified + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada sem classificação + pt-BR = Estrada sem classificação + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 道路 + zh-Hant = 道路 [type.highway.unclassified.bridge] - ref = type.highway.unclassified + en = Street + ar = شارع + cs = Ulice + da = Gade + de = Straße + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat + pl = Ulica + pt = Estrada sem classificação + pt-BR = Estrada sem classificação + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 道路 + zh-Hant = 道路 [type.highway.unclassified.tunnel] - ref = type.highway.unclassified + en = Street + ar = شارع + cs = Ulice + da = Gade de = Straßentunnel + el = Οδός + es = Calle + fa = جاده + fi = Katu + fr = Rue + hu = Utca + id = Jalan + it = Via + ja = ストリート + ko = 거리 + nb = Gate + nl = Straat pl = Tunel drogowy - - [type.area_highway.cycleway] - ref = type.highway.cycleway - fi = Pyörätie - - [type.area_highway.footway] - ref = type.highway.footway - de = Weg - fi = Kävelytie - - [type.area_highway.living_street] - ref = type.highway.living_street - de = Wohnstraße - - [type.area_highway.motorway] - ref = type.highway.motorway - fi = Moottoritie - - [type.area_highway.path] - ref = type.highway.path - - [type.area_highway.pedestrian] - ref = type.highway.pedestrian - fi = Kävelykatu - - [type.area_highway.primary] - ref = type.highway.primary - - [type.area_highway.residential] - ref = type.highway.residential - - [type.area_highway.secondary] - ref = type.highway.secondary - - [type.area_highway.service] - ref = type.highway.service - - [type.area_highway.tertiary] - ref = type.highway.tertiary - - [type.area_highway.steps] - ref = type.highway.steps - fi = Portaat - - [type.area_highway.track] - ref = type.highway.track - pt = Pista para desportos não motorizados - pt-BR = Pista para desportos não motorizados - - [type.area_highway.trunk] - ref = type.highway.trunk - - [type.area_highway.unclassified] - ref = type.highway.unclassified - en = area:highway-unclassified + pt = Estrada sem classificação + pt-BR = Estrada sem classificação + ro = Stradă + ru = Улица + sk = Ulica + sv = Gata + th = ถนน + tr = Cadde + uk = Вулиця + vi = Phố + zh-Hans = 道路 + zh-Hant = 道路 [type.highway.world_level] en = highway-world_level @@ -8741,8 +10793,6 @@ [type.highway.world_towns_level] en = highway-world_towns_level -[[Types: Historic]] - [type.historic] en = Historic de = Historisches Objekt @@ -8795,8 +10845,8 @@ pt = Campo de batalha pt-BR = Campo de batalha ru = Поле боя - uk = Поле битви zh-Hans = 古战场 + uk = Поле битви [type.historic.boundary_stone] en = Boundary Stone @@ -9183,7 +11233,6 @@ pt = Cruzeiro pt-BR = Cruzeiro ru = Христианский крест - uk = Християнський хрест zh-Hans = 路旁十字架 [type.historic.wayside_shrine] @@ -9297,7 +11346,6 @@ pt = Uso do solo pt-BR = Uso do solo ru = Землепользование - uk = Землевикористання zh-Hans = 土地利用要素 [type.landuse.allotments] @@ -9314,9 +11362,11 @@ [type.landuse.basin] en = Basin - ar = حوض المياه be = Рэзервуар + ru = Резервуар + uk = Резервуар bg = Резервоар + ar = حوض المياه cs = Vodní nádrž da = Vandbassin de = Wasserbecken @@ -9331,19 +11381,17 @@ it = Bacino d'acqua ja = 水地 ko = 저수지 - nb = Vannvask nl = Waterbassin + nb = Vannvask pl = Zbiornik pt = Reservatório pt-BR = Reservatório ro = Bazin de apă - ru = Резервуар sk = Vodná nádrž sv = Vattenbassäng sw = Bonde la Maji th = อ่างน้ำ tr = Bir su havzası - uk = Резервуар vi = Một chậu nước zh-Hans = 水盆地 zh-Hant = 水庫 @@ -9357,7 +11405,6 @@ pt = Terreno industrial devoluto pt-BR = Terreno industrial devoluto ru = Земля для застройки - uk = Земля для будiвництва zh-Hans = 棕土 [type.landuse.cemetery] @@ -9419,7 +11466,7 @@ sv = Begravningsplats th = สุสาน tr = Mezarlık - uk = Християнський цвинтар + uk = Цвинтар vi = Bãi tha ma zh-Hans = 基督教墓地 zh-Hant = 基督教墓地 @@ -9490,7 +11537,6 @@ pt = Quinta pt-BR = Fazenda ru = Ферма - uk = Ферма zh-Hans = 农田 [type.landuse.farmland] @@ -9536,7 +11582,6 @@ pt = Pátio de quinta pt-BR = Pátio de fazenda ru = Сельскохозяйственная земля - uk = Сільськогосподарська земля zh-Hans = 农庄 [type.landuse.field] @@ -9731,7 +11776,6 @@ pt = Terreno com construção planeada pt-BR = Terreno com construção planeada ru = Земля для застройки - uk = Земля для будiвництва zh-Hans = 待开发荒地 [type.landuse.greenhouse_horticulture] @@ -9881,7 +11925,6 @@ pt = Área de lazer pt-BR = Área de lazer ru = База отдыха - uk = База вiдпочинку zh-Hans = 康体场地 [type.landuse.reservoir] @@ -9989,7 +12032,6 @@ pt = Terreno baldio pt-BR = Terreno baldio ru = Общественная земля - uk = Громадська земля zh-Hans = 公共用地 [type.leisure.dog_park] @@ -10773,11 +12815,6 @@ zh-Hans = 水上乐园 zh-Hant = 水上樂園 - [type.leisure.beach_resort] - en = Beach Resort - ru = Пляжный курорт - uk = Пляжний курорт - [type.man_made] en = Man Made de = künstliche Anlage @@ -10920,16 +12957,16 @@ [type.man_made.silo] en = Silo - be = Сілас de = Silo + be = Сілас ru = Элеватор uk = Силос [type.man_made.storage_tank] en = Storage Tank - be = Рэзервуар de = Speichertank fr = Réservoir + be = Рэзервуар ru = Резервуар uk = Резервуар @@ -11187,9 +13224,9 @@ [type.mountain_pass] en = Mountain Pass - be = Перавал de = Gebirgspass fr = Col de montagne + be = Перавал it = Passo ru = Перевал uk = Перевал @@ -11203,7 +13240,6 @@ pt = Natureza pt-BR = Natureza ru = Природа - uk = Природа zh-Hans = 自然 [type.natural.bare_rock] @@ -11216,7 +13252,6 @@ pt = Zona rochosa pt-BR = Zona rochosa ru = Скалы - uk = Скелi zh-Hans = 岩石 [type.natural.bay] @@ -11284,15 +13319,15 @@ [type.natural.beach.sand] en = Sandy Beach - be = Пяшчаны пляж de = Sandstrand + be = Пяшчаны пляж ru = Песчаный пляж uk = Піщаний пляж [type.natural.beach.gravel] en = Gravel Beach - be = Галечны пляж de = Kiesstrand + be = Галечны пляж ru = Галечный пляж uk = Гальковий пляж @@ -11372,7 +13407,6 @@ pt = Falésia pt-BR = Falésia ru = Обрыв - uk = Обрив zh-Hans = 峭壁 [type.natural.coastline] @@ -11385,7 +13419,6 @@ pt = Linha costeira pt-BR = Linha costeira ru = Береговая линия - uk = Берегова лiнiя zh-Hans = 海岸线 [type.natural.geyser] @@ -11500,7 +13533,6 @@ pt = Charneca pt-BR = Charneca ru = Пустошь - uk = Пустище zh-Hans = 荒野 [type.natural.hot_spring] @@ -11513,7 +13545,6 @@ pt = Nascente de água quente pt-BR = Nascente de água quente ru = Горячий источник - uk = Горяче джерело zh-Hans = 温泉 [type.natural.water.lake] @@ -11583,8 +13614,10 @@ [type.natural.water.reservoir] en = Reservoir - ar = خزان be = Вадасховішча + ru = Водохранилище + uk = Водосховище + ar = خزان bg = Резервоар cs = Nádrž da = Reservoir @@ -11600,27 +13633,27 @@ it = Serbatoio ja = 貯水池 ko = 저수지 - nb = Reservoar nl = Reservoir + nb = Reservoar pl = Zbiornik pt = Reservatório ro = Rezervor - ru = Водохранилище sk = Nádrž sv = Reservoar sw = Hifadhi th = อ่างเก็บน้ำ tr = Rezervuar - uk = Водосховище vi = Hồ chứa zh-Hans = 水库 zh-Hant = 水庫 [type.natural.water.basin] en = Basin - ar = حوض المياه be = Рэзервуар + ru = Резервуар + uk = Резервуар bg = Резервоар + ar = حوض المياه cs = Vodní nádrž da = Vandbassin de = Wasserbecken @@ -11635,27 +13668,25 @@ it = Bacino d'acqua ja = 水地 ko = 저수지 - nb = Vannvask nl = Waterbassin + nb = Vannvask pl = Zbiornik pt = Reservatório pt-BR = Reservatório ro = Bazin de apă - ru = Резервуар sk = Vodná nádrž sv = Vattenbassäng sw = Bonde la Maji th = อ่างน้ำ tr = Bir su havzası - uk = Резервуар vi = Một chậu nước zh-Hans = 水盆地 zh-Hant = 水庫 [type.natural.water.river] en = River - ar = نهر be = Рака + ar = نهر cs = Řeka da = Flod de = Fluss @@ -11697,8 +13728,8 @@ [type.natural.meadow] en = Meadow - be = Луг de = Wiese + be = Луг ja = 牧草地 nl = Weiland pl = Łąka @@ -11754,9 +13785,9 @@ [type.natural.saddle] en = Mountain Saddle - be = Седлавіна de = Bergsattel fr = Col de montagne + be = Седлавіна it = Sella ru = Седловина uk = Сідловина @@ -11771,7 +13802,6 @@ pt = Rochedo pt-BR = Rochedo ru = Камень - uk = Камiнь zh-Hans = 岩石 [type.natural.scrub] @@ -11916,7 +13946,6 @@ pt = Linha de árvores pt-BR = Linha de árvores ru = Ряд деревьев - uk = Ряд дерев zh-Hans = 树列 [type.natural.vineyard] @@ -11928,7 +13957,6 @@ pt = Vinha pt-BR = Vinha ru = Виноградник - uk = Виноградник [type.natural.volcano] en = Volcano @@ -11963,7 +13991,8 @@ zh-Hant = 火山 [type.natural.water] - en = Waterbody + en = Water body + ru = Водоём ar = مسطح مائي be = Вадаём bg = Воден басейн @@ -11981,17 +14010,16 @@ it = Corpo d'acqua ja = 水地 ko = 수역 - nb = Vassmasse nl = Waterlichaam + nb = Vassmasse pl = Akwen pt = Corpo de água pt-BR = Corpo de água ro = Apă - ru = Водоём sk = Voda sv = Vatten th = แหล่งน้ำ - tr = Su + tu = Su uk = Водоймище vi = Thủy vực zh-Hans = 水體 @@ -12041,7 +14069,6 @@ pt = Zona úmida pt-BR = Zona úmida ru = Торфяное болото - uk = Торф'яне болото zh-Hans = 泥炭地 [type.natural.wetland.marsh] @@ -12054,7 +14081,6 @@ pt = Zona úmida pt-BR = Zona úmida ru = Болотистая местность - uk = Болотиста мiсцевiсть zh-Hans = 沼泽地 [type.noexit] @@ -12064,7 +14090,6 @@ pt = Via sem saída pt-BR = Via sem saída ru = Тупик - uk = Тупик [type.noexit.motor_vehicle] en = noexit-motor_vehicle @@ -12165,7 +14190,7 @@ sv = Fastighetsmäklare th = นายหน้าอสังหาริมทรัพย์ tr = Agent immobilier - uk = Агенція нерухомості + uk = Агенція нерухомості/ріелтор vi = Đại Lý Bất Động Sản zh-Hans = 地产中介 zh-Hant = 地產代理 @@ -12338,7 +14363,6 @@ pt = Local pt-BR = Local ru = Место - uk = Мicце zh-Hans = 地点 [type.place.city] @@ -12405,34 +14429,314 @@ zh-Hant = 首府 [type.place.city.capital.10] - ref = type.place.city + en = Capital + ar = عاصمة + cs = Hlavní město + da = Kapital + de = Hauptstadt + el = Πρωτεύουσα + fa = پایتخت + fi = Pääkaupunki + fr = Capitale + hu = Főváros + id = Ibu kota + it = Capitale + ja = 首都 + ko = 수도 + nb = Hovedstad + nl = Hoofdstad + pl = Stolica + pt = Capital + pt-BR = Capital + ro = Capitală + ru = Столица + sk = Hlavné mesto + sv = Huvudstad + th = เมือง + tr = Başkent + uk = Столиця + vi = Thủ đô + zh-Hans = 首府 + zh-Hant = 首府 [type.place.city.capital.11] - ref = type.place.city + en = Capital + ar = عاصمة + cs = Hlavní město + da = Kapital + de = Hauptstadt + el = Πρωτεύουσα + fa = پایتخت + fi = Pääkaupunki + fr = Capitale + hu = Főváros + id = Ibu kota + it = Capitale + ja = 首都 + ko = 수도 + nb = Hovedstad + nl = Hoofdstad + pl = Stolica + pt = Capital + pt-BR = Capital + ro = Capitală + ru = Столица + sk = Hlavné mesto + sv = Huvudstad + th = เมือง + tr = Başkent + uk = Столиця + vi = Thủ đô + zh-Hans = 首府 + zh-Hant = 首府 [type.place.city.capital.2] - ref = type.place.city.capital + en = Capital + ar = عاصمة + cs = Hlavní město + da = Kapital + de = Hauptstadt + el = Πρωτεύουσα + fa = پایتخت + fi = Pääkaupunki + fr = Capitale + hu = Főváros + id = Ibu kota + it = Capitale + ja = 首都 + ko = 수도 + nb = Hovedstad + nl = Hoofdstad + pl = Stolica + pt = Capital + pt-BR = Capital + ro = Capitală + ru = Столица + sk = Hlavné mesto + sv = Huvudstad + th = เมือง + tr = Başkent + uk = Столиця + vi = Thủ đô + zh-Hans = 首都 + zh-Hant = 首都 [type.place.city.capital.3] - ref = type.place.city + en = Capital + ar = عاصمة + cs = Hlavní město + da = Kapital + de = Hauptstadt + el = Πρωτεύουσα + fa = پایتخت + fi = Pääkaupunki + fr = Capitale + hu = Főváros + id = Ibu kota + it = Capitale + ja = 首都 + ko = 수도 + nb = Hovedstad + nl = Hoofdstad + pl = Stolica + pt = Capital + pt-BR = Capital + ro = Capitală + ru = Столица + sk = Hlavné mesto + sv = Huvudstad + th = เมือง + tr = Başkent + uk = Столиця + vi = Thủ đô + zh-Hans = 首都 + zh-Hant = 首都 [type.place.city.capital.4] - ref = type.place.city + en = Capital + ar = عاصمة + cs = Hlavní město + da = Kapital + de = Hauptstadt + el = Πρωτεύουσα + fa = پایتخت + fi = Pääkaupunki + fr = Capitale + hu = Főváros + id = Ibu kota + it = Capitale + ja = 首都 + ko = 수도 + nb = Hovedstad + nl = Hoofdstad + pl = Stolica + pt = Capital de região autónoma + pt-BR = Capital + ro = Capitală + ru = Столица + sk = Hlavné mesto + sv = Huvudstad + th = เมือง + tr = Başkent + uk = Столиця + vi = Thủ đô + zh-Hans = 首府 + zh-Hant = 首府 [type.place.city.capital.5] - ref = type.place.city + en = Capital + ar = عاصمة + cs = Hlavní město + da = Kapital + de = Kreisstadt + el = Πρωτεύουσα + fa = پایتخت + fi = Pääkaupunki + fr = Capitale + hu = Főváros + id = Ibu kota + it = Capitale + ja = 首都 + ko = 수도 + nb = Hovedstad + nl = Hoofdstad + pl = Stolica + pt = Capital + pt-BR = Capital + ro = Capitală + ru = Столица + sk = Hlavné mesto + sv = Huvudstad + th = เมือง + tr = Başkent + uk = Столиця + vi = Thủ đô + zh-Hans = 首府 + zh-Hant = 首府 [type.place.city.capital.6] - ref = type.place.city + en = Capital + ar = عاصمة + cs = Hlavní město + da = Kapital + de = Hauptstadt + el = Πρωτεύουσα + fa = پایتخت + fi = Pääkaupunki + fr = Capitale + hu = Főváros + id = Ibu kota + it = Capitale + ja = 首都 + ko = 수도 + nb = Hovedstad + nl = Hoofdstad + pl = Stolica + pt = Sede de distrito + pt-BR = Capital + ro = Capitală + ru = Столица + sk = Hlavné mesto + sv = Huvudstad + th = เมือง + tr = Başkent + uk = Столиця + vi = Thủ đô + zh-Hans = 首府 + zh-Hant = 首府 [type.place.city.capital.7] - ref = type.place.city + en = Capital + ar = عاصمة + cs = Hlavní město + da = Kapital + de = Hauptstadt + el = Πρωτεύουσα + fa = پایتخت + fi = Pääkaupunki + fr = Capitale + hu = Főváros + id = Ibu kota + it = Capitale + ja = 首都 + ko = 수도 + nb = Hovedstad + nl = Hoofdstad + pl = Stolica + pt = Sede de município + pt-BR = Capital + ro = Capitală + ru = Столица + sk = Hlavné mesto + sv = Huvudstad + th = เมือง + tr = Başkent + uk = Столиця + vi = Thủ đô + zh-Hans = 首府 + zh-Hant = 首府 [type.place.city.capital.8] - ref = type.place.city + en = Capital + ar = عاصمة + cs = Hlavní město + da = Kapital + de = Hauptstadt + el = Πρωτεύουσα + fa = پایتخت + fi = Pääkaupunki + fr = Capitale + hu = Főváros + id = Ibu kota + it = Capitale + ja = 首都 + ko = 수도 + nb = Hovedstad + nl = Hoofdstad + pl = Stolica + pt = Sede de freguesia + pt-BR = Capital + ro = Capitală + ru = Столица + sk = Hlavné mesto + sv = Huvudstad + th = เมือง + tr = Başkent + uk = Столиця + vi = Thủ đô + zh-Hans = 首府 + zh-Hant = 首府 [type.place.city.capital.9] - ref = type.place.city + en = Capital + ar = عاصمة + cs = Hlavní město + da = Kapital + de = Hauptstadt + el = Πρωτεύουσα + fa = پایتخت + fi = Pääkaupunki + fr = Capitale + hu = Főváros + id = Ibu kota + it = Capitale + ja = 首都 + ko = 수도 + nb = Hovedstad + nl = Hoofdstad + pl = Stolica + pt = Capital + pt-BR = Capital + ro = Capitală + ru = Столица + sk = Hlavné mesto + sv = Huvudstad + th = เมือง + tr = Başkent + uk = Столиця + vi = Thủ đô + zh-Hans = 首府 + zh-Hant = 首府 [type.place.continent] en = Continent @@ -12664,7 +14968,6 @@ pt = Habitação isolada pt-BR = Habitação isolada ru = Жилище - uk = Житло zh-Hans = 孤立居所 [type.place.locality] @@ -12707,7 +15010,6 @@ pt = Bairro pt-BR = Bairro ru = Микрорайон - uk = Мiкрорайон zh-Hans = 街坊社区/小区 [type.place.ocean] @@ -12805,7 +15107,6 @@ pt = Praça ou largo pt-BR = Praça ou largo ru = Площадь - uk = Площа zh-Hans = 广场 [type.place.state] @@ -12974,7 +15275,6 @@ pt = Energia pt-BR = Energia ru = Энергетика - uk = Енергія zh-Hans = 电力要素 [type.power.generator] @@ -12983,8 +15283,7 @@ ja = 発電機 pt = Gerador de energia pt-BR = Gerador de energia - ru = Генератор - uk = Генератор + ru = Генератор энергии zh-Hans = 发电机 [type.power.line] @@ -12995,7 +15294,6 @@ pt = Linha de transmissão de energia pt-BR = Linha de transmissão de energia ru = Линия электропередач - uk = Лінія електропередач zh-Hans = 超高压输电线 [type.power.line.underground] @@ -13006,7 +15304,6 @@ pt = Linha de transmissão de energia subterrânea pt-BR = Linha de transmissão de energia subterrânea ru = Подземная линия электропередач - uk = Підземна лінія електропередач zh-Hans = 超高压输电线 [type.power.minor_line] @@ -13017,7 +15314,6 @@ pt = Linha de transmissão de energia de baixa tensão pt-BR = Linha de transmissão de energia de baixa tensão ru = Линия электропередачи низкого напряжения - uk = Лінія електропередач низької напруги zh-Hans = 超高压输电线 [type.power.pole] @@ -13060,7 +15356,6 @@ pt = Subestação elétrica pt-BR = Subestação elétrica ru = Электростанция - uk = Електростанція [type.power.substation] en = Substation @@ -13152,7 +15447,6 @@ pt = Transporte público pt-BR = Transporte público ru = Общественный транспорт - uk = Громадський транспорт zh-Hans = 公共交通要素 [type.public_transport.platform] @@ -13173,7 +15467,6 @@ pt = Ferrovia pt-BR = Ferrovia ru = Ж/Д - uk = Залізниця zh-Hans = 铁路要素 [type.railway.abandoned] @@ -13183,7 +15476,6 @@ pt = Ferrovia abandonada pt-BR = Ferrovia abandonada ru = Заброшенная железная дорога - uk = Закинута залізниця zh-Hans = 铁路遗迹 [type.railway.abandoned.bridge] @@ -13193,37 +15485,33 @@ pt = Ferrovia abandonada pt-BR = Ferrovia abandonada ru = Заброшенный железнодорожный мост - uk = Закинутий залізничний міст zh-Hans = 铁路遗迹 [type.railway.abandoned.tunnel] - en = Abandoned Railway + en = Abandoned railway de = Ehemaliger Eisenbahntunnel ja = 廃線(トンネル) pt = Ferrovia abandonada pt-BR = Ferrovia abandonada ru = Заброшенный железнодорожный туннель - uk = Закинутий залізничний тунель zh-Hans = 铁路遗迹 [type.railway.construction] - en = Railway's Construction + en = Railway's construction de = Eisenbahnstrecke im Bau ja = 建設中の鉄道 pt = Ferrovia em construção pt-BR = Ferrovia em construção ru = Строящаяся железная дорога - uk = Будівництво залізниці zh-Hans = 在建铁路 [type.railway.crossing] - en = Railway Crossing + en = Railway crossing de = Bahnübergang ja = 歩行者用踏切 pt = Passagem pedestre pt-BR = Passagem pedestre ru = Пешеходный переход - uk = Пішохідний перехід [type.railway.disused] en = Disused railway @@ -13232,7 +15520,6 @@ pt = Ferrovia em desuso pt-BR = Ferrovia em desuso ru = Неиспользуемая железная дорога - uk = Недійсна залізниця zh-Hans = 废弃铁路 [type.railway.funicular] @@ -13243,7 +15530,6 @@ pt = Funicular pt-BR = Funicular ru = Фуникулер - uk = Фунікулер zh-Hans = 缆索铁路轨道 [type.railway.funicular.bridge] @@ -13254,7 +15540,6 @@ pt = Funicular pt-BR = Funicular ru = Фуникулер - uk = Фунікулер zh-Hans = 缆索铁路轨道 [type.railway.funicular.tunnel] @@ -13265,7 +15550,6 @@ pt = Funicular pt-BR = Funicular ru = Фуникулер - uk = Фунікулер zh-Hans = 缆索铁路轨道 [type.railway.halt] @@ -13341,7 +15625,6 @@ pt = Metropolitano de superfície pt-BR = Metrô de superfície ru = Скоростной трамвай - uk = Швидкістний трамвай zh-Hans = 轻轨轨道 [type.railway.light_rail.bridge] @@ -13351,7 +15634,6 @@ pt = Metropolitano de superfície pt-BR = Metrô de superfície ru = Скоростной трамвай - uk = Швидкістний трамвай zh-Hans = 轻轨轨道 [type.railway.light_rail.tunnel] @@ -13361,7 +15643,6 @@ pt = Metropolitano de superfície pt-BR = Metrô de superfície ru = Скоростной трамвай - uk = Швидкістний трамвай zh-Hans = 轻轨轨道 [type.railway.monorail] @@ -13406,7 +15687,6 @@ pt = Monocarril pt-BR = Monotrilho ru = Монорельсовая железная дорога - uk = Монорейкова залізниця zh-Hans = 单轨轨道 zh-Hant = 單軌軌道 @@ -13418,7 +15698,6 @@ pt = Monocarril pt-BR = Monotrilho ru = Монорельсовая железная дорога - uk = Монорейкова залізниця zh-Hans = 单轨轨道 zh-Hant = 單軌軌道 @@ -13429,7 +15708,6 @@ pt = Caminho de ferro de via estreita pt-BR = Caminho de ferro de via estreita ru = Узкоколейка - uk = Вузькоколійка zh-Hans = 窄轨铁路轨道 [type.railway.narrow_gauge.bridge] @@ -13439,7 +15717,6 @@ pt = Caminho de ferro de via estreita pt-BR = Caminho de ferro de via estreita ru = Узкоколейка - uk = Вузькоколійка zh-Hans = 窄轨铁路轨道 [type.railway.narrow_gauge.tunnel] @@ -13449,7 +15726,6 @@ pt = Caminho de ferro de via estreita pt-BR = Caminho de ferro de via estreita ru = Узкоколейка - uk = Вузькоколійка zh-Hans = 窄轨铁路轨道 [type.railway.platform] @@ -13459,7 +15735,6 @@ pt = Plataforma ferroviária pt-BR = Plataforma ferroviária ru = Железнодорожная платформа - uk = Залізнична платформа zh-Hans = 火车站台 [type.railway.preserved] @@ -13469,7 +15744,6 @@ pt = Ferrovia preservada pt-BR = Ferrovia preservada ru = Законсервированная Ж/Д - uk = Законсервована залізниця [type.railway.preserved.bridge] en = Preserved Rail @@ -13478,7 +15752,6 @@ pt = Ferrovia preservada pt-BR = Ferrovia preservada ru = Законсервированная Ж/Д - uk = Законсервована залізниця [type.railway.preserved.tunnel] en = Preserved Rail @@ -13487,7 +15760,6 @@ pt = Ferrovia preservada pt-BR = Ferrovia preservada ru = Законсервированная Ж/Д - uk = Законсервована залізниця [type.railway.rail] en = Railway @@ -13518,7 +15790,7 @@ sw = Njia ya Reli th = รถไฟ tr = Demiryolu - uk = Залізнична дорога + uk = Залізна дорога vi = Đường sắt zh-Hans = 铁路轨道 zh-Hant = 鐵路軌道 @@ -13530,7 +15802,6 @@ pt = Ferrovia pt-BR = Ferrovia ru = Железнодорожный мост - uk = Залізничний міст zh-Hans = 铁路轨道 zh-Hant = 鐵路軌道 @@ -13541,7 +15812,6 @@ pt = Ferrovia pt-BR = Ferrovia ru = Железная дорога - uk = Залізниця zh-Hans = 铁路轨道 zh-Hant = 鐵路軌道 @@ -13552,7 +15822,6 @@ pt = Ferrovia pt-BR = Ferrovia ru = Железнодорожный туннель - uk = Залізничний тунель zh-Hans = 铁路轨道 zh-Hant = 鐵路軌道 @@ -13563,7 +15832,6 @@ pt = Ferrovia removida pt-BR = Ferrovia removida ru = Заброшенная Ж/Д - uk = Закинута залізниця [type.railway.siding] en = Siding Rail @@ -13572,7 +15840,6 @@ pt = Desvio de ferrovia pt-BR = Desvio de ferrovia ru = Ветка Ж/Д - uk = Гілка залізниці [type.railway.siding.bridge] en = Siding Rail @@ -13581,7 +15848,6 @@ pt = Desvio de ferrovia pt-BR = Desvio de ferrovia ru = Ветка Ж/Д - uk = Гілка залізниці [type.railway.siding.tunnel] en = Siding Rail @@ -13590,7 +15856,6 @@ pt = Desvio de ferrovia pt-BR = Desvio de ferrovia ru = Ветка Ж/Д - uk = Гілка залізниці [type.railway.spur] en = Spur Rail @@ -13599,7 +15864,6 @@ pt = Ramal de ferrovia pt-BR = Ramal de ferrovia ru = Подъездная Ж/Д - uk = Під'їздна залізниця [type.railway.spur.bridge] en = Spur Rail @@ -13608,7 +15872,6 @@ pt = Ramal de ferrovia pt-BR = Ramal de ferrovia ru = Подъездная Ж/Д - uk = Під'їздна залізниця [type.railway.spur.tunnel] en = Spur Rail @@ -13617,7 +15880,6 @@ pt = Ramal de ferrovia pt-BR = Ramal de ferrovia ru = Подъездная Ж/Д - uk = Під'їздна залізниця [type.railway.station] en = Train Station @@ -14102,11 +16364,11 @@ [type.railway.subway] en = Subway Line de = U-Bahn + fr = Voie de métro fr = Ligne de métroo pt = Metropolitano pt-BR = Metrô ru = Ветка метро - uk = Лінія метро [type.railway.subway.bridge] en = Subway Line @@ -14115,7 +16377,6 @@ pt = Metropolitano pt-BR = Metrô ru = Ветка метро - uk = Лінія метро [type.railway.subway.tunnel] en = Subway Line @@ -14124,7 +16385,6 @@ pt = Metropolitano pt-BR = Metrô ru = Ветка метро - uk = Лінія метро [type.railway.subway_entrance] en = Subway Entrance @@ -14520,7 +16780,6 @@ pt = Linha de elétrico pt-BR = Linha de bonde ru = Трамвай - uk = Трамвай zh-Hans = 电车轨道 zh-Hant = 電車軌道 @@ -14532,7 +16791,6 @@ pt = Linha de elétrico pt-BR = Linha de bonde ru = Трамвай - uk = Трамвай zh-Hans = 电车轨道 zh-Hant = 電車軌道 @@ -14544,7 +16802,6 @@ pt = Linha de elétrico pt-BR = Linha de bonde ru = Трамвай - uk = Трамвай zh-Hans = 电车轨道 zh-Hant = 電車軌道 @@ -14587,7 +16844,6 @@ pt = Pátio de manobras ferroviárias pt-BR = Pátio de manobras ferroviárias ru = Ж/Д площадка - uk = Залізнична ділянка zh-Hans = 铁路货场 [type.railway.yard.bridge] @@ -14597,7 +16853,6 @@ pt = Pátio de manobras ferroviárias pt-BR = Pátio de manobras ferroviárias ru = Ж/Д площадка - uk = Залізнична ділянка zh-Hans = 铁路货场 [type.railway.yard.tunnel] @@ -14607,7 +16862,6 @@ pt = Pátio de manobras ferroviárias pt-BR = Pátio de manobras ferroviárias ru = Ж/Д площадка - uk = Залізнична ділянка zh-Hans = 铁路货场 [type.route] @@ -14617,7 +16871,6 @@ pt = Rota pt-BR = Rota ru = Маршрут - uk = Маршрут zh-Hans = 线路 [type.route.ferry] @@ -14628,7 +16881,6 @@ pt = Rota de ferry pt-BR = Rota de balsa ru = Паромная переправа - uk = Паромна переправа zh-Hans = 航线 [type.route.shuttle_train] @@ -14825,7 +17077,7 @@ sv = Cykelaffär th = จักรยาน tr = Bisiklet - uk = Веломагазин + uk = Веломагазін vi = Cửa hàng xe đạp zh-Hans = 自行车店 zh-Hant = 自行車店 @@ -15394,7 +17646,7 @@ sv = Järnhandel th = ร้านขายฮาร์ดแวร์ tr = Hırdavatçı - uk = Господарськi товари + uk = Будматеріали vi = Cửa hàng phần cứng zh-Hans = 家居用品店 zh-Hant = 五金行 @@ -15458,7 +17710,7 @@ sv = Elektronik th = ร้านขายอุปกรณ์อิเล็กทรอนิกส์ tr = Elektronik mağazası - uk = Електротехнiка + uk = Електротехнічний магазин vi = Cửa hàng điện zh-Hans = 电子产品商店 zh-Hant = 電子產品 @@ -15714,7 +17966,7 @@ sv = Grönsakshandlare th = ร้านขายผัด tr = Manav - uk = Овочі та фрукти + uk = Магазин овочів vi = Cửa hàng rau củ zh-Hans = 蔬果零售店 zh-Hant = 蔬果零售店 @@ -16314,7 +18566,7 @@ sv = Fiskhandlare th = ร้านขายปลา tr = Poissonnier - uk = Рибна лавка + uk = Рибна крамниця vi = Người bán cá zh-Hans = 鱼商 zh-Hant = 魚販 @@ -16410,7 +18662,7 @@ sv = Pappershandel th = ร้านขายเครื่องเขียน tr = Kırtasiye Dükkanı - uk = Канцелярськi товари + uk = Магазин канцелярських товарів vi = Cửa hàng văn phòng phẩm zh-Hans = 文具店 zh-Hant = 文具用品店 @@ -16533,7 +18785,7 @@ sv = Biljettkontor th = จุดจำหน่ายตั๋ว tr = Billetterie - uk = Квитковий кiоск + uk = Білетна каса vi = Phòng vé zh-Hans = 售票处 zh-Hant = 售票處 @@ -16661,7 +18913,7 @@ sv = Diverseaffär th = ร้านค้าปลีกอิสระ tr = Ucuz Ürünler Mağazası - uk = Магазин корисних товарів + uk = Магазин господарських товарів vi = Cửa hàng tiện lợi zh-Hans = 杂货店 zh-Hant = 雜貨店 @@ -16774,7 +19026,6 @@ pt = Desporto pt-BR = Esporte ru = Спорт - uk = Спорт [type.sport.american_football] en = American Football @@ -16785,7 +19036,6 @@ pt = Futebol americano pt-BR = Futebol americano ru = Американский футбол - uk = Американський футбол [type.sport.archery] en = Archery @@ -16797,7 +19047,6 @@ pt = Tiro com arco pt-BR = Tiro com arco ru = Стрельба из лука - uk = Стрiльба з лука [type.sport.athletics] en = Athletics @@ -16840,7 +19089,6 @@ pt = Futebol australiano pt-BR = Futebol australiano ru = Регби - uk = Регбi [type.sport.baseball] en = Baseball @@ -16850,7 +19098,6 @@ pt = Beisebol pt-BR = Beisebol ru = Бейсбол - uk = Бейсбол zh-Hans = 棒球 [type.sport.basketball] @@ -16896,7 +19143,6 @@ pt = Bowls pt-BR = Bowls ru = Кегли - uk = Кеглi zh-Hans = 保龄球 [type.sport.cricket] @@ -16908,7 +19154,6 @@ pt = Críquete pt-BR = Críquete ru = Крикет - uk = Крикет zh-Hans = 板球 [type.sport.curling] @@ -16919,7 +19164,6 @@ pt = Curling pt-BR = Curling ru = Керлинг - uk = Керлiнг [type.sport.diving] en = Diving @@ -16928,7 +19172,6 @@ pt = Mergulho pt-BR = Mergulho ru = Подводное плавание - uk = Пiдводне плавання zh-Hans = 跳水 [type.sport.equestrian] @@ -16974,7 +19217,6 @@ pt = Golfe pt-BR = Golfe ru = Гольф - uk = Гольф zh-Hans = 高尔夫球 [type.sport.gymnastics] @@ -16987,7 +19229,6 @@ pt = Ginástica pt-BR = Ginástica ru = Гимнастика - uk = Гiмнастика zh-Hans = 体操 [type.sport.handball] @@ -16999,7 +19240,6 @@ pt = Andebol pt-BR = Andebol ru = Гандбол - uk = Гандбол zh-Hans = 手球 [type.sport.multi] @@ -17009,7 +19249,6 @@ pt = Vários desportos pt-BR = Vários desportos ru = Различные виды спорта - uk = Рiзноманiтнi типи спорту zh-Hans = 多元 [type.sport.scuba_diving] @@ -17021,7 +19260,6 @@ pt = Mergulho autónomo pt-BR = Mergulho autônomo ru = Акваланг - uk = Акваланг [type.sport.shooting] en = Shooting @@ -17033,7 +19271,6 @@ pt = Tiro desportivo pt-BR = Tiro esportivo ru = Стрельба - uk = Стрiльба zh-Hans = 射击 [type.sport.skiing] @@ -17045,7 +19282,6 @@ pt = Esqui pt-BR = Esqui ru = Лыжи - uk = Лижi [type.sport.soccer] en = Soccer (Football) @@ -17056,7 +19292,6 @@ pt = Futebol pt-BR = Futebol ru = Футбол - uk = Футбол zh-Hans = 足球 [type.sport.swimming] @@ -17069,7 +19304,6 @@ pt = Natação desportiva pt-BR = Natação esportiva ru = Плавание - uk = Плавання zh-Hans = 游泳 [type.sport.tennis] @@ -17115,7 +19349,6 @@ pt = Turismo pt-BR = Turismo ru = Туризм - uk = Туризм zh-Hans = 旅游要素 [type.tourism.alpine_hut] @@ -17208,7 +19441,7 @@ sv = Konstverk th = งานศิลปะ tr = Turizm - uk = Витвір мистецтва + uk = Твір мистецтва vi = Du lịch zh-Hans = 艺术品 zh-Hant = 藝術品 @@ -17240,7 +19473,7 @@ sv = Konstverk th = งานศิลปะ tr = Turizm - uk = Витвір мистецтва + uk = Твір мистецтва vi = Du lịch zh-Hans = 艺术品 zh-Hant = 藝術品 @@ -17272,7 +19505,7 @@ sv = Konstverk th = งานศิลปะ tr = Turizm - uk = Витвір мистецтва + uk = Твір мистецтва vi = Du lịch zh-Hans = 油画 zh-Hant = 藝術品 @@ -17304,7 +19537,7 @@ sv = Konstverk th = งานศิลปะ tr = Turizm - uk = Витвір мистецтва + uk = Твір мистецтва vi = Du lịch zh-Hans = 雕塑 zh-Hant = 藝術品 @@ -17336,7 +19569,7 @@ sv = Konstverk th = งานศิลปะ tr = Turizm - uk = Витвір мистецтва + uk = Твір мистецтва vi = Du lịch zh-Hans = 雕像 zh-Hant = 藝術品 @@ -17607,8 +19840,8 @@ [type.tourism.hotel] en = Hotel - ar = فندق de = Hotel + ar = فندق el = Ξενοδοχείο fa = هتل fi = Hotelli @@ -17631,10 +19864,10 @@ [type.tourism.information] en = Tourist Information + de = Touristeninformation ar = معلومات سياحية cs = Infocentrum da = Turistinformation - de = Touristeninformation el = Τουριστικές πληροφορίες es = Información fa = گردشگری @@ -17924,7 +20157,7 @@ sv = Attraktion th = สถานที่ท่องเที่ยว tr = Görülecek yerler - uk = Парк розваг + uk = Пам’ятні місця vi = Diểm tham quan zh-Hans = 主题公园 zh-Hant = 旅遊景點 @@ -18028,7 +20261,6 @@ pt = Redutor de velocidade pt-BR = Redutor de velocidade ru = Лежачий полицейский - uk = Лежачий полiцейський [type.traffic_calming.bump] en = Traffic Bump @@ -18040,7 +20272,6 @@ pt = Lomba pt-BR = Quebra-molas ru = Лежачий полицейский - uk = Лежачий полiцейський [type.traffic_calming.hump] en = Traffic Hump @@ -18051,7 +20282,6 @@ pt = Lomba longa pt-BR = Quebra-molas longa ru = Лежачий полицейский - uk = Лежачий полiцейський [type.waterway] en = Waterway @@ -18061,7 +20291,6 @@ pt = Curso de água pt-BR = Curso de água ru = Водный путь - uk = Водяний шлях zh-Hans = 航道要素 [type.waterway.canal] @@ -18130,8 +20359,7 @@ ja = ダム pt = Barragem pt-BR = Usina - ru = Дамба - uk = Дамба + ru = Плотина zh-Hans = 水坝 [type.waterway.ditch] @@ -18143,7 +20371,6 @@ pt = Vala pt-BR = Vala ru = Канава - uk = Канава zh-Hans = 水沟 [type.waterway.ditch.tunnel] @@ -18154,7 +20381,6 @@ pt = Vala pt-BR = Vala ru = Канава - uk = Канава zh-Hans = 水沟 [type.waterway.dock] @@ -18166,7 +20392,6 @@ pt = Doca pt-BR = Doca ru = Причал - uk = Причал zh-Hans = 船坞 [type.waterway.drain] @@ -18176,7 +20401,6 @@ pt = Valeta de drenagem pt-BR = Valeta de drenagem ru = Водоотвод - uk = Водовiдвiд zh-Hans = 渠 [type.waterway.drain.tunnel] @@ -18186,7 +20410,6 @@ pt = Valeta de drenagem pt-BR = Valeta de drenagem ru = Водоотвод - uk = Водовiдвiд zh-Hans = 渠 [type.waterway.lock] @@ -18196,7 +20419,6 @@ pt = Eclusa pt-BR = Eclusa ru = Шлюз - uk = Шлюз [type.waterway.lock_gate] en = Lock Gate @@ -18231,8 +20453,8 @@ [type.waterway.river] en = River - ar = نهر be = Рака + ar = نهر cs = Řeka da = Flod de = Fluss @@ -18264,8 +20486,8 @@ [type.waterway.river.tunnel] en = River - ar = نهر be = Рака + ar = نهر cs = Řeka da = Flod de = Fluss @@ -18297,8 +20519,8 @@ [type.waterway.riverbank] en = River - ar = نهر be = Рака + ar = نهر cs = Řeka da = Flod de = Flussufer @@ -18330,8 +20552,8 @@ [type.waterway.stream] en = River - ar = نهر be = Рака + ar = نهر cs = Řeka da = Flod de = Bach @@ -18363,8 +20585,8 @@ [type.waterway.stream.ephemeral] en = River - ar = نهر be = Рака + ar = نهر cs = Řeka da = Flod de = Bach @@ -18396,8 +20618,8 @@ [type.waterway.stream.intermittent] en = River - ar = نهر be = Рака + ar = نهر cs = Řeka da = Flod de = Bach @@ -18429,8 +20651,8 @@ [type.waterway.stream.tunnel] en = River - ar = نهر be = Рака + ar = نهر cs = Řeka da = Flod de = Bach @@ -18499,7 +20721,6 @@ pt = Represa pt-BR = Açude ru = Плотина - uk = Гребля zh-Hans = 堰 [type.wheelchair] @@ -18510,7 +20731,6 @@ pt = Cadeiras de rodas pt-BR = Cadeiras de rodas ru = Инвалидная коляска - uk = Iнвалiдний вiзок zh-Hans = 轮椅 [type.wheelchair.limited] @@ -18621,7 +20841,6 @@ pt = Telesqui pt-BR = Telesqui ru = Подъёмник - uk = Пiдйомник [type.piste_lift.j.bar] en = piste:lift-j-bar @@ -18629,7 +20848,6 @@ pt = Telesqui de barra em J pt-BR = Telesqui de barra em J ru = Подъёмник - uk = Пiдйомник [type.piste_lift.magic_carpet] en = piste:lift-magic_carpet @@ -18637,7 +20855,6 @@ pt = Tapete deslizante pt-BR = Tapete deslizante ru = Ленточный конвейер - uk = Стрiчковий конвеєр [type.piste_lift.platter] en = piste:lift-platter @@ -18645,7 +20862,6 @@ pt = Telesqui de disco pt-BR = Telesqui de disco ru = Подъёмник - uk = Пiдйомник [type.piste_lift.rope_tow] en = piste:lift-rope_tow @@ -18653,7 +20869,6 @@ pt = Telesqui de corda pt-BR = Telesqui de corda ru = Подъёмник - uk = Пiдйомник [type.piste_lift.t.bar] en = piste:lift-t-bar @@ -18661,7 +20876,6 @@ pt = Telesqui de barra em T pt-BR = Telesqui de barra em T ru = Подъёмник - uk = Пiдйомник [type.piste_type] en = piste:type @@ -18669,7 +20883,6 @@ pt = Tipo de pista pt-BR = Tipo de pista ru = Тип трассы - uk = Тип дороги [type.piste_type.downhill] en = piste:type-downhill @@ -18678,7 +20891,6 @@ pt = Esqui alpino pt-BR = Esqui alpino ru = Горнолыжная трасса - uk = Гірськолижна траса [type.piste_type.downhill.advanced] en = piste:type-downhill-advanced @@ -18686,7 +20898,6 @@ pt = Esqui alpino avançado pt-BR = Esqui alpino avançado ru = Продвинутая горнолыжная трасса - uk = Доповнена гірськолижна траса [type.piste_type.downhill.easy] en = piste:type-downhill-easy @@ -18694,7 +20905,6 @@ pt = Esqui alpino fácil pt-BR = Esqui alpino fácil ru = Лёгкая горнолыжная трасса - uk = Легка гірськолижна траса [type.piste_type.downhill.expert] en = piste:type-downhill-expert @@ -18702,14 +20912,12 @@ pt = Esqui alpino avançado pt-BR = Esqui alpino avançado ru = Горнолыжная трасса для экспертов - uk = Гірськолижна траса для експертів [type.piste_type.downhill.freeride] en = piste:type-downhill-freeride pt = Esqui alpino livre pt-BR = Esqui alpino livre ru = Горнолыжная трасса для фрирайда - uk = Гірськолижна траса вільного спуска [type.piste_type.downhill.intermediate] en = piste:type-downhill-intermediate @@ -18717,7 +20925,6 @@ pt = Esqui alpino intermédio pt-BR = Esqui alpino intermédio ru = Горнолыжная трасса средней сложности - uk = Гірськолижна траса середнього рівня [type.piste_type.downhill.novice] en = piste:type-downhill-novice @@ -18725,7 +20932,6 @@ pt = Esqui alpino iniciante pt-BR = Esqui alpino iniciante ru = Горнолыжная трасса для новичков - uk = Гірськолижна траса для новеньких [type.piste_type.nordic] en = piste:type-nordic @@ -18734,7 +20940,6 @@ pt = Pista tipo nórdico pt-BR = Pista tipo nórdico ru = Трасса для скандинавской ходьбы - uk = Траса для скандинавської ходьби [type.piste_type.sled] en = piste:type-sled @@ -18742,7 +20947,6 @@ pt = Pista para trenós pt-BR = Pista para trenós ru = Трасса для саней - uk = Траса для санок [type.building_part] en = Building @@ -18775,3 +20979,118 @@ vi = Tòa nhà zh-Hans = 建筑部分 zh-Hant = 建築物 + + [type.area_highway.cycleway] + en = Bike Path + de = Radweg + fi = Pyörätie + fr = Piste cyclable + pt = Ciclovia + pt-BR = Ciclovia + ru = Велодорожка + + [type.area_highway.footway] + en = Path + de = Weg + fi = Kävelytie + fr = Chemin + pt = Caminho pedonal + pt-BR = Caminho pedonal + ru = Дорожка + + [type.area_highway.living_street] + en = Street + de = Wohnstraße + fr = Zone de rencontre + pt = Zona de coexistência + pt-BR = Zona de coexistência + ru = Улица + + [type.area_highway.motorway] + en = area:highway-motorway + de = Autobahn + fi = Moottoritie + fr = Autoroute + pt = Autoestrada + pt-BR = Rodovia + ru = Автомагистраль + + [type.area_highway.path] + en = Path + de = Weg + fi = Polku + fr = Chemin + pt = Caminho + pt-BR = Caminho + ru = Дорожка + + [type.area_highway.pedestrian] + en = Street + fi = Kävelykatu + fr = Rue piétonne + pt = Rua pedonal + pt-BR = Rua pedonal + ru = Улица + + [type.area_highway.primary] + en = Street + fr = Rue + pt = Estrada primária + pt-BR = Estrada + ru = Улица + + [type.area_highway.residential] + en = Street + fi = Katu + fr = Rue + pt = Rua residencial + pt-BR = Rua residencial + ru = Улица + + [type.area_highway.secondary] + en = Street + fr = Rue + pt = Estrada secundária + pt-BR = Estrada + ru = Улица + + [type.area_highway.service] + en = Street + fr = Rue + pt = Estrada de acesso ou serviço + pt-BR = Estrada de acesso ou serviço + ru = Улица + + [type.area_highway.tertiary] + en = Street + fr = Rue + pt = Estrada terciária + pt-BR = Estrada + ru = Улица + + [type.area_highway.steps] + en = Steps + fi = Portaat + fr = Escaliers + pt = Escadas + pt-BR = Escadas + ru = Лестница + + [type.area_highway.track] + en = area:highway-track + pt = Pista para desportos não motorizados + pt-BR = Pista para desportos não motorizados + ru = Грунтовая дорога + + [type.area_highway.trunk] + en = area:highway-trunk + fr = Voie rapide + pt = Via rápida + pt-BR = Via expressa + ru = Автомобильная трасса + + [type.area_highway.unclassified] + en = area:highway-unclassified + fr = Rue + pt = Estrada sem classificação + pt-BR = Estrada sem classificação diff --git a/descriptions/CMakeLists.txt b/descriptions/CMakeLists.txt index d039dad442..82d9fbcfbf 100644 --- a/descriptions/CMakeLists.txt +++ b/descriptions/CMakeLists.txt @@ -10,9 +10,6 @@ set(SRC omim_add_library(${PROJECT_NAME} ${SRC}) -target_link_libraries(${PROJECT_NAME} - indexer # MwmHandle - coding -) +target_link_libraries(${PROJECT_NAME} coding) omim_add_test_subdirectory(descriptions_tests) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index fc57751cf9..976f1a4896 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -103,7 +103,7 @@ sudo dnf install -y \ sqlite-devel ``` -_macOS:_ +_macOS:_ ```bash brew install cmake qt@5 @@ -130,12 +130,20 @@ tools/unix/build_omim.sh -d help The generated binaries appear in `../omim-build-`. -A desktop app binary is `OMaps`. To run e.g. a release version: +Run `OMaps` binary from `../omim-build-`, for example, for release: _Linux:_ ```bash -../omim-build-release/OMaps +../omim-build-release/OMaps -data_path ./data +``` + +or create `data` symlink in build dir to `organicmaps/data` directory and run + +```bash +cd ../omim-build-release +ln -s ../organicmaps/data ./data +./OMaps -data_path ./data ``` _macOS:_ @@ -144,6 +152,13 @@ _macOS:_ ../omim-build-release/OMaps.app/Contents/MacOS/OMaps ``` +When using a lot of maps, increase open files limit, which is only 256 on Mac OS X. +Use `ulimit -n 2000`, put it into `~/.bash_profile` to apply it to all new sessions. +In OS X to increase this limit globally, add `limit maxfiles 2048 2048` to `/etc/launchd.conf` +and run + + echo 'ulimit -n 2048' | sudo tee -a /etc/profile + ### Testing Compile all unit tests in Debug mode: @@ -180,23 +195,6 @@ Some tests [are known to be broken](https://github.com/organicmaps/organicmaps/i ### More options -To make the desktop app display maps in a different language add a `-lang` option, e.g. for russian language: -```bash -../omim-build-release/OMaps -lang ru -``` - -By default `OMaps` expects a repository's `data` folder to be present in the current working dir, add a `-data_path` option to override it. - -Check `OMaps -help` for a list of all run-time options. - -When running the desktop app with a lot of maps increase open files limit, which is only 256 on Mac OS X. -Use `ulimit -n 2000`, put it into `~/.bash_profile` to apply it to all new sessions. -In OS X to increase this limit globally, add `limit maxfiles 2048 2048` to `/etc/launchd.conf` -and run -```bash -echo 'ulimit -n 2048' | sudo tee -a /etc/profile -``` - If you have Qt installed in an unusual directory, use `QT_PATH` variable (`SET (QT_PATH "your-path-to-qt")`). You can skip building tests with `CMAKE_CONFIG=-DSKIP_TESTS` variable. You would need 1.5 GB of memory to compile the `stats` module. @@ -224,7 +222,7 @@ Install Android SDK and NDK: - Select "Android 11.0 (R) / API Level 30" SDK. - Switch to "SDK Tools" tab - Check "Show Package Details" checkbox. -- Select "NDK (Side by side)" version **23.1.7779620**. +- Select "NDK (Side by side)" version **21.4.7075529**. - Select "CMake" version **3.18.1**. - Click "OK" and wait for downloads and installation to finish. @@ -365,7 +363,7 @@ You can install [Android SDK](https://developer.android.com/sdk/index.html) and [NDK](https://developer.android.com/tools/sdk/ndk/index.html) without Android Studio. Please make sure that SDK for API Level 30, -NDK version **23.1.7779620** and CMake version **3.18.1** are installed. +NDK version **21.4.7075529** and CMake version **3.18.1** are installed. If you are low on RAM, disk space or traffic there are ways to reduce system requirements: - in Android Studio enable "File > Power Save Mode"; diff --git a/drape/CMakeLists.txt b/drape/CMakeLists.txt index e0eedfa03d..a9c6930942 100644 --- a/drape/CMakeLists.txt +++ b/drape/CMakeLists.txt @@ -164,16 +164,18 @@ if (PLATFORM_LINUX) endif() target_link_libraries(${PROJECT_NAME} + PUBLIC + Freetype::Freetype + vulkan_wrapper + PRIVATE indexer platform geometry coding base - freetype - vulkan_wrapper stb_image sdf_image - icu + ICU::i18n expat $<$:-framework\ OpenGL> $<$:OpenGL::GL> diff --git a/drape/drape_tests/CMakeLists.txt b/drape/drape_tests/CMakeLists.txt index e4a811a24a..65c05b0021 100644 --- a/drape/drape_tests/CMakeLists.txt +++ b/drape/drape_tests/CMakeLists.txt @@ -8,6 +8,7 @@ set(SRC buffer_tests.cpp dummy_texture.hpp font_texture_tests.cpp + gl_functions.cpp gl_mock_functions.cpp gl_mock_functions.hpp glyph_mng_tests.cpp diff --git a/drape/drape_tests/img.hpp b/drape/drape_tests/img.hpp index 3efda89467..61e0f369c1 100644 --- a/drape/drape_tests/img.hpp +++ b/drape/drape_tests/img.hpp @@ -1,5 +1,8 @@ #pragma once +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wshorten-64-to-32" #include +#pragma GCC diagnostic pop QImage CreateImage(uint32_t w, uint32_t h, const uint8_t * mem); diff --git a/drape/drape_tests/uniform_value_tests.cpp b/drape/drape_tests/uniform_value_tests.cpp index 56d3c83963..8318cdc507 100644 --- a/drape/drape_tests/uniform_value_tests.cpp +++ b/drape/drape_tests/uniform_value_tests.cpp @@ -20,7 +20,7 @@ using ::testing::Invoke; using ::testing::InSequence; using namespace dp; -namespace uniform_value_tests +namespace { template class MemoryComparer @@ -74,6 +74,7 @@ void mock_glGetActiveUniform(uint32_t programID, uint32_t index, int32_t * size, ASSERT(false, ("Undefined index:", index)); } } +} // namespace UNIT_TEST(UniformValueTest) { @@ -178,4 +179,3 @@ UNIT_TEST(UniformValueTest) vs.reset(); fs.reset(); } -} // namespace uniform_value_tests diff --git a/drape_frontend/apply_feature_functors.cpp b/drape_frontend/apply_feature_functors.cpp index 2ec519b70f..f3b74d0f0f 100644 --- a/drape_frontend/apply_feature_functors.cpp +++ b/drape_frontend/apply_feature_functors.cpp @@ -20,7 +20,6 @@ #include "indexer/road_shields_parser.hpp" #include "geometry/clipping.hpp" -#include "geometry/mercator.hpp" #include "geometry/smoothing.hpp" #include "drape/color.hpp" @@ -658,9 +657,10 @@ void ApplyAreaFeature::ProcessBuildingPolygon(m2::PointD const & p1, m2::PointD int ApplyAreaFeature::GetIndex(m2::PointD const & pt) { + double constexpr kEps = 1e-7; for (size_t i = 0; i < m_points.size(); i++) { - if (pt.EqualDxDy(m_points[i], mercator::kPointEqualityEps)) + if (pt.EqualDxDy(m_points[i], kEps)) return static_cast(i); } m_points.push_back(pt); diff --git a/drape_frontend/arrow3d.cpp b/drape_frontend/arrow3d.cpp index cf14ed9a5f..a45b72a897 100644 --- a/drape_frontend/arrow3d.cpp +++ b/drape_frontend/arrow3d.cpp @@ -14,12 +14,10 @@ namespace df { -namespace arrow3d { double constexpr kArrowSize = 12.0; double constexpr kArrow3dScaleMin = 1.0; double constexpr kArrow3dScaleMax = 2.2; int constexpr kArrow3dMinZoom = 16; -} // namespace arrow3d float constexpr kOutlineScale = 1.2f; @@ -42,12 +40,12 @@ Arrow3d::Arrow3d(ref_ptr context) 0.0f, 0.0f, -1.0f, 1.0f, 0.0f, 2.0f, 0.0f, 1.0f, 1.2f, -1.0f, 0.0f, 1.0f, 0.0f, 0.0f, -1.0f, 1.0f, 0.0f, -0.5f, 0.0f, 1.0f, -1.2f, -1.0f, 0.0f, 1.0f, 0.0f, 0.0f, -1.0f, 1.0f, 1.2f, -1.0f, 0.0f, 1.0f, 0.0f, -0.5f, 0.0f, 1.0f, - + 0.0f, 2.27f, 0.0f, 0.0f, 1.4f, -1.17f, 0.0f, 0.0f, 0.0f, 2.0f, 0.0f, 1.0f, 0.0f, 2.0f, 0.0f, 1.0f, 1.4f, -1.17f, 0.0f, 0.0f, 1.2f, -1.0f, 0.0f, 1.0f, 0.0f, 2.27f, 0.0f, 0.0f, 0.0f, 2.0f, 0.0f, 1.0f, -1.4f, -1.17f, 0.0f, 0.0f, 0.0f, 2.0f, 0.0f, 1.0f, -1.2f, -1.0f, 0.0f, 1.0f, -1.4f, -1.17f, 0.0f, 0.0f, - + 1.2f, -1.0f, 0.0f, 1.0f, 1.4f, -1.17f, 0.0f, 0.0f, 0.0f, -0.67f, 0.0f, 0.0f, 0.0f, -0.5f, 0.0f, 1.0f, 1.2f, -1.0f, 0.0f, 1.0f, 0.0f, -0.67f, 0.0f, 0.0f, -1.2f, -1.0f, 0.0f, 1.0f, 0.0f, -0.67f, 0.0f, 0.0f, -1.4f, -1.17f, 0.0f, 0.0f, @@ -76,7 +74,7 @@ Arrow3d::Arrow3d(ref_ptr context) double Arrow3d::GetMaxBottomSize() { double const kBottomSize = 1.0; - return kBottomSize * arrow3d::kArrowSize * arrow3d::kArrow3dScaleMax * kOutlineScale; + return kBottomSize * kArrowSize * kArrow3dScaleMax * kOutlineScale; } void Arrow3d::SetPosition(const m2::PointD & position) @@ -142,11 +140,11 @@ void Arrow3d::RenderArrow(ref_ptr context, ref_ptr Arrow3d::CalculateTransform(ScreenBase const & screen, float dz, float scaleFactor, dp::ApiVersion apiVersion) const { - double arrowScale = VisualParams::Instance().GetVisualScale() * arrow3d::kArrowSize * scaleFactor; + double arrowScale = VisualParams::Instance().GetVisualScale() * kArrowSize * scaleFactor; if (screen.isPerspective()) { - double const t = GetNormalizedZoomLevel(screen.GetScale(), arrow3d::kArrow3dMinZoom); - arrowScale *= (arrow3d::kArrow3dScaleMin * (1.0 - t) + arrow3d::kArrow3dScaleMax * t); + double const t = GetNormalizedZoomLevel(screen.GetScale(), kArrow3dMinZoom); + arrowScale *= (kArrow3dScaleMin * (1.0 - t) + kArrow3dScaleMax * t); } auto const scaleX = static_cast(arrowScale * 2.0 / screen.PixelRect().SizeX()); diff --git a/drape_frontend/circles_pack_shape.cpp b/drape_frontend/circles_pack_shape.cpp index 71eeceabda..b35c1cb46b 100644 --- a/drape_frontend/circles_pack_shape.cpp +++ b/drape_frontend/circles_pack_shape.cpp @@ -76,13 +76,13 @@ void CirclesPackHandle::GetAttributeMutation(ref_ptr return; TOffsetNode const & node = GetOffsetNode(kDynamicStreamID); - ASSERT_EQUAL(node.first.GetElementSize(), sizeof(CirclesPackDynamicVertex), ()); - ASSERT_EQUAL(node.second.m_count, m_buffer.size(), ()); + ASSERT(node.first.GetElementSize() == sizeof(CirclesPackDynamicVertex), ()); + ASSERT(node.second.m_count == m_buffer.size(), ()); - uint32_t const bytesCount = + uint32_t const byteCount = static_cast(m_buffer.size()) * sizeof(CirclesPackDynamicVertex); - void * buffer = mutator->AllocateMutationBuffer(bytesCount); - memcpy(buffer, m_buffer.data(), bytesCount); + void * buffer = mutator->AllocateMutationBuffer(byteCount); + memcpy(buffer, m_buffer.data(), byteCount); dp::MutateNode mutateNode; mutateNode.m_region = node.second; @@ -117,10 +117,11 @@ void CirclesPackHandle::GetPixelShape(ScreenBase const & screen, bool perspectiv void CirclesPackHandle::SetPoint(size_t index, m2::PointD const & position, float radius, dp::Color const & color) { - size_t const bufferIndex = index * dp::Batcher::VertexPerQuad; - ASSERT_LESS_OR_EQUAL(bufferIndex + dp::Batcher::VertexPerQuad, m_buffer.size(), ()); + size_t bufferIndex = index * dp::Batcher::VertexPerQuad; + ASSERT_GREATER_OR_EQUAL(bufferIndex, 0, ()); + ASSERT_LESS(bufferIndex, m_buffer.size(), ()); - for (size_t i = 0; i < dp::Batcher::VertexPerQuad; ++i) + for (size_t i = 0; i < dp::Batcher::VertexPerQuad; i++) { m_buffer[bufferIndex + i].m_position = glsl::vec3(position.x, position.y, radius); m_buffer[bufferIndex + i].m_color = glsl::ToVec4(color); @@ -144,13 +145,11 @@ void CirclesPackShape::Draw(ref_ptr context, ref_ptr staticVertexData; staticVertexData.reserve(data.m_pointsCount * kVerticesInPoint); - static_assert(kVerticesInPoint == 4, "According to the loop below"); - for (size_t i = 0; i < data.m_pointsCount; ++i) + for (size_t i = 0; i < data.m_pointsCount; i++) { staticVertexData.emplace_back(CirclesPackStaticVertex::TNormal(-1.0f, 1.0f, 1.0f)); staticVertexData.emplace_back(CirclesPackStaticVertex::TNormal(-1.0f, -1.0f, 1.0f)); diff --git a/drape_frontend/frontend_renderer.cpp b/drape_frontend/frontend_renderer.cpp index 21ae045514..f5ed89f389 100755 --- a/drape_frontend/frontend_renderer.cpp +++ b/drape_frontend/frontend_renderer.cpp @@ -2727,7 +2727,7 @@ m2::AnyRectD TapInfo::GetRoutingPointTapRect(m2::PointD const & mercator, Screen } // static -m2::AnyRectD TapInfo::GetPreciseTapRect(m2::PointD const & mercator, double eps) +m2::AnyRectD TapInfo::GetPreciseTapRect(m2::PointD const & mercator, double const eps) { return m2::AnyRectD(mercator, ang::AngleD(0.0) /* angle */, m2::RectD(-eps, -eps, eps, eps)); } diff --git a/drape_frontend/frontend_renderer.hpp b/drape_frontend/frontend_renderer.hpp index 1d61bce6ad..8729182816 100755 --- a/drape_frontend/frontend_renderer.hpp +++ b/drape_frontend/frontend_renderer.hpp @@ -71,7 +71,7 @@ struct TapInfo static m2::AnyRectD GetBookmarkTapRect(m2::PointD const & mercator, ScreenBase const & screen); static m2::AnyRectD GetRoutingPointTapRect(m2::PointD const & mercator, ScreenBase const & screen); static m2::AnyRectD GetGuideTapRect(m2::PointD const & mercator, ScreenBase const & screen); - static m2::AnyRectD GetPreciseTapRect(m2::PointD const & mercator, double eps); + static m2::AnyRectD GetPreciseTapRect(m2::PointD const & mercator, double const eps); }; class FrontendRenderer : public BaseRenderer, diff --git a/drape_frontend/gps_track_renderer.cpp b/drape_frontend/gps_track_renderer.cpp index 2d0a3d3da6..b6b24f354e 100644 --- a/drape_frontend/gps_track_renderer.cpp +++ b/drape_frontend/gps_track_renderer.cpp @@ -117,7 +117,8 @@ void GpsTrackRenderer::UpdatePoints(std::vector const & toAdd, if (!toAdd.empty()) { ASSERT(is_sorted(toAdd.begin(), toAdd.end(), GpsPointsSortPredicate), ()); - ASSERT(m_points.empty() || GpsPointsSortPredicate(m_points.back(), toAdd.front()), ()); + if (!m_points.empty()) + ASSERT(GpsPointsSortPredicate(m_points.back(), toAdd.front()), ()); m_points.insert(m_points.end(), toAdd.begin(), toAdd.end()); wasChanged = true; } diff --git a/drape_frontend/my_position.cpp b/drape_frontend/my_position.cpp index 57d06d40fb..aa17125b07 100644 --- a/drape_frontend/my_position.cpp +++ b/drape_frontend/my_position.cpp @@ -17,7 +17,7 @@ namespace df { -namespace mp +namespace { df::ColorConstant const kMyPositionAccuracyColor = "MyPositionAccuracy"; @@ -52,7 +52,7 @@ dp::BindingInfo GetMarkerBindingInfo() return info; } -} // namespace mp +} // namespace MyPosition::MyPosition(ref_ptr context, ref_ptr mng) : m_position(m2::PointF::Zero()) @@ -159,10 +159,10 @@ void MyPosition::CacheAccuracySector(ref_ptr context, auto const etalonSector = static_cast(2.0 * math::pi / kTriangleCount); dp::TextureManager::ColorRegion color; - mng->GetColorRegion(df::GetColorConstant(mp::kMyPositionAccuracyColor), color); + mng->GetColorRegion(df::GetColorConstant(df::kMyPositionAccuracyColor), color); glsl::vec2 colorCoord = glsl::ToVec2(color.GetTexRect().Center()); - buffer_vector buffer; + buffer_vector buffer; glsl::vec2 startNormal(0.0f, 1.0f); for (size_t i = 0; i < kTriangleCount + 1; ++i) @@ -193,7 +193,7 @@ void MyPosition::CacheAccuracySector(ref_ptr context, }); dp::AttributeProvider provider(1 /* stream count */, kVertexCount); - provider.InitStream(0 /* stream index */, mp::GetMarkerBindingInfo(), make_ref(buffer.data())); + provider.InitStream(0 /* stream index */, GetMarkerBindingInfo(), make_ref(buffer.data())); m_parts[MyPositionAccuracy].first = batcher.InsertTriangleList(context, state, make_ref(&provider), nullptr); @@ -209,7 +209,7 @@ void MyPosition::CacheSymbol(ref_ptr context, m2::RectF const & texRect = symbol.GetTexRect(); m2::PointF const halfSize = symbol.GetPixelSize() * 0.5f; - mp::MarkerVertex data[4] = + MarkerVertex data[4] = { { glsl::vec2(-halfSize.x, halfSize.y), glsl::ToVec2(texRect.LeftTop()) }, { glsl::vec2(-halfSize.x, -halfSize.y), glsl::ToVec2(texRect.LeftBottom()) }, @@ -218,7 +218,7 @@ void MyPosition::CacheSymbol(ref_ptr context, }; dp::AttributeProvider provider(1 /* streamCount */, dp::Batcher::VertexPerQuad); - provider.InitStream(0 /* streamIndex */, mp::GetMarkerBindingInfo(), make_ref(data)); + provider.InitStream(0 /* streamIndex */, GetMarkerBindingInfo(), make_ref(data)); m_parts[part].first = batcher.InsertTriangleStrip(context, state, make_ref(&provider), nullptr); ASSERT(m_parts[part].first.IsValid(), ()); } diff --git a/drape_frontend/path_text_handle.cpp b/drape_frontend/path_text_handle.cpp index a3aade16ae..5fb3e50b5d 100644 --- a/drape_frontend/path_text_handle.cpp +++ b/drape_frontend/path_text_handle.cpp @@ -10,9 +10,9 @@ namespace df namespace { -double const kValidPathSplineTurn = 15 * math::pi / 180; -double const kCosTurn = cos(kValidPathSplineTurn); -double const kSinTurn = sin(kValidPathSplineTurn); +double const kValidSplineTurn = 15 * math::pi / 180; +double const kCosTurn = cos(kValidSplineTurn); +double const kSinTurn = sin(kValidSplineTurn); double const kRoundStep = 23; int const kMaxStepsCount = 7; @@ -91,7 +91,7 @@ void AddPointAndRound(m2::Spline & spline, m2::PointD const & pt) double const dotProduct = m2::DotProduct(dir1, dir2); if (dotProduct < kCosTurn) { - int leftStepsCount = static_cast(acos(dotProduct) / kValidPathSplineTurn); + int leftStepsCount = static_cast(acos(dotProduct) / kValidSplineTurn); std::vector roundedCorner; while (leftStepsCount > 0 && leftStepsCount <= kMaxStepsCount && RoundCorner(spline.GetPath()[spline.GetSize() - 2], diff --git a/drape_frontend/read_metaline_task.cpp b/drape_frontend/read_metaline_task.cpp index 7850f9ad6d..27c7514035 100644 --- a/drape_frontend/read_metaline_task.cpp +++ b/drape_frontend/read_metaline_task.cpp @@ -10,8 +10,6 @@ #include "coding/reader_wrapper.hpp" #include "coding/varint.hpp" -#include "geometry/mercator.hpp" - #include "indexer/feature_decl.hpp" #include "indexer/scales.hpp" @@ -24,6 +22,8 @@ namespace { +double const kPointEqualityEps = 1e-7; + struct MetalineData { std::vector m_features; @@ -31,7 +31,7 @@ struct MetalineData }; std::vector ReadMetalinesFromFile(MwmSet::MwmId const & mwmId) -{ +{ try { std::vector model; @@ -81,7 +81,7 @@ std::map> ReadPoints(df::MapDataProvider & mo featurePoints.reserve(5); ft.ForEachPoint([&featurePoints](m2::PointD const & pt) { - if (featurePoints.empty() || !featurePoints.back().EqualDxDy(pt, mercator::kPointEqualityEps)) + if (featurePoints.empty() || !featurePoints.back().EqualDxDy(pt, kPointEqualityEps)) featurePoints.push_back(pt); }, scales::GetUpperScale()); @@ -117,7 +117,7 @@ std::vector MergePoints(std::map> ASSERT(it != points.cend(), ()); for (auto const & pt : it->second) { - if (result.empty() || !result.back().EqualDxDy(pt, mercator::kPointEqualityEps)) + if (result.empty() || !result.back().EqualDxDy(pt, kPointEqualityEps)) result.push_back(pt); } } diff --git a/drape_frontend/route_shape.cpp b/drape_frontend/route_shape.cpp index 6a76c35f03..460c9100b4 100644 --- a/drape_frontend/route_shape.cpp +++ b/drape_frontend/route_shape.cpp @@ -45,7 +45,7 @@ std::array const kRouteHalfWidthInPixelOthers = 1.5f, 1.7f, 2.3f, 2.7f, 3.5, 4.5f, 5.0f, 7.0f, 11.0f, 13.0f }; -namespace rs +namespace { float const kLeftSide = 1.0f; float const kCenter = 0.0f; @@ -166,7 +166,7 @@ glsl::vec3 MarkerNormal(float x, float y, float z, float cosAngle, float sinAngl { return glsl::vec3(x * cosAngle - y * sinAngle, x * sinAngle + y * cosAngle, z); } -} // namespace rs +} // namespace void Subroute::AddStyle(SubrouteStyle const & style) { @@ -205,7 +205,7 @@ void RouteShape::PrepareGeometry(std::vector const & path, m2::Point double constexpr kMinExtent = mercator::Bounds::kRangeX / (1 << 10); float depth = baseDepth; - float const depthStep = rs::kRouteDepth / (1 + segments.size()); + float const depthStep = kRouteDepth / (1 + segments.size()); for (auto i = static_cast(segments.size() - 1); i >= 0; i--) { auto & geomBufferData = geometryBufferData.back(); @@ -240,22 +240,22 @@ void RouteShape::PrepareGeometry(std::vector const & path, m2::Point float const projRightEnd = segments[i].m_rightWidthScalar[EndPoint].y; geometry.emplace_back(startPivot, glsl::vec2(0, 0), - glsl::vec3(startLength, 0, rs::kCenter), segments[i].m_color); + glsl::vec3(startLength, 0, kCenter), segments[i].m_color); geometry.emplace_back(startPivot, leftNormalStart, - glsl::vec3(startLength, projLeftStart, rs::kLeftSide), segments[i].m_color); + glsl::vec3(startLength, projLeftStart, kLeftSide), segments[i].m_color); geometry.emplace_back(endPivot, glsl::vec2(0, 0), - glsl::vec3(length, 0, rs::kCenter), segments[i].m_color); + glsl::vec3(length, 0, kCenter), segments[i].m_color); geometry.emplace_back(endPivot, leftNormalEnd, - glsl::vec3(length, projLeftEnd, rs::kLeftSide), segments[i].m_color); + glsl::vec3(length, projLeftEnd, kLeftSide), segments[i].m_color); geometry.emplace_back(startPivot, rightNormalStart, - glsl::vec3(startLength, projRightStart, rs::kRightSide), segments[i].m_color); + glsl::vec3(startLength, projRightStart, kRightSide), segments[i].m_color); geometry.emplace_back(startPivot, glsl::vec2(0, 0), - glsl::vec3(startLength, 0, rs::kCenter), segments[i].m_color); + glsl::vec3(startLength, 0, kCenter), segments[i].m_color); geometry.emplace_back(endPivot, rightNormalEnd, - glsl::vec3(length, projRightEnd, rs::kRightSide), segments[i].m_color); + glsl::vec3(length, projRightEnd, kRightSide), segments[i].m_color); geometry.emplace_back(endPivot, glsl::vec2(0, 0), - glsl::vec3(length, 0, rs::kCenter), segments[i].m_color); + glsl::vec3(length, 0, kCenter), segments[i].m_color); auto & joinsGeometry = geomBufferData.m_joinsGeometry; @@ -275,8 +275,8 @@ void RouteShape::PrepareGeometry(std::vector const & path, m2::Point GenerateJoinNormals(dp::RoundJoin, n1, n2, 1.0f, segments[i].m_hasLeftJoin[EndPoint], widthScalar, normals); - rs::GenerateJoinsTriangles(endPivot, normals, segments[i].m_color, glsl::vec2(length, 0), - segments[i].m_hasLeftJoin[EndPoint], joinsGeometry); + GenerateJoinsTriangles(endPivot, normals, segments[i].m_color, glsl::vec2(length, 0), + segments[i].m_hasLeftJoin[EndPoint], joinsGeometry); } // Generate caps. @@ -288,8 +288,8 @@ void RouteShape::PrepareGeometry(std::vector const & path, m2::Point segments[i].m_rightNormals[StartPoint], -segments[i].m_tangent, 1.0f, true /* isStart */, normals); - rs::GenerateJoinsTriangles(startPivot, normals, segments[i].m_color, glsl::vec2(startLength, 0), - true, joinsGeometry); + GenerateJoinsTriangles(startPivot, normals, segments[i].m_color, glsl::vec2(startLength, 0), + true, joinsGeometry); } if (i == static_cast(segments.size()) - 1) @@ -300,8 +300,8 @@ void RouteShape::PrepareGeometry(std::vector const & path, m2::Point segments[i].m_rightNormals[EndPoint], segments[i].m_tangent, 1.0f, false /* isStart */, normals); - rs::GenerateJoinsTriangles(endPivot, normals, segments[i].m_color, glsl::vec2(length, 0), - true, joinsGeometry); + GenerateJoinsTriangles(endPivot, normals, segments[i].m_color, glsl::vec2(length, 0), + true, joinsGeometry); } auto const verticesCount = geomBufferData.m_geometry.size() + geomBufferData.m_joinsGeometry.size(); @@ -355,9 +355,9 @@ void RouteShape::PrepareArrowGeometry(std::vector const & path, m2:: glsl::vec2 const leftNormalEnd = GetNormal(segments[i], true /* isLeft */, EndNormal); glsl::vec2 const rightNormalEnd = GetNormal(segments[i], false /* isLeft */, EndNormal); - glsl::vec2 const uvCenter = rs::GetUV(tr, 0.5f, 0.5f); - glsl::vec2 const uvLeft = rs::GetUV(tr, 0.5f, 0.0f); - glsl::vec2 const uvRight = rs::GetUV(tr, 0.5f, 1.0f); + glsl::vec2 const uvCenter = GetUV(tr, 0.5f, 0.5f); + glsl::vec2 const uvLeft = GetUV(tr, 0.5f, 0.0f); + glsl::vec2 const uvRight = GetUV(tr, 0.5f, 1.0f); geometry.emplace_back(startPivot, glsl::vec2(0, 0), uvCenter); geometry.emplace_back(startPivot, leftNormalStart, uvLeft); @@ -393,7 +393,7 @@ void RouteShape::PrepareArrowGeometry(std::vector const & path, m2:: ASSERT_EQUAL(normals.size(), uv.size(), ()); - rs::GenerateArrowsTriangles(endPivot, normals, tr, uv, true /* normalizedUV */, joinsGeometry); + GenerateArrowsTriangles(endPivot, normals, tr, uv, true /* normalizedUV */, joinsGeometry); } // Generate arrow head. @@ -409,7 +409,7 @@ void RouteShape::PrepareArrowGeometry(std::vector const & path, m2:: std::vector uv = { glsl::vec2(u, 1.0f), glsl::vec2(u, 0.0f), glsl::vec2(1.0f, 0.5f) }; glsl::vec4 const headPivot = glsl::vec4(glsl::ToVec2(endPt), depth, 1.0); depth += depthInc; - rs::GenerateArrowsTriangles(headPivot, normals, texRect, uv, true /* normalizedUV */, joinsGeometry); + GenerateArrowsTriangles(headPivot, normals, texRect, uv, true /* normalizedUV */, joinsGeometry); } // Generate arrow tail. @@ -433,7 +433,7 @@ void RouteShape::PrepareArrowGeometry(std::vector const & path, m2:: glsl::ToVec2(t.LeftTop()) }; - rs::GenerateArrowsTriangles(startPivot, normals, texRect, uv, false /* normalizedUV */, joinsGeometry); + GenerateArrowsTriangles(startPivot, normals, texRect, uv, false /* normalizedUV */, joinsGeometry); } } } @@ -490,13 +490,13 @@ void RouteShape::PrepareMarkersGeometry(std::vector const & mark auto const sinAngle = static_cast(m2::CrossProduct(marker.m_up, m2::PointD(0.0, 1.0))); // Here we use a right triangle to render half-circle. - geometry.emplace_back(outerPos, rs::MarkerNormal(-kSqrt2, 0.0f, outerRadius, cosAngle, sinAngle), c1); - geometry.emplace_back(outerPos, rs::MarkerNormal(0.0f, -kSqrt2, outerRadius, cosAngle, sinAngle), c1); - geometry.emplace_back(outerPos, rs::MarkerNormal(0.0f, kSqrt2, outerRadius, cosAngle, sinAngle), c1); + geometry.emplace_back(outerPos, MarkerNormal(-kSqrt2, 0.0f, outerRadius, cosAngle, sinAngle), c1); + geometry.emplace_back(outerPos, MarkerNormal(0.0f, -kSqrt2, outerRadius, cosAngle, sinAngle), c1); + geometry.emplace_back(outerPos, MarkerNormal(0.0f, kSqrt2, outerRadius, cosAngle, sinAngle), c1); - geometry.emplace_back(outerPos, rs::MarkerNormal(kSqrt2, 0.0f, outerRadius, cosAngle, sinAngle), c2); - geometry.emplace_back(outerPos, rs::MarkerNormal(0.0f, kSqrt2, outerRadius, cosAngle, sinAngle), c2); - geometry.emplace_back(outerPos, rs::MarkerNormal(0.0f, -kSqrt2, outerRadius, cosAngle, sinAngle), c2); + geometry.emplace_back(outerPos, MarkerNormal(kSqrt2, 0.0f, outerRadius, cosAngle, sinAngle), c2); + geometry.emplace_back(outerPos, MarkerNormal(0.0f, kSqrt2, outerRadius, cosAngle, sinAngle), c2); + geometry.emplace_back(outerPos, MarkerNormal(0.0f, -kSqrt2, outerRadius, cosAngle, sinAngle), c2); } if (marker.m_colors.size() > 1 || marker.m_colors.front() != marker.m_innerColor) @@ -519,18 +519,18 @@ void RouteShape::CacheRouteArrows(ref_ptr context, { GeometryBufferData geometryData; dp::TextureManager::SymbolRegion region; - rs::GetArrowTextureRegion(mng, region); + GetArrowTextureRegion(mng, region); auto state = CreateRenderState(gpu::Program::RouteArrow, DepthLayer::GeometryLayer); state.SetColorTexture(region.GetTexture()); state.SetTextureIndex(region.GetTextureIndex()); // Generate arrow geometry. - auto depth = static_cast(baseDepthIndex * rs::kDepthPerSubroute) + rs::kArrowsDepth; - float const depthStep = (rs::kArrowsDepth - rs::kRouteDepth) / (1 + borders.size()); + auto depth = static_cast(baseDepthIndex * kDepthPerSubroute) + kArrowsDepth; + float const depthStep = (kArrowsDepth - kRouteDepth) / (1 + borders.size()); for (ArrowBorders const & b : borders) { depth -= depthStep; - std::vector points = rs::CalculatePoints(polyline, b.m_startDistance, b.m_endDistance); + std::vector points = CalculatePoints(polyline, b.m_startDistance, b.m_endDistance); ASSERT_LESS_OR_EQUAL(points.size(), polyline.GetSize(), ()); PrepareArrowGeometry(points, routeArrowsData.m_pivot, region.GetTexRect(), depthStep, depth, geometryData); @@ -600,7 +600,7 @@ drape_ptr RouteShape::CacheRoute(ref_ptr std::vector> geometryBufferData; PrepareGeometry(points, subrouteData->m_pivot, segmentsColors, - static_cast(subroute->m_baseDepthIndex * rs::kDepthPerSubroute), + static_cast(subroute->m_baseDepthIndex * kDepthPerSubroute), geometryBufferData); auto state = CreateRenderState(subroute->m_style[styleIndex].m_pattern.m_isDashed ? @@ -635,7 +635,7 @@ drape_ptr RouteShape::CacheMarkers(ref_ptrm_recacheId = recacheId; MarkersGeometryBuffer geometry; - auto const depth = static_cast(subroute->m_baseDepthIndex * rs::kDepthPerSubroute + rs::kMarkersDepth); + auto const depth = static_cast(subroute->m_baseDepthIndex * kDepthPerSubroute + kMarkersDepth); PrepareMarkersGeometry(subroute->m_markers, markersData->m_pivot, depth, geometry); if (geometry.empty()) return nullptr; diff --git a/drape_frontend/selection_shape_generator.cpp b/drape_frontend/selection_shape_generator.cpp index 69e7d94bdf..59d57e4f12 100644 --- a/drape_frontend/selection_shape_generator.cpp +++ b/drape_frontend/selection_shape_generator.cpp @@ -13,8 +13,6 @@ #include "indexer/feature.hpp" #include "indexer/scales.hpp" -#include "geometry/mercator.hpp" - #include "base/buffer_vector.hpp" #include "base/macros.hpp" #include "base/math.hpp" @@ -28,6 +26,7 @@ namespace { std::string const kTrackSelectedSymbolName = "track_marker_selected"; df::ColorConstant const kSelectionColor = "Selection"; +double const kPointEqualityEps = 1e-7; float const kLeftSide = 1.0f; float const kCenter = 0.0f; float const kRightSide = -1.0f; @@ -233,7 +232,7 @@ drape_ptr SelectionShapeGenerator::GenerateSelectionGeometry(ref_ptr points.reserve(5); ft.ForEachPoint([&points](m2::PointD const & pt) { - if (points.empty() || !points.back().EqualDxDy(pt, mercator::kPointEqualityEps)) + if (points.empty() || !points.back().EqualDxDy(pt, kPointEqualityEps)) points.push_back(pt); }, scales::GetUpperScale()); }, std::vector{feature}); diff --git a/editor/feature_matcher.cpp b/editor/feature_matcher.cpp index 990a9237b8..b154437818 100644 --- a/editor/feature_matcher.cpp +++ b/editor/feature_matcher.cpp @@ -1,7 +1,6 @@ #include "editor/feature_matcher.hpp" #include "geometry/intersection_score.hpp" -#include "geometry/mercator.hpp" #include "base/logging.hpp" #include "base/stl_helpers.hpp" @@ -303,7 +302,7 @@ double ScoreTriangulatedGeometriesByPoints(vector const & lhs, CounterIterator(), [](m2::PointD const & p1, m2::PointD const & p2) { - return p1 < p2 && !p1.EqualDxDy(p2, mercator::kPointEqualityEps); + return p1 < p2 && !p1.EqualDxDy(p2, 1e-7); }).GetCount(); return static_cast(matched) / lhs.size(); diff --git a/ge0/ge0_tests/url_generator_tests.cpp b/ge0/ge0_tests/url_generator_tests.cpp index 9d3c749a80..aebd77c213 100644 --- a/ge0/ge0_tests/url_generator_tests.cpp +++ b/ge0/ge0_tests/url_generator_tests.cpp @@ -100,17 +100,16 @@ UNIT_TEST(LonIn180180) UNIT_TEST(LonToInt_NearOrLess_Rounding) { - /* - 135 90 45 - \ | / - 03333 - 180 0\|/2 - -----0-o-2---- 0 - -180 0/|\2 - 11112 - / | \ - -135 -90 -45 - */ + // 135 90 45 + // \ | / + // 03333 + // 180 0\|/2 + // -----0-o-2---- 0 + // -180 0/|\2 + // 11112 + // / | \ + // -135 -90 -45 + TEST_EQUAL(0, LonToInt(-180.0, 3), ()); TEST_EQUAL(0, LonToInt(-135.1, 3), ()); TEST_EQUAL(1, LonToInt(-135.0, 3), ()); diff --git a/generator/CMakeLists.txt b/generator/CMakeLists.txt index 2e146bf0a3..1b59bbbbae 100644 --- a/generator/CMakeLists.txt +++ b/generator/CMakeLists.txt @@ -253,14 +253,6 @@ target_link_libraries(${PROJECT_NAME} $<$:${CMAKE_DL_LIBS}> # dladdr from boost::stacktrace ) -# Disable unity build to avoid boost::geometry macro linker errors. -set_source_files_properties( - affiliation.cpp - final_processor_country.cpp - hierarchy.cpp - PROPERTIES SKIP_UNITY_BUILD_INCLUSION TRUE -) - omim_add_test_subdirectory(generator_tests_support) omim_add_test_subdirectory(generator_tests) omim_add_test_subdirectory(generator_integration_tests) diff --git a/generator/affiliation.cpp b/generator/affiliation.cpp index f638b6ad78..dada4f705f 100644 --- a/generator/affiliation.cpp +++ b/generator/affiliation.cpp @@ -19,10 +19,10 @@ BOOST_GEOMETRY_REGISTER_POINT_2D(m2::PointD, double, boost::geometry::cs::cartesian, x, y); BOOST_GEOMETRY_REGISTER_RING(std::vector); -namespace feature -{ -namespace affiliation +namespace { +using namespace feature; + template struct RemoveCvref { @@ -70,7 +70,7 @@ void ForEachPoint(T && t, F && f) // An implementation for CountriesFilesAffiliation class. template -std::vector GetAffiliations(T const & t, +std::vector GetAffiliations(T && t, borders::CountryPolygonsCollection const & countryPolygonsTree, bool haveBordersForWholeWorld) { @@ -168,8 +168,10 @@ std::vector GetAffiliations(T && t, IndexSharedPtr const & index) auto const oneCountry = IsOneCountryForLimitRect(GetLimitRect(t), index); return oneCountry ? std::vector{*oneCountry} : GetHonestAffiliations(t, index); } -} // namespace affiliation +} // namespace +namespace feature +{ CountriesFilesAffiliation::CountriesFilesAffiliation(std::string const & borderPath, bool haveBordersForWholeWorld) : m_countryPolygonsTree(borders::GetOrCreateCountryPolygonsTree(borderPath)) , m_haveBordersForWholeWorld(haveBordersForWholeWorld) @@ -178,13 +180,13 @@ CountriesFilesAffiliation::CountriesFilesAffiliation(std::string const & borderP std::vector CountriesFilesAffiliation::GetAffiliations(FeatureBuilder const & fb) const { - return affiliation::GetAffiliations(fb, m_countryPolygonsTree, m_haveBordersForWholeWorld); + return ::GetAffiliations(fb, m_countryPolygonsTree, m_haveBordersForWholeWorld); } std::vector CountriesFilesAffiliation::GetAffiliations(m2::PointD const & point) const { - return affiliation::GetAffiliations(point, m_countryPolygonsTree, m_haveBordersForWholeWorld); + return ::GetAffiliations(point, m_countryPolygonsTree, m_haveBordersForWholeWorld); } bool CountriesFilesAffiliation::HasCountryByName(std::string const & name) const @@ -219,12 +221,12 @@ CountriesFilesIndexAffiliation::CountriesFilesIndexAffiliation(std::string const std::vector CountriesFilesIndexAffiliation::GetAffiliations(FeatureBuilder const & fb) const { - return affiliation::GetAffiliations(fb, m_index); + return ::GetAffiliations(fb, m_index); } std::vector CountriesFilesIndexAffiliation::GetAffiliations(m2::PointD const & point) const { - return affiliation::GetAffiliations(point, m_index); + return ::GetAffiliations(point, m_index); } std::shared_ptr @@ -252,7 +254,7 @@ CountriesFilesIndexAffiliation::BuildIndex(const std::vector & net) } else { - auto const box = affiliation::MakeBox(rect); + auto const box = MakeBox(rect); std::vector> interCountries; for (borders::CountryPolygons const & cp : countries) { @@ -291,7 +293,7 @@ CountriesFilesIndexAffiliation::BuildIndex(const std::vector & net) { std::vector> interCountries{*countryPtr}; std::lock_guard lock(treeCellsMutex); - treeCells.emplace_back(affiliation::MakeBox(rect), std::move(interCountries)); + treeCells.emplace_back(MakeBox(rect), std::move(interCountries)); } }); } diff --git a/generator/city_roads_generator.cpp b/generator/city_roads_generator.cpp index a4c4a34f7b..46254114cb 100644 --- a/generator/city_roads_generator.cpp +++ b/generator/city_roads_generator.cpp @@ -9,7 +9,7 @@ #include "platform/platform.hpp" #include "indexer/feature.hpp" -#include "indexer/feature_data.hpp" +#include "indexer/feature_data.cpp" #include "indexer/feature_processor.hpp" #include "coding/read_write_utils.hpp" @@ -18,12 +18,10 @@ #include "base/geo_object_id.hpp" #include "base/logging.hpp" -#include "defines.hpp" - #include -namespace routing -{ +#include "defines.hpp" + using namespace generator; using namespace std; @@ -64,9 +62,9 @@ vector CalcRoadFeatureIds(string const & dataPath, string const & boun CitiesBoundariesChecker const checker(citiesBoundaries); vector cityRoadFeatureIds; - feature::ForEachFeature(dataPath, [&cityRoadFeatureIds, &checker](FeatureType & ft, uint32_t) + ForEachFeature(dataPath, [&cityRoadFeatureIds, &checker](FeatureType & ft, uint32_t) { - feature::TypesHolder types(ft); + TypesHolder types(ft); if (!routing::IsCarRoad(types) && !routing::IsBicycleRoad(types)) return; @@ -93,6 +91,8 @@ vector CalcRoadFeatureIds(string const & dataPath, string const & boun } } // namespace +namespace routing +{ void SerializeCityRoads(string const & dataPath, vector && cityRoadFeatureIds) { if (cityRoadFeatureIds.empty()) diff --git a/generator/collector_routing_city_boundaries.cpp b/generator/collector_routing_city_boundaries.cpp index 051ff5de15..3c7f700773 100644 --- a/generator/collector_routing_city_boundaries.cpp +++ b/generator/collector_routing_city_boundaries.cpp @@ -60,7 +60,7 @@ bool IsSuitablePlaceType(ftypes::LocalityType localityType) } } -ftypes::LocalityType GetPlaceLocalityType(FeatureBuilder const & feature) +ftypes::LocalityType GetPlaceType(FeatureBuilder const & feature) { return ftypes::IsLocalityChecker::Instance().GetType(feature.GetTypesHolder()); } @@ -156,7 +156,7 @@ RoutingCityBoundariesCollector::RoutingCityBoundariesCollector( std::shared_ptr RoutingCityBoundariesCollector::Clone( std::shared_ptr const & cache) const { - return std::make_shared(GetFilename(), m_dumpFilename, + return std::make_shared(GetFilename(), m_dumpFilename, cache ? cache : m_cache); } @@ -181,7 +181,7 @@ void RoutingCityBoundariesCollector::Process(feature::FeatureBuilder & feature, { ASSERT(FilterOsmElement(osmElement), ()); - if (feature.IsArea() && IsSuitablePlaceType(GetPlaceLocalityType(feature))) + if (feature.IsArea() && IsSuitablePlaceType(::GetPlaceType(feature))) { if (feature.PreSerialize()) m_writer->Process(feature); @@ -208,7 +208,7 @@ void RoutingCityBoundariesCollector::Process(feature::FeatureBuilder & feature, } else if (feature.IsPoint()) { - auto const placeType = GetPlaceLocalityType(feature); + auto const placeType = ::GetPlaceType(feature); // Elements which have multiple place tags i.e. "place=country" + "place=city" will pass FilterOsmElement() // but can have bad placeType here. As we do not know what's the real place type let's skip such places. diff --git a/generator/complex_generator/complex_generator.cpp b/generator/complex_generator/complex_generator.cpp index 41f88981e9..ebdeeddc4c 100644 --- a/generator/complex_generator/complex_generator.cpp +++ b/generator/complex_generator/complex_generator.cpp @@ -65,7 +65,8 @@ MAIN_WITH_ERROR_HANDLING([](int argc, char ** argv) { "complex_generator is a program that generates complexes on the basis of " "the last generation of maps. Complexes are a hierarchy of interesting " "geographical features."); - gflags::SetVersionString(build_version::kName); + gflags::SetVersionString(std::to_string(omim::build_version::git::kTimestamp) + " " + + omim::build_version::git::kHash); gflags::ParseCommandLineFlags(&argc, &argv, true); Platform & pl = GetPlatform(); diff --git a/generator/feature_generator.hpp b/generator/feature_generator.hpp index 0f20816dad..eb1c5d4b78 100644 --- a/generator/feature_generator.hpp +++ b/generator/feature_generator.hpp @@ -27,6 +27,10 @@ public: /// \brief Serializes |f|. /// \returns Feature id of serialized feature. virtual uint32_t Collect(FeatureBuilder const & f); + virtual uint32_t Collect(FeatureBuilder & f) + { + return Collect(const_cast(f)); + } virtual void Finish() {} protected: diff --git a/generator/features_processing_helpers.hpp b/generator/features_processing_helpers.hpp index 369ddbe838..203f6bbe23 100644 --- a/generator/features_processing_helpers.hpp +++ b/generator/features_processing_helpers.hpp @@ -25,5 +25,5 @@ struct ProcessedData }; using FeatureProcessorChunk = std::optional>; -using FeatureProcessorQueue = threads::ThreadSafeQueue; +using FeatureProcessorQueue = base::threads::ThreadSafeQueue; } // namespace generator diff --git a/generator/filter_elements.hpp b/generator/filter_elements.hpp index e906af2a60..923e7a6e44 100644 --- a/generator/filter_elements.hpp +++ b/generator/filter_elements.hpp @@ -26,7 +26,7 @@ // 1. its id equals 1435 // 2. its id equals 436 // 3. if it contains {place:city} in tags -// 4. if it contains {place:town} and {capital:*} in tags. +// 4. if it contains {place:city} and {capital:*} in tags. // '*' - means any value. // Record format for way and relation is the same as for node. // This implementation does not support processing of multiple values diff --git a/generator/final_processor_country.cpp b/generator/final_processor_country.cpp index 3ea5b41933..d4e18e93e8 100644 --- a/generator/final_processor_country.cpp +++ b/generator/final_processor_country.cpp @@ -29,11 +29,11 @@ BOOST_GEOMETRY_REGISTER_POINT_2D(m2::PointD, double, boost::geometry::cs::cartesian, x, y) BOOST_GEOMETRY_REGISTER_RING(std::vector) -namespace generator -{ using namespace base::thread_pool::computational; using namespace feature; +namespace generator +{ CountryFinalProcessor::CountryFinalProcessor(std::string const & borderPath, std::string const & temporaryMwmPath, std::string const & intermediateDir, diff --git a/generator/generator_integration_tests/features_tests.cpp b/generator/generator_integration_tests/features_tests.cpp index 59f091fc73..335ff315f3 100644 --- a/generator/generator_integration_tests/features_tests.cpp +++ b/generator/generator_integration_tests/features_tests.cpp @@ -430,6 +430,11 @@ private: classificator::Load(); auto & platform = GetPlatform(); + // Should be initialized in testingmain.cpp + //auto const & options = GetTestingOptions(); + //platform.SetResourceDir(options.m_resourcePath); + //platform.SetSettingsDir(options.m_resourcePath); + m_threadCount = static_cast(platform.CpuCores()); m_testPath = base::JoinPath(platform.WritableDir(), "gen-test"); m_genInfo.SetNodeStorageType("map"); diff --git a/generator/generator_tests/altitude_test.cpp b/generator/generator_tests/altitude_test.cpp index 239a79d906..fe4235859e 100644 --- a/generator/generator_tests/altitude_test.cpp +++ b/generator/generator_tests/altitude_test.cpp @@ -31,14 +31,14 @@ #include #include -namespace altitude_test -{ using namespace feature; using namespace generator; using namespace platform; using namespace platform::tests_support; using namespace routing; +namespace +{ // These tests generate mwms with altitude sections and then check if altitudes // in the mwms are correct. The mwms are initialized with different sets of features. // There are several restrictions for these features: @@ -254,4 +254,4 @@ UNIT_TEST(AltitudeGenerationTest_FourRoadsWithoutAltitude) std::vector const roads = {kRoad1, kRoad2, kRoad3, kRoad4}; TestBuildingNoFeatureHasAltitude(roads, false /* hasAltitudeExpected */); } -} // namespace altitude_test +} // namespace diff --git a/generator/generator_tests/city_roads_tests.cpp b/generator/generator_tests/city_roads_tests.cpp index 0496174995..3fcbf17d4f 100644 --- a/generator/generator_tests/city_roads_tests.cpp +++ b/generator/generator_tests/city_roads_tests.cpp @@ -32,14 +32,14 @@ #include "defines.hpp" -namespace city_roads_tests -{ using namespace coding; using namespace platform::tests_support; using namespace platform; using namespace routing; using namespace std; +namespace +{ // Directory name for creating test mwm and temporary files. string const kTestDir = "city_roads_generation_test"; // Temporary mwm name for testing. @@ -173,4 +173,4 @@ UNIT_TEST(CityRoadsGenerationTest_UnsortedIds3) 182452, 303265, 73616, 262562, 62935, 294606, 466803, 215791, 468825, 76934, 18187, 194429, 32913})); } -} // namespace city_roads_tests +} // namespace diff --git a/generator/generator_tests/collector_boundary_postcode_tests.cpp b/generator/generator_tests/collector_boundary_postcode_tests.cpp index 51ad945bb4..593c5964d3 100644 --- a/generator/generator_tests/collector_boundary_postcode_tests.cpp +++ b/generator/generator_tests/collector_boundary_postcode_tests.cpp @@ -20,13 +20,13 @@ #include #include -namespace collector_boundary_postcode_tests -{ using namespace generator_tests; using namespace generator; using namespace feature; using namespace std; +namespace +{ using BoundariesCollector = RoutingCityBoundariesCollector; string const kDumpFileName = "dump.bin"; @@ -132,7 +132,7 @@ bool CheckPostcodeExists(unordered_map> const & data, for (size_t i = 0; i < geometry.size(); ++i) { - if (!m2::AlmostEqualAbs(geometry[i], it->second[i], kMwmPointAccuracy)) + if (!base::AlmostEqualAbs(geometry[i], it->second[i], kMwmPointAccuracy)) return false; } @@ -160,7 +160,7 @@ void Check(string const & dumpFilename) TEST(CheckPostcodeExists(data, "127003", ConvertIdsToPoints(kPolygon3)), (data)); TEST(CheckPostcodeExists(data, "127004", ConvertIdsToPoints(kPolygon4)), (data)); } - +} // namespace UNIT_TEST(CollectorBoundaryPostcode_1) { @@ -200,4 +200,3 @@ UNIT_TEST(CollectorBoundaryPostcode_2) Check(kDumpFileName); } -} // namespace collector_boundary_postcode_tests diff --git a/generator/generator_tests/collector_building_parts_tests.cpp b/generator/generator_tests/collector_building_parts_tests.cpp index fecf9cc9c3..97e2b0afbc 100644 --- a/generator/generator_tests/collector_building_parts_tests.cpp +++ b/generator/generator_tests/collector_building_parts_tests.cpp @@ -17,7 +17,7 @@ #include #include -namespace collector_building_parts_tests +namespace { using namespace generator::tests_support; @@ -241,4 +241,4 @@ UNIT_CLASS_TEST(TestWithClassificator, CollectorBuildingParts_Case2) TestCollector(file.GetFullPath(), fb2, *intermediateReader, IntermediateDataReaderTest::kTopRelationId2); } -} // namespace collector_building_parts_tests +} // namespace diff --git a/generator/generator_tests/collector_city_area_tests.cpp b/generator/generator_tests/collector_city_area_tests.cpp index ee051397b2..b1e06ae8b4 100644 --- a/generator/generator_tests/collector_city_area_tests.cpp +++ b/generator/generator_tests/collector_city_area_tests.cpp @@ -20,10 +20,10 @@ #include #include -namespace collector_city_area_tests -{ using namespace generator_tests; +namespace +{ feature::FeatureBuilder MakeFbForTest(OsmElement element) { feature::FeatureBuilder result; @@ -45,6 +45,7 @@ auto const o1 = MakeOsmElement(1 /* id */, {{"place", "city"}} /* tags */, OsmEl auto const o2 = MakeOsmElement(2 /* id */, {{"place", "town"}} /* tags */, OsmElement::EntityType::Relation); auto const o3 = MakeOsmElement(3 /* id */, {{"place", "village"}} /* tags */, OsmElement::EntityType::Relation); auto const o4 = MakeOsmElement(4 /* id */, {{"place", "country"}} /* tags */, OsmElement::EntityType::Relation); +} // namespace UNIT_TEST(CollectorCityArea_Merge) { @@ -69,4 +70,3 @@ UNIT_TEST(CollectorCityArea_Merge) TEST(HasRelationWithId(fbs, 2 /* id */), ()); TEST(HasRelationWithId(fbs, 3 /* id */), ()); } -} // namespace collector_city_area_tests diff --git a/generator/generator_tests/collector_routing_city_boundaries_tests.cpp b/generator/generator_tests/collector_routing_city_boundaries_tests.cpp index 1a50b53e26..07164e47b9 100644 --- a/generator/generator_tests/collector_routing_city_boundaries_tests.cpp +++ b/generator/generator_tests/collector_routing_city_boundaries_tests.cpp @@ -22,13 +22,13 @@ #include #include -namespace collector_routing_city_boundaries_tests -{ using namespace generator_tests; using namespace generator; -using namespace generator::tests_support; +using namespace tests_support; using namespace feature; +namespace +{ using BoundariesCollector = RoutingCityBoundariesCollector; std::string const kDumpFileName = "dump.bin"; @@ -131,7 +131,7 @@ bool CheckPolygonExistance(std::vector> const & polygons for (size_t i = 0; i < polygon.size(); ++i) { - if (!m2::AlmostEqualAbs(polygon[i], polygonToFind[i], 1e-6)) + if (!base::AlmostEqualAbs(polygon[i], polygonToFind[i], 1e-6)) { same = false; break; @@ -202,7 +202,7 @@ double CalculateEarthAreaForConvexPolygon(std::vector const & latlon return area; } - +} // namespace UNIT_CLASS_TEST(TestWithClassificator, CollectorRoutingCityBoundaries_1) { @@ -210,7 +210,7 @@ UNIT_CLASS_TEST(TestWithClassificator, CollectorRoutingCityBoundaries_1) SCOPE_GUARD(_, std::bind(Platform::RemoveFileIfExists, std::cref(filename))); SCOPE_GUARD(rmDump, std::bind(Platform::RemoveFileIfExists, std::cref(kDumpFileName))); - std::shared_ptr cache; + std::shared_ptr cache; auto c1 = std::make_shared(filename, kDumpFileName, cache); Collect(*c1, {placeRelation1, placeRelation2, placeRelation3, placeRelation4}, @@ -231,7 +231,7 @@ UNIT_CLASS_TEST(TestWithClassificator, CollectorRoutingCityBoundaries_2) SCOPE_GUARD(_, std::bind(Platform::RemoveFileIfExists, std::cref(filename))); SCOPE_GUARD(rmDump, std::bind(Platform::RemoveFileIfExists, std::cref(kDumpFileName))); - std::shared_ptr cache; + std::shared_ptr cache; auto c1 = std::make_shared(filename, kDumpFileName, cache); auto c2 = c1->Clone(); @@ -329,4 +329,3 @@ UNIT_TEST(AreaOnEarth_Concave_Polygon) areaOnEarth, 1e-6), ()); } -} // namespace collector_routing_city_boundaries_tests diff --git a/generator/generator_tests/common.hpp b/generator/generator_tests/common.hpp index f3423dd70e..6ea0f10a09 100644 --- a/generator/generator_tests/common.hpp +++ b/generator/generator_tests/common.hpp @@ -16,4 +16,17 @@ OsmElement MakeOsmElement(uint64_t id, Tags const & tags, OsmElement::EntityType std::string GetFileName(std::string const & filename = std::string()); bool MakeFakeBordersFile(std::string const & intemediatePath, std::string const & filename); + +struct TagValue +{ + std::string m_key; + std::string m_value; +}; + +struct Tag +{ + TagValue operator=(std::string const & value) const { return {m_name, value}; } + + std::string m_name; +}; } // namespace generator_tests diff --git a/generator/generator_tests/cross_mwm_osm_ways_collector_tests.cpp b/generator/generator_tests/cross_mwm_osm_ways_collector_tests.cpp index d4b5f80dd8..67b62e1447 100644 --- a/generator/generator_tests/cross_mwm_osm_ways_collector_tests.cpp +++ b/generator/generator_tests/cross_mwm_osm_ways_collector_tests.cpp @@ -8,8 +8,7 @@ #include "platform/platform.hpp" -#include "indexer/classificator.hpp" -#include "indexer/classificator_loader.hpp" +#include "indexer/classificator_loader.cpp" #include "geometry/mercator.hpp" @@ -24,11 +23,11 @@ #include #include -namespace cross_mwm_osm_ways_collector_tests -{ using namespace generator; using namespace generator_tests; +namespace +{ std::string const kTmpDirName = "cross_mwm_ways"; std::vector const kHighwayUnclassifiedPath = {"highway", "unclassified"}; @@ -203,4 +202,4 @@ UNIT_CLASS_TEST(CrossMwmWayCollectorTest, TwoCollectorTest) Checker(); } -} // namespace cross_mwm_osm_ways_collector_tests +} // namespace diff --git a/generator/generator_tests/descriptions_section_builder_tests.cpp b/generator/generator_tests/descriptions_section_builder_tests.cpp index caab171d8d..f8301f2b71 100644 --- a/generator/generator_tests/descriptions_section_builder_tests.cpp +++ b/generator/generator_tests/descriptions_section_builder_tests.cpp @@ -28,11 +28,11 @@ #include #include -namespace generator_tests -{ using namespace generator; -class Feature : public generator::tests_support::TestFeature +namespace +{ +class Feature : public tests_support::TestFeature { public: Feature() = default; @@ -53,7 +53,10 @@ public: private: std::vector m_types; }; +} // namespace +namespace generator_tests +{ class TestDescriptionSectionBuilder { public: @@ -340,8 +343,11 @@ private: }; std::string const TestDescriptionSectionBuilder::kMwmFile = "MwmFile"; -std::string const TestDescriptionSectionBuilder::kDirPages = "wiki"; +std::string const TestDescriptionSectionBuilder::kDirPages = "wiki"; +} // namespace generator_tests + +using namespace generator_tests; UNIT_CLASS_TEST(TestDescriptionSectionBuilder, DescriptionsCollectionBuilder_MakeDescriptions) { @@ -373,6 +379,8 @@ UNIT_CLASS_TEST(TestDescriptionSectionBuilder, DescriptionsCollectionBuilder_Bui TestDescriptionSectionBuilder::BuildDescriptionsSection(); } +namespace generator_tests +{ // http://en.wikipedia.org/wiki/Helsinki_Olympic_Stadium/ - en, de, ru, fr // https://en.wikipedia.org/wiki/Turku_Cathedral - en, ru diff --git a/generator/generator_tests/feature_builder_test.cpp b/generator/generator_tests/feature_builder_test.cpp index 8b26834dbe..a0d449ab36 100644 --- a/generator/generator_tests/feature_builder_test.cpp +++ b/generator/generator_tests/feature_builder_test.cpp @@ -7,7 +7,7 @@ #include "generator/geometry_holder.hpp" #include "generator/osm2type.hpp" -#include "indexer/data_header.hpp" +#include "indexer/data_header.cpp" #include "indexer/classificator_loader.hpp" #include "indexer/feature_visibility.hpp" @@ -15,11 +15,9 @@ #include -namespace feature_builder_test -{ using namespace feature; + using namespace generator::tests_support; -using namespace std; using namespace tests; UNIT_CLASS_TEST(TestWithClassificator, FBuilder_ManyTypes) @@ -345,4 +343,3 @@ UNIT_CLASS_TEST(TestWithClassificator, FBuilder_RemoveUselessAltName) TEST(fb.IsValid(), (fb)); } } -} // namespace feature_builder_test diff --git a/generator/generator_tests/hierarchy_entry_tests.cpp b/generator/generator_tests/hierarchy_entry_tests.cpp index bc69bdab60..07498be066 100644 --- a/generator/generator_tests/hierarchy_entry_tests.cpp +++ b/generator/generator_tests/hierarchy_entry_tests.cpp @@ -10,11 +10,11 @@ #include "base/geo_object_id.hpp" -namespace hierarchy_entry_tests -{ using generator::tests_support::TestWithClassificator; using platform::tests_support::ScopedFile; +namespace +{ std::string const kCsv1 = "13835058055284963881 9223372037111861697;" ";" @@ -146,4 +146,4 @@ UNIT_CLASS_TEST(TestWithClassificator, Complex_LoadHierachy) MakeId(9223372036879747192ull, 9223372036879747192ull), ()); TEST_EQUAL(node->GetChildren().size(), 0, ()); } -} // namespace hierarchy_entry_tests +} // namespace diff --git a/generator/generator_tests/maxspeeds_tests.cpp b/generator/generator_tests/maxspeeds_tests.cpp index 13ca1e9b3a..17716c1917 100644 --- a/generator/generator_tests/maxspeeds_tests.cpp +++ b/generator/generator_tests/maxspeeds_tests.cpp @@ -2,7 +2,7 @@ #include "generator/feature_builder.hpp" #include "generator/generator_tests/common.hpp" -#include "generator/generator_tests_support/test_feature.hpp" +#include "generator/generator_tests_support/test_feature.cpp" #include "generator/generator_tests_support/test_mwm_builder.hpp" #include "generator/maxspeeds_builder.hpp" #include "generator/maxspeeds_collector.hpp" @@ -16,7 +16,6 @@ #include "routing_common/maxspeed_conversion.hpp" -#include "indexer/classificator.hpp" #include "indexer/classificator_loader.hpp" #include "indexer/data_source.hpp" #include "indexer/feature.hpp" @@ -46,8 +45,9 @@ #include #include -namespace maxspeeds_tests +namespace { + using namespace generator; using namespace generator_tests; using namespace measurement_utils; @@ -137,6 +137,8 @@ bool ParseCsv(string const & maxspeedsCsvContent, OsmIdToMaxspeed & mapping) return ParseMaxspeeds(base::JoinPath(testDirFullPath, kCsv), mapping); } +} // namespace + UNIT_TEST(MaxspeedTagValueToSpeedTest) { SpeedInUnits speed; @@ -406,7 +408,7 @@ UNIT_TEST(MaxspeedCollector_Smoke) auto const filename = GetFileName(); SCOPE_GUARD(_, std::bind(Platform::RemoveFileIfExists, std::cref(filename))); - feature::FeatureBuilder builder; + FeatureBuilder builder; auto c1 = std::make_shared(filename); c1->CollectFeature(builder, MakeOsmElement(1 /* id */, {{"maxspeed:forward", "50"}} /* tags */, OsmElement::EntityType::Way)); @@ -436,4 +438,3 @@ UNIT_TEST(MaxspeedCollector_Smoke) TEST_EQUAL(osmIdToMaxspeed[base::MakeOsmWay(5)].GetForward(), static_cast(20), ()); } -} // namespace maxspeeds_tests diff --git a/generator/generator_tests/metalines_tests.cpp b/generator/generator_tests/metalines_tests.cpp index f496eb5115..bf223443f5 100644 --- a/generator/generator_tests/metalines_tests.cpp +++ b/generator/generator_tests/metalines_tests.cpp @@ -20,10 +20,10 @@ #include #include -namespace metalines_tests -{ using namespace feature; +namespace +{ OsmElement MakeHighway(uint64_t id, std::string const & name, std::vector const & nodes, bool isOneway = false) { @@ -82,7 +82,7 @@ auto const wo8 = MakeHighway(8/* id */, "w" /* name */, {17, 16, 15} /* nodes */ auto const b1 = MakeHighway(1/* id */, "b" /* name */, {1, 2, 3} /* nodes */); auto const b2 = MakeHighway(2/* id */, "b" /* name */, {3, 4, 5} /* nodes */); - +} // namespace UNIT_TEST(MetalinesTest_Case0) { @@ -197,4 +197,3 @@ UNIT_TEST(MetalinesTest_MetalinesBuilderMarge) TEST_EQUAL(s.count({1, 2}), 1, ()); TEST_EQUAL(s.count({4, 5}), 1, ()); } -} // namespace metalines_tests diff --git a/generator/generator_tests/mini_roundabout_tests.cpp b/generator/generator_tests/mini_roundabout_tests.cpp index 2438d7547f..11cc2c36e3 100644 --- a/generator/generator_tests/mini_roundabout_tests.cpp +++ b/generator/generator_tests/mini_roundabout_tests.cpp @@ -15,10 +15,10 @@ #include #include -namespace mini_roundabout_tests -{ using namespace generator; +namespace +{ OsmElement MiniRoundabout(uint64_t id, double lat, double lon) { OsmElement miniRoundabout; @@ -49,13 +49,15 @@ OsmElement RoadNode(uint64_t id, double lat, double lon) return node; } +} // namespace + void TestRunCmpPoints(std::vector const & pointsFact, std::vector const & pointsPlan, double r) { TEST_EQUAL(pointsFact.size(), pointsPlan.size(), ()); TEST_GREATER(pointsFact.size(), 2, ()); for (size_t i = 0; i < pointsFact.size(); ++i) - TEST(m2::AlmostEqualAbs(pointsFact[i], pointsPlan[i], kMwmPointAccuracy), ()); + TEST(AlmostEqualAbs(pointsFact[i], pointsPlan[i], kMwmPointAccuracy), ()); } void TestRunCmpNumbers(double val1, double val2) @@ -97,7 +99,7 @@ UNIT_TEST(TrimSegment_Vertical) double const dist = 1.0; m2::PointD const point = GetPointAtDistFromTarget(a /* source */, b /* target */, dist); m2::PointD const pointPlan(2.0, 2.0); - TEST(m2::AlmostEqualAbs(point, pointPlan, kMwmPointAccuracy), ()); + TEST(AlmostEqualAbs(point, pointPlan, kMwmPointAccuracy), ()); } UNIT_TEST(TrimSegment_VerticalNegative) @@ -107,7 +109,7 @@ UNIT_TEST(TrimSegment_VerticalNegative) double const dist = 4.0; m2::PointD const point = GetPointAtDistFromTarget(a /* source */, b /* target */, dist); m2::PointD const pointPlan(-3.0, 2.0); - TEST(m2::AlmostEqualAbs(point, pointPlan, kMwmPointAccuracy), ()); + TEST(AlmostEqualAbs(point, pointPlan, kMwmPointAccuracy), ()); } UNIT_TEST(TrimSegment_ExceptionalCase) @@ -116,7 +118,7 @@ UNIT_TEST(TrimSegment_ExceptionalCase) m2::PointD const b(2.0, 3.0); double const dist = 10.0; m2::PointD const point = GetPointAtDistFromTarget(a /* source */, b /* target */, dist); - TEST(m2::AlmostEqualAbs(point, a, kMwmPointAccuracy), ()); + TEST(AlmostEqualAbs(point, a, kMwmPointAccuracy), ()); } UNIT_TEST(PointToCircle_ZeroMeridian) @@ -276,4 +278,3 @@ UNIT_TEST(Manage_MiniRoundabout_EqualPoints) AddPointToCircle(circlePlain, circlePlain[0]); TEST_EQUAL(circlePlain.size(), 16, ()); } -} // namespace mini_roundabout_tests diff --git a/generator/generator_tests/osm_type_test.cpp b/generator/generator_tests/osm_type_test.cpp index 06d0f613d1..c8c740e032 100644 --- a/generator/generator_tests/osm_type_test.cpp +++ b/generator/generator_tests/osm_type_test.cpp @@ -19,67 +19,67 @@ #include #include -namespace osm_type_test -{ using namespace generator::tests_support; using namespace tests; using Tags = std::vector; -void DumpTypes(std::vector const & v) +namespace { - Classificator const & c = classif(); - for (size_t i = 0; i < v.size(); ++i) - std::cout << c.GetFullObjectName(v[i]) << std::endl; -} - -void DumpParsedTypes(Tags const & tags) -{ - OsmElement e; - FillXmlElement(tags, &e); - - FeatureBuilderParams params; - ftype::GetNameAndType(&e, params); - - DumpTypes(params.m_types); -} - -void TestSurfaceTypes(std::string const & surface, std::string const & smoothness, - std::string const & grade, char const * value) -{ - OsmElement e; - e.AddTag("highway", "unclassified"); - e.AddTag("surface", surface); - e.AddTag("smoothness", smoothness); - e.AddTag("surface:grade", grade); - - FeatureBuilderParams params; - ftype::GetNameAndType(&e, params); - - TEST_EQUAL(params.m_types.size(), 2, (params)); - TEST(params.IsTypeExist(GetType({"highway", "unclassified"})), ()); - std::string psurface; - for (auto type : params.m_types) + void DumpTypes(std::vector const & v) { - std::string const rtype = classif().GetReadableObjectName(type); - if (rtype.substr(0, 9) == "psurface-") - psurface = rtype.substr(9); + Classificator const & c = classif(); + for (size_t i = 0; i < v.size(); ++i) + std::cout << c.GetFullObjectName(v[i]) << std::endl; } - TEST(params.IsTypeExist(GetType({"psurface", value})), - ("Surface:", surface, "Smoothness:", smoothness, "Grade:", grade, "Expected:", value, - "Got:", psurface)); -} -FeatureBuilderParams GetFeatureBuilderParams(Tags const & tags) -{ - OsmElement e; - FillXmlElement(tags, &e); - FeatureBuilderParams params; + void DumpParsedTypes(Tags const & tags) + { + OsmElement e; + FillXmlElement(tags, &e); - ftype::GetNameAndType(&e, params); - return params; -} + FeatureBuilderParams params; + ftype::GetNameAndType(&e, params); + DumpTypes(params.m_types); + } + + void TestSurfaceTypes(std::string const & surface, std::string const & smoothness, + std::string const & grade, char const * value) + { + OsmElement e; + e.AddTag("highway", "unclassified"); + e.AddTag("surface", surface); + e.AddTag("smoothness", smoothness); + e.AddTag("surface:grade", grade); + + FeatureBuilderParams params; + ftype::GetNameAndType(&e, params); + + TEST_EQUAL(params.m_types.size(), 2, (params)); + TEST(params.IsTypeExist(GetType({"highway", "unclassified"})), ()); + std::string psurface; + for (auto type : params.m_types) + { + std::string const rtype = classif().GetReadableObjectName(type); + if (rtype.substr(0, 9) == "psurface-") + psurface = rtype.substr(9); + } + TEST(params.IsTypeExist(GetType({"psurface", value})), + ("Surface:", surface, "Smoothness:", smoothness, "Grade:", grade, "Expected:", value, + "Got:", psurface)); + } + + FeatureBuilderParams GetFeatureBuilderParams(Tags const & tags) + { + OsmElement e; + FillXmlElement(tags, &e); + FeatureBuilderParams params; + + ftype::GetNameAndType(&e, params); + return params; + } +} // namespace UNIT_CLASS_TEST(TestWithClassificator, OsmType_SkipDummy) { @@ -2196,4 +2196,3 @@ UNIT_CLASS_TEST(TestWithClassificator, OsmType_ComplexTypesSmoke) TEST(params.IsTypeExist(GetType(type.first)), (type, params)); } } -} // namespace osm_type_test diff --git a/generator/generator_tests/restriction_test.cpp b/generator/generator_tests/restriction_test.cpp index 30dc5e1374..112a10f3e7 100644 --- a/generator/generator_tests/restriction_test.cpp +++ b/generator/generator_tests/restriction_test.cpp @@ -29,15 +29,16 @@ #include #include -namespace restriction_test -{ +using namespace std; + using namespace feature; using namespace generator; using namespace platform::tests_support; using namespace platform; using namespace routing; -using namespace std; +namespace +{ // Directory name for creating test mwm and temporary files. string const kTestDir = "restriction_generation_test"; // Temporary mwm name for testing. @@ -92,8 +93,8 @@ void BuildEmptyMwm(LocalCountryFile & country) generator::tests_support::TestMwmBuilder builder(country, feature::DataHeader::MapType::Country); } -void LoadRestrictions(string const & mwmFilePath, - vector & restrictions, +void LoadRestrictions(string const & mwmFilePath, + vector & restrictions, vector & restrictionsUTurn) { FilesContainerR const cont(mwmFilePath); @@ -136,7 +137,7 @@ void LoadRestrictions(string const & mwmFilePath, /// loads the restriction section and test loaded restrictions. /// \param |restrictionPath| comma separated text with restrictions in osm id terms. /// \param |osmIdsToFeatureIdContent| comma separated text with mapping from osm ids to feature ids. -void TestRestrictionBuilding(string const & restrictionPath, +void TestRestrictionBuilding(string const & restrictionPath, string const & osmIdsToFeatureIdContent, unique_ptr graph, vector & expectedNotUTurn, @@ -434,4 +435,4 @@ UNIT_TEST(RestrictionGenerationTest_WithUTurn_BadConnection_1) TestRestrictionBuilding(restrictionPath, osmIdsToFeatureIdsContent, move(indexGraph), expectedNotUTurn, expectedUTurn); } -} // namespace restriction_test +} // namespace diff --git a/generator/generator_tests/road_access_test.cpp b/generator/generator_tests/road_access_test.cpp index 874020271f..a0a0d0a5f8 100644 --- a/generator/generator_tests/road_access_test.cpp +++ b/generator/generator_tests/road_access_test.cpp @@ -31,8 +31,8 @@ #include #include -namespace road_access_test -{ +using namespace std; + using namespace feature; using namespace generator::tests_support; using namespace generator; @@ -41,6 +41,8 @@ using namespace platform; using namespace routing; using namespace std; +namespace +{ string const kTestDir = "road_access_generation_test"; string const kTestMwm = "test"; string const kRoadAccessFilename = "road_access_in_osm_ids.csv"; @@ -413,4 +415,4 @@ UNIT_TEST(RoadAccessWriter_Conditional_WinterRoads) TEST_EQUAL(resultFile, expectedFile, ()); } -} // namespace road_access_test +} // namespace diff --git a/generator/generator_tests/speed_cameras_test.cpp b/generator/generator_tests/speed_cameras_test.cpp index 51859768b8..81e89c6028 100644 --- a/generator/generator_tests/speed_cameras_test.cpp +++ b/generator/generator_tests/speed_cameras_test.cpp @@ -50,8 +50,6 @@ #include #include -namespace speed_cameras_test -{ using namespace feature; using namespace generator; using namespace measurement_utils; @@ -60,6 +58,8 @@ using namespace platform; using namespace routing; using namespace std; +namespace +{ // Directory name for creating test mwm and temporary files. string const kTestDir = "speed_camera_generation_test"; @@ -505,4 +505,4 @@ UNIT_TEST(RoadCategoryToSpeedTest) TEST(!RoadCategoryToSpeed("UNKNOWN:unknown", speed), ()); } -} // namespace speed_cameras_test +} // namespace diff --git a/generator/generator_tool/generator_tool.cpp b/generator/generator_tool/generator_tool.cpp index b3057b0d3e..2575239763 100644 --- a/generator/generator_tool/generator_tool.cpp +++ b/generator/generator_tool/generator_tool.cpp @@ -12,7 +12,7 @@ #include "generator/feature_generator.hpp" #include "generator/feature_sorter.hpp" #include "generator/generate_info.hpp" -#include "generator/isolines_section_builder.hpp" +#include "generator/isolines_section_builder.cpp" #include "generator/maxspeeds_builder.hpp" #include "generator/metalines_builder.hpp" #include "generator/osm_source.hpp" @@ -215,7 +215,8 @@ MAIN_WITH_ERROR_HANDLING([](int argc, char ** argv) gflags::SetUsageMessage( "Takes OSM XML data from stdin and creates data and index files in several passes."); - gflags::SetVersionString(build_version::kName); + gflags::SetVersionString(std::to_string(omim::build_version::git::kTimestamp) + " " + + omim::build_version::git::kHash); gflags::ParseCommandLineFlags(&argc, &argv, true); Platform & pl = GetPlatform(); diff --git a/generator/geometry_holder.hpp b/generator/geometry_holder.hpp index 49535c113b..ce3ca1f921 100644 --- a/generator/geometry_holder.hpp +++ b/generator/geometry_holder.hpp @@ -31,7 +31,7 @@ public: // For FeatureType serialization maxNumTriangles should be less than numeric_limits::max // because FeatureType format uses uint8_t to encode the number of triangles. GeometryHolder(FileGetter geoFileGetter, FileGetter trgFileGetter, FeatureBuilder & fb, - DataHeader const & header, size_t maxNumTriangles = 14) + feature::DataHeader const & header, size_t maxNumTriangles = 14) : m_geoFileGetter(geoFileGetter) , m_trgFileGetter(trgFileGetter) , m_fb(fb) @@ -42,7 +42,7 @@ public: { } - GeometryHolder(FeatureBuilder & fb, DataHeader const & header, + GeometryHolder(FeatureBuilder & fb, feature::DataHeader const & header, size_t maxNumTriangles = 14) : m_fb(fb) , m_ptsInner(true) diff --git a/generator/hierarchy.cpp b/generator/hierarchy.cpp index 2aea4f2ba3..7541badc9b 100644 --- a/generator/hierarchy.cpp +++ b/generator/hierarchy.cpp @@ -27,12 +27,12 @@ BOOST_GEOMETRY_REGISTER_POINT_2D(m2::PointD, double, boost::geometry::cs::cartesian, x, y); BOOST_GEOMETRY_REGISTER_RING(std::vector); +using namespace feature; + namespace generator { namespace hierarchy { -using namespace feature; - namespace { double CalculateOverlapPercentage(std::vector const & lhs, diff --git a/generator/maxspeeds_collector.hpp b/generator/maxspeeds_collector.hpp index b8558b5e12..ddb368093e 100644 --- a/generator/maxspeeds_collector.hpp +++ b/generator/maxspeeds_collector.hpp @@ -4,7 +4,7 @@ #include "generator/feature_builder.hpp" #include "generator/osm_element.hpp" -#include +#include #include #include diff --git a/generator/mini_roundabout_transformer.cpp b/generator/mini_roundabout_transformer.cpp index f8ba552328..85ed56cf98 100644 --- a/generator/mini_roundabout_transformer.cpp +++ b/generator/mini_roundabout_transformer.cpp @@ -53,7 +53,7 @@ feature::FeatureBuilder::PointSeq::iterator GetIterOnRoad(m2::PointD const & poi feature::FeatureBuilder::PointSeq & road) { return base::FindIf(road, [&point](m2::PointD const & pointOnRoad) { - return m2::AlmostEqualAbs(pointOnRoad, point, kMwmPointAccuracy); + return base::AlmostEqualAbs(pointOnRoad, point, kMwmPointAccuracy); }); } } @@ -188,7 +188,7 @@ feature::FeatureBuilder::PointSeq MiniRoundaboutTransformer::CreateSurrogateRoad *itPointOnSurrogateRoad /* source */, roundaboutOnRoad.m_location /* target */, m_radiusMercator /* dist */); - if (m2::AlmostEqualAbs(nextPointOnSurrogateRoad, *itPointOnSurrogateRoad, kMwmPointAccuracy)) + if (AlmostEqualAbs(nextPointOnSurrogateRoad, *itPointOnSurrogateRoad, kMwmPointAccuracy)) return {}; AddPointToCircle(roundaboutCircle, nextPointOnSurrogateRoad); @@ -214,7 +214,7 @@ bool MiniRoundaboutTransformer::AddRoundaboutToRoad(RoundaboutUnit const & round GetPointAtDistFromTarget(*itPointNearRoundabout /* source */, roundaboutCenter /* target */, m_radiusMercator /* dist */); - if (m2::AlmostEqualAbs(nextPointOnRoad, *itPointNearRoundabout, kMwmPointAccuracy)) + if (AlmostEqualAbs(nextPointOnRoad, *itPointNearRoundabout, kMwmPointAccuracy)) return false; if (isMiddlePoint) @@ -403,7 +403,7 @@ void AddPointToCircle(std::vector & circle, m2::PointD const & point if (iDist1 > iDist2) std::swap(iDist1, iDist2); - + if (iDist1 == 0 && iDist2 == circle.size() - 1) circle.push_back(point); else diff --git a/generator/osm_element.hpp b/generator/osm_element.hpp index 77090104a3..887994676a 100644 --- a/generator/osm_element.hpp +++ b/generator/osm_element.hpp @@ -1,7 +1,5 @@ #pragma once -#include "geometry/mercator.hpp" // kPointEqualityEps - #include "base/assert.hpp" #include "base/geo_object_id.hpp" #include "base/math.hpp" @@ -107,8 +105,8 @@ struct OsmElement { return m_type == other.m_type && m_id == other.m_id - && base::AlmostEqualAbs(m_lon, other.m_lon, mercator::kPointEqualityEps) - && base::AlmostEqualAbs(m_lat, other.m_lat, mercator::kPointEqualityEps) + && base::AlmostEqualAbs(m_lon, other.m_lon, 1e-7) + && base::AlmostEqualAbs(m_lat, other.m_lat, 1e-7) && m_ref == other.m_ref && m_k == other.m_k && m_v == other.m_v diff --git a/generator/osm_o5m_source.hpp b/generator/osm_o5m_source.hpp index 57115eb3b7..171c422b33 100644 --- a/generator/osm_o5m_source.hpp +++ b/generator/osm_o5m_source.hpp @@ -131,16 +131,16 @@ public: { switch (type) { - case EntityType::End: s << "O5M_CMD_END"; break; - case EntityType::Node: s << "O5M_CMD_NODE"; break; - case EntityType::Way: s << "O5M_CMD_WAY"; break; - case EntityType::Relation: s << "O5M_CMD_REL"; break; - case EntityType::BBox: s << "O5M_CMD_BBOX"; break; - case EntityType::Timestamp: s << "O5M_CMD_TSTAMP"; break; - case EntityType::Header: s << "O5M_CMD_HEADER"; break; - case EntityType::Sync: s << "O5M_CMD_SYNC"; break; - case EntityType::Jump: s << "O5M_CMD_JUMP"; break; - case EntityType::Reset: s << "O5M_CMD_RESET"; break; + case EntityType::End: s << "O5M_CMD_END"; + case EntityType::Node: s << "O5M_CMD_NODE"; + case EntityType::Way: s << "O5M_CMD_WAY"; + case EntityType::Relation: s << "O5M_CMD_REL"; + case EntityType::BBox: s << "O5M_CMD_BBOX"; + case EntityType::Timestamp: s << "O5M_CMD_TSTAMP"; + case EntityType::Header: s << "O5M_CMD_HEADER"; + case EntityType::Sync: s << "O5M_CMD_SYNC"; + case EntityType::Jump: s << "O5M_CMD_JUMP"; + case EntityType::Reset: s << "O5M_CMD_RESET"; default: return s << "Unknown command: " << std::hex << base::Underlying(type); } return s; diff --git a/generator/pygen/CMakeLists.txt b/generator/pygen/CMakeLists.txt index cfa4e82909..4f26910972 100644 --- a/generator/pygen/CMakeLists.txt +++ b/generator/pygen/CMakeLists.txt @@ -29,7 +29,7 @@ omim_link_libraries( opening_hours freetype expat - icu + ICU::i18n jansson protobuf bsdiff diff --git a/generator/region_meta.cpp b/generator/region_meta.cpp index d1863a9efc..12574837c8 100644 --- a/generator/region_meta.cpp +++ b/generator/region_meta.cpp @@ -29,7 +29,6 @@ namespace feature { bool ReadRegionDataImpl(std::string const & countryName, RegionData & data) { - /// @todo How LEAP_SPEEDS_FILE was generated before? It's always absent now. if (Platform::IsFileExistsByFullPath(LEAP_SPEEDS_FILE)) { try diff --git a/generator/restriction_collector.cpp b/generator/restriction_collector.cpp index 7a727ac63b..64cbd98f32 100644 --- a/generator/restriction_collector.cpp +++ b/generator/restriction_collector.cpp @@ -29,6 +29,7 @@ char const kNo[] = "No"; char const kOnly[] = "Only"; char const kNoUTurn[] = "NoUTurn"; char const kOnlyUTurn[] = "OnlyUTurn"; +char const kDelim[] = ", \t\r\n"; bool ParseLineOfWayIds(strings::SimpleTokenizer & iter, std::vector & numbers) { @@ -86,7 +87,7 @@ bool RestrictionCollector::ParseRestrictions(std::string const & path) std::string line; while (std::getline(stream, line)) { - strings::SimpleTokenizer iter(line, ", \t\r\n"); + strings::SimpleTokenizer iter(line, kDelim); if (!iter) // the line is empty return false; diff --git a/generator/restriction_generator.cpp b/generator/restriction_generator.cpp index 467e957e29..a0244508a5 100644 --- a/generator/restriction_generator.cpp +++ b/generator/restriction_generator.cpp @@ -4,7 +4,7 @@ #include "routing/index_graph_loader.hpp" -#include "routing_common/car_model.hpp" +#include "routing_common/car_model.cpp" #include "routing_common/vehicle_model.hpp" #include "platform/country_file.hpp" diff --git a/generator/road_access_generator.cpp b/generator/road_access_generator.cpp index 592a61888d..6df6ad22f4 100644 --- a/generator/road_access_generator.cpp +++ b/generator/road_access_generator.cpp @@ -33,8 +33,6 @@ #include "3party/opening_hours/opening_hours.hpp" -namespace routing -{ using namespace feature; using namespace routing; using namespace generator; @@ -42,6 +40,8 @@ using namespace std; namespace { +char constexpr kDelim[] = " \t\r\n"; + using TagMapping = routing::RoadAccessTagProcessor::TagMapping; using ConditionalTagsList = routing::RoadAccessTagProcessor::ConditionalTagsList; @@ -205,7 +205,7 @@ bool ParseRoadAccess(string const & roadAccessPath, OsmIdToFeatureIds const & os if (!getline(stream, line)) break; - strings::SimpleTokenizer iter(line, " \t\r\n"); + strings::SimpleTokenizer iter(line, kDelim); if (!iter) { @@ -403,6 +403,8 @@ string GetVehicleTypeForAccessConditional(string const & accessConditionalTag) } } // namespace +namespace routing +{ // RoadAccessTagProcessor -------------------------------------------------------------------------- RoadAccessTagProcessor::RoadAccessTagProcessor(VehicleType vehicleType) : m_vehicleType(vehicleType) diff --git a/generator/routing_index_generator.cpp b/generator/routing_index_generator.cpp index af50b31d39..cef00bd77b 100644 --- a/generator/routing_index_generator.cpp +++ b/generator/routing_index_generator.cpp @@ -400,15 +400,15 @@ void CalcCrossMwmTransitionsExperimental( } auto reader = cont.GetReader(TRANSIT_FILE_TAG); - ::transit::experimental::TransitData transitData; + transit::experimental::TransitData transitData; transitData.DeserializeForCrossMwm(*reader.GetPtr()); auto const & stops = transitData.GetStops(); auto const & edges = transitData.GetEdges(); - auto const getStopIdPoint = [&stops](::transit::TransitId stopId) { + auto const getStopIdPoint = [&stops](transit::TransitId stopId) { auto const it = find_if( stops.begin(), stops.end(), - [stopId](::transit::experimental::Stop const & stop) { return stop.GetId() == stopId; }); + [stopId](transit::experimental::Stop const & stop) { return stop.GetId() == stopId; }); CHECK(it != stops.end(), ("stopId:", stopId, "is not found in stops. Size of stops:", stops.size())); diff --git a/generator/tag_admixer.hpp b/generator/tag_admixer.hpp index fa71f7ea7e..68efab9fad 100644 --- a/generator/tag_admixer.hpp +++ b/generator/tag_admixer.hpp @@ -23,7 +23,7 @@ public: void ParseStream(std::istream & input) { std::string oneLine; - while (std::getline(input, oneLine)) + while (std::getline(input, oneLine, '\n')) { // String format: <>. auto pos = oneLine.find(';'); @@ -48,7 +48,7 @@ public: void ParseStream(std::istream & input) { std::string oneLine; - while (std::getline(input, oneLine)) + while (std::getline(input, oneLine, '\n')) { // String format: <>. // First ';'. diff --git a/generator/towns_dumper.cpp b/generator/towns_dumper.cpp index e488e28331..b0aad1e0d8 100644 --- a/generator/towns_dumper.cpp +++ b/generator/towns_dumper.cpp @@ -1,19 +1,21 @@ #include "towns_dumper.hpp" -#include "generator/osm_element.hpp" - #include "geometry/distance_on_sphere.hpp" #include "geometry/tree4d.hpp" #include "base/logging.hpp" #include +#include +#include +#include namespace { uint64_t constexpr kTownsEqualityMeters = 500000; } // namespace +TownsDumper::TownsDumper() {} void TownsDumper::FilterTowns() { LOG(LINFO, ("Preprocessing started. Have", m_records.size(), "towns.")); @@ -29,7 +31,7 @@ void TownsDumper::FilterTowns() } sort(towns.begin(), towns.end()); - LOG(LINFO, ("Capital's tree size =", resultTree.GetSize(), "; Town's vector size =", towns.size())); + LOG(LINFO, ("Tree of capitals has size", resultTree.GetSize(), "towns has size:", towns.size())); m_records.clear(); while (!towns.empty()) @@ -40,12 +42,9 @@ void TownsDumper::FilterTowns() mercator::RectByCenterXYAndSizeInMeters(mercator::FromLatLon(top.point), kTownsEqualityMeters), [&top, &isUniq](Town const & candidate) { - // The idea behind that is to collect all capitals and unique major cities in 500 km radius - // for upgrading in World map visibility. See TOWNS_FILE usage. if (ms::DistanceOnEarth(top.point, candidate.point) < kTownsEqualityMeters) isUniq = false; }); - if (isUniq) resultTree.Add(top); towns.pop_back(); @@ -66,11 +65,7 @@ void TownsDumper::CheckElement(OsmElement const & em) uint64_t population = 1; bool town = false; bool capital = false; - - // OSM goes to moving admin_level tag into boundary=administrative relation only. - // So capital=yes should be enough for country capital. - int admin_level = -1; - + int admin_level = std::numeric_limits::max(); for (auto const & tag : em.Tags()) { auto const & key = tag.m_key; diff --git a/generator/towns_dumper.hpp b/generator/towns_dumper.hpp index 460e1aa886..6d379d9875 100644 --- a/generator/towns_dumper.hpp +++ b/generator/towns_dumper.hpp @@ -4,13 +4,18 @@ #include "geometry/mercator.hpp" #include "geometry/rect2d.hpp" +#include "generator/osm_element.hpp" + +#include "base/string_utils.hpp" + #include #include -struct OsmElement; class TownsDumper { public: + TownsDumper(); + void CheckElement(OsmElement const & em); void Dump(std::string const & filePath); @@ -33,8 +38,7 @@ private: bool operator<(Town const & rhs) const { return population < rhs.population; } m2::RectD GetLimitRect() const { - auto const mercPt = mercator::FromLatLon(point); - return m2::RectD(mercPt, mercPt); + return m2::RectD(mercator::FromLatLon(point), mercator::FromLatLon(point)); } }; diff --git a/generator/translator_country.cpp b/generator/translator_country.cpp index 18e1e34e97..55865f17e0 100644 --- a/generator/translator_country.cpp +++ b/generator/translator_country.cpp @@ -84,9 +84,8 @@ TranslatorCountry::TranslatorCountry(std::shared_ptr std::shared_ptr const & cache, feature::GenerateInfo const & info, bool needMixTags) : Translator(processor, cache, std::make_shared(cache->GetCache())) - /// @todo Looks like ways.csv was in some MM proprietary generator routine?! , m_tagAdmixer(std::make_shared(info.GetIntermediateFileName("ways", ".csv"), - info.GetIntermediateFileName(TOWNS_FILE))) + info.GetIntermediateFileName("towns", ".csv"))) , m_tagReplacer(std::make_shared( base::JoinPath(GetPlatform().ResourcesDir(), REPLACED_TAGS_FILE))) { diff --git a/generator/translator_world.cpp b/generator/translator_world.cpp index b5429ac101..8178b8e8d0 100644 --- a/generator/translator_world.cpp +++ b/generator/translator_world.cpp @@ -27,7 +27,7 @@ TranslatorWorld::TranslatorWorld(std::shared_ptr cons feature::GenerateInfo const & info, bool needMixTags) : Translator(processor, cache, std::make_shared(cache->GetCache())) , m_tagAdmixer(std::make_shared(info.GetIntermediateFileName("ways", ".csv"), - info.GetIntermediateFileName(TOWNS_FILE))) + info.GetIntermediateFileName("towns", ".csv"))) , m_tagReplacer(std::make_shared( base::JoinPath(GetPlatform().ResourcesDir(), REPLACED_TAGS_FILE))) { diff --git a/generator/translators_pool.cpp b/generator/translators_pool.cpp index 801c706235..fa9ec7b195 100644 --- a/generator/translators_pool.cpp +++ b/generator/translators_pool.cpp @@ -31,7 +31,7 @@ bool TranslatorsPool::Finish() { m_threadPool.WaitingStop(); using TranslatorPtr = std::shared_ptr; - threads::ThreadSafeQueue> queue; + base::threads::ThreadSafeQueue> queue; while (!m_translators.Empty()) { std::promise p; diff --git a/generator/translators_pool.hpp b/generator/translators_pool.hpp index d1b907ede0..d2c4c73f2c 100644 --- a/generator/translators_pool.hpp +++ b/generator/translators_pool.hpp @@ -23,6 +23,6 @@ public: private: base::thread_pool::computational::ThreadPool m_threadPool; - threads::ThreadSafeQueue> m_translators; + base::threads::ThreadSafeQueue> m_translators; }; } // namespace generator diff --git a/geometry/calipers_box.cpp b/geometry/calipers_box.cpp index 38675cbcd8..c6bff0bcb9 100644 --- a/geometry/calipers_box.cpp +++ b/geometry/calipers_box.cpp @@ -23,7 +23,7 @@ static_assert(numeric_limits::has_infinity, ""); double const kInf = numeric_limits::infinity(); // Checks whether (p1 - p) x (p2 - p) >= 0. -bool IsCCWNeg(PointD const & p1, PointD const & p2, PointD const & p, double eps) +bool IsCCW(PointD const & p1, PointD const & p2, PointD const & p, double eps) { return robust::OrientedS(p1, p2, p) > -eps; } @@ -137,7 +137,7 @@ bool CalipersBox::HasPoint(PointD const & p, double eps) const { auto const & a = m_points[i]; auto const & b = m_points[(i + 1) % n]; - if (!IsCCWNeg(b, p, a, eps)) + if (!IsCCW(b, p, a, eps)) return false; } return true; diff --git a/geometry/clipping.cpp b/geometry/clipping.cpp index 3382a88210..361ab2cef7 100644 --- a/geometry/clipping.cpp +++ b/geometry/clipping.cpp @@ -201,7 +201,8 @@ RectCase GetRectCase(m2::RectD const & rect, std::vector const & pat vector ClipSplineByRect(m2::RectD const & rect, m2::SharedSpline const & spline) { - switch (GetRectCase(rect, spline->GetPath())) + auto const rectCase = GetRectCase(rect, spline->GetPath()); + switch (rectCase) { case RectCase::Inside: return {spline}; case RectCase::Outside: return {}; @@ -212,7 +213,8 @@ vector ClipSplineByRect(m2::RectD const & rect, m2::SharedSpli std::vector ClipPathByRect(m2::RectD const & rect, std::vector const & path) { - switch (GetRectCase(rect, path)) + auto const rectCase = GetRectCase(rect, path); + switch (rectCase) { case RectCase::Inside: return {m2::SharedSpline(path)}; case RectCase::Outside: return {}; @@ -228,6 +230,7 @@ void ClipPathByRectBeforeSmooth(m2::RectD const & rect, std::vector return; auto const rectCase = GetRectCase(rect, path); + if (rectCase == RectCase::Outside) return; diff --git a/geometry/geometry_tests/algorithm_test.cpp b/geometry/geometry_tests/algorithm_test.cpp index 5940e91973..1ef0a8d0ca 100644 --- a/geometry/geometry_tests/algorithm_test.cpp +++ b/geometry/geometry_tests/algorithm_test.cpp @@ -1,7 +1,6 @@ #include "testing/testing.hpp" #include "geometry/algorithm.hpp" -#include "geometry/mercator.hpp" #include "base/assert.hpp" @@ -36,7 +35,7 @@ PointD GetPointOnSurface(vector const & points) bool PointsAlmostEqual(PointD const & p1, PointD const & p2) { - return p1.EqualDxDy(p2, mercator::kPointEqualityEps); + return p1.EqualDxDy(p2, 1e-7); } } // namespace diff --git a/geometry/geometry_tests/angle_test.cpp b/geometry/geometry_tests/angle_test.cpp index 46a3e1f22b..deadadb6e2 100644 --- a/geometry/geometry_tests/angle_test.cpp +++ b/geometry/geometry_tests/angle_test.cpp @@ -52,7 +52,7 @@ namespace UNIT_TEST(Average) { - double constexpr eps = 1.0E-3; + double const eps = 1.0E-3; double arr1[] = { math::pi-eps, -math::pi+eps }; TEST(is_equal_angle(ang::GetMiddleAngle(arr1[0], arr1[1]), math::pi), ()); @@ -74,7 +74,7 @@ UNIT_TEST(ShortestDistance) UNIT_TEST(TwoVectorsAngle) { - double constexpr eps = 1e-10; + double const eps = 1e-10; TEST(base::AlmostEqualAbs(ang::TwoVectorsAngle(m2::Point(0, 0) /* p */, m2::Point(0, 1) /* p1 */, m2::Point(1, 0)) /* p2 */, 3 * math::pi2, eps), ()); diff --git a/geometry/geometry_tests/covering_test.cpp b/geometry/geometry_tests/covering_test.cpp index 9ad59b0165..73da4af258 100644 --- a/geometry/geometry_tests/covering_test.cpp +++ b/geometry/geometry_tests/covering_test.cpp @@ -11,8 +11,6 @@ // TODO: Add covering unit tests here. -namespace covering_test -{ using namespace std; using CellId = m2::CellId<5>; @@ -137,4 +135,3 @@ UNIT_TEST(Covering_Simplify_Smoke) e.push_back(CellId("0012")); TEST_EQUAL(v, e, ()); } -} // namespace covering_test diff --git a/geometry/geometry_tests/line2d_tests.cpp b/geometry/geometry_tests/line2d_tests.cpp index 4c85186a43..985e0da57f 100644 --- a/geometry/geometry_tests/line2d_tests.cpp +++ b/geometry/geometry_tests/line2d_tests.cpp @@ -4,10 +4,10 @@ #include "geometry/point2d.hpp" #include "geometry/segment2d.hpp" -namespace line2d_tests -{ using namespace m2; +namespace +{ double const kEps = 1e-12; using Result = IntersectionResult; @@ -45,4 +45,4 @@ UNIT_TEST(LineIntersection_Smoke) TEST(AlmostEqualAbs(result.m_point, PointD(0, 100), kEps), (result.m_point)); } } -} // namespace line2d_tests +} // namespace diff --git a/geometry/geometry_tests/polyline_tests.cpp b/geometry/geometry_tests/polyline_tests.cpp index 89c232f628..ecb31cfbc5 100644 --- a/geometry/geometry_tests/polyline_tests.cpp +++ b/geometry/geometry_tests/polyline_tests.cpp @@ -8,7 +8,7 @@ #include -namespace polyline_tests +namespace { double constexpr kEps = 1e-5; @@ -56,4 +56,4 @@ UNIT_TEST(Rect_PolylineMinDistanceTest) TestClosest(poly, m2::PointD(1.5, 5.0), 4.0 * 4.0 + 1.5 * 1.5 /* expectedSquaredDist */, 0 /* expectedIndex */); TestClosest(poly, m2::PointD(3.0, 1.0), 0.0 /* expectedSquaredDist */, 4 /* expectedIndex */); } -} // namespace polyline_tests +} // namespace diff --git a/geometry/geometry_tests/region2d_binary_op_test.cpp b/geometry/geometry_tests/region2d_binary_op_test.cpp index 2db5034a1b..c0ef2b8579 100644 --- a/geometry/geometry_tests/region2d_binary_op_test.cpp +++ b/geometry/geometry_tests/region2d_binary_op_test.cpp @@ -7,11 +7,13 @@ #include -namespace region2d_binary_op_test -{ using namespace std; + +namespace +{ using P = m2::PointI; using R = m2::RegionI; +} // namespace UNIT_TEST(RegionIntersect_Smoke) { @@ -164,4 +166,3 @@ UNIT_TEST(RegionDifference_Data1) } } */ -} // namespace region2d_binary_op_test diff --git a/geometry/geometry_tests/segment2d_tests.cpp b/geometry/geometry_tests/segment2d_tests.cpp index 5dc6e6c8d9..f1447f1038 100644 --- a/geometry/geometry_tests/segment2d_tests.cpp +++ b/geometry/geometry_tests/segment2d_tests.cpp @@ -3,10 +3,10 @@ #include "geometry/point2d.hpp" #include "geometry/segment2d.hpp" -namespace segment2d_tests -{ using namespace m2; +namespace +{ double const kEps = 1e-10; void TestIntersectionResult(IntersectionResult const & result, IntersectionResult::Type expectedType, @@ -105,4 +105,4 @@ UNIT_TEST(SegmentIntersection_InfinityIntersectionPoints) Intersect(Segment2D({0.0, 0.0}, {2.0, 4.0}), Segment2D({1.0, 2.0}, {2.0, 4.0}), kEps).m_type, IntersectionResult::Type::Infinity, ()); } -} // namespace segment2d_tests +} // namespace diff --git a/geometry/geometry_tests/tree_test.cpp b/geometry/geometry_tests/tree_test.cpp index b2bb2920cf..437b9c4311 100644 --- a/geometry/geometry_tests/tree_test.cpp +++ b/geometry/geometry_tests/tree_test.cpp @@ -4,9 +4,10 @@ #include -namespace tree_test -{ using namespace std; + +namespace +{ using R = m2::RectD; struct traits_t @@ -27,6 +28,7 @@ bool RFalse(T const &, T const &) { return false; } +} // namespace UNIT_TEST(Tree4D_Smoke) { @@ -137,6 +139,8 @@ UNIT_TEST(Tree4D_ForEachInRect) CheckInRect(arr, ARRAY_SIZE(arr), R(-5.5, -5.5, -0.5, -0.5), 2); } +namespace +{ struct TestObj : public m2::RectD { int m_id; @@ -148,6 +152,7 @@ struct TestObj : public m2::RectD bool operator==(TestObj const & r) const { return m_id == r.m_id; } }; +} UNIT_TEST(Tree4D_ReplaceEqual) { @@ -184,4 +189,3 @@ UNIT_TEST(Tree4D_ReplaceEqual) i = find(test.begin(), test.end(), T(1, 1, 2, 2, 2)); TEST_EQUAL(R(*i), R(0, 0, 3, 3), ()); } -} // namespace tree_test diff --git a/geometry/mercator.hpp b/geometry/mercator.hpp index 941f76481b..18e1853744 100644 --- a/geometry/mercator.hpp +++ b/geometry/mercator.hpp @@ -8,8 +8,6 @@ namespace mercator { -// Use to compare/match lat lon coordinates. -static double constexpr kPointEqualityEps = 1e-7; struct Bounds { static double constexpr kMinX = -180.0; diff --git a/geometry/point2d.hpp b/geometry/point2d.hpp index 688ac4da0b..bcfe21dccd 100644 --- a/geometry/point2d.hpp +++ b/geometry/point2d.hpp @@ -235,7 +235,7 @@ std::string DebugPrint(m2::Point const & p) } template -bool AlmostEqualAbs(m2::Point const & a, m2::Point const & b, double eps) +bool AlmostEqualAbs(m2::Point const & a, m2::Point const & b, double const eps) { return base::AlmostEqualAbs(a.x, b.x, eps) && base::AlmostEqualAbs(a.y, b.y, eps); } @@ -309,7 +309,7 @@ bool AlmostEqualULPs(m2::Point const & p1, m2::Point const & p2, unsigned } template -bool AlmostEqualAbs(m2::Point const & p1, m2::Point const & p2, double eps) +bool AlmostEqualAbs(m2::Point const & p1, m2::Point const & p2, double const & eps) { return m2::AlmostEqualAbs(p1, p2, eps); } diff --git a/geometry/polygon.hpp b/geometry/polygon.hpp index 10fcf1c366..8b9fef36d7 100644 --- a/geometry/polygon.hpp +++ b/geometry/polygon.hpp @@ -134,7 +134,7 @@ public: } }; -namespace polygon_detail +namespace detail { template class StripEmitter { @@ -164,11 +164,11 @@ namespace polygon_detail /// Make single strip for the range of points [beg, end), started with index = i. template -void MakeSingleStripFromIndex(size_t i, size_t n, F && f) +void MakeSingleStripFromIndex(size_t i, size_t n, F f) { ASSERT_LESS(i, n, ()); f(i); - FindSingleStripForIndex(i, n, polygon_detail::StripEmitter(f)); + FindSingleStripForIndex(i, n, detail::StripEmitter(f)); } template double GetPolygonArea(TIter beg, TIter end) diff --git a/geometry/simplification.hpp b/geometry/simplification.hpp index 4a1f24d253..81351f521a 100644 --- a/geometry/simplification.hpp +++ b/geometry/simplification.hpp @@ -17,7 +17,7 @@ // SimplifyXXX() should be used to simplify polyline for a given epsilon. // (!) They do not include the last point to the simplification, the calling side should do it. -namespace simpl +namespace impl { ///@name This functions take input range NOT like STL does: [first, last]. //@{ @@ -45,15 +45,15 @@ std::pair MaxDistance(Iter first, Iter last, DistanceFn & distFn) template void SimplifyDP(Iter first, Iter last, double epsilon, DistanceFn & distFn, Out & out) { - std::pair maxDist = MaxDistance(first, last, distFn); + std::pair maxDist = impl::MaxDistance(first, last, distFn); if (maxDist.second == last || maxDist.first < epsilon) { out(*last); } else { - simpl::SimplifyDP(first, maxDist.second, epsilon, distFn, out); - simpl::SimplifyDP(maxDist.second, last, epsilon, distFn, out); + impl::SimplifyDP(first, maxDist.second, epsilon, distFn, out); + impl::SimplifyDP(maxDist.second, last, epsilon, distFn, out); } } //@} @@ -67,7 +67,7 @@ struct SimplifyOptimalRes int32_t m_NextPoint = -1; uint32_t m_PointCount = -1U; }; -} // namespace simpl +} // namespace impl // Douglas-Peucker algorithm for STL-like range [beg, end). // Iteratively includes the point with max distance from the current simplification. @@ -78,7 +78,7 @@ void SimplifyDP(Iter beg, Iter end, double epsilon, DistanceFn distFn, Out out) if (beg != end) { out(*beg); - simpl::SimplifyDP(beg, end - 1, epsilon, distFn, out); + impl::SimplifyDP(beg, end - 1, epsilon, distFn, out); } } @@ -100,8 +100,8 @@ void SimplifyNearOptimal(int maxFalseLookAhead, Iter beg, Iter end, double epsil return; } - std::vector F(n); - F[n - 1] = simpl::SimplifyOptimalRes(n, 1); + std::vector F(n); + F[n - 1] = impl::SimplifyOptimalRes(n, 1); for (int32_t i = n - 2; i >= 0; --i) { for (int32_t falseCount = 0, j = i + 1; j < n && falseCount < maxFalseLookAhead; ++j) @@ -109,7 +109,7 @@ void SimplifyNearOptimal(int maxFalseLookAhead, Iter beg, Iter end, double epsil uint32_t const newPointCount = F[j].m_PointCount + 1; if (newPointCount < F[i].m_PointCount) { - if (simpl::MaxDistance(beg + i, beg + j, distFn).first < epsilon) + if (impl::MaxDistance(beg + i, beg + j, distFn).first < epsilon) { F[i].m_NextPoint = j; F[i].m_PointCount = newPointCount; diff --git a/indexer/CMakeLists.txt b/indexer/CMakeLists.txt index 08836741f3..7d698aaf7a 100644 --- a/indexer/CMakeLists.txt +++ b/indexer/CMakeLists.txt @@ -150,7 +150,6 @@ omim_add_library(${PROJECT_NAME} ${SRC}) add_subdirectory(${OMIM_ROOT}/3party/protobuf ${CMAKE_CURRENT_BINARY_DIR}/protobuf) target_link_libraries(${PROJECT_NAME} - search # search::DummyRankTable in CachingRankTableLoader platform geometry protobuf diff --git a/indexer/categories_holder.cpp b/indexer/categories_holder.cpp index 737fb81074..deb3feefcc 100644 --- a/indexer/categories_holder.cpp +++ b/indexer/categories_holder.cpp @@ -13,7 +13,7 @@ using namespace std; namespace { -enum ParseState +enum State { EParseTypes, EParseLanguages @@ -194,7 +194,7 @@ void CategoriesHolder::LoadFromStream(istream & s) m_name2type.Clear(); m_groupTranslations.clear(); - ParseState state = EParseTypes; + State state = EParseTypes; string line; Category cat; vector types; diff --git a/indexer/categories_holder.hpp b/indexer/categories_holder.hpp index f049d5ceed..7c666c02ea 100644 --- a/indexer/categories_holder.hpp +++ b/indexer/categories_holder.hpp @@ -117,7 +117,7 @@ public: // List of languages that are currently disabled in the application // because their translations are not yet complete. - static std::array constexpr kDisabledLanguages = {"sw"}; + static std::array constexpr kDisabledLanguages = {"el", "he", "sw"}; explicit CategoriesHolder(std::unique_ptr && reader); diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp index 6f4c294750..7fc66368ea 100644 --- a/indexer/classificator.cpp +++ b/indexer/classificator.cpp @@ -123,12 +123,19 @@ void ClassifObject::ConcatChildNames(string & s) const // Classificator implementation ///////////////////////////////////////////////////////////////////////////////////////// -Classificator & classif() +namespace +{ +Classificator & classif(MapStyle mapStyle) { static Classificator c[MapStyleCount]; - MapStyle const mapStyle = GetStyleReader().GetCurrentStyle(); return c[mapStyle]; } +} // namespace + +Classificator & classif() +{ + return classif(GetStyleReader().GetCurrentStyle()); +} namespace ftype { diff --git a/indexer/feature.cpp b/indexer/feature.cpp index bc2c1c0839..f0c5dbacea 100644 --- a/indexer/feature.cpp +++ b/indexer/feature.cpp @@ -601,37 +601,20 @@ string FeatureType::DebugString(int scale) m2::PointD keyPoint; switch (GetGeomType()) { - case GeomType::Point: - keyPoint = m_center; - break; - - case GeomType::Line: - if (m_points.empty()) - { - ASSERT(scale != FeatureType::WORST_GEOMETRY && scale != FeatureType::BEST_GEOMETRY, (scale)); - return res; - } - keyPoint = m_points.front(); - break; - + case GeomType::Point: keyPoint = m_center; break; + case GeomType::Line: keyPoint = m_points.front(); break; case GeomType::Area: - if (m_triangles.empty()) - { - ASSERT(scale != FeatureType::WORST_GEOMETRY && scale != FeatureType::BEST_GEOMETRY, (scale)); - return res; - } - ASSERT_GREATER(m_triangles.size(), 2, ()); keyPoint = (m_triangles[0] + m_triangles[1] + m_triangles[2]) / 3.0; break; - case GeomType::Undefined: - ASSERT(false, ()); + ASSERT(false, ("Assume that we have valid feature always")); break; } // Print coordinates in (lat,lon) for better investigation capabilities. - res += "Key point: " + DebugPrint(keyPoint) + "; " + DebugPrint(mercator::ToLatLon(keyPoint)); + res += "Key point: "; + res += DebugPrint(mercator::ToLatLon(keyPoint)); return res; } @@ -771,7 +754,7 @@ void FeatureType::GetReadableName(bool allowTranslit, int8_t deviceLang, string ::GetReadableName(mwmInfo->GetRegionData(), GetNames(), deviceLang, allowTranslit, name); } -string const & FeatureType::GetHouseNumber() +string FeatureType::GetHouseNumber() { ParseCommon(); return m_params.house.Get(); @@ -794,7 +777,7 @@ uint8_t FeatureType::GetRank() uint64_t FeatureType::GetPopulation() { return feature::RankToPopulation(GetRank()); } -string const & FeatureType::GetRoadNumber() +string FeatureType::GetRoadNumber() { ParseCommon(); return m_params.ref; @@ -816,7 +799,7 @@ std::string FeatureType::GetMetadata(feature::Metadata::EType type) if (it == m_metaIds.end()) return {}; - auto value = m_metadataDeserializer->GetMetaById(it->second); + auto const value = m_metadataDeserializer->GetMetaById(it->second); m_metadata.Set(type, value); return value; } diff --git a/indexer/feature.hpp b/indexer/feature.hpp index b3672ec992..2c1844cf2d 100644 --- a/indexer/feature.hpp +++ b/indexer/feature.hpp @@ -38,6 +38,7 @@ public: FeatureType(osm::MapObject const & emo); feature::GeomType GetGeomType() const; + FeatureParamsBase & GetParams() { return m_params; } uint8_t GetTypesCount() const { return (m_header & feature::HEADER_MASK_TYPE) + 1; } @@ -133,7 +134,7 @@ public: std::string DebugString(int scale); - std::string const & GetHouseNumber(); + std::string GetHouseNumber(); /// @name Get names for feature. /// @param[out] defaultName corresponds to osm tag "name" @@ -152,7 +153,7 @@ public: uint8_t GetRank(); uint64_t GetPopulation(); - std::string const & GetRoadNumber(); + std::string GetRoadNumber(); feature::Metadata const & GetMetadata(); diff --git a/indexer/indexer_tests/bounds.hpp b/indexer/indexer_tests/bounds.hpp index 2844c66a2a..811c07061c 100644 --- a/indexer/indexer_tests/bounds.hpp +++ b/indexer/indexer_tests/bounds.hpp @@ -1,5 +1,3 @@ -#pragma once - #include "geometry/rect2d.hpp" template diff --git a/indexer/indexer_tests/complex_serdes_tests.cpp b/indexer/indexer_tests/complex_serdes_tests.cpp index f73aaad035..adda173b7f 100644 --- a/indexer/indexer_tests/complex_serdes_tests.cpp +++ b/indexer/indexer_tests/complex_serdes_tests.cpp @@ -9,26 +9,25 @@ #include #include -namespace complex_serdes_tests +namespace { using ByteVector = std::vector; -using ::complex::ComplexSerdes; decltype(auto) GetForest() { - auto tree1 = tree_node::MakeTreeNode({1, 2, 3}); - auto node11 = tree_node::MakeTreeNode({11, 12, 13}); - tree_node::Link(tree_node::MakeTreeNode({111}), node11); - tree_node::Link(tree_node::MakeTreeNode({112, 113}), node11); - tree_node::Link(tree_node::MakeTreeNode({114}), node11); + auto tree1 = tree_node::MakeTreeNode({1, 2, 3}); + auto node11 = tree_node::MakeTreeNode({11, 12, 13}); + tree_node::Link(tree_node::MakeTreeNode({111}), node11); + tree_node::Link(tree_node::MakeTreeNode({112, 113}), node11); + tree_node::Link(tree_node::MakeTreeNode({114}), node11); tree_node::Link(node11, tree1); - tree_node::Link(tree_node::MakeTreeNode({6, 7}), tree1); + tree_node::Link(tree_node::MakeTreeNode({6, 7}), tree1); - auto tree2 = tree_node::MakeTreeNode({9}); - tree_node::Link(tree_node::MakeTreeNode({21, 22, 23}), tree2); - tree_node::Link(tree_node::MakeTreeNode({24, 25}), tree2); + auto tree2 = tree_node::MakeTreeNode({9}); + tree_node::Link(tree_node::MakeTreeNode({21, 22, 23}), tree2); + tree_node::Link(tree_node::MakeTreeNode({24, 25}), tree2); - tree_node::Forest forest; + tree_node::Forest forest; forest.Append(tree1); forest.Append(tree2); return forest; @@ -41,13 +40,13 @@ UNIT_TEST(Complex_SerdesV0) { MemWriter writer(buffer); WriterSink sink(writer); - ComplexSerdes::Serialize(sink, ComplexSerdes::Version::V0, expectedForest); + complex::ComplexSerdes::Serialize(sink, complex::ComplexSerdes::Version::V0, expectedForest); } { MemReader reader(buffer.data(), buffer.size()); ReaderSource src(reader); - tree_node::Forest forest; - ComplexSerdes::Deserialize(src, ComplexSerdes::Version::V0, forest); + tree_node::Forest forest; + complex::ComplexSerdes::Deserialize(src, complex::ComplexSerdes::Version::V0, forest); TEST_EQUAL(forest, expectedForest, ()); } } @@ -59,13 +58,13 @@ UNIT_TEST(Complex_Serdes) { MemWriter writer(buffer); WriterSink sink(writer); - ComplexSerdes::Serialize(sink, expectedForest); + complex::ComplexSerdes::Serialize(sink, expectedForest); } { MemReader reader(buffer.data(), buffer.size()); - tree_node::Forest forest; - ComplexSerdes::Deserialize(reader, forest); + tree_node::Forest forest; + complex::ComplexSerdes::Deserialize(reader, forest); TEST_EQUAL(forest, expectedForest, ()); } } -} // namespace complex_serdes_tests +} // namespace diff --git a/indexer/indexer_tests/mwm_set_test.cpp b/indexer/indexer_tests/mwm_set_test.cpp index 5b868ccca0..fd0bbc02a2 100644 --- a/indexer/indexer_tests/mwm_set_test.cpp +++ b/indexer/indexer_tests/mwm_set_test.cpp @@ -1,8 +1,9 @@ #include "testing/testing.hpp" -#include "platform/platform_tests_support/scoped_mwm.hpp" +#include "platform/platform_tests_support/scoped_mwm.cpp" #include "indexer/indexer_tests/test_mwm_set.hpp" + #include "indexer/mwm_set.hpp" #include "base/macros.hpp" @@ -10,16 +11,16 @@ #include #include -namespace mwm_set_test -{ -using namespace platform::tests_support; using namespace std; using platform::CountryFile; using platform::LocalCountryFile; using tests::TestMwmSet; +using namespace platform::tests_support; using MwmsInfo = unordered_map>; +namespace +{ void GetMwmsInfo(MwmSet const & mwmSet, MwmsInfo & mwmsInfo) { vector> mwmsInfoList; @@ -36,6 +37,7 @@ void TestFilesPresence(MwmsInfo const & mwmsInfo, initializer_list const for (string const & countryFileName : expectedNames) TEST_EQUAL(1, mwmsInfo.count(countryFileName), (countryFileName)); } +} // namespace UNIT_TEST(MwmSetSmokeTest) { @@ -169,4 +171,3 @@ UNIT_TEST(MwmSetLockAndIdTest) TEST(!handle.GetId().IsAlive(), ()); TEST(!handle.GetId().GetInfo().get(), ()); } -} // namespace mwm_set_test diff --git a/iphone/Maps/Classes/FirstSession.h b/iphone/Maps/Classes/FirstSession.h index e4d2c29c29..80c6c9bfa2 100644 --- a/iphone/Maps/Classes/FirstSession.h +++ b/iphone/Maps/Classes/FirstSession.h @@ -25,10 +25,9 @@ #ifndef FIRSTSESSION_H #define FIRSTSESSION_H -#import #import #import -#import // TARGET_OS_IPHONE +#import #if (TARGET_OS_IPHONE > 0) #import // enum UIBackgroundFetchResult diff --git a/iphone/Maps/Classes/FirstSession.mm b/iphone/Maps/Classes/FirstSession.mm index 3532ffdddd..4323b56f60 100644 --- a/iphone/Maps/Classes/FirstSession.mm +++ b/iphone/Maps/Classes/FirstSession.mm @@ -30,6 +30,7 @@ #include // std::pair #include +#include // TARGET_OS_IPHONE #import #import diff --git a/iphone/Maps/Core/Theme/Renderers/UINavigationBarRenderer.swift b/iphone/Maps/Core/Theme/Renderers/UINavigationBarRenderer.swift index 67fb830589..a130495c72 100644 --- a/iphone/Maps/Core/Theme/Renderers/UINavigationBarRenderer.swift +++ b/iphone/Maps/Core/Theme/Renderers/UINavigationBarRenderer.swift @@ -15,23 +15,10 @@ class UINavigationBarRenderer: UIViewRenderer { class func render(_ control: UINavigationBar, style: Style) { super.render(control, style: style) if let barTintColor = style.barTintColor { - if #available(iOS 13.0, *) { - let appearance = UINavigationBarAppearance() - appearance.configureWithOpaqueBackground() - appearance.backgroundColor = barTintColor - control.standardAppearance = appearance - control.scrollEdgeAppearance = appearance - } else { - control.barTintColor = barTintColor - } + control.barTintColor = barTintColor } if let shadowImage = style.shadowImage { - if #available(iOS 13.0, *) { - control.standardAppearance.shadowImage = shadowImage - control.scrollEdgeAppearance!.shadowImage = shadowImage - } else { - control.shadowImage = shadowImage - } + control.shadowImage = shadowImage } var attributes = [NSAttributedString.Key: Any]() @@ -41,11 +28,6 @@ class UINavigationBarRenderer: UIViewRenderer { if let fontColor = style.fontColor { attributes[NSAttributedString.Key.foregroundColor] = fontColor } - if #available(iOS 13.0, *) { - control.standardAppearance.titleTextAttributes = attributes - control.scrollEdgeAppearance!.titleTextAttributes = attributes - } else { - control.titleTextAttributes = attributes - } + control.titleTextAttributes = attributes } } diff --git a/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.strings index 06d1a6cea8..7ff00c043a 100644 --- a/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "رجوع"; + /* Button text (should be short) */ "cancel" = "إلغاء"; @@ -17,6 +20,9 @@ "download_maps" = "تنزيل الخرائط"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "فشلت عملية التنزيل، انقر مرة أخرى لإعداة المحاولة"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "جاري التنزيل…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "الخرائط"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "م.ب."; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "ميل"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "البحث"; +/* Search box placeholder text */ +"search_map" = "ابحث في الخريطة"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "نعم"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "التطبيق أو جميع خدمات تحديد المواقع معطلة لديك في الوقت الحالي. الرجاء تفعيلها في الإعدادات."; + /* View and button titles for accessibility */ "zoom_to_country" = "عرض على الخريطة"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "فشلت عملية تنزيل"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "محاولة مرة أخرى"; + "about_menu_title" = "حول Organic Maps"; +"connection_settings" = "اعدادات الاتصال"; + "close" = "اغلاق"; +"unsupported_phone" = "أنت بحاجة الى OpenGL بأجهزة تسريع. لسوء الحظ جهازك لا يدعم هذه الخاصية."; + "download" = "تنزيل"; +"disconnect_usb_cable" = "الرجاء فصل كابل الناقل التسلسلي الشامل أو إدخال بطاقة الذاكرة من أجل استخدام Organic Maps."; + +"not_enough_free_space_on_sdcard" = "الرجاء إخلاء بعض المساحة في تخزين البطاقة الرقمية الآمنة\الناقل التسلسلي الشامل أولا من أجل استخدام هذا التطبيق."; + +"not_enough_memory" = "لا يوجد ذاكرة كافية لتشغيل التطبيق."; + +"download_resources" = "قبل أن تبدأ، دعنا نقوم بتنزيل خريطة العالم العامة على جهازك.\nانها بحاجة الى %@ من البيانات."; + +"download_resources_continue" = "الذهاب الى الخريطة"; + +"downloading_country_can_proceed" = "تنزيل %@. يمكنك الآن\nالمتابعة الى الخريطة."; + +"download_country_ask" = "هل تريد تنزيل %@؟"; + +"update_country_ask" = "هل تريد تحديث %@ ؟"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "توقف مؤقت"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "استمرار"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "فشلت عملية تنزيل %@"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "إضافة مجموعة جديدة"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "أماكني"; +/* Add bookmark dialog - bookmark name */ +"name" = "الاسم"; + /* Editor title above street and house number */ "address" = "العنوان"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "المجموعة"; + /* Settings button in system menu */ "settings" = "الإعدادات"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "تخزين الخرائط"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "اختر المكان الذي ينبغي تنزيل الخرائط فيه."; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "هل تريد نقل الخرائط؟"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "يمكن أن تستغرق هذه العملية عدة دقائق.\nالرجاء الانتظار…"; + /* Measurement units title in settings activity */ "measurement_units" = "وحدات القياس."; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "اختر من بين الأميال و الكيلو مترات."; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "مكان لتناول الطعام"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "المشتريات"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "نقل"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "غاز"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "الاصطفاف"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "التسوق"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "فندق"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "سياحة"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "التسلية"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "ماكينة الصراف الآلي"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "أنشطة ترفيه ليلية"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "عطلة عائلية"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "بنك"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "صيدلية"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "مستشفى"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "حمام"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "بريد"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "شرطة"; +/* Notes field in Bookmarks view */ +"description" = "ملاحظات"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "تم مشاركة اشارات Organic Maps المرجعية معك"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "لم يتم التعرف على موقعك بعد."; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "نأسف، اعدادات تخزين الخرائط معطلة حالياً."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "جاري الآن تنزيل الدولة"; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "هاي، تفقد الموقع الخاص بي على Organic Maps! %1$@ أو %2$@. ليس لديك أي خرائط تعمل بدون الاتصال مع الانترنت مثبتة على جهازك؟ قم بتحميلها من هنا: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "هاي، تفقد الدبوس الخاص بي على خريطة Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "يا هلا، تحقق من موقعي الحالي على خريطة Organic Maps!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "مرحبا،\n\nأنا هنا الآن: %1$@. انقر على هذا الرابط %2$@ أو ذلك الرابط %3$@ لمشاهدة المكان على الخريطة.\n\nشكرا لك."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "مشاركة"; /* Share by email button text, also used in editor. */ "email" = "البريد الالكتروني"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "تم النسخ الى الحافظة: %1$@"; + /* place preview title */ "info" = "المعلومات"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "هل أنت واثق أنك تريد الاستمرار؟"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "المسارات"; @@ -195,10 +283,18 @@ "share_my_location" = "مشاركة موقعي"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "الملاحة"; "pref_zoom_title" = "أزرار التكبير"; +"pref_zoom_summary" = "عرض على الشاشة"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "الوضع الليلي"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "لغة الصوت"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "غير متاح"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "آخر"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "مساعدة"; +/* Button in the main Help dialog */ +"faq" = "ﺔﺑﻮﺟﺃﻭ ﺔﻠﺌﺳﺃ"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "كيف تدعم لنا؟"; + /* Button in the main Help dialog */ "copyright" = "حقوق الطبع والنشر"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "تحديث الكل"; +/* Cancel all button text */ +"downloader_cancel_all" = "إلغاء الكل"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "تم تنزيلها"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "حذف الخريطة"; +/* Item in context menu. */ +"downloader_update_map" = "تحديث الخريطة"; + +/* Preference text */ +"pref_use_google_play" = "استخدم خدمات جوجل بلاي لتتعرف على موقعك الحالي"; + /* Text for rating dialog */ "rating_just_rated" = "لقد قمت بتقييم تطبيقك للتو"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Creare un percorso necessita la presenza di tutte le mappe scaricate e aggiornate dalla tua posizione alla destinazione."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Spazio non sufficiente"; + /* bookmark button text */ "bookmark" = "إشارة مرجعية"; +/* location service disabled */ +"enable_location_services" = "الرجاء تفعيل خدمة تحديد المواقع"; + "save" = "حفظ"; +"edit_description_hint" = "أوصافك (نصّ أو html)"; + "create" = "إنشاء"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "تعذر تحديد موقع المسار"; +"dialog_routing_cant_build_route" = "تعذر إنشاء مسار."; + "dialog_routing_change_start_or_end" = "برجاء تعديل نقطة بدء وجهتك."; "dialog_routing_change_start" = "تعديل نقطة البدء"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "لبدء البحث وإنشاء الطرق، يرجى تنزيل الخريطة، وسوف لن تحتاج إلى اتصال بالإنترنت بعد الآن."; + +"search_select_map" = "اختيار الخريطة"; + /* «Show» context menu */ "show" = "عرض"; @@ -521,6 +655,9 @@ "clear_search" = "مسح تاريخ البحث"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "موقعك"; "p2p_start" = "البداية"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "هل ترغب في أن نرسم مسار لك من موقعك الحالي؟"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "التالي"; + "editor_time_add" = "إضافة جدول"; "editor_time_delete" = "حذف جدول"; @@ -556,14 +696,28 @@ "editor_example_values" = "أمثلة على القيم"; +"editor_correct_mistake" = "تصحيح الخطأ"; + "editor_add_select_location" = "الموقع"; "editor_done_dialog_1" = "لقد غيرت خريطة العالم. لا تخفي ذلك! اخبر أصدقاءك، وغيروها معا."; "share_with_friends" = "شارك مع الأصدقاء"; +"editor_report_problem_desription_1" = "يرجى وصف المشكلة بالتفاصيل حتى يتسنى لفريق OpenStreeMap إصلاح الخطأ."; + +"editor_report_problem_desription_2" = "أو افعل ذلك بنفسك من خلال الموقع https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "إرسال"; +"editor_report_problem_title" = "مشكلة"; + +"editor_report_problem_no_place_title" = "المكان غير موجودٍ"; + +"editor_report_problem_under_construction_title" = "مغلق للصيانة"; + +"editor_report_problem_duplicate_place_title" = "مكان متكرر"; + "autodownload" = "التنزيل التلقائي"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "اضف ساعات عمل"; +"edit_opening_hours" = "حرر ساعات عمل"; + "no_osm_account" = "ليس لديك حساب في OpenStreetMap؟"; "register_at_openstreetmap" = "التسجيل"; @@ -592,6 +748,8 @@ "login" = "تسجيل الدخول"; +"password" = "كلمة المرور"; + "forgot_password" = "هل نسيت كلمة المرور؟"; "osm_account" = "حساب OSM"; @@ -609,6 +767,8 @@ "add_language" = "إضافة لغة"; +"street" = "الشارع"; + /* Editable House Number text field (in address block). */ "house_number" = "رقم المنزل"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "إضافة شارع"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "ﻉﺭﺎﺷ ﻢﺳﺍ ﻞﺧﺩﺃ"; + "choose_language" = "اختر اللغة"; "choose_street" = "اختر الشارع"; @@ -632,12 +795,16 @@ "phone" = "الهاتف"; +"editor_add_phone" = "Add Phone"; + "please_note" = "يرجى العلم أنه،"; "downloader_delete_map_dialog" = "سيتم حذف جميع التغييرات بالخريطة بالإضافة إلى حذف الخريطة نفسها."; "downloader_update_maps" = "تحديث الخرائط"; +"downloader_mwm_migration_dialog" = "لإنشاء مسار، فأنت تحتاج إلى تحديث كافة الخرائط ثم إعادة تخطيط المسار مرة أخرى."; + "downloader_search_field_hint" = "اعثر على الخريطة"; "migration_download_error_dialog" = "خطأ بالتنزيل"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "من فضلك، قم بإزالة البيانات غير الضرورية"; +"editor_login_error_dialog" = "خطأ في تسجيل الدخول."; + "editor_profile_changes" = "التغييرات التي تم التحقق منها"; "editor_focus_map_on_location" = "اسحب الخريطة لتحدد الموقع الصحيح للهدف."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "الفئة"; +"detailed_problem_description" = "وصف مفصل للمشكلة"; + +"editor_report_problem_other_title" = "مشكلة مختلفة"; + +"placepage_add_business_button" = "إضافة مؤسسة"; + "whatsnew_editor_message_1" = "قم بإضافة أماكن جديدة للخريطة، وعدل أماكن حالية مباشرة من التطبيق."; "dialog_incorrect_feature_position" = "تغيير الموقع"; @@ -710,6 +885,8 @@ "editor_operator" = "معامل"; +"downloader_my_maps_title" = "خرائطي"; + "downloader_no_downloaded_maps_title" = "لم تقم بتنزيل أية خرائط"; "downloader_no_downloaded_maps_message" = "قم بتنزيل خرائط للبحث عن مكان والتنقل بدون اتصال بالإنترنت."; @@ -751,10 +928,16 @@ "miles_per_hour" = "ميل/ساعة"; +"hour" = "س"; + +"minute" = "د"; + "placepage_place_description" = "الوصف"; "placepage_more_button" = "المزيد"; +"placepage_more_reviews_button" = "المزيد من المراجعات"; + "book_button" = "حجز"; "placepage_call_button" = "اتصال"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "المكان غير موجود"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…المزيد"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "أدخل بريدا إلكترونيا صالحا"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "تحديث"; "placepage_add_place_button" = "إضافة مكان ما للخريطة"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "رفض"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "قائمة"; "mobile_data_dialog" = "استخدام إنترنت المحمول لإظهار المعلومات التفصيلية؟"; @@ -848,12 +1044,16 @@ "big_font" = "زيادة حجم الخط على الخريطة"; +"traffic_update_app" = "الرجاء تحديث Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "لعرض البيانات المرورية، يجب تحديث التطبيق."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "البيانات المرورية غير متاحة"; +"enable_logging" = "تمكين التسجيل"; + /* Settings: "Send general feedback" button */ "feedback_general" = "تعقيب عام"; @@ -861,14 +1061,24 @@ "off" = "إيقاف"; +"prefs_languages_information" = "نحن نستخدم نظام النص إلى كلام (TTS) للتعليمات الصوتية. تستخدم العديد من أجهزة Android نظام Google TTS، يمكنك تنزيله من أو تحديثه من Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "(TTS) إضافي (حيث إن نظام Google TTS لا يدعم اللغات بعد (من Google Play مثل Vocalizer TTS أو SVOX Classics.\nلإدارة الإعدادات لتخليق الكلام، في الجهاز الخاص بك افتح الإعدادات –> اللغة والإدخال –> الكلام –> إخراج نص إلى كلام. هنا يمكنك تنزيل حزمة لغة إضافية أو تحديد محرك النص إلى كلام المفضل."; + +"prefs_languages_information_off_link" = "لمزيد من المعلومات الرجاء مراجعة هذا الدليل."; + "transliteration_title" = "كتابة بالحروف اللاتينية"; +"learn_more" = "تعلم المزيد"; + "core_exit" = "خروج"; "routing_add_start_point" = "أضف نقطة البداية لتخطيط المسار"; "routing_add_finish_point" = "أضف النهاية لتخطيط المسار"; +"button_exit" = "خروج"; + "planning_route_manage_route" = "إدارة المسار"; "button_plan" = "خطة"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "عفوًا، كان هناك خطأ. حاول تسجيل الدخول مرة اخرى."; +"dialog_error_storage_title" = "مشكلة الوصول للتخزين"; + +"dialog_error_storage_message" = "التخزين الخارجي غير متوفر، ربما تمت إزالة بطاقة SD، أو أنها تالفة أو ملف النظام للقراءة فقط. افحصه واتصل بنا على support@organicmaps.app"; + +"setting_emulate_bad_storage" = "محاكاة التخزين السيء"; + "core_entrance" = "المدخل"; "error_enter_correct_name" = "الرجاء إدخال اسم صحيح"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "إنشاء قائمة جديدة"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "إخفاء الشاشة"; "downloader_percent" = "%s (%s من %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "لا يمكن مشاركة قائمة فارغة"; +"bookmarks_error_title_empty_list_name" = "الاسم لا يمكن أن يكون فارغًا"; + "bookmarks_error_message_empty_list_name" = "يرجى إدخال اسم القائمة"; +"bookmarks_new_list_hint" = "قائمة جديدة"; + "bookmarks_error_title_list_name_already_taken" = "هذا الاسم أخذ سابقا"; +"bookmarks_error_message_list_name_already_taken" = "يرجى اختيار اسم آخر"; + "bookmarks_error_title_list_name_too_long" = "هذا الاسم طويل للغاية"; +"please_wait" = "أرجو الإنتظار…"; + +"phone_number" = "رقم الهاتف"; + "profile" = "الملف الشخصي OpenStreetMap"; "bookmarks_detect_title" = "تم اكتشاف ملفات جديدة"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "استعادة هذا الإصدار؟"; +"common_check_internet_connection_dialog_title" = "لا يوجد اتصال بالإنترنت"; + "error_system_message" = "حدث خطأ غير معروف"; "restore" = "استعادة"; +"subtittle_opt_out" = "إعدادات التتبع"; + +"crash_reports" = "تقرير الحادث"; + +"crash_reports_description" = "قد نستخدم بياناتك لتحسين تجربة Organic Maps. سوف تكون التغييرات نافذة المفعول بعد إعادة تشغيل التطبيق."; + "privacy_policy" = "سياسة الخصوصية"; "terms_of_use" = "شروط الاستخدام"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "خريطة مترو الانفاق غير متوفرة"; +"bookmarks_empty_list_title" = "هذه اللائحة شاغرة"; + +"bookmarks_empty_list_message" = "لإضافة إشارة مرجعية ، اضغط على مكان على الخريطة ثم انقر فوق رمز النجمة"; + +"category_desc_more" = "…المزيد"; + "title_error_downloading_bookmarks" = "حدث خطأ"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "إخفاء من الخريطة"; +"public_access" = "إطلاع الجمهور"; + +"limited_access" = "محدودية فرص حصول"; + "bookmark_list_description_hint" = "اكتب وصفًا (نص أو html)"; +"not_shared" = "خاص"; + "tags_loading_error_subtitle" = "حدث خطأ أثناء تحميل العلامات ، يرجى المحاولة مرة أخرى"; "download_button" = "تحميل"; @@ -972,6 +1221,9 @@ "place_description_title" = "وصف المكان"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "محمل الخريطة"; + "speedcams_notice_message" = "السيارات- تحذير على الرادارات إذا كان هناك خطر تجاوز الحد الأقصى للسرعة\nدائما - احذر دائما من كاميرات السرعة\nمطلقا - أبدا تحذير من كاميرات السرعة"; "power_managment_title" = "وضع توفير الطاقة"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "توفير الطاقة القصوى"; +"enable_logging_warning_message" = "يتحول الخيار إلى التسجيل لإغراض التشخيص. يمكن أن يكون مفيدًا لفريق الدعم الخاص بنا الذين يعملون على استكشاف أخطاء التطبيق وإصلاحها. قم بتفعيل هذا الخيار فقط في حالة طلب الدعم من Organic Maps."; + +"access_rules_author_only" = "التحرير على الإنترنت"; + "driving_options_title" = "خيارات قيادة"; "driving_options_subheader" = "تجنب على كل الطرق"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "تريتب…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "رتب العلامات المرجعية"; + /* iOS */ "sort_default" = "رتب افتراضي"; @@ -1086,6 +1345,18 @@ "sort_date" = "رتب حسب التاريخ"; +/* Android */ +"by_default" = "افتراضي"; + +/* Android */ +"by_type" = "حسب النوع"; + +/* Android */ +"by_distance" = "حسب المسافة"; + +/* Android */ +"by_date" = "حسب التاريخ"; + "week_ago_sorttype" = "منذ أسبوع"; "month_ago_sorttype" = "منذ شهر"; @@ -1132,6 +1403,8 @@ "religious_places" = "أماكن دينية"; +"select_list" = "اختر القائمة"; + "transit_not_found" = "التنقل باستخدام مترو الأنفاق في هذه المنطقة غير متاح حتى الآن"; "dialog_pedestrian_route_is_long_header" = "لم يتم العثور على مترو الانفاق"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "درجة الصعوبة"; +"elevation_profile_distance" = "المسافة:"; + "elevation_profile_time" = "مدة:"; "isolines_toast_zooms_1_10" = "قرب لتكتشف خطوط الكنتور"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "جار التحميل"; +"key_information_title" = "معلومات رئيسية"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "اسمح للشاشة بالنوم"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "عند التمكين ، سيتم السماح للشاشة بالنوم بعد فترة من عدم النشاط."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "قم بتحديث الخرائط التي قمت بنتزيلها"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "ﺔﻴﺒﻄﻟﺍ ﺕﺍﺮﺒﺘﺨﻤﻟﺍ"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "موقف حافلة"; "type.highway.construction" = "طريق تحت الإنشاء"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "شارع"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "كاميرا لرصد السرعة"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "شارع"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "مسار"; - -"type.area_highway.living_street" = "شارع"; - -"type.area_highway.motorway" = "شارع"; - -"type.area_highway.path" = "مسار"; - -"type.area_highway.pedestrian" = "شارع"; - -"type.area_highway.primary" = "شارع"; - -"type.area_highway.residential" = "شارع"; - -"type.area_highway.secondary" = "شارع"; - -"type.area_highway.service" = "شارع"; - -"type.area_highway.tertiary" = "شارع"; - -"type.area_highway.steps" = "مسار"; - -"type.area_highway.track" = "شارع"; - -"type.area_highway.trunk" = "شارع"; - -"type.area_highway.unclassified" = "شارع"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "موقع أثري"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "ملاهي مائية"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "عاصمة"; -"type.place.city.capital.10" = "مدينة"; +"type.place.city.capital.10" = "عاصمة"; -"type.place.city.capital.11" = "مدينة"; +"type.place.city.capital.11" = "عاصمة"; "type.place.city.capital.2" = "عاصمة"; -"type.place.city.capital.3" = "مدينة"; +"type.place.city.capital.3" = "عاصمة"; -"type.place.city.capital.4" = "مدينة"; +"type.place.city.capital.4" = "عاصمة"; -"type.place.city.capital.5" = "مدينة"; +"type.place.city.capital.5" = "عاصمة"; -"type.place.city.capital.6" = "مدينة"; +"type.place.city.capital.6" = "عاصمة"; -"type.place.city.capital.7" = "مدينة"; +"type.place.city.capital.7" = "عاصمة"; -"type.place.city.capital.8" = "مدينة"; +"type.place.city.capital.8" = "عاصمة"; -"type.place.city.capital.9" = "مدينة"; +"type.place.city.capital.9" = "عاصمة"; "type.place.continent" = "قارة"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "مبنى"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.stringsdict index 3377137de1..ed510c1a91 100644 --- a/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/ar.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -54,6 +54,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + الأماكن %d + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/be.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/be.lproj/Localizable.strings index bef0076504..bb42401b51 100644 --- a/iphone/Maps/LocalizedStrings/be.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/be.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Назад"; + /* Button text (should be short) */ "cancel" = "Адмяніць"; @@ -17,6 +20,9 @@ "download_maps" = "Спампаваць мапы"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Не атрымалася спампаваць. Націсніце, каб паспрабаваць зноў."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Спампоўваецца…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Мапы"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "МБ"; + +"gb" = "ГБ"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Мілі"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Шукаць"; +/* Search box placeholder text */ +"search_map" = "Шукаць на мапе"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Так"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "У вас выключана геалакацыя для гэтай прылады альбо дадатку. Калі ласка, уключыце яе ў Наладах."; + /* View and button titles for accessibility */ "zoom_to_country" = "Паказаць на мапе"; @@ -53,26 +70,55 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Спампоўка не атрымалася"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Паспрабаваць зноў"; + "about_menu_title" = "Аб дадатку Organic Maps"; +"connection_settings" = "Налады злучэння"; + "close" = "Зачыніць"; +"unsupported_phone" = "Дадатак патрабуе апаратна паскоранага OpenGL. Нажаль, ваша прылада не падтрымліваецца."; + "download" = "Спампаваць"; +"disconnect_usb_cable" = "Калі ласка, адлучыце USB кабель альбо ўстаўце карту памяці каб карыстацца Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Калі ласка, спачатку вызваліце трохі месца на SD карце/USB сховішчы каб карыстацца дататкам"; + +"not_enough_memory" = "Недастаткова памяці для запуска дадатка"; + +"download_resources" = "Перад пачаткам працы дазвольце нам спампаваць агульную мапу свету на вашу прыладу.\nГэта патрабуе %@ дадзеных."; + +"download_resources_continue" = "Перайскі да мапы"; + +"downloading_country_can_proceed" = "Спампоўваецца %@. Можаце зараз\nперайсці да мапы."; + +"download_country_ask" = "Спампаваць %@?"; + +"update_country_ask" = "Абнавіць %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Прыпыніць"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Працягнуць"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "Спампаваць %@ не ўдалося"; + /* "Add new bookmark list" dialog title */ -"add_new_set" = "Дадаць новы спіс"; +"add_new_set" = "Дадаць новую групу"; /* Bookmark Color dialog title */ "bookmark_color" = "Колер закладкі"; /* Add Bookmark list dialog - hint when the list name is empty */ -"bookmark_set_name" = "Назва спісу закладак"; +"bookmark_set_name" = "Назва групы закладак"; /* "Bookmark Lists" dialog title */ -"bookmark_sets" = "Спісы закладак"; +"bookmark_sets" = "Групы закладак"; /* "Bookmarks" dialog title */ "bookmarks" = "Закладкі"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Мае месцы"; +/* Add bookmark dialog - bookmark name */ +"name" = "Назва"; + /* Editor title above street and house number */ "address" = "Адрас"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Група"; + /* Settings button in system menu */ "settings" = "Налады"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Захаваць мапы ў"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Выберыце месца, дзе захоўваць запампаваныя мапы"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Перамясціць мапы?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Гэта можа заняць некальмі хвілін.\nКалі ласка, пачакайце…"; + /* Measurement units title in settings activity */ "measurement_units" = "Адзінкі вымярэння"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Ужываць кіламетры альбо мілі"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Дзе паесці"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Прадукты"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Транспарт"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Запраўка"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Паркоўка"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Закупы"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Гатэль"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Славутасці"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Забавы"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Банкамат"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Начное жыццё"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Сямейны адпачынак"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Банк"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Аптэка"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Лякарня"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Прыбіральня"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Пошта"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Паліцыя"; +/* Notes field in Bookmarks view */ +"description" = "Нататкі"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "З вамі падзяліліся закладкамі Ogranic Maps"; + "share_bookmarks_email_body" = "Вітаю!\n\nУ далучаным файле мае закладкі з дататка Organic Maps. Калі ласка, адчыніце іх калі ў вас усталяваны Organic Maps. Калі не, спампуйце дадатак для вашай прылады iOS альбо Andriod па спасылцы: https://omaps.app/get?kmz\n\nПрыемных падарожжаў з Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Ваша месцазнаходжанне пакуль не вызначана"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Прабачце, налады сховішча мапаў зараз недасягальныя."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Мапы спампоўваюцца."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Гэй, глядзі дзе я зараз на мапе! %1$@ альбо %2$@ Няма офлайн-мапаў? Спампуй тут: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Гэй, глядзі маю метку на Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Гэй, глядзі дзе я зараз на мапе Organic Maps!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Прывітанне,\n\nЯ зараз тут: %1$@. Перайдзі па гэтай %2$@ альбо гэтай %3$@ спасылцы каб убачыць месца на мапе.\n\nДзякуй."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Падзяліцца"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Скапіравана ў буфер абмена: %1$@"; + /* place preview title */ "info" = "Інфармацыя"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Версія дадзеных: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Сапраўды хочаце працягнуць?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Сцежкі"; @@ -195,10 +283,18 @@ "share_my_location" = "Падзяліцца месцазнаходжаннем"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Агульныя налады"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Інфармацыя"; + "prefs_group_route" = "Навігацыя"; "pref_zoom_title" = "Кнопкі маштаба"; +"pref_zoom_summary" = "Паказаць на мапе"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Начны рэжым"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Мова агучвання"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Не дасягальна"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Іншы"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Дапамога"; +/* Button in the main Help dialog */ +"faq" = "Пытанні і адказы"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Як нас падтрымаць?"; + /* Button in the main Help dialog */ "copyright" = "Капірайт"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Абнавіць усё"; +/* Cancel all button text */ +"downloader_cancel_all" = "Адмяніць усё"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Спампаваныя"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Выдаліць мапу"; +/* Item in context menu. */ +"downloader_update_map" = "Абнавіць мапу"; + +/* Preference text */ +"pref_use_google_play" = "Ужываць службы Google Play для вызначэння месцазнаходжання"; + /* Text for rating dialog */ "rating_just_rated" = "Я толькі што ацаніў ваш дадатак"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Каб пракласці маршрут, трэба спампаваць і абнавіць усе мапы на на вашым шляху."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Не хапае месца"; + /* bookmark button text */ "bookmark" = "закладка"; +/* location service disabled */ +"enable_location_services" = "Калі ласка, ўключыце геалакацыю"; + "save" = "Захаваць"; +"edit_description_hint" = "Ваша апісанне (тэкст альбо html)"; + "create" = "стварыць"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Не атрымалася знайсці маршрут"; +"dialog_routing_cant_build_route" = "Не атрымалася пракласці маршрут."; + "dialog_routing_change_start_or_end" = "Калі ласка, змяніце пункт адпраўлення альбо прызначэння."; "dialog_routing_change_start" = "Змяніце пункт адпраўлення"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Каб шукаць месцы і пракладваць маршруты, спампуйце карту. Пасля гэтага падключэнне да Інтэрнэту вам больш не спатрэбіцца."; + +"search_select_map" = "Выбраці мапу"; + /* «Show» context menu */ "show" = "Паказаць"; @@ -521,6 +655,9 @@ "clear_search" = "Ачысціць гісторыю пошуку"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Вікіпедыя"; + "p2p_your_location" = "Ваша месцазнаходжанне"; "p2p_start" = "Пачаць"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Хочаце перапракласці маршрут ад цяперашняга месцазнаходжання?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Далей"; + "editor_time_add" = "Дадаць расклад"; "editor_time_delete" = "Выдаліць расклад"; @@ -556,14 +696,28 @@ "editor_example_values" = "Прыклады значэнняў"; +"editor_correct_mistake" = "Выправіць памылку"; + "editor_add_select_location" = "Месцазнаходжанне"; "editor_done_dialog_1" = "Вы змянілі мапу свету. Не прыхоўвайце гэта! Расскажыце сябрам і праўце разам."; "share_with_friends" = "Падзяліцца з сябрамі"; +"editor_report_problem_desription_1" = "Калі ласка, падрабязна апішыце праблему, каб супольнасць OpenStreetMap магла выправіць памылку."; + +"editor_report_problem_desription_2" = "Альбо зрабіце гэта самі на https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Адправіць"; +"editor_report_problem_title" = "Праблема"; + +"editor_report_problem_no_place_title" = "Месца не існуе"; + +"editor_report_problem_under_construction_title" = "Зачынена на рамонт"; + +"editor_report_problem_duplicate_place_title" = "Паўтараючаеся месца"; + "autodownload" = "Аўтаматычная спампоўка"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Дадаць часы працы"; +"edit_opening_hours" = "Правіць часы працы"; + "no_osm_account" = "Не зарэгістраваныя на OpenStreetMap?"; "register_at_openstreetmap" = "Зарэгістравацца на OpenStreetMap"; @@ -592,6 +748,8 @@ "login" = "Увайсці"; +"password" = "Пароль"; + "forgot_password" = "Забылі пароль?"; "osm_account" = "Акаунт OSM"; @@ -609,6 +767,8 @@ "add_language" = "Дадаць мову"; +"street" = "Вуліца"; + /* Editable House Number text field (in address block). */ "house_number" = "Нумар будынка"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Дадаць вуліцу"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Увядзіце назву вуліцы"; + "choose_language" = "Выбраць мову"; "choose_street" = "Выбраць вуліцу"; @@ -632,12 +795,16 @@ "phone" = "Тэлефон"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Звярніце ўвагу"; "downloader_delete_map_dialog" = "Усе вашы праўкі мапы будуць выдаленыя разам з мапай."; "downloader_update_maps" = "Абнавіць мапы"; +"downloader_mwm_migration_dialog" = "Каб стварыць маршрут, вам трэба абнавіць усе мапы і потым пракласці маршрут зноў."; + "downloader_search_field_hint" = "Знайсці мапу"; "migration_download_error_dialog" = "Памылка спампоўкі"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Выдаліце непатрэбныя дадзеныя"; +"editor_login_error_dialog" = "Памылка аўтарызацыі."; + "editor_profile_changes" = "Правераныя змены"; "editor_focus_map_on_location" = "Перацягніце мапу каб выбраць правільнае месцазнаходжанне аб'екта."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Катэгорыя"; +"detailed_problem_description" = "Падрабязнае апісанне праблемы"; + +"editor_report_problem_other_title" = "Іншая праблема"; + +"placepage_add_business_button" = "Дадаць установу"; + "whatsnew_editor_message_1" = "Стварайце на мапе новыя месцы і праўце існуючыя прама ў дататку."; "dialog_incorrect_feature_position" = "Змяніце месцазнаходжанне"; @@ -710,6 +885,8 @@ "editor_operator" = "Уладальнік"; +"downloader_my_maps_title" = "Мае мапы"; + "downloader_no_downloaded_maps_title" = "Вы не спампавалі ніводнай мапы"; "downloader_no_downloaded_maps_message" = "Спампуйце мапы, каб шукаць месцы і карыстацца навігацыяй без інтэрнэту."; @@ -751,10 +928,16 @@ "miles_per_hour" = "міль/г"; +"hour" = "г"; + +"minute" = "хв"; + "placepage_place_description" = "Апісанне"; "placepage_more_button" = "Яшчэ"; +"placepage_more_reviews_button" = "Больш водгукаў"; + "book_button" = "Забраніраваць"; "placepage_call_button" = "Патэлефанаваць"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Месца не існуе"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Калі ласка, укажыце прычыну выдалення"; + "text_more_button" = "…яшчэ"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Увядзіце email правільна"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Упішыце вэб-адрас LINE старонкі або LINE ID"; + "refresh" = "Абнавіць"; "placepage_add_place_button" = "Дадаць месца на мапу"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Адхіліць"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Спіс"; "mobile_data_dialog" = "Ужываць мабільны інтэрнэт для паказу больш падрабязнай інфармацыі?"; @@ -848,12 +1044,16 @@ "big_font" = "Павялічыць шрыфт мапы"; +"traffic_update_app" = "Абнавіце Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Для паказу інфармацыі пра рух трэба абнавіць дадатак."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Інфармацыі пра рух няма"; +"enable_logging" = "Уключыць вядзенне журналу"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Агульны водгук"; @@ -861,14 +1061,24 @@ "off" = "Выкл."; +"prefs_languages_information" = "Мы ужываем сістэмны сінтэзатар маўлення (TTS). Многія прылады на Android ужываюць Google TTS, вы можаце спампаваць альбо абнавіць яго праз Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Для некаторых моў вам спатрэбіцца ўсталяваць сінтэзатар маўлення альбо дадатковы моўны пакет з крамы дадаткаў (Google Play Market, Samsung Apps).\Зайдзіце на вашай прыладзе ў Налады → Мова і ўвод → Маўленне → Сінтэз маўлення.\nТут вы можаце задаць налады сінтэза маўлення (напрыклад, спампаваць моўны пакет для выкарыстання без падключэння да інтэрнэту) альбо выбраць іншы сінтэзатар маўлення."; + +"prefs_languages_information_off_link" = "Больш падрабязная інфармацыя знаходзіцца ў гэтым кіраўніцтве."; + "transliteration_title" = "Транслітарацыя лацінкай"; +"learn_more" = "Даведацца больш"; + "core_exit" = "Выхад"; "routing_add_start_point" = "Дадайце пункт адпраўлення каб пракласці маршрут"; "routing_add_finish_point" = "Дадайце пункт прызначэння каб пракласці маршрут"; +"button_exit" = "Выхад"; + "planning_route_manage_route" = "Кіраваць маршрутам"; "button_plan" = "Пракласці"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Ой-ёй, здарылася памылка. Паспрабуйце аўтарызавацца зноў."; +"dialog_error_storage_title" = "Праблема з доступам да сховішча"; + +"dialog_error_storage_message" = "Знешняе сховішча недасягальнае. SD-карта можа быць вынутая, пашкоджаная, альбо файлавая сістэма даступная толькі для чытання. Праверце вашу SD-карту альбо зважыцеся за намі па адрасе support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Эмуляваць дрэннае сховішча"; + "core_entrance" = "Уваход"; "error_enter_correct_name" = "Калі ласка, увядзіце назву правільна"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Стварыць новы спіс"; +/* Bookmark categories screen */ +"bookmarks_import" = "Імпартаваць закладкі"; + "downloader_hide_screen" = "Схаваць экран"; "downloader_percent" = "%s (%s з %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Нельга падзяліцца пустым спісам"; +"bookmarks_error_title_empty_list_name" = "Назва не можа быць пустой"; + "bookmarks_error_message_empty_list_name" = "Увядзіце назву спіса"; +"bookmarks_new_list_hint" = "Новы спіс"; + "bookmarks_error_title_list_name_already_taken" = "Гэтая назва ўжо занятая"; +"bookmarks_error_message_list_name_already_taken" = "Выберыце іншую назву"; + "bookmarks_error_title_list_name_too_long" = "Гэтая назва надта доўгая"; +"please_wait" = "Калі ласка, пачакайце…"; + +"phone_number" = "Нумар тэлефона"; + "profile" = "Профіль OpenStreetMap"; "bookmarks_detect_title" = "Знойдзены новыя файлы"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Узнавіць гэтую версію?"; +"common_check_internet_connection_dialog_title" = "Няма падлучэння да інтэрнэту"; + "error_system_message" = "Адбылася невядомая памылка"; "restore" = "Узнавіць"; +"subtittle_opt_out" = "Налады адсочвання"; + +"crash_reports" = "Справаздача аб памылцы"; + +"crash_reports_description" = "Мы можам выкарыстоўваць вашы дадзеныя, каб палепшыць Organic Maps. Змены набудуць сілу пасля перапуску дататка."; + "privacy_policy" = "Палітыка прыватнасці"; "terms_of_use" = "Умовы выкарыстання"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Мапа метро недасягальная"; +"bookmarks_empty_list_title" = "Гэты спіс пусты"; + +"bookmarks_empty_list_message" = "Каб дадаць закладку, націсніце на месца на мапе і потым на іконку з зорачкай"; + +"category_desc_more" = "…яшчэ"; + "title_error_downloading_bookmarks" = "Адбылася памылка"; "popular_place" = "Папулярнае"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Схаваць з мапы"; +"public_access" = "Публічны доступ"; + +"limited_access" = "Абмежаваны доступ"; + "bookmark_list_description_hint" = "Дабаўце апісанне (тэкст альбо html)"; +"not_shared" = "Прыватны"; + "tags_loading_error_subtitle" = "Адбылася памылка падчас загрузкі метак, калі ласка паспрабуйце зноў"; "download_button" = "Спампаваць"; @@ -972,6 +1221,9 @@ "place_description_title" = "Апісанне месца"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Спампоўка мапаў"; + "speedcams_notice_message" = "Аўтаматычна - Папярэджваць пра камеры хуткасці, калі ёсць рызыка перавышэння дазволенай хуткасці.\nЗаўсёды - Заўсёды папярэджваць пра камеры\nНіколі - Ніколі не папярэджваць пра камеры"; "power_managment_title" = "Рэжым захавання энергіі"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Максімальнае захаванне энергіі"; +"enable_logging_warning_message" = "Опцыя ўключае запіс журнала падзей для мэтаў дыягностыкі. Гэта можа дапамагчы нашай камандзе вырашаць праблемы з дадаткам. Уключайце гэтую опцыю часова каб запісаць і паслаць нам дэталёвую інфармацыю пра знойденую вамі праблему."; + +"access_rules_author_only" = "Рэдагаванне анлайн"; + "driving_options_title" = "Налады пракладкі маршрута"; "driving_options_subheader" = "Пазбягаць на кожным маршруце"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Сартаваць…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Сартаваць закладкі"; + /* iOS */ "sort_default" = "Сартаваць па змаўчанні"; @@ -1086,6 +1345,18 @@ "sort_date" = "Сартаваць па даце"; +/* Android */ +"by_default" = "Па змоўчанні"; + +/* Android */ +"by_type" = "Па тыпу"; + +/* Android */ +"by_distance" = "Па адлегласці"; + +/* Android */ +"by_date" = "Па даце"; + "week_ago_sorttype" = "Тыдзень таму"; "month_ago_sorttype" = "Месяц таму"; @@ -1132,6 +1403,8 @@ "religious_places" = "Святыя месцы"; +"select_list" = "Выбраць спіс"; + "transit_not_found" = "Навігацыі па метро для гэтага рэгіёна пакуль няма"; "dialog_pedestrian_route_is_long_header" = "Маршрут на метро не знойдзены"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Складанасць"; +"elevation_profile_distance" = "Адл.:"; + "elevation_profile_time" = "Час:"; "isolines_toast_zooms_1_10" = "Павялічце маштаб, каб пабачыць рэльеф"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Спампоўка"; +"key_information_title" = "Галоўная інфармацыя"; + +"download_map_title" = "Спампаваць мапу света"; + +"connection_failure" = "Памылка падлучэння"; + +"disconnect_usb_cable_title" = "Адлучыце USB кабель"; + +"enable_screen_sleep" = "Дазволіць экрану засынаць"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Дазваляе экрану засынаць пасля перыяда бездзеяння."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Абнавіце спампаваныя мапы"; @@ -1735,40 +2023,37 @@ "type.healthcare.laboratory" = "Медыцынская лабараторыя"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Bus Stop"; -"type.highway.construction" = "Road Under Construction"; +"type.highway.construction" = "Road under Construction"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; -"type.highway.footway" = "Foot Path"; +"type.highway.footway" = "Path"; "type.highway.footway.alpine_hiking" = "Path"; -"type.highway.footway.area" = "Foot Path"; +"type.highway.footway.area" = "Path"; -"type.highway.footway.bridge" = "Foot Path"; +"type.highway.footway.bridge" = "Path"; "type.highway.footway.demanding_alpine_hiking" = "Path"; @@ -1780,31 +2065,31 @@ "type.highway.footway.mountain_hiking" = "Path"; -"type.highway.footway.permissive" = "Foot Path"; +"type.highway.footway.permissive" = "Path"; -"type.highway.footway.tunnel" = "Foot Path"; +"type.highway.footway.tunnel" = "Path"; "type.highway.ford" = "Ford"; -"type.highway.living_street" = "Living Street"; +"type.highway.living_street" = "Street"; -"type.highway.living_street.bridge" = "Living Street"; +"type.highway.living_street.bridge" = "Street"; -"type.highway.living_street.tunnel" = "Living Street"; +"type.highway.living_street.tunnel" = "Street"; -"type.highway.motorway" = "Motorway"; +"type.highway.motorway" = "Street"; -"type.highway.motorway.bridge" = "Motorway"; +"type.highway.motorway.bridge" = "Street"; -"type.highway.motorway.tunnel" = "Motorway"; +"type.highway.motorway.tunnel" = "Street"; -"type.highway.motorway_junction" = "Road Exit"; +"type.highway.motorway_junction" = "Exit"; -"type.highway.motorway_link" = "Motorway"; +"type.highway.motorway_link" = "Street"; -"type.highway.motorway_link.bridge" = "Motorway"; +"type.highway.motorway_link.bridge" = "Street"; -"type.highway.motorway_link.tunnel" = "Motorway"; +"type.highway.motorway_link.tunnel" = "Street"; "type.highway.path" = "Path"; @@ -1830,25 +2115,25 @@ "type.highway.path.tunnel" = "Path"; -"type.highway.pedestrian" = "Pedestrian Street"; +"type.highway.pedestrian" = "Street"; -"type.highway.pedestrian.area" = "Pedestrian Street"; +"type.highway.pedestrian.area" = "Street"; -"type.highway.pedestrian.bridge" = "Pedestrian Street"; +"type.highway.pedestrian.bridge" = "Street"; -"type.highway.pedestrian.tunnel" = "Pedestrian Street"; +"type.highway.pedestrian.tunnel" = "Street"; -"type.highway.primary" = "Primary Road"; +"type.highway.primary" = "Street"; -"type.highway.primary.bridge" = "Primary Road"; +"type.highway.primary.bridge" = "Street"; -"type.highway.primary.tunnel" = "Primary Road"; +"type.highway.primary.tunnel" = "Street"; -"type.highway.primary_link" = "Primary Road"; +"type.highway.primary_link" = "Street"; -"type.highway.primary_link.bridge" = "Primary Road"; +"type.highway.primary_link.bridge" = "Street"; -"type.highway.primary_link.tunnel" = "Primary Road"; +"type.highway.primary_link.tunnel" = "Street"; "type.highway.raceway" = "Racetrack"; @@ -1860,141 +2145,108 @@ "type.highway.residential.tunnel" = "Street"; -"type.highway.rest_area" = "Rest Area"; +"type.highway.rest_area" = "Highway Rest Area"; -"type.highway.road" = "Road"; +"type.highway.road" = "Street"; -"type.highway.road.bridge" = "Road"; +"type.highway.road.bridge" = "Street"; -"type.highway.road.tunnel" = "Road"; +"type.highway.road.tunnel" = "Street"; -"type.highway.secondary" = "Secondary Road"; +"type.highway.secondary" = "Street"; -"type.highway.secondary.bridge" = "Secondary Road"; +"type.highway.secondary.bridge" = "Street"; -"type.highway.secondary.tunnel" = "Secondary Road"; +"type.highway.secondary.tunnel" = "Street"; -"type.highway.secondary_link" = "Secondary Road"; +"type.highway.secondary_link" = "Street"; -"type.highway.secondary_link.bridge" = "Secondary Road"; +"type.highway.secondary_link.bridge" = "Street"; -"type.highway.secondary_link.tunnel" = "Secondary Road"; +"type.highway.secondary_link.tunnel" = "Street"; -"type.highway.service" = "Service Road"; +"type.highway.service" = "Street"; -"type.highway.service.area" = "Service Road"; +"type.highway.service.area" = "Street"; -"type.highway.service.bridge" = "Service Road"; +"type.highway.service.bridge" = "Street"; -"type.highway.service.driveway" = "Service Road"; +"type.highway.service.driveway" = "Street"; -"type.highway.service.parking_aisle" = "Service Road"; +"type.highway.service.parking_aisle" = "Street"; -"type.highway.service.tunnel" = "Service Road"; +"type.highway.service.tunnel" = "Street"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Speed Camera"; -"type.highway.steps" = "Stairs"; +"type.highway.steps" = "Path"; -"type.highway.steps.bridge" = "Stairs"; +"type.highway.steps.bridge" = "Path"; -"type.highway.steps.tunnel" = "Stairs"; +"type.highway.steps.tunnel" = "Path"; -"type.highway.tertiary" = "Tertiary Road"; +"type.highway.tertiary" = "Street"; -"type.highway.tertiary.bridge" = "Tertiary Road"; +"type.highway.tertiary.bridge" = "Street"; -"type.highway.tertiary.tunnel" = "Tertiary Road"; +"type.highway.tertiary.tunnel" = "Street"; -"type.highway.tertiary_link" = "Tertiary Road"; +"type.highway.tertiary_link" = "Street"; -"type.highway.tertiary_link.bridge" = "Tertiary Road"; +"type.highway.tertiary_link.bridge" = "Street"; -"type.highway.tertiary_link.tunnel" = "Tertiary Road"; +"type.highway.tertiary_link.tunnel" = "Street"; -"type.highway.track" = "Track"; +"type.highway.track" = "Street"; -"type.highway.track.area" = "Track"; +"type.highway.track.area" = "Street"; -"type.highway.track.bridge" = "Track"; +"type.highway.track.bridge" = "Street"; -"type.highway.track.grade1" = "Track"; +"type.highway.track.grade1" = "Street"; -"type.highway.track.grade2" = "Track"; +"type.highway.track.grade2" = "Street"; -"type.highway.track.grade3" = "Track"; +"type.highway.track.grade3" = "Street"; -"type.highway.track.grade4" = "Track"; +"type.highway.track.grade4" = "Street"; -"type.highway.track.grade5" = "Track"; +"type.highway.track.grade5" = "Street"; -"type.highway.track.no.access" = "Track"; +"type.highway.track.no.access" = "Street"; -"type.highway.track.permissive" = "Track"; +"type.highway.track.permissive" = "Street"; -"type.highway.track.tunnel" = "Track"; +"type.highway.track.tunnel" = "Street"; "type.highway.traffic_signals" = "Traffic Lights"; -"type.highway.trunk" = "National Highway"; +"type.highway.trunk" = "Street"; -"type.highway.trunk.bridge" = "National Highway"; +"type.highway.trunk.bridge" = "Street"; -"type.highway.trunk.tunnel" = "National Highway"; +"type.highway.trunk.tunnel" = "Street"; -"type.highway.trunk_link" = "National Highway"; +"type.highway.trunk_link" = "Street"; -"type.highway.trunk_link.bridge" = "National Highway"; +"type.highway.trunk_link.bridge" = "Street"; -"type.highway.trunk_link.tunnel" = "National Highway"; +"type.highway.trunk_link.tunnel" = "Street"; -"type.highway.unclassified" = "Minor Road"; +"type.highway.unclassified" = "Street"; -"type.highway.unclassified.area" = "Minor Road"; +"type.highway.unclassified.area" = "Street"; -"type.highway.unclassified.bridge" = "Minor Road"; +"type.highway.unclassified.bridge" = "Street"; -"type.highway.unclassified.tunnel" = "Minor Road"; - -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Foot Path"; - -"type.area_highway.living_street" = "Living Street"; - -"type.area_highway.motorway" = "Motorway"; - -"type.area_highway.path" = "Path"; - -"type.area_highway.pedestrian" = "Pedestrian Street"; - -"type.area_highway.primary" = "Primary Road"; - -"type.area_highway.residential" = "Street"; - -"type.area_highway.secondary" = "Secondary Road"; - -"type.area_highway.service" = "Service Road"; - -"type.area_highway.tertiary" = "Tertiary Road"; - -"type.area_highway.steps" = "Stairs"; - -"type.area_highway.track" = "Track"; - -"type.area_highway.trunk" = "National Highway"; - -"type.area_highway.unclassified" = "Minor Road"; +"type.highway.unclassified.tunnel" = "Street"; "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Archaeological Site"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Water Park"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capital"; -"type.place.city.capital.10" = "City"; +"type.place.city.capital.10" = "Capital"; -"type.place.city.capital.11" = "City"; +"type.place.city.capital.11" = "Capital"; "type.place.city.capital.2" = "Capital"; -"type.place.city.capital.3" = "City"; +"type.place.city.capital.3" = "Capital"; -"type.place.city.capital.4" = "City"; +"type.place.city.capital.4" = "Capital"; -"type.place.city.capital.5" = "City"; +"type.place.city.capital.5" = "Capital"; -"type.place.city.capital.6" = "City"; +"type.place.city.capital.6" = "Capital"; -"type.place.city.capital.7" = "City"; +"type.place.city.capital.7" = "Capital"; -"type.place.city.capital.8" = "City"; +"type.place.city.capital.8" = "Capital"; -"type.place.city.capital.9" = "City"; +"type.place.city.capital.9" = "Capital"; "type.place.continent" = "Continent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Building"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/be.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/be.lproj/Localizable.stringsdict index f379115672..a51337ab5b 100644 --- a/iphone/Maps/LocalizedStrings/be.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/be.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -62,6 +62,25 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + few + %d месцы + one + %d месца + other + %d месцаў + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.strings index c26eb6d186..45fd5acb73 100644 --- a/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Назад"; + /* Button text (should be short) */ "cancel" = "Отмяна"; @@ -17,6 +20,9 @@ "download_maps" = "Изтегляне на карти"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Изтеглянето се провали. Натиснете, за да опитате отново."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Теглене…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Карти"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "МБ"; + +"gb" = "ГБ"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Мили"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Търсене"; +/* Search box placeholder text */ +"search_map" = "Търсене в карта"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Да"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "В момента всички услуги за местоположение за това устройство или приложение са деактивирани. Моля, разрешете ги в Настройки."; + /* View and button titles for accessibility */ "zoom_to_country" = "Показване на картата"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Изтеглянето се провали"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Опитайте отново"; + "about_menu_title" = "Относно приложението"; +"connection_settings" = "Настройки за свързване"; + "close" = "Затваряне"; +"unsupported_phone" = "Приложението изисква хардуерно ускорение на OpenGL. За съжаление вашето устройство не се поддържа."; + "download" = "Изтегляне"; +"disconnect_usb_cable" = "Моля, изключете USB кабела или поставете карта с памет."; + +"not_enough_free_space_on_sdcard" = "Моля, първо освободете място на SD картата/USB паметта, за да можете да използвате приложението."; + +"not_enough_memory" = "Няма достатъчно памет за стартиране на приложението"; + +"download_resources" = "Преди да започнете да използвате приложението, позволете ни да изтеглим общата карта на света на вашето устройство.\nТова ще използва %@ от паметта."; + +"download_resources_continue" = "Към картата"; + +"downloading_country_can_proceed" = "Изтегляне на %@. Вече можете да преминете към картата."; + +"download_country_ask" = "Изтегляне на %@?"; + +"update_country_ask" = "Обновяване на %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Пауза"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Възобновяване"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "Изтеглянето на %@ се провали"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Добавяне на нова група"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Мои места"; +/* Add bookmark dialog - bookmark name */ +"name" = "Име"; + /* Editor title above street and house number */ "address" = "Адрес"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Група"; + /* Settings button in system menu */ "settings" = "Настройки"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Запаметяване на карти в"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Изберете мястото, където картите трябва да се изтеглят"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Преместване на карти?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Това може да отнеме няколко минути.\nМоля изчакайте…"; + /* Measurement units title in settings activity */ "measurement_units" = "Мерни единици"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Изберете между километри или мили"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Места за хапване"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Продукти"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Транспорт"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Гориво"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Паркинг"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Шопинг"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Хотел"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Забележителности"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Развлечения"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Банкомат"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Нощен живот"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Семейна почивка"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Банка"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Аптека"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Болница"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Тоалетна"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Поща"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Полиция"; +/* Notes field in Bookmarks view */ +"description" = "Бележки"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Споделени са с вас отметки за Organic Maps"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Местоположението ви още не е определено"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Съжаляваме, но настройките за съхранение на карти в момента са деактивирани."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Изтеглянето на картата вече е в ход."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Хей, виж текущото ми местоположение в Organic Maps! %1$@ или %2$@"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Хей, виж какво съм отбелязал в Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Хей, виж текущото ми местоположение на картата в Organic Maps!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Здравей,\n\nСега съм тук: %1$@. Натисни върху тази връзка %2$@ или тази %3$@, за да видиш мястото на картата.\n\nБлагодаря."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Споделяне"; /* Share by email button text, also used in editor. */ "email" = "Имейл"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Копирано в клипборда: %1$@"; + /* place preview title */ "info" = "Информация"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Версия на данните: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Сигурни ли сте, че искате да продължите?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Пътеки"; @@ -195,10 +283,18 @@ "share_my_location" = "Споделяне на местоположение"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Общи настройки"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Информация"; + "prefs_group_route" = "Навигация"; "pref_zoom_title" = "Мащабни бутони"; +"pref_zoom_summary" = "Показване на картата"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Нощен режим"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Език на инструкциите"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Не е налично"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Друго"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Помощ"; +/* Button in the main Help dialog */ +"faq" = "Въпроси и отговори"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Как да ни подкрепите?"; + /* Button in the main Help dialog */ "copyright" = "Авторски права"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Обновяване на всичко"; +/* Cancel all button text */ +"downloader_cancel_all" = "Отмяна на всичко"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Изтеглено"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Изтриване на карта"; +/* Item in context menu. */ +"downloader_update_map" = "Обнояване на карта"; + +/* Preference text */ +"pref_use_google_play" = "Използвайте услугите на Google Play, за да определите текущото си местоположение"; + /* Text for rating dialog */ "rating_just_rated" = "Току-що оцених приложението ви"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "За да създадем маршрут, трябва да изтеглим и актуализираме всички карти от местоположението ви до вашата дестинация."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Недостатъчно място"; + /* bookmark button text */ "bookmark" = "отметка"; +/* location service disabled */ +"enable_location_services" = "Моля, разрешете услугите за местоположение"; + "save" = "Запазване"; +"edit_description_hint" = "Ваши описания (текст или html)"; + "create" = "създаване"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Не е намерен маршрут"; +"dialog_routing_cant_build_route" = "Не е възможно да се създаде маршрут."; + "dialog_routing_change_start_or_end" = "Моля, коригирайте началната точка или дестинацията си."; "dialog_routing_change_start" = "Регулиране на началната точка"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "За да започнете да търсите и създавате маршрути, изтеглете картата. Това ще ви позволи да пътувате без интернет връзка."; + +"search_select_map" = "Избор на карта"; + /* «Show» context menu */ "show" = "Показване"; @@ -521,6 +655,9 @@ "clear_search" = "Изчистване на историята на търсенията"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Вашето местоположение"; "p2p_start" = "Начало"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Искате ли да планираме маршрут от текущото ви местоположение?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Напред"; + "editor_time_add" = "Добавяне на график"; "editor_time_delete" = "Изтриване на график"; @@ -556,14 +696,28 @@ "editor_example_values" = "Примерни стойности"; +"editor_correct_mistake" = "Поправяне на грешка"; + "editor_add_select_location" = "Местоположение"; "editor_done_dialog_1" = "Променили сте картата на света. Не го крийте, кажете на приятелите си и редактирайте заедно."; "share_with_friends" = "Споделяне с приятели"; +"editor_report_problem_desription_1" = "Моля, опишете подробно проблема, за да може общността на OpenStreeMap да отстрани грешката."; + +"editor_report_problem_desription_2" = "Или го направете сами на https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Изпращане"; +"editor_report_problem_title" = "Проблем"; + +"editor_report_problem_no_place_title" = "Мястото не съществува"; + +"editor_report_problem_under_construction_title" = "Затворено за ремонт"; + +"editor_report_problem_duplicate_place_title" = "Дубликат"; + "autodownload" = "Автоматично изтегляне"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Добавяне на работно време"; +"edit_opening_hours" = "Редакция на работното време"; + "no_osm_account" = "Нямате акаунт в OpenStreetMap?"; "register_at_openstreetmap" = "Регистриране в OSM"; @@ -592,6 +748,8 @@ "login" = "Вход"; +"password" = "Парола"; + "forgot_password" = "Забравили сте паролата си?"; "osm_account" = "OSM Акаунт"; @@ -609,6 +767,8 @@ "add_language" = "Добавяне на език"; +"street" = "Улица"; + /* Editable House Number text field (in address block). */ "house_number" = "Номер на сграда"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Добавяне на улица"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Въведете име на улица"; + "choose_language" = "Избор на език"; "choose_street" = "Избор на улица"; @@ -632,12 +795,16 @@ "phone" = "Телефон"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Моля, имайте предвид"; "downloader_delete_map_dialog" = "Всички ваши редакции на картата ще бъдат изтрити заедно с нея."; "downloader_update_maps" = "Обновяване на карти"; +"downloader_mwm_migration_dialog" = "За да създадете маршрут, трябва да актуализирате всички карти и след това да планирате маршрута отново."; + "downloader_search_field_hint" = "Намиране на карта"; "migration_download_error_dialog" = "Грешка при изтегляне"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Моля, изтрийте всички ненужни данни."; +"editor_login_error_dialog" = "Грешка при вход."; + "editor_profile_changes" = "Потвърдени промени"; "editor_focus_map_on_location" = "Плъзнете картата, за да изберете правилното местоположение на обекта."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Категория"; +"detailed_problem_description" = "Подробно описание на проблема"; + +"editor_report_problem_other_title" = "Друг проблем"; + +"placepage_add_business_button" = "Добавяне на бизнес"; + "whatsnew_editor_message_1" = "Добавяне на нови места в картата и редакция на съществуващите директно от приложението."; "dialog_incorrect_feature_position" = "Смяна на местоположение"; @@ -710,6 +885,8 @@ "editor_operator" = "Собственик"; +"downloader_my_maps_title" = "My maps"; + "downloader_no_downloaded_maps_title" = "Не сте изтеглили никакви карти"; "downloader_no_downloaded_maps_message" = "Изтеглете картите, от които се нуждаете, за да намирате места и да навигирате без интернет."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "ч"; + +"minute" = "мин"; + "placepage_place_description" = "Описание"; "placepage_more_button" = "Още"; +"placepage_more_reviews_button" = "Още отзиви"; + "book_button" = "Резервиране"; "placepage_call_button" = "Обаждане"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Мястото не съществува"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…още"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Въведете валиден имейл"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Обновление"; "placepage_add_place_button" = "Добавяне на място в картата"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Отказване"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Списък"; "mobile_data_dialog" = "Използване на мобилни данни за подробна информация?"; @@ -848,12 +1044,16 @@ "big_font" = "Увеличаване на размера на шрифта в картата"; +"traffic_update_app" = "Моля, актуализирайте Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "За да се показват данни за трафика, приложението трябва да се актуализира."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Няма налични данни за трафика"; +"enable_logging" = "Активиране на запис на дневник"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Обща обратна връзка"; @@ -861,14 +1061,24 @@ "off" = "Изкл."; +"prefs_languages_information" = "Навигирането се озвучава от системен синтезатор на реч (TTS). Много устройства използват Google TTS, който може да бъде изтеглен или актуализиран от Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)."; + +"prefs_languages_information_off" = "За някои езици може да се наложи да инсталирате допълнителен синтезатор на реч (TTS) от магазина за приложения (Google Play Магазин, Samsung Apps).\nЗа да настроите синтезатора на реч, отидете в Настройки → Езици и въвеждане → Синтезиран говор.\nТук можете да инсталирате допълнителни езикови пакети или да изберете синтезатор на реч."; + +"prefs_languages_information_off_link" = "За повече информация вижте това ръководство."; + "transliteration_title" = "Латинска транслитерация"; +"learn_more" = "Научете повече"; + "core_exit" = "Изход"; "routing_add_start_point" = "Добавяне на начална точка за планиране на маршрут"; "routing_add_finish_point" = "Добавяне на крайна точка за планиране на маршрут"; +"button_exit" = "Изход"; + "planning_route_manage_route" = "Управление на маршрут"; "button_plan" = "Планиране"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "За съжаление има грешка. Опитайте да влезете отново."; +"dialog_error_storage_title" = "Проблем с достъпа до хранилището"; + +"dialog_error_storage_message" = "Външната памет на устройството не е налична, SD картата може да е била извадена, повредена или файловата система е само за четене. Проверете това и се свържете с нас support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Емулация на грешки с външна памет"; + "core_entrance" = "Вход"; "error_enter_correct_name" = "Моля, въведете правилно име"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Създаване на нов списък"; +/* Bookmark categories screen */ +"bookmarks_import" = "Импортиране на отметки"; + "downloader_hide_screen" = "Скриване на екрана"; "downloader_percent" = "%s (%s от %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Не може да се споделя празен списък"; +"bookmarks_error_title_empty_list_name" = "Името не може да бъде празно"; + "bookmarks_error_message_empty_list_name" = "Моля, въведете името на списъка"; +"bookmarks_new_list_hint" = "Нов списък"; + "bookmarks_error_title_list_name_already_taken" = "Това име вече е заето"; +"bookmarks_error_message_list_name_already_taken" = "Моля, изберете друго име"; + "bookmarks_error_title_list_name_too_long" = "This name is too long"; +"please_wait" = "Моля, изчакайте…"; + +"phone_number" = "Phone number"; + "profile" = "Профил в OpenStreetMap"; "bookmarks_detect_title" = "Открити са нови файлове"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Възстановяване на тази версия?"; +"common_check_internet_connection_dialog_title" = "Няма интернет връзка"; + "error_system_message" = "Възникна неизвестна грешка"; "restore" = "Възстановяване"; +"subtittle_opt_out" = "Настройки за проследяване"; + +"crash_reports" = "Доклад за срив"; + +"crash_reports_description" = "Можем да използваме данни ви, за да подобрим изживяването с Organic Maps. Промените ще влязат в сила, след рестартиране на приложението."; + "privacy_policy" = "Политика за поверителност"; "terms_of_use" = "Условия за ползване"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Картата на метрото не е налична"; +"bookmarks_empty_list_title" = "Този списък е празен"; + +"bookmarks_empty_list_message" = "За да добавите отметка, докоснете място на картата, след което докоснете звездообразната икона."; + +"category_desc_more" = "…още"; + "title_error_downloading_bookmarks" = "Възникна грешка"; "popular_place" = "Популярно"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Hide from map"; +"public_access" = "Публичен достъп"; + +"limited_access" = "Ограничен достъп"; + "bookmark_list_description_hint" = "Добавяне на описание (текст или html)"; +"not_shared" = "Лично"; + "tags_loading_error_subtitle" = "Възникна грешка при зареждането на таговете, моля, опитайте отново"; "download_button" = "Download"; @@ -972,6 +1221,9 @@ "place_description_title" = "Описание на мястото"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Изтегляне на карти"; + "speedcams_notice_message" = "Автоматично - Предупреждава се при камери за скорост, ако има риск от превишаване на ограничението на скоростта\nВинаги - Винаги се продупреждава при камери за скорост\nНикога - Никога не се предупреждава при камери за скорост"; "power_managment_title" = "Режим пестене на енергия"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Максимално пестене на енергия"; +"enable_logging_warning_message" = "Тази настройка е разрешена, за да се записват действия за диагностични цели, които помагат на нашия екип да идентифицира проблеми с приложението. Временно активирайте тази настройка само за изпращане на подробна информация за проблема, който сте открили с приложението."; + +"access_rules_author_only" = "Онлайн редактиране"; + "driving_options_title" = "Опции за маршрутизация"; "driving_options_subheader" = "Избягване при всеки маршрут"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Сортиране…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Сортиране на отметки"; + /* iOS */ "sort_default" = "Sort by default"; @@ -1086,6 +1345,18 @@ "sort_date" = "Sort by date"; +/* Android */ +"by_default" = "По подразбиране"; + +/* Android */ +"by_type" = "По тип"; + +/* Android */ +"by_distance" = "По разстояние"; + +/* Android */ +"by_date" = "По дата"; + "week_ago_sorttype" = "A week ago"; "month_ago_sorttype" = "A month ago"; @@ -1132,6 +1403,8 @@ "religious_places" = "Religious places"; +"select_list" = "Избор на списък"; + "transit_not_found" = "Навигацията за метро все още не е налична в региона"; "dialog_pedestrian_route_is_long_header" = "Не е открит маршрут за метро"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Трудност"; +"elevation_profile_distance" = "Разст.:"; + "elevation_profile_time" = "Време:"; "isolines_toast_zooms_1_10" = "Увеличете мащаба, за да разгледате изолиниите"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Downloading"; +"key_information_title" = "Ключова информация"; + +"download_map_title" = "Изтегляне на картата на света"; + +"connection_failure" = "Неуспешно свързване"; + +"disconnect_usb_cable_title" = "Изключване на USB кабел"; + +"enable_screen_sleep" = "Позволяване на екрана да заспи"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Когато е разрешено, екранът ще бъде оставен да заспи след определен период на неактивност."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Актуализиране на изтеглените карти"; @@ -1735,40 +2023,37 @@ "type.healthcare.laboratory" = "Медицинска лаборатория"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Bus Stop"; -"type.highway.construction" = "Road Under Construction"; +"type.highway.construction" = "Road under Construction"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; -"type.highway.footway" = "Foot Path"; +"type.highway.footway" = "Path"; "type.highway.footway.alpine_hiking" = "Path"; -"type.highway.footway.area" = "Foot Path"; +"type.highway.footway.area" = "Path"; -"type.highway.footway.bridge" = "Foot Path"; +"type.highway.footway.bridge" = "Path"; "type.highway.footway.demanding_alpine_hiking" = "Path"; @@ -1780,31 +2065,31 @@ "type.highway.footway.mountain_hiking" = "Path"; -"type.highway.footway.permissive" = "Foot Path"; +"type.highway.footway.permissive" = "Path"; -"type.highway.footway.tunnel" = "Foot Path"; +"type.highway.footway.tunnel" = "Path"; "type.highway.ford" = "Ford"; -"type.highway.living_street" = "Living Street"; +"type.highway.living_street" = "Street"; -"type.highway.living_street.bridge" = "Living Street"; +"type.highway.living_street.bridge" = "Street"; -"type.highway.living_street.tunnel" = "Living Street"; +"type.highway.living_street.tunnel" = "Street"; -"type.highway.motorway" = "Motorway"; +"type.highway.motorway" = "Street"; -"type.highway.motorway.bridge" = "Motorway"; +"type.highway.motorway.bridge" = "Street"; -"type.highway.motorway.tunnel" = "Motorway"; +"type.highway.motorway.tunnel" = "Street"; -"type.highway.motorway_junction" = "Road Exit"; +"type.highway.motorway_junction" = "Exit"; -"type.highway.motorway_link" = "Motorway"; +"type.highway.motorway_link" = "Street"; -"type.highway.motorway_link.bridge" = "Motorway"; +"type.highway.motorway_link.bridge" = "Street"; -"type.highway.motorway_link.tunnel" = "Motorway"; +"type.highway.motorway_link.tunnel" = "Street"; "type.highway.path" = "Path"; @@ -1830,25 +2115,25 @@ "type.highway.path.tunnel" = "Path"; -"type.highway.pedestrian" = "Pedestrian Street"; +"type.highway.pedestrian" = "Street"; -"type.highway.pedestrian.area" = "Pedestrian Street"; +"type.highway.pedestrian.area" = "Street"; -"type.highway.pedestrian.bridge" = "Pedestrian Street"; +"type.highway.pedestrian.bridge" = "Street"; -"type.highway.pedestrian.tunnel" = "Pedestrian Street"; +"type.highway.pedestrian.tunnel" = "Street"; -"type.highway.primary" = "Primary Road"; +"type.highway.primary" = "Street"; -"type.highway.primary.bridge" = "Primary Road"; +"type.highway.primary.bridge" = "Street"; -"type.highway.primary.tunnel" = "Primary Road"; +"type.highway.primary.tunnel" = "Street"; -"type.highway.primary_link" = "Primary Road"; +"type.highway.primary_link" = "Street"; -"type.highway.primary_link.bridge" = "Primary Road"; +"type.highway.primary_link.bridge" = "Street"; -"type.highway.primary_link.tunnel" = "Primary Road"; +"type.highway.primary_link.tunnel" = "Street"; "type.highway.raceway" = "Racetrack"; @@ -1860,141 +2145,108 @@ "type.highway.residential.tunnel" = "Street"; -"type.highway.rest_area" = "Rest Area"; +"type.highway.rest_area" = "Highway Rest Area"; -"type.highway.road" = "Road"; +"type.highway.road" = "Street"; -"type.highway.road.bridge" = "Road"; +"type.highway.road.bridge" = "Street"; -"type.highway.road.tunnel" = "Road"; +"type.highway.road.tunnel" = "Street"; -"type.highway.secondary" = "Secondary Road"; +"type.highway.secondary" = "Street"; -"type.highway.secondary.bridge" = "Secondary Road"; +"type.highway.secondary.bridge" = "Street"; -"type.highway.secondary.tunnel" = "Secondary Road"; +"type.highway.secondary.tunnel" = "Street"; -"type.highway.secondary_link" = "Secondary Road"; +"type.highway.secondary_link" = "Street"; -"type.highway.secondary_link.bridge" = "Secondary Road"; +"type.highway.secondary_link.bridge" = "Street"; -"type.highway.secondary_link.tunnel" = "Secondary Road"; +"type.highway.secondary_link.tunnel" = "Street"; -"type.highway.service" = "Service Road"; +"type.highway.service" = "Street"; -"type.highway.service.area" = "Service Road"; +"type.highway.service.area" = "Street"; -"type.highway.service.bridge" = "Service Road"; +"type.highway.service.bridge" = "Street"; -"type.highway.service.driveway" = "Service Road"; +"type.highway.service.driveway" = "Street"; -"type.highway.service.parking_aisle" = "Service Road"; +"type.highway.service.parking_aisle" = "Street"; -"type.highway.service.tunnel" = "Service Road"; +"type.highway.service.tunnel" = "Street"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Speed Camera"; -"type.highway.steps" = "Stairs"; +"type.highway.steps" = "Path"; -"type.highway.steps.bridge" = "Stairs"; +"type.highway.steps.bridge" = "Path"; -"type.highway.steps.tunnel" = "Stairs"; +"type.highway.steps.tunnel" = "Path"; -"type.highway.tertiary" = "Tertiary Road"; +"type.highway.tertiary" = "Street"; -"type.highway.tertiary.bridge" = "Tertiary Road"; +"type.highway.tertiary.bridge" = "Street"; -"type.highway.tertiary.tunnel" = "Tertiary Road"; +"type.highway.tertiary.tunnel" = "Street"; -"type.highway.tertiary_link" = "Tertiary Road"; +"type.highway.tertiary_link" = "Street"; -"type.highway.tertiary_link.bridge" = "Tertiary Road"; +"type.highway.tertiary_link.bridge" = "Street"; -"type.highway.tertiary_link.tunnel" = "Tertiary Road"; +"type.highway.tertiary_link.tunnel" = "Street"; -"type.highway.track" = "Track"; +"type.highway.track" = "Street"; -"type.highway.track.area" = "Track"; +"type.highway.track.area" = "Street"; -"type.highway.track.bridge" = "Track"; +"type.highway.track.bridge" = "Street"; -"type.highway.track.grade1" = "Track"; +"type.highway.track.grade1" = "Street"; -"type.highway.track.grade2" = "Track"; +"type.highway.track.grade2" = "Street"; -"type.highway.track.grade3" = "Track"; +"type.highway.track.grade3" = "Street"; -"type.highway.track.grade4" = "Track"; +"type.highway.track.grade4" = "Street"; -"type.highway.track.grade5" = "Track"; +"type.highway.track.grade5" = "Street"; -"type.highway.track.no.access" = "Track"; +"type.highway.track.no.access" = "Street"; -"type.highway.track.permissive" = "Track"; +"type.highway.track.permissive" = "Street"; -"type.highway.track.tunnel" = "Track"; +"type.highway.track.tunnel" = "Street"; "type.highway.traffic_signals" = "Traffic Lights"; -"type.highway.trunk" = "National Highway"; +"type.highway.trunk" = "Street"; -"type.highway.trunk.bridge" = "National Highway"; +"type.highway.trunk.bridge" = "Street"; -"type.highway.trunk.tunnel" = "National Highway"; +"type.highway.trunk.tunnel" = "Street"; -"type.highway.trunk_link" = "National Highway"; +"type.highway.trunk_link" = "Street"; -"type.highway.trunk_link.bridge" = "National Highway"; +"type.highway.trunk_link.bridge" = "Street"; -"type.highway.trunk_link.tunnel" = "National Highway"; +"type.highway.trunk_link.tunnel" = "Street"; -"type.highway.unclassified" = "Minor Road"; +"type.highway.unclassified" = "Street"; -"type.highway.unclassified.area" = "Minor Road"; +"type.highway.unclassified.area" = "Street"; -"type.highway.unclassified.bridge" = "Minor Road"; +"type.highway.unclassified.bridge" = "Street"; -"type.highway.unclassified.tunnel" = "Minor Road"; - -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Foot Path"; - -"type.area_highway.living_street" = "Living Street"; - -"type.area_highway.motorway" = "Motorway"; - -"type.area_highway.path" = "Path"; - -"type.area_highway.pedestrian" = "Pedestrian Street"; - -"type.area_highway.primary" = "Primary Road"; - -"type.area_highway.residential" = "Street"; - -"type.area_highway.secondary" = "Secondary Road"; - -"type.area_highway.service" = "Service Road"; - -"type.area_highway.tertiary" = "Tertiary Road"; - -"type.area_highway.steps" = "Stairs"; - -"type.area_highway.track" = "Track"; - -"type.area_highway.trunk" = "National Highway"; - -"type.area_highway.unclassified" = "Minor Road"; +"type.highway.unclassified.tunnel" = "Street"; "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Archaeological Site"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Water Park"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capital"; -"type.place.city.capital.10" = "City"; +"type.place.city.capital.10" = "Capital"; -"type.place.city.capital.11" = "City"; +"type.place.city.capital.11" = "Capital"; "type.place.city.capital.2" = "Capital"; -"type.place.city.capital.3" = "City"; +"type.place.city.capital.3" = "Capital"; -"type.place.city.capital.4" = "City"; +"type.place.city.capital.4" = "Capital"; -"type.place.city.capital.5" = "City"; +"type.place.city.capital.5" = "Capital"; -"type.place.city.capital.6" = "City"; +"type.place.city.capital.6" = "Capital"; -"type.place.city.capital.7" = "City"; +"type.place.city.capital.7" = "Capital"; -"type.place.city.capital.8" = "City"; +"type.place.city.capital.8" = "Capital"; -"type.place.city.capital.9" = "City"; +"type.place.city.capital.9" = "Capital"; "type.place.continent" = "Continent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Building"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.stringsdict index f7fb5fc250..f6f67f8e93 100644 --- a/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/bg.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -58,6 +58,23 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + one + %d място + other + %d места + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.strings index 3b6624c30b..8851d00ec1 100644 --- a/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Zpět"; + /* Button text (should be short) */ "cancel" = "Zrušit"; @@ -17,6 +20,9 @@ "download_maps" = "Stáhnout mapy"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Stahování selhalo, zkuste to znovu."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Stahování…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Mapy"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Míle"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Hledat"; +/* Search box placeholder text */ +"search_map" = "Prohledat mapu"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Ano"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Aktuálně máte všechny možnosti pro určování polohy vypnuté. Prosím, povolte je v Nastavení."; + /* View and button titles for accessibility */ "zoom_to_country" = "Ukázat na mapě"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Stahování selhalo"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Zkusit znovu"; + "about_menu_title" = "O aplikaci Organic Maps"; +"connection_settings" = "Nastavení připojení"; + "close" = "Zavřít"; +"unsupported_phone" = "Je vyžadována hardwarová akcelerace OpenGL. Bohužel, vaše zařízení není podporováno."; + "download" = "Stáhnout"; +"disconnect_usb_cable" = "Prosím, odpojte USB kabel nebo vložte paměťovou kartu pro použití s Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Prosím, uvolněte nejprve místo na SD kartě/USB uložišti"; + +"not_enough_memory" = "Nedostatek paměti ke spuštění aplikace"; + +"download_resources" = "Ještě než začnete, bude třeba stáhnout obecnou mapu světa.\nZabere to %@."; + +"download_resources_continue" = "Přejít na mapu"; + +"downloading_country_can_proceed" = "Stahování %@. Nyní můžete\npřejít na mapu."; + +"download_country_ask" = "Stáhnout %@?"; + +"update_country_ask" = "Aktualizovat %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pauza"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Pokračovat"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "Stahování selhalo: %@"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Přidat novou skupinu záložek"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Moje místa"; +/* Add bookmark dialog - bookmark name */ +"name" = "Název"; + /* Editor title above street and house number */ "address" = "Adresa"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Skupina"; + /* Settings button in system menu */ "settings" = "Nastavení"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Uložit mapy na"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Vyberte místo, kam by měly být mapy stahovány"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Přesunout mapy?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Tato akce může trvat několik minut.\nProsím čekejte…"; + /* Measurement units title in settings activity */ "measurement_units" = "Měřicí jednotky"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Vyberte si míle nebo kilometry"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Kde se najíst"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Potraviny"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Doprava"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Čerpací stanice"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parkoviště"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Nákupy"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Pamětihodnost"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Zábava"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Bankomat"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Noční život"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Dovolená s dětmi"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Banka"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Lékárna"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Nemocnice"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Záchody"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Pošta"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Policie"; +/* Notes field in Bookmarks view */ +"description" = "Poznámky"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Sdílené záložky Organic Maps"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Vaše poloha zatím nebyla určena"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Omlouváme se, nastavení uložení map je dočasně nedostupné."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Právě probíhá stahování země."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Koukni kde jsem. Otevři odkaz: %1$@ nebo %2$@"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Koukni na moji značku na mapě v Organic Maps"; /* Subject for emailed position */ "my_position_share_email_subject" = "Podívej se na mou aktuální polohu na mapě na Organic Maps"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Ahoj,\n\nPrávě jsem tady: %1$@. Klepni na jeden z těchto odkazů %2$@, %3$@ a uvidíš toto místo na mapě.\n\nDíky."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Sdílet"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Zkopírováno do schránky: %1$@"; + /* place preview title */ "info" = "Více informací"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Opravdu chcete pokračovat?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Stopy"; @@ -195,10 +283,18 @@ "share_my_location" = "Sdílet mé umístění"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigace"; "pref_zoom_title" = "Tlačítka přiblížení/oddálení"; +"pref_zoom_summary" = "Zobrazit na obrazovce"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Noční režim"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Jazyk hlasu"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Není dostupná"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Ostatní"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Nápověda"; +/* Button in the main Help dialog */ +"faq" = "Otázky a odpovědi"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Jak nás podpořit?"; + /* Button in the main Help dialog */ "copyright" = "Autorská práva"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Aktualizovat vše"; +/* Cancel all button text */ +"downloader_cancel_all" = "Zrušit vše"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Staženo"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Smazat mapu"; +/* Item in context menu. */ +"downloader_update_map" = "Aktualizovat mapu"; + +/* Preference text */ +"pref_use_google_play" = "Používat Služby Google Play pro získání aktuální polohy"; + /* Text for rating dialog */ "rating_just_rated" = "Právě jsem ohodnotil(a) vaši aplikaci"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Naplánování trasy vyžaduje stažení a aktualizaci všech map z vašeho umístění do cílového umístění."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Nedostatek místa"; + /* bookmark button text */ "bookmark" = "uložit"; +/* location service disabled */ +"enable_location_services" = "Prosím, povolte Služby určování polohy"; + "save" = "Uložit"; +"edit_description_hint" = "Popis (HTML nebo text)"; + "create" = "vytvořit"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Trasu se nepodařilo zjistit"; +"dialog_routing_cant_build_route" = "Trasu se nepodařilo vytvořit."; + "dialog_routing_change_start_or_end" = "Upravte výchozí nebo cílový bod."; "dialog_routing_change_start" = "Upravte výchozí bod"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Chcete-li začít hledat a vytvářet trasy, pak si prosím stáhněte mapu a nebudete již potřebovat připojení."; + +"search_select_map" = "Vybrat mapu"; + /* «Show» context menu */ "show" = "Ukázat"; @@ -521,6 +655,9 @@ "clear_search" = "Vymazat historii vyhledávání"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Vaše umístění"; "p2p_start" = "Start"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Máme naplánovat trasu z vašeho současného umístění?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Další"; + "editor_time_add" = "Přidat rozvrh"; "editor_time_delete" = "Smazat rozvrh"; @@ -556,14 +696,28 @@ "editor_example_values" = "Vzorové hodnoty"; +"editor_correct_mistake" = "Opravit chybu"; + "editor_add_select_location" = "Umístění"; "editor_done_dialog_1" = "Změnili jste světovou mapu. Neskrývejte to! Řekněte o tom svým kamarádům a upravujte ji společně."; "share_with_friends" = "Sdílejte s kamarády"; +"editor_report_problem_desription_1" = "Popište prosím detailně problém, aby vám komunita OpenStreeMap mohla pomoct opravit chybu."; + +"editor_report_problem_desription_2" = "Nebo to udělejte sami na https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Odeslat"; +"editor_report_problem_title" = "Problém"; + +"editor_report_problem_no_place_title" = "Místo neexistuje"; + +"editor_report_problem_under_construction_title" = "Zavřeno kvůli údržbě"; + +"editor_report_problem_duplicate_place_title" = "Duplicitní místo"; + "autodownload" = "Automaticky stahovat"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Přidat otevírací dobu"; +"edit_opening_hours" = "Upravit otevírací dobu"; + "no_osm_account" = "Nemáte účet u OpenStreetMap?"; "register_at_openstreetmap" = "Registrace"; @@ -592,6 +748,8 @@ "login" = "Přihlásit se"; +"password" = "Heslo"; + "forgot_password" = "Zapomenuté heslo?"; "osm_account" = "Účet OSM"; @@ -609,6 +767,8 @@ "add_language" = "Přidat jazyk"; +"street" = "Ulice"; + /* Editable House Number text field (in address block). */ "house_number" = "Číslo domu"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Přidat ulici"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Zadejte název ulice"; + "choose_language" = "Zvolit jazyk"; "choose_street" = "Zvolit ulici"; @@ -632,12 +795,16 @@ "phone" = "Telefon"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Vezměte prosím na vědomí"; "downloader_delete_map_dialog" = "Zároveň s touto mapou budou odstraněny také všechny změny na této mapě."; "downloader_update_maps" = "Aktualizujte mapy"; +"downloader_mwm_migration_dialog" = "Chcete-li vytvořit trasu, pak musíte aktualizovat všechny mapy a poté trasu naplánovat znovu."; + "downloader_search_field_hint" = "Najít mapu"; "migration_download_error_dialog" = "Chyba při stahování"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Odstraňte prosím nepotřebná data"; +"editor_login_error_dialog" = "Chyba při přihlašování."; + "editor_profile_changes" = "Oveřené změny"; "editor_focus_map_on_location" = "Táhněte mapu, abyste vybrali správné umístění objektu."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategorie"; +"detailed_problem_description" = "Detailní popis problému"; + +"editor_report_problem_other_title" = "Jiný problém"; + +"placepage_add_business_button" = "Přidat organizaci"; + "whatsnew_editor_message_1" = "Přidejte na mapu nová místa a upravte existující místa přímo z aplikace."; "dialog_incorrect_feature_position" = "Změnit umístění"; @@ -710,6 +885,8 @@ "editor_operator" = "Operátor"; +"downloader_my_maps_title" = "Mé mapy"; + "downloader_no_downloaded_maps_title" = "Nemáte stažené žádné mapy"; "downloader_no_downloaded_maps_message" = "Stáhněte si mapy a hledejte cestu a její cíl, i když jste offline."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mil/h"; +"hour" = "hod"; + +"minute" = "min"; + "placepage_place_description" = "Popis"; "placepage_more_button" = "Více"; +"placepage_more_reviews_button" = "Více recenzí"; + "book_button" = "Rezervace"; "placepage_call_button" = "Volat"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Místo neexistuje"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…dále"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Zadat platný email"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Aktualizovat"; "placepage_add_place_button" = "Přidat místo na mapu"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Odmítnout"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Seznam"; "mobile_data_dialog" = "Použít mobilní data k zobrazení podrobnějších informací?"; @@ -848,12 +1044,16 @@ "big_font" = "Zvětšit velikost písma na mapě"; +"traffic_update_app" = "Aktualizujte Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Ke zobrazení dat o provozu je nutné aplikaci aktualizovat."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Data o provozu nejsou k dispozici"; +"enable_logging" = "Povolit protokolování"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Všeobecné připomínky"; @@ -861,14 +1061,24 @@ "off" = "Vypnout"; +"prefs_languages_information" = "Pro hlasové pokyny používáme systém TTS. Mnoho zařízení se systémem Android používá Google TTS, můžete si ho stáhnout nebo aktualizovat na Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "U některých jazyků je třeba nainstalovat jiný hlasový syntetizátor nebo další jazykové sady z obchodu s aplikacemi (Google Play, Samsung Apps).\nOtevřete zařízení → Nastavení jazyka a zadávání → Hlasitost → Převod textu na řeč. \nZde můžete spravovat nastavení pro syntézu řeči (například stáhnout jazykový balíček pro použití offline) a vybrat jiný modul převodu textu na řeč."; + +"prefs_languages_information_off_link" = "Více informací najdete v tomto návodu."; + "transliteration_title" = "Přepis do latinky"; +"learn_more" = "Zjistit více"; + "core_exit" = "Ukončit"; "routing_add_start_point" = "Zadejte výchozí bod pro plánování trasy"; "routing_add_finish_point" = "Zadejte cílový bod pro plánování trasy"; +"button_exit" = "Ukončit"; + "planning_route_manage_route" = "Spravovat trasu"; "button_plan" = "Naplánovat"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Jejda, došlo k chybě. Zkuste se přihlásit znovu."; +"dialog_error_storage_title" = "Problém s přístupem k úložišti"; + +"dialog_error_storage_message" = "Externí úložiště není k dispozici, pravděpodobně byla vyjmuta nebo poškozena SD karta, nebo je systém souborů pouze pro čtení. Zkontrolujte to prosím a kontaktujte nás na support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emulovat špatné úložiště"; + "core_entrance" = "Vstup"; "error_enter_correct_name" = "Zadejte prosím správný název"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Vytvořte nový seznam"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Skrýt obrazovku"; "downloader_percent" = "%s (%s z %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Nelze sdílet s prázdným seznamem"; +"bookmarks_error_title_empty_list_name" = "Jméno nemůže být prázdné"; + "bookmarks_error_message_empty_list_name" = "Zadejte název seznamu"; +"bookmarks_new_list_hint" = "Nový seznam"; + "bookmarks_error_title_list_name_already_taken" = "Toto jméno již bylo provedeno"; +"bookmarks_error_message_list_name_already_taken" = "Zvolte jiný název"; + "bookmarks_error_title_list_name_too_long" = "Tento název je příliš dlouhý"; +"please_wait" = "Prosím, čekejte…"; + +"phone_number" = "Telefonní číslo"; + "profile" = "Profil OpenStreetMap"; "bookmarks_detect_title" = "Byly zjištěny nové soubory"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Obnovit tuto verzi?"; +"common_check_internet_connection_dialog_title" = "Žádné internetové připojení"; + "error_system_message" = "Nastala neznámá chyba"; "restore" = "Obnovit"; +"subtittle_opt_out" = "Natavení doprovodu"; + +"crash_reports" = "Zprávy o chybách"; + +"crash_reports_description" = "Můžeme používat vaše údaje pro vývoj a zlepšení Organic Maps. Změny se projeví po restartování aplikace."; + "privacy_policy" = "Politika důvěrnosti"; "terms_of_use" = "Podmínky užívání"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Mapa metra není dostupná"; +"bookmarks_empty_list_title" = "Seznam je prázdný"; + +"bookmarks_empty_list_message" = "Pro přidání nové značky klikněte na symbol hvězdičky na obrázku objektu"; + +"category_desc_more" = "…ještě"; + "title_error_downloading_bookmarks" = "Někde se stala chyba"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Neukazovat na mapě"; +"public_access" = "Veřejně přístupné"; + +"limited_access" = "Soukromé"; + "bookmark_list_description_hint" = "Přidejte popis (text nebo html)"; +"not_shared" = "Osobní účet"; + "tags_loading_error_subtitle" = "Během nahrávání tagů se stala chyba, zkuste to prosím ještě jednou"; "download_button" = "Stáhnout"; @@ -972,6 +1221,9 @@ "place_description_title" = "Popis místa"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Nahrávání map"; + "speedcams_notice_message" = "Automaticky - Upozorňovat na rychlostní radary, pokud hrozí riziko překročení rychlosti\nVždy - Vždy upozorňovat na rychlostní radary\nNikdy - Nikdy neupozorňovat na rychlostní radary"; "power_managment_title" = "Nízkoenergetický režim"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maximální šetření energií"; +"enable_logging_warning_message" = "Daná možnost se zapojuje pro protokolování činností za účelem diagnostiky. To pomáhá týmu odhalit problémy s přílohou. Zapojujte možnost jenom na požádání podržení Organic Maps."; + +"access_rules_author_only" = "Upravujte on-line"; + "driving_options_title" = "Možnosti řízení"; "driving_options_subheader" = "Vyhněte se na každé trase"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Třídit…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Třídit záložky"; + /* iOS */ "sort_default" = "Třídit ve výchozím nastavení"; @@ -1086,6 +1345,18 @@ "sort_date" = "Třídit dle data"; +/* Android */ +"by_default" = "Podle výchozího stavu"; + +/* Android */ +"by_type" = "Podle typu"; + +/* Android */ +"by_distance" = "Podle vzdálenosti"; + +/* Android */ +"by_date" = "Podle data"; + "week_ago_sorttype" = "Před týdnem"; "month_ago_sorttype" = "Před měsícem"; @@ -1132,6 +1403,8 @@ "religious_places" = "Posvátná místa"; +"select_list" = "Vybrat seznam"; + "transit_not_found" = "Navigace metra v této oblasti zatím není k dispozici"; "dialog_pedestrian_route_is_long_header" = "Trasa metra nebyla nalezena"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Obtížnost"; +"elevation_profile_distance" = "Vzdál.:"; + "elevation_profile_time" = "Čas:"; "isolines_toast_zooms_1_10" = "Přiblížit pro prozkoumání izolinií"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Probíhá stahování"; +"key_information_title" = "Klíčové informace"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Nechte obrazovku spát"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Je-li tato možnost povolena, bude obrazovka po určité době nečinnosti umožněna usnout."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Aktualizujte své stažené mapy"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Lékařská laboratoř"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Autobusová zastávka"; "type.highway.construction" = "Silnice v rekonstrukci"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Ulice"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Rychlostní kamera"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Ulice"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Cesta"; - -"type.area_highway.living_street" = "Ulice"; - -"type.area_highway.motorway" = "Ulice"; - -"type.area_highway.path" = "Cesta"; - -"type.area_highway.pedestrian" = "Ulice"; - -"type.area_highway.primary" = "Ulice"; - -"type.area_highway.residential" = "Ulice"; - -"type.area_highway.secondary" = "Ulice"; - -"type.area_highway.service" = "Ulice"; - -"type.area_highway.tertiary" = "Ulice"; - -"type.area_highway.steps" = "Cesta"; - -"type.area_highway.track" = "Ulice"; - -"type.area_highway.trunk" = "Ulice"; - -"type.area_highway.unclassified" = "Ulice"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Vykopávky"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Aquacentrum"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Hlavní město"; -"type.place.city.capital.10" = "Velkoměsto"; +"type.place.city.capital.10" = "Hlavní město"; -"type.place.city.capital.11" = "Velkoměsto"; +"type.place.city.capital.11" = "Hlavní město"; "type.place.city.capital.2" = "Hlavní město"; -"type.place.city.capital.3" = "Velkoměsto"; +"type.place.city.capital.3" = "Hlavní město"; -"type.place.city.capital.4" = "Velkoměsto"; +"type.place.city.capital.4" = "Hlavní město"; -"type.place.city.capital.5" = "Velkoměsto"; +"type.place.city.capital.5" = "Hlavní město"; -"type.place.city.capital.6" = "Velkoměsto"; +"type.place.city.capital.6" = "Hlavní město"; -"type.place.city.capital.7" = "Velkoměsto"; +"type.place.city.capital.7" = "Hlavní město"; -"type.place.city.capital.8" = "Velkoměsto"; +"type.place.city.capital.8" = "Hlavní město"; -"type.place.city.capital.9" = "Velkoměsto"; +"type.place.city.capital.9" = "Hlavní město"; "type.place.continent" = "Kontinent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Stavba"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.stringsdict index cf59d2bf06..5ede52e133 100644 --- a/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/cs.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -58,6 +58,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d míst + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/da.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/da.lproj/Localizable.strings index 6f0fbbf059..344b642f25 100644 --- a/iphone/Maps/LocalizedStrings/da.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/da.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Tilbage"; + /* Button text (should be short) */ "cancel" = "Afbryd"; @@ -17,6 +20,9 @@ "download_maps" = "Download kort"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Der skete en fejl ved download, tryk for at prøve igen."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Downloader…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Kort"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Mil"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Søg"; +/* Search box placeholder text */ +"search_map" = "Søg kort"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Ja"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Du har alle lokationstjenester for denne enhed eller applikation slukket. Slå dem venligst til i Indstillinger."; + /* View and button titles for accessibility */ "zoom_to_country" = "Vis på kortet"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Download mislykket"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Prøv igen"; + "about_menu_title" = "Om Organic Maps"; +"connection_settings" = "Forbindelsesindstillinger"; + "close" = "Luk"; +"unsupported_phone" = "En hardware accelereret OpenGL er påkrævet. Din enhed er desværre ikke understøttet."; + "download" = "Download"; +"disconnect_usb_cable" = "Frakobl venligst USB-kabel eller indsæt et memory kort for at bruge Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Frigør venligst plads på dit SD-kort/USB lager først for at bruge denne app"; + +"not_enough_memory" = "Ikke nok hukommelse til at åbne app"; + +"download_resources" = "Før du starter, så lad os downloade det generelle verdenskort til din enhed.\nIt behøver %@ af data."; + +"download_resources_continue" = "Gå til kort"; + +"downloading_country_can_proceed" = "Downloader %@. Du kan nu\nfortsætte til kortet."; + +"download_country_ask" = "Download %@?"; + +"update_country_ask" = "Opdater %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pause"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Fortsæt"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ download mislykkedes"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Tilføj nyt sæt"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Mine Steder"; +/* Add bookmark dialog - bookmark name */ +"name" = "Navn"; + /* Editor title above street and house number */ "address" = "Adresse"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Sæt"; + /* Settings button in system menu */ "settings" = "Indstillinger"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Gem kort på"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Vælg destination hvor dine kort skal downloades til"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Flyt kort?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Dette kan tage flere minutter.\nVent venligst…"; + /* Measurement units title in settings activity */ "measurement_units" = "Måleenhed"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Vælg mellem mil eller kilometer"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Spisesteder"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Dagligvarer"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transport"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Benzin"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parkering"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Indkøb"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Seværdigheder"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Underholdning"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Hæveautomat"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Natteliv"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Familieferie"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Apotek"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Hospital"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toilet"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Post"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Politi"; +/* Notes field in Bookmarks view */ +"description" = "Noter"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Organic Maps bogmærker er blevet delt med dig"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Din lokation er ikke blevet bestemt endnu"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Beklager, Kort Lagring er ikke slået til i indstillinger."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Download af kort over land er i gang nu."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hey, tjek min nuværende lokation ud på Organic Maps! %1$@ or %2$@. Har du ikke offline kort? Download her: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hey, tjek min knappenål på Organic Maps kortet ud!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hey, tjek min nuværende lokation ud på Organic Maps kortet!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hey, her er jeg nu: %1$@. Tryk på dette link %2$@ eller dette %3$@ for at se stedet på kortet. Tak."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Del"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Kopieret til udklipsholderen: %1$@"; + /* place preview title */ "info" = "Info"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Er du sikker på, at du vil fortsætte?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Ruter"; @@ -195,10 +283,18 @@ "share_my_location" = "Del min lokation"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigation"; "pref_zoom_title" = "Zoom knapper"; +"pref_zoom_summary" = "Vis på skærmen"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Nattilstand"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Stemmesprog"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Ikke til rådighed"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Andet"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Hjælp"; +/* Button in the main Help dialog */ +"faq" = "Spørgsmål og svar"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Sådan støtter vi os?"; + /* Button in the main Help dialog */ "copyright" = "Copyright"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Opdatér alle"; +/* Cancel all button text */ +"downloader_cancel_all" = "Aflys Alt"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Downloadet"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Slet kort"; +/* Item in context menu. */ +"downloader_update_map" = "Opdater kort"; + +/* Preference text */ +"pref_use_google_play" = "Anvend Google Play Services til at få din aktuelle placering"; + /* Text for rating dialog */ "rating_just_rated" = "Jeg har netop bedømt jeres app"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Ved at oprette en rute kræver det, at alle kort fra din placering til destination er downloadede og opdaterede."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Ikke nok plads"; + /* bookmark button text */ "bookmark" = "bogmærke"; +/* location service disabled */ +"enable_location_services" = "Aktiver venligst lokationstjenester"; + "save" = "Gem"; +"edit_description_hint" = "Dine beskrivelser (tekst eller html)"; + "create" = "skabe"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Der blev ikke fundet en rute"; +"dialog_routing_cant_build_route" = "Der blev ikke planlagt en rute."; + "dialog_routing_change_start_or_end" = "Prøv at angive et andet startpunkt eller en anden destination."; "dialog_routing_change_start" = "Vælg et andet startpunkt"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "For at begynde at søge efter og oprette ruter bedes du downloade kortet, så du ikke længere har behov for en internetforbindelse."; + +"search_select_map" = "Vælk kortet"; + /* «Show» context menu */ "show" = "Vis"; @@ -521,6 +655,9 @@ "clear_search" = "Ryd historiksøgning"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Din lokalitet"; "p2p_start" = "Start"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Ønsker du, at vi planlægger en rute fra din nuværende placering?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Næste"; + "editor_time_add" = "Tilføj tidsplan"; "editor_time_delete" = "Slet tidsplan"; @@ -556,14 +696,28 @@ "editor_example_values" = "Eksempelværdier"; +"editor_correct_mistake" = "Ret fejl"; + "editor_add_select_location" = "Sted"; "editor_done_dialog_1" = "Du har ændret verdenskortet. Lad andre det vide! Fortæl dine venner og redigér det sammen."; "share_with_friends" = "Del med venner"; +"editor_report_problem_desription_1" = "Beskriv problemet i detaljer, så OpenStreetMap-fællesskabet kan løse fejlen."; + +"editor_report_problem_desription_2" = "Eller gør det selv på https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Send"; +"editor_report_problem_title" = "Problem"; + +"editor_report_problem_no_place_title" = "Stedet findes ikke"; + +"editor_report_problem_under_construction_title" = "Lukket for vedligeholdelse"; + +"editor_report_problem_duplicate_place_title" = "Duplikeret sted"; + "autodownload" = "Automatisk download"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Tilføj arbejdstid"; +"edit_opening_hours" = "Rediger arbejdstid"; + "no_osm_account" = "Ingen konto på OpenStreetMap?"; "register_at_openstreetmap" = "Tilmeld dig"; @@ -592,6 +748,8 @@ "login" = "Log ind"; +"password" = "Adgangskode"; + "forgot_password" = "Glemt adgangskode?"; "osm_account" = "OSM-konto"; @@ -609,6 +767,8 @@ "add_language" = "Tilføj et sprog"; +"street" = "Gade"; + /* Editable House Number text field (in address block). */ "house_number" = "Et husnummer"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Tilføj en gade"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Indtast et gadenavn"; + "choose_language" = "Vælg et sprog"; "choose_street" = "Vælg en gade"; @@ -632,12 +795,16 @@ "phone" = "Telefon"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Bemærk venligst"; "downloader_delete_map_dialog" = "Alle kortændringer vil blive slettet sammen med kortet."; "downloader_update_maps" = "Opdatér kort"; +"downloader_mwm_migration_dialog" = "For at oprette en rute skal du opdatere alle kort og så planlægge ruten igen."; + "downloader_search_field_hint" = "Find kortet"; "migration_download_error_dialog" = "Fejl ved download"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Fjern unødvendig data"; +"editor_login_error_dialog" = "Login-fejl."; + "editor_profile_changes" = "Bekræftede ændringer"; "editor_focus_map_on_location" = "Træk kortet for at vælge objektets korrekte placering."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategori"; +"detailed_problem_description" = "Detaljeret beskrivelse af problemet"; + +"editor_report_problem_other_title" = "Et anderledes problem"; + +"placepage_add_business_button" = "Tilføj organisationen"; + "whatsnew_editor_message_1" = "Tilføj nye steder til kortet og redigér eksisterende direkte fra app'en."; "dialog_incorrect_feature_position" = "Skift lokation"; @@ -710,6 +885,8 @@ "editor_operator" = "Bruger"; +"downloader_my_maps_title" = "Mine kort"; + "downloader_no_downloaded_maps_title" = "Du har ikke hentet alle kort"; "downloader_no_downloaded_maps_message" = "Download kort for at finde position og navigere offline."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "time"; + +"minute" = "min"; + "placepage_place_description" = "Beskrivelse"; "placepage_more_button" = "Mere"; +"placepage_more_reviews_button" = "Flere anmeldelser"; + "book_button" = "Book"; "placepage_call_button" = "Ring"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Stedet eksisterer ikke"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…mere"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Indtast en gyldig emailadresse"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Opdater"; "placepage_add_place_button" = "Tilføj et sted på kortet"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Afvis"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Liste"; "mobile_data_dialog" = "Skal mobilt internet bruges til at vise detaljerede oplysninger?"; @@ -848,12 +1044,16 @@ "big_font" = "Forøg skriftstørrelsen på kortet"; +"traffic_update_app" = "Opdater Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Appen skal opdateres for at kunne vise trafikdata."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Trafikdata er ikke tilgængelige"; +"enable_logging" = "Aktiver logføring"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Generel feedback"; @@ -861,14 +1061,24 @@ "off" = "Fra"; +"prefs_languages_information" = "Vi bruger systemets TTS til stemmevejledning. Mange Android-enheder bruger Google TTS, du kan hente eller opdatere det via Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "For nogle sprog skal du installere en anden talesyntese eller en yderligere sprogpakke fra appbutiken (Google Play Market, Samsung Apps).\nÅbn enhedens indstillinger → Sprog og input → Tale → Tekst til tale. Her kan du administrere indstillingerne for talesyntese (f. eks downloade en sprogpakke til brug offline) og vælge et andet tekst-til-tale program."; + +"prefs_languages_information_off_link" = "Se denne vejledning for flere oplysninger."; + "transliteration_title" = "Translitteration til latinsk"; +"learn_more" = "Flere oplysninger"; + "core_exit" = "Afslut"; "routing_add_start_point" = "Tilføj startpunkt for at planlægge en rute"; "routing_add_finish_point" = "Tilføj slutpunkt for at planlægge en rute"; +"button_exit" = "Afslut"; + "planning_route_manage_route" = "Administrer rute"; "button_plan" = "Planlæg"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Ups, der skete en fejl. Prøv at logge på igen."; +"dialog_error_storage_title" = "Problem med lageradgang"; + +"dialog_error_storage_message" = "Eksternt lager er ikke tilgængeligt, formentlig er SD-kortet blevet fjernet eller beskadiget, eller filsystemet er skrivebeskyttet. Kontroller det og kontakt os på support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emulere beskadiget lager"; + "core_entrance" = "Indgang"; "error_enter_correct_name" = "Angiv et korrekt navn"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Opret ny liste"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Skjul skærm"; "downloader_percent" = "%s (%s af %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Kan ikke dele en tom liste"; +"bookmarks_error_title_empty_list_name" = "Navnet kunne ikke være tomt"; + "bookmarks_error_message_empty_list_name" = "Indtast venligst listen navn"; +"bookmarks_new_list_hint" = "Ny liste"; + "bookmarks_error_title_list_name_already_taken" = "Dette navn er allerede taget"; +"bookmarks_error_message_list_name_already_taken" = "Vælg venligst et andet navn"; + "bookmarks_error_title_list_name_too_long" = "Dette navn er for langt"; +"please_wait" = "Vent venligst…"; + +"phone_number" = "Telefonnummer"; + "profile" = "OpenStreetMap profil"; "bookmarks_detect_title" = "Nye filer registreret"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Gendan denne version?"; +"common_check_internet_connection_dialog_title" = "Ingen internetforbindelse"; + "error_system_message" = "Der opstod en ukendt fejl"; "restore" = "Gendan"; +"subtittle_opt_out" = "Tracking-indstillinger"; + +"crash_reports" = "Nedbrudsrapport"; + +"crash_reports_description" = "Vi kan anvende dine data til at forbedre brugeroplevelsen på Organic Maps. Ændringerne træder i kraft, når du har genstartet appen."; + "privacy_policy" = "Privatlivspolitik"; "terms_of_use" = "Vilkår for bruger"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Kort over undergrundsbaner er ikke tilgængeligt"; +"bookmarks_empty_list_title" = "Listen er tom"; + +"bookmarks_empty_list_message" = "For at tilføje et bogmærke, så tryk et sted på kort og så på stjerneikonet"; + +"category_desc_more" = "…mere"; + "title_error_downloading_bookmarks" = "Der er opstået en fejl"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Skjul på kort"; +"public_access" = "Offentlig adgang"; + +"limited_access" = "Begrænset adgang"; + "bookmark_list_description_hint" = "Lav en beskrivelse (tekst eller html)"; +"not_shared" = "Privat"; + "tags_loading_error_subtitle" = "Der skete en fejl under hentning af tags, prøv igen"; "download_button" = "Download"; @@ -972,6 +1221,9 @@ "place_description_title" = "Beskrivelse af sted"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Korthenter"; + "speedcams_notice_message" = "Auto - Advar om fartkameraer, hvis der er en risiko for, at hastighedsgrænsen overskrides\nAltid - Advar altid om fartkameraer\nAldrig - Advar aldrig om fartkameraer"; "power_managment_title" = "Strømsparetilstand"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maksimum strømbesparelse"; +"enable_logging_warning_message" = "Indstillingen aktiverer logning til diagnostiske formål. Det kan være nyttigt for vores supportere, der fejlfinder problemer med appen. Aktiver kun denne mulighed på anmodning fra Organic Maps support."; + +"access_rules_author_only" = "Online redigering"; + "driving_options_title" = "Køre muligheder"; "driving_options_subheader" = "Undgå på enhver rute"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Sort…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Sort (bookmaarks)"; + /* iOS */ "sort_default" = "Sortér (std)"; @@ -1086,6 +1345,18 @@ "sort_date" = "Sort (dato)"; +/* Android */ +"by_default" = "Som standard"; + +/* Android */ +"by_type" = "Efter type"; + +/* Android */ +"by_distance" = "Efter afstand"; + +/* Android */ +"by_date" = "Efter dato"; + "week_ago_sorttype" = "En uge siden"; "month_ago_sorttype" = "En måned siden"; @@ -1132,6 +1403,8 @@ "religious_places" = "Religiøse steder"; +"select_list" = "Væg liste"; + "transit_not_found" = "Metro-navigation er endnu ikke tilgængelig i denne region"; "dialog_pedestrian_route_is_long_header" = "Metro-rute blev ikke fundet"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Vanskelighed"; +"elevation_profile_distance" = "Afs.:"; + "elevation_profile_time" = "Tid:"; "isolines_toast_zooms_1_10" = "Zoom ind for at udforske isolinjekort"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Downloader"; +"key_information_title" = "Central information"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Lad skærmen sove"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Når den er aktiveret, får skærmen lov til at sove efter en periode med inaktivitet."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Opdater dine downloadede kort"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Medicinsk laboratorium"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Busstoppested"; "type.highway.construction" = "Vej under opbygning"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Gade"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Automatisk Trafikkontrol"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Gade"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Sti"; - -"type.area_highway.living_street" = "Gade"; - -"type.area_highway.motorway" = "Gade"; - -"type.area_highway.path" = "Sti"; - -"type.area_highway.pedestrian" = "Gade"; - -"type.area_highway.primary" = "Gade"; - -"type.area_highway.residential" = "Gade"; - -"type.area_highway.secondary" = "Gade"; - -"type.area_highway.service" = "Gade"; - -"type.area_highway.tertiary" = "Gade"; - -"type.area_highway.steps" = "Sti"; - -"type.area_highway.track" = "Gade"; - -"type.area_highway.trunk" = "Gade"; - -"type.area_highway.unclassified" = "Gade"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Arkæologisk sted"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Vandpark"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Kapital"; -"type.place.city.capital.10" = "By"; +"type.place.city.capital.10" = "Kapital"; -"type.place.city.capital.11" = "By"; +"type.place.city.capital.11" = "Kapital"; "type.place.city.capital.2" = "Kapital"; -"type.place.city.capital.3" = "By"; +"type.place.city.capital.3" = "Kapital"; -"type.place.city.capital.4" = "By"; +"type.place.city.capital.4" = "Kapital"; -"type.place.city.capital.5" = "By"; +"type.place.city.capital.5" = "Kapital"; -"type.place.city.capital.6" = "By"; +"type.place.city.capital.6" = "Kapital"; -"type.place.city.capital.7" = "By"; +"type.place.city.capital.7" = "Kapital"; -"type.place.city.capital.8" = "By"; +"type.place.city.capital.8" = "Kapital"; -"type.place.city.capital.9" = "By"; +"type.place.city.capital.9" = "Kapital"; "type.place.continent" = "Kontinent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Bygning"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/da.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/da.lproj/Localizable.stringsdict index 17735f4ad3..46e9d1b779 100644 --- a/iphone/Maps/LocalizedStrings/da.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/da.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -56,6 +56,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d steder + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/de.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/de.lproj/Localizable.strings index 941134e9d5..4eefa2a1e7 100644 --- a/iphone/Maps/LocalizedStrings/de.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/de.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Zurück"; + /* Button text (should be short) */ "cancel" = "Abbrechen"; @@ -17,6 +20,9 @@ "download_maps" = "Karten herunterladen"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Herunterladen fehlgeschlagen. Antippen für einen neuen Versuch."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Wird heruntergeladen…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Karten"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Meilen"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Suche"; +/* Search box placeholder text */ +"search_map" = "Auf der Karte suchen"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Ja"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Ortungsdienste sind für dieses Gerät oder die App deaktiviert. Bitte aktivieren Sie diese in den Einstellungen."; + /* View and button titles for accessibility */ "zoom_to_country" = "Auf der Karte anzeigen"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Herunterladen fehlgeschlagen"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Erneut versuchen"; + "about_menu_title" = "Über Organic Maps"; +"connection_settings" = "Verbindungseinstellungen"; + "close" = "Schließen"; +"unsupported_phone" = "Das Programm benötigt OpenGL, um zu funktionieren. Leider wird Ihr Gerät nicht unterstützt."; + "download" = "Herunterladen"; +"disconnect_usb_cable" = "Bitte USB-Kabel entfernen oder Speicherkarte einsetzen, um Organic Maps zu verwenden"; + +"not_enough_free_space_on_sdcard" = "Bitte zuerst Speicherplatz auf SD-Karte/USB-Speicher freigeben, um die Anwendung zu nutzen"; + +"not_enough_memory" = "Nicht genügend Speicher, um die Anwendung zu starten"; + +"download_resources" = "Bevor Sie starten, laden Sie die allgemeine Weltkarte auf Ihr Gerät herunter.\nEs wird %@ Speicherplatz benötigt."; + +"download_resources_continue" = "Zur Karte"; + +"downloading_country_can_proceed" = "%@ wird heruntergeladen. Sie können jetzt\nzur Karte weitergehen."; + +"download_country_ask" = "%@ herunterladen?"; + +"update_country_ask" = "%@ aktualisieren?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pause"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Fortfahren"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ Herunterladen fehlgeschlagen"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Neue Gruppe hinzufügen"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Meine Orte"; +/* Add bookmark dialog - bookmark name */ +"name" = "Name"; + /* Editor title above street and house number */ "address" = "Adresse"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Gruppe"; + /* Settings button in system menu */ "settings" = "Einstellungen"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Karten speichern auf"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Wählen Sie den Speicherort, an den die Karten heruntergeladen werden sollen"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Karten verschieben?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Dies kann einige Minuten in Anspruch nehmen.\nBitte warten…"; + /* Measurement units title in settings activity */ "measurement_units" = "Maßeinheiten"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Wählen Sie zwischen Kilometern und Meilen"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Essmöglichkeiten"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Lebensmittel"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Verkehr"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Tankstelle"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parkplatz"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Shopping"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Sehenswürdigkeit"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Unterhaltung"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Geldautomat"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Nachtleben"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Freizeit mit Kindern"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Apotheke"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Krankenhaus"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toilette"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Post"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Polizeistation"; +/* Notes field in Bookmarks view */ +"description" = "Notizen"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Organic Maps-Lesezeichen mit Ihnen geteilt"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Ihr Standort konnte noch nicht ermittelt werden"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Leider sind die Einstellungen für die Kartenspeicherung deaktiviert."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Das Land wird gerade heruntergeladen."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hey, sieh dir meinen aktuellen Standort auf Organic Maps an! %1$@ oder %2$@ Keine Offline-Karten installiert? Hier herunterladen: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hey, sieh dir meine Stecknadel auf der Organic Maps-Karte an!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hey, sieh dir meinen aktuellen Standort auf der Organic Maps-Karte an"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hi,\n\nich bin gerade hier: %1$@. Klicke den Link %2$@ oder %3$@, um den Ort auf der Karte anzuzeigen.\n\nVielen Dank."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Teilen"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "In die Zwischenablage kopiert: %1$@"; + /* place preview title */ "info" = "Info"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Datenversion: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Möchten Sie wirklich fortfahren?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Strecken"; @@ -195,10 +283,18 @@ "share_my_location" = "Meinen Standort teilen"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Allgemeine Einstellungen"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigation"; "pref_zoom_title" = "Zoom-Tasten"; +"pref_zoom_summary" = "Auf dem Bildschirm anzeigen"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Nachtmodus"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Sprache für Sprachführung"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Nicht verfügbar"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Weitere"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Hilfe"; +/* Button in the main Help dialog */ +"faq" = "Fragen und Antworten"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Wie unterstützen Sie uns?"; + /* Button in the main Help dialog */ "copyright" = "Copyright"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Alle aktualisieren"; +/* Cancel all button text */ +"downloader_cancel_all" = "Alle abbrechen"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Heruntergeladen"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Karte löschen"; +/* Item in context menu. */ +"downloader_update_map" = "Karte aktualisieren"; + +/* Preference text */ +"pref_use_google_play" = "Nutzen Sie die Google Play-Dienste, um Ihren aktuellen Standort zu erhalten"; + /* Text for rating dialog */ "rating_just_rated" = "Ich habe gerade Ihre App bewertet"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Zum Erstellen einer Route müssen alle Karten von Ihrem Standort bis zum Ziel heruntergeladen und aktualisiert worden sein."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Nicht genug Speicherplatz"; + /* bookmark button text */ "bookmark" = "Lesezeichen"; +/* location service disabled */ +"enable_location_services" = "Aktivieren Sie bitte Ortungsdienste"; + "save" = "Speichern"; +"edit_description_hint" = "Ihre Beschreibungen (Text oder HTML)"; + "create" = "erstellen"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Route kann nicht ermittelt werden"; +"dialog_routing_cant_build_route" = "Route kann nicht erstellt werden."; + "dialog_routing_change_start_or_end" = "Bitte passen Sie Ihren Startpunkt oder Ihr Ziel an."; "dialog_routing_change_start" = "Startpunkt anpassen"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Um mit der Suche und dem Erstellen von Routen zu beginnen, laden Sie bitte die Karte herunter. Sie benötigen danach keine Internetverbindung mehr."; + +"search_select_map" = "Karte auswählen"; + /* «Show» context menu */ "show" = "Anzeigen"; @@ -521,6 +655,9 @@ "clear_search" = "Suchverlauf löschen"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Ihr Standort"; "p2p_start" = "Start"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Soll eine Route von Ihrem aktuellen Standort aus berechnet werden?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Weiter"; + "editor_time_add" = "Zeitplan hinzufügen"; "editor_time_delete" = "Zeitplan löschen"; @@ -556,14 +696,28 @@ "editor_example_values" = "Beispiele"; +"editor_correct_mistake" = "Fehler korrigieren"; + "editor_add_select_location" = "Position"; "editor_done_dialog_1" = "Sie haben die Weltkarte geändert. Blenden Sie das nicht aus! Erzählen Sie Ihren Freunden davon und bearbeiten Sie sie zusammen."; "share_with_friends" = "Mit Freunden teilen"; +"editor_report_problem_desription_1" = "Bitte beschreiben Sie das Problem detailliert, damit die OpenStreeMap-Gemeinschaft den Fehler beheben kann."; + +"editor_report_problem_desription_2" = "Oder kümmern Sie sich selbst darum auf https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Senden"; +"editor_report_problem_title" = "Problem"; + +"editor_report_problem_no_place_title" = "Der Ort existiert nicht"; + +"editor_report_problem_under_construction_title" = "Wegen Wartung geschlossen"; + +"editor_report_problem_duplicate_place_title" = "Doppelter Ort"; + "autodownload" = "Automatisch herunterladen"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Geschäftszeiten hinzufügen"; +"edit_opening_hours" = "Geschäftszeiten bearbeiten"; + "no_osm_account" = "Kein Konto bei OpenStreetMap?"; "register_at_openstreetmap" = "Registrieren"; @@ -592,6 +748,8 @@ "login" = "Anmelden"; +"password" = "Passwort"; + "forgot_password" = "Passwort vergessen?"; "osm_account" = "OSM Konto"; @@ -609,6 +767,8 @@ "add_language" = "Eine Sprache hinzufügen"; +"street" = "Straße"; + /* Editable House Number text field (in address block). */ "house_number" = "Hausnummer"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Eine Straße hinzufügen"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Geben Sie einen Straßennamen ein"; + "choose_language" = "Eine Sprache wählen"; "choose_street" = "Eine Straße wählen"; @@ -632,12 +795,16 @@ "phone" = "Telefon"; +"editor_add_phone" = "Telefon hinzufügen"; + "please_note" = "Bitte beachten"; "downloader_delete_map_dialog" = "Alle Kartenänderungen werden zusammen mit der Karte gelöscht."; "downloader_update_maps" = "Karten aktualisieren"; +"downloader_mwm_migration_dialog" = "Um eine Strecke zu erstellen, müssen Sie alle Karten aktualisieren und dann die Strecken erneut planen."; + "downloader_search_field_hint" = "Karte finden"; "migration_download_error_dialog" = "Fehler beim Herunterladen"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Bitte entfernen Sie unnötige Daten"; +"editor_login_error_dialog" = "Login-Fehler."; + "editor_profile_changes" = "Bestätigte Änderungen der Karte"; "editor_focus_map_on_location" = "Ziehen Sie die Karte, um den Standort des Objektes zu korrigieren."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategorie"; +"detailed_problem_description" = "Detaillierte Beschreibung eines Problems"; + +"editor_report_problem_other_title" = "Ein anderes Problem"; + +"placepage_add_business_button" = "Organisation hinzufügen"; + "whatsnew_editor_message_1" = "Fügen Sie auf der Karte einen neuen Ort hinzu und bearbeiten Sie existierende Ort direkt in der App."; "dialog_incorrect_feature_position" = "Standort wechseln"; @@ -710,6 +885,8 @@ "editor_operator" = "Betreiber oder Eigentümer"; +"downloader_my_maps_title" = "Meine Karten"; + "downloader_no_downloaded_maps_title" = "Keine Karten geladen"; "downloader_no_downloaded_maps_message" = "Laden Sie die für die Suche nach Orten erforderlichen Karten und verwenden Sie die Navigation offline."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Beschreibung"; "placepage_more_button" = "Mehr"; +"placepage_more_reviews_button" = "Mehr Feedbacks"; + "book_button" = "Buchen"; "placepage_call_button" = "Anruf"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Dieser Ort existiert nicht"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…Mehr"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Geben Sie eine gültige Email-Adresse ein"; +"error_enter_correct_facebook_page" = "Geben Sie eine gültige Facebook-Webadresse, ein Konto oder einen Seitennamen ein"; + +"error_enter_correct_instagram_page" = "Geben Sie eine gültige Instagram-Webadresse oder einen Kontonamen ein"; + +"error_enter_correct_twitter_page" = "Geben Sie eine gültige Twitter-Webadresse oder einen Benutzernamen ein"; + +"error_enter_correct_vk_page" = "Geben Sie eine gültige VK-Webadresse oder einen Kontonamen ein"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Aktualisieren"; "placepage_add_place_button" = "Einen Ort zur Karte hinzufügen"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Ablehnen"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Liste"; "mobile_data_dialog" = "Mobiles Internet verwenden, um genauere Informationen anzuzeigen?"; @@ -848,12 +1044,16 @@ "big_font" = "Schriftgröße auf der Karte erhöhen"; +"traffic_update_app" = "Bitte aktualisieren Sie Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Um Verkehrsdaten anzuzeigen, muss die Anwendung aktualisiert werden."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Verkehrsdaten sind nicht verfügbar"; +"enable_logging" = "Protokollierung aktivieren"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Allgemeines Feedback"; @@ -861,14 +1061,24 @@ "off" = "Aus"; +"prefs_languages_information" = "Wir verwenden Text-to-Speech-Systeme für Sprachanweisungen. Viele Android-Geräte nutzen Google-TTS, das können Sie bei Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) herunterladen oder aktualisieren."; + +"prefs_languages_information_off" = "Für einige Sprachen müssen Sie einen anderen Sprachsynthesizer oder ein zusätzliches Sprachpaket aus dem App Store installieren (Google Play Market, Samsung Apps). \nÖffnen Sie die Einstellungen Ihres Gerätes → Sprache und Eingabe → Sprache → Text-to-Speech-Ausgabe. Hier können Sie die Einstellungen für Sprachsynthese verwalten (beispielsweise ein Sprachpaket für die Offline-Verwendung herunterladen) und ein anderes Versprachlichungsprogramm auswählen."; + +"prefs_languages_information_off_link" = "Weitere Informationen finden Sie in dieser Anleitung."; + "transliteration_title" = "Transliteration ins Lateinische"; +"learn_more" = "Weitere Informationen"; + "core_exit" = "Beenden"; "routing_add_start_point" = "Fügen Sie einen Startpunkt hinzu, um eine Route zu planen"; "routing_add_finish_point" = "Fügen Sie ein Ziel hinzu, um eine Route zu planen"; +"button_exit" = "Beenden"; + "planning_route_manage_route" = "Route verwalten"; "button_plan" = "Planen"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Hoppla, es ist ein Fehler aufgetreten. Versuchen Sie erneut, sich anzumelden."; +"dialog_error_storage_title" = "Problem mit dem Zugreifen auf den Speicher"; + +"dialog_error_storage_message" = "Der externe Speicher ist nicht verfügbar, möglicherweise wurde die SD-Karte entfernt oder sie ist beschädigt oder das Dateisystem ist schreibgeschützt. Überprüfen Sie das bitte und kontaktieren Sie uns unter support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Fehlerhaften Speicher emulieren"; + "core_entrance" = "Eingang"; "error_enter_correct_name" = "Bitte geben Sie einen korrekten Namen ein"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Erstelle eine neue Liste"; +/* Bookmark categories screen */ +"bookmarks_import" = "Lesezeichen importieren"; + "downloader_hide_screen" = "Bildschirm verbergen"; "downloader_percent" = "%s (%s von %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Es kann keine leere Liste freigegeben werden"; +"bookmarks_error_title_empty_list_name" = "Der Name darf nicht leer sein"; + "bookmarks_error_message_empty_list_name" = "Bitte geben Sie den Listennamen ein"; +"bookmarks_new_list_hint" = "Neue Liste"; + "bookmarks_error_title_list_name_already_taken" = "Dieser Name ist bereits vergeben"; +"bookmarks_error_message_list_name_already_taken" = "Bitte wähle einen anderen Namen"; + "bookmarks_error_title_list_name_too_long" = "Dieser Name ist zu lang"; +"please_wait" = "Warten Sie mal…"; + +"phone_number" = "Telefonnummer"; + "profile" = "OpenStreetMap-Profil"; "bookmarks_detect_title" = "Neue Dateien erkannt"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Diese Version wiederherstellen?"; +"common_check_internet_connection_dialog_title" = "Keine Internetverbindung"; + "error_system_message" = "Ein unbekannter Fehler ist aufgetreten"; "restore" = "Wiederherstellen"; +"subtittle_opt_out" = "Einstellungen der Begleitung"; + +"crash_reports" = "Berichte über die Fehler"; + +"crash_reports_description" = "Wir können Ihre Daten benutzen, um Organic Maps zu entwickeln und zu verbessern. Die Änderungen werden nach dem Neustart der App in Kraft treten."; + "privacy_policy" = "Datenschutzerklärung"; "terms_of_use" = "Nutzungsbedingungen"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Die U-Bahnkarte steht nicht zur Verfügung"; +"bookmarks_empty_list_title" = "Die Liste ist leer"; + +"bookmarks_empty_list_message" = "Um eine neue Markierung hinzuzufügen, drücken Sie auf das Sternzeichen in der Karte des Objekts"; + +"category_desc_more" = "…mehr"; + "title_error_downloading_bookmarks" = "Es ist ein Fehler aufgetreten"; "popular_place" = "Beliebt"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Auf der Karte ausblenden"; +"public_access" = "Öffentlicher Zugriff"; + +"limited_access" = "Privater Zugriff"; + "bookmark_list_description_hint" = "Fügen Sie die Beschreibung hinzu (Text oder html)"; +"not_shared" = "Persönlich"; + "tags_loading_error_subtitle" = "Während dem Laden der Tags ist ein Fehler aufgetreten, bitte, versuchen Sie es erneut"; "download_button" = "Downloaden"; @@ -972,6 +1221,9 @@ "place_description_title" = "Ortsbeschreibung"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Karten werden geladen"; + "speedcams_notice_message" = "Auto - Über Geschwindigkeitskameras bei Risiko einer Geschwindigkeitsüberschreitung informieren\nImmer - Immer über Geschwindigkeitskameras informieren\nNiemals - Nie über Geschwindigkeitskameras informieren"; "power_managment_title" = "Stromsparmodus"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maximale Stromsparung"; +"enable_logging_warning_message" = "Diese Option wird aktiviert, um Aktivitäten zwecks Diagnostik zu loggen. Das hilft unserem Team Probleme mit der App zu erkennen. Aktivieren Sie diese Option nur auf Ersuchen des Organic Maps-Supports."; + +"access_rules_author_only" = "Online bearbeiten"; + "driving_options_title" = "Routenbeschränkungen"; "driving_options_subheader" = "In jeder Reiseroute vermeiden"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Sortieren…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Lesezeichen sortieren"; + /* iOS */ "sort_default" = "Default Sortierung"; @@ -1086,6 +1345,18 @@ "sort_date" = "Sortieren nach Datum"; +/* Android */ +"by_default" = "Default"; + +/* Android */ +"by_type" = "Nach Kategorie"; + +/* Android */ +"by_distance" = "Nach Entfernung"; + +/* Android */ +"by_date" = "Nach Datum"; + "week_ago_sorttype" = "Vor einer Woche"; "month_ago_sorttype" = "Vor einem Monat"; @@ -1132,6 +1403,8 @@ "religious_places" = "Heilige Orte"; +"select_list" = "Wählen Sie die Liste"; + "transit_not_found" = "Die U-Bahn-Navigation ist in dieser Region noch nicht verfügbar"; "dialog_pedestrian_route_is_long_header" = "Keine U-Bahn-Route gefunden"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Schwierigkeitsgrad"; +"elevation_profile_distance" = "Entf.:"; + "elevation_profile_time" = "Dauer:"; "isolines_toast_zooms_1_10" = "Karte vergrößern, um Isolinien zu sehen"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Download"; +"key_information_title" = "Wichtige Informationen"; + +"download_map_title" = "Download der Weltkarte"; + +"connection_failure" = "Verbindungsfehler"; + +"disconnect_usb_cable_title" = "USB-Kabel trennen"; + +"enable_screen_sleep" = "Bildschirm schlafen lassen"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Wenn diese Option aktiviert ist, kann der Bildschirm nach einer gewissen Zeit der Inaktivität in den Ruhezustand versetzt werden."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Aktualisieren Sie Ihre heruntergeladenen Karten"; @@ -1735,9 +2023,6 @@ "type.healthcare.laboratory" = "Medizinisches Labor"; - -/********** Types: Roads **********/ - "type.highway" = "Straße"; "type.highway.bridleway" = "Reitweg"; @@ -1844,11 +2129,11 @@ "type.highway.primary.tunnel" = "Hauptstraßentunnel"; -"type.highway.primary_link" = "Hauptstraße"; +"type.highway.primary_link" = "Straße"; -"type.highway.primary_link.bridge" = "Hauptstraße"; +"type.highway.primary_link.bridge" = "Straße"; -"type.highway.primary_link.tunnel" = "Hauptstraße"; +"type.highway.primary_link.tunnel" = "Straße"; "type.highway.raceway" = "Rennbahn"; @@ -1944,9 +2229,9 @@ "type.highway.trunk.tunnel" = "Schnellstraßentunnel"; -"type.highway.trunk_link" = "Schnellstraße"; +"type.highway.trunk_link" = "Straße"; -"type.highway.trunk_link.bridge" = "Schnellstraße"; +"type.highway.trunk_link.bridge" = "Straße"; "type.highway.trunk_link.tunnel" = "Straßentunnel"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Straßentunnel"; -"type.area_highway.cycleway" = "Radweg"; - -"type.area_highway.footway" = "Weg"; - -"type.area_highway.living_street" = "Wohnstraße"; - -"type.area_highway.motorway" = "Autobahn"; - -"type.area_highway.path" = "Weg"; - -"type.area_highway.pedestrian" = "Fußgängerzone"; - -"type.area_highway.primary" = "Hauptstraße"; - -"type.area_highway.residential" = "Wohnstraße"; - -"type.area_highway.secondary" = "Straße"; - -"type.area_highway.service" = "Straße"; - -"type.area_highway.tertiary" = "Straße"; - -"type.area_highway.steps" = "Stufen"; - -"type.area_highway.track" = "Straße"; - -"type.area_highway.trunk" = "Schnellstraße"; - -"type.area_highway.unclassified" = "Straße"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historisches Objekt"; "type.historic.archaeological_site" = "Ausgrabungsstätte"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Aquapark"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "künstliche Anlage"; "type.man_made.breakwater" = "Wellenbrecher"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Hauptstadt"; -"type.place.city.capital.10" = "Großstadt"; +"type.place.city.capital.10" = "Hauptstadt"; -"type.place.city.capital.11" = "Großstadt"; +"type.place.city.capital.11" = "Hauptstadt"; "type.place.city.capital.2" = "Hauptstadt"; -"type.place.city.capital.3" = "Großstadt"; +"type.place.city.capital.3" = "Hauptstadt"; -"type.place.city.capital.4" = "Großstadt"; +"type.place.city.capital.4" = "Hauptstadt"; -"type.place.city.capital.5" = "Großstadt"; +"type.place.city.capital.5" = "Kreisstadt"; -"type.place.city.capital.6" = "Großstadt"; +"type.place.city.capital.6" = "Hauptstadt"; -"type.place.city.capital.7" = "Großstadt"; +"type.place.city.capital.7" = "Hauptstadt"; -"type.place.city.capital.8" = "Großstadt"; +"type.place.city.capital.8" = "Hauptstadt"; -"type.place.city.capital.9" = "Großstadt"; +"type.place.city.capital.9" = "Hauptstadt"; "type.place.continent" = "Kontinent"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "Rodelbahn"; "type.building_part" = "Gebäude"; + +"type.area_highway.cycleway" = "Radweg"; + +"type.area_highway.footway" = "Weg"; + +"type.area_highway.living_street" = "Wohnstraße"; + +"type.area_highway.motorway" = "Autobahn"; + +"type.area_highway.path" = "Weg"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/de.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/de.lproj/Localizable.stringsdict index caca9e4f7e..ffd5453b34 100644 --- a/iphone/Maps/LocalizedStrings/de.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/de.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -56,6 +56,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d Plätze + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/el.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/el.lproj/Localizable.strings index 8ccfcf0130..b91946bd8f 100644 --- a/iphone/Maps/LocalizedStrings/el.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/el.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Πίσω"; + /* Button text (should be short) */ "cancel" = "Άκυρο"; @@ -17,6 +20,9 @@ "download_maps" = "Λήψη χαρτών"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Η λήψη απέτυχε. Αγγίξτε για να προσπαθήσετε ξανά."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Λήψη…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Χάρτες"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Μίλια"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Αναζήτηση"; +/* Search box placeholder text */ +"search_map" = "Αναζήτηση χάρτη"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Ναι"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Οι υπηρεσίες εντοπισμού τοποθεσίας είναι προς το παρόν απενεργοποιημένες σε αυτή τη συσκευή ή για αυτή την εφαρμογή. Ενεργοποιήστε τις από τις Ρυθμίσεις."; + /* View and button titles for accessibility */ "zoom_to_country" = "Εμφάνιση στο χάρτη"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Η λήψη απέτυχε"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Δοκιμάστε ξανά"; + "about_menu_title" = "Σχετικά με το Organic Maps"; +"connection_settings" = "Ρυθμίσεις σύνδεσης"; + "close" = "Κλείσιμο"; +"unsupported_phone" = "Η εφαρμογή απαιτεί OpenGL με επιτάχυνση υλικού. Δυστυχώς, η συσκευή σας δεν το υποστηρίζει."; + "download" = "Λήψη"; +"disconnect_usb_cable" = "Αποσυνδέστε το καλώδιο USB ή τοποθετήστε την κάρτα μνήμης για να χρησιμοποιήσετε το Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Ελευθερώσετε χώρο αποθήκευσης στην SD κάρτα/USB πρώτα προκειμένου να χρησιμοποιήσετε την εφαρμογή"; + +"not_enough_memory" = "Δεν υπάρχει αρκετή μνήμη για την έναρξη εφαρμογής"; + +"download_resources" = "Πριν ξεκινήσετε τη χρήση της εφαρμογής, επιτρέψτε μας να κατεβάσουμε το γενικό παγκόσμιο χάρτη στη συσκευή σας. \nIt θα χρησιμοποιήσει %@ αποθηκευτικού χώρου."; + +"download_resources_continue" = "Μετάβαση στο χάρτη"; + +"downloading_country_can_proceed" = "Λήψη %@. Μπορείτε τώρα να\nμεταβείτε στο χάρτη."; + +"download_country_ask" = "Να γίνει λήψη %@;"; + +"update_country_ask" = "Να γίνει ενημέρωση %@;"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Παύση"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Συνέχεια"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "η λήψη %@ απέτυχε"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Προσθέστε νέο σύνολο"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Οι τοποθεσίες μου"; +/* Add bookmark dialog - bookmark name */ +"name" = "Όνομα"; + /* Editor title above street and house number */ "address" = "Διεύθυνση"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Σύνολο"; + /* Settings button in system menu */ "settings" = "Ρυθμίσεις"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Αποθήκευση χαρτών στο"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Επιλέξτε από που θα γίνει λήψη χαρτών"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Να γίνει μετακίνηση χαρτών;"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Αυτό μπορεί να διαρκέσει αρκετά λεπτά. \nΠαρακαλώ περιμένετε…"; + /* Measurement units title in settings activity */ "measurement_units" = "Μονάδες μέτρησης"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Επιλέξετε ανάμεσα σε μίλια και χιλιόμετρα"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Πού να φάμε"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Παντοπωλεία"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Συγκοινωνία"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Βενζίνη"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Χώρος στάθμευσης"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Ψώνια"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Ξενοδοχείο"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Αξιοθέατα"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Ψυχαγωγία"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "ATM"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Νυχτερινή Ζωή"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Οικογενειακές Διακοπές"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Τράπεζα"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Φαρμακείο"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Νοσοκομείο"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Τουαλέτα"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Ταχυδρομείο"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Αστυνομία"; +/* Notes field in Bookmarks view */ +"description" = "Σημειώσεις"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Κοινοποιήθηκαν αγαπημένα Organic Maps με σας"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Η τοποθεσία σας δεν έχει καθοριστεί ακόμη"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Λυπούμαστε, η αποθήκευση του χάρτη είναι προς το παρόν απενεργοποιημένη."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Λήψη χάρτη σε εξέλιξη."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Έλεγξε την τρέχουσα τοποθεσία μου στο Organic Maps! %1$@ ή %2$@ στην περίπτωση που δεν έχεις εγκαταστήσει χάρτες εκτός σύνδεσης, μπορείς να τους κατεβάσεις εδώ: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Έλεγξε τις τοποθεσίες που έχω καρφιτσώσει στο Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Έλεγξε την τρέχουσα τοποθεσία μου στο χάρτη Organic Maps!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Γεια,\n\nείμαι εδώ τώρα: %1$@. Κάνε κλικ σε αυτό το σύνδεσμο %2$@ ή σε αυτόν %3$@ για να δεις την τοποθεσία στο χάρτη.\n\nΕυχαριστώ."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Κοινοποίηση"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Αντιγράφηκε στο Πρόχειρο: %1$@"; + /* place preview title */ "info" = "Πληροφορίες"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Ημερομηνία έκδοσης: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Θέλετε σίγουρα να συνεχίσετε?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Διαδρομές"; @@ -195,10 +283,18 @@ "share_my_location" = "Κοινοποίηση της τοποθεσίας μου"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Πλοήγηση"; "pref_zoom_title" = "Πλήκτρα μεγέθυνσης"; +"pref_zoom_summary" = "Εμφάνιση στο χάρτη"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Νυχτερινή λειτουργία"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Γλώσσα φωνής"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Δεν είναι διαθέσιμη"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Άλλα"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Βοήθεια"; +/* Button in the main Help dialog */ +"faq" = "Ερωτήσεις και απαντήσεις"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Πώς να μας υποστηρίξετε;"; + /* Button in the main Help dialog */ "copyright" = "Πνευματικά δικαιώματα"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Ενημέρωση όλων"; +/* Cancel all button text */ +"downloader_cancel_all" = "Ακύρωση όλων"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Έγινε λήψη"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Διαγραφή χάρτη"; +/* Item in context menu. */ +"downloader_update_map" = "Ενημέρωση χάρτη"; + +/* Preference text */ +"pref_use_google_play" = "Χρησιμοποιήστε υπηρεσίες Google Play για να προσδιορίσετε την τρέχουσα τοποθεσία σας"; + /* Text for rating dialog */ "rating_just_rated" = "Μόλις βαθμολόγησα την εφαρμογή σας"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Για να δημιουργήσετε μια διαδρομή, πρέπει να κατεβάσετε και να ενημερώσετε όλους τους χάρτες από τη θέση σας στον προορισμό σας."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Δεν υπάρχει αρκετός χώρος"; + /* bookmark button text */ "bookmark" = "αγαπημένο"; +/* location service disabled */ +"enable_location_services" = "Ενεργοποιήστε τις υπηρεσίες εντοπισμού τοποθεσίας"; + "save" = "Αποθήκευση"; +"edit_description_hint" = "Οι περιγραφές σας (κείμενο ή html)"; + "create" = "δημιουργήστε"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Δε μπορεί να εντοπιστεί η διαδρομή"; +"dialog_routing_cant_build_route" = "Δε μπορεί να δημιουργηθεί η διαδρομή."; + "dialog_routing_change_start_or_end" = "Ρυθμίστε το σημείο εκκίνησης ή τον προορισμό σας."; "dialog_routing_change_start" = "Ρυθμίστε το σημείο εκκίνησης"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Για να ξεκινήσετε την αναζήτηση και τη δημιουργία διαδρομών, κατεβάστε το χάρτη. Μετά από αυτό δεν θα χρειάζεστε πλέον σύνδεση στο Internet."; + +"search_select_map" = "Επιλέξτε χάρτη"; + /* «Show» context menu */ "show" = "Εμφάνιση"; @@ -521,6 +655,9 @@ "clear_search" = "Εκκαθάριση ιστορικού αναζήτησης"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Η τοποθεσία σας"; "p2p_start" = "Έναρξη"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Θέλετε να σχεδιάσουμε μια διαδρομή από την τρέχουσα θέση σας;"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Επόμενη"; + "editor_time_add" = "Προσθέσετε χρονοδιάγραμμα"; "editor_time_delete" = "Διαγραφή χρονοδιαγράμματος"; @@ -556,14 +696,28 @@ "editor_example_values" = "Παράδειγμα τιμών"; +"editor_correct_mistake" = "Διόρθωση λάθους"; + "editor_add_select_location" = "Τοποθεσία"; "editor_done_dialog_1" = "Έχετε αλλάξει τον παγκόμιο χάρτη. Μην το κρατάτε για τον εαυτό σας! Πείτε το στους φίλους σας και κάντε τις αλλαγές μαζί."; "share_with_friends" = "Μοιραστείτε με φίλους"; +"editor_report_problem_desription_1" = "Περιγράψτε το πρόβλημα αναλυτικά ώστε η Κοινότητα OpenStreeMap να διορθώσει το σφάλμα."; + +"editor_report_problem_desription_2" = "Ή κάντε το μόνοι σας στη διεύθυνση https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Αποστολή"; +"editor_report_problem_title" = "Πρόβλημα"; + +"editor_report_problem_no_place_title" = "Η τοποθεσία δεν υπάρχει"; + +"editor_report_problem_under_construction_title" = "Εκτός λειτουργίας για συντήρηση"; + +"editor_report_problem_duplicate_place_title" = "Διπλότυπη τοποθεσία"; + "autodownload" = "Αυτόματη λήψη"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Προσθέστε ώρες λειτουργίας"; +"edit_opening_hours" = "Επεξεργαστείτε τις ώρες λειτουργίας"; + "no_osm_account" = "Δεν έχετε λογαριασμό OpenStreetMap;"; "register_at_openstreetmap" = "Εγγραφείτε στο OSM"; @@ -592,6 +748,8 @@ "login" = "Σύνδεση"; +"password" = "Κωδικός πρόσβασης"; + "forgot_password" = "Ξαχάσατε τον κωδικό πρόσβασης;"; "osm_account" = "Λογαριασμός OSM "; @@ -609,6 +767,8 @@ "add_language" = "Προσθήκη γλώσσας"; +"street" = "Οδός"; + /* Editable House Number text field (in address block). */ "house_number" = "Αριθμός κτιρίου"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Προσθέστε ένα δρόμο"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Εισαγάγετε ένα όνομα οδού"; + "choose_language" = "Επιλέξτε μια γλώσσα"; "choose_street" = "Επιλέξτε μια οδό"; @@ -632,12 +795,16 @@ "phone" = "Τηλέφωνο"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Λάβετε υπόψη"; "downloader_delete_map_dialog" = "Όλες οι αλλαγές που έχετε κάνει στο χάρτη θα διαγραφούν μαζί με το χάρτη."; "downloader_update_maps" = "Ενημέρωση χαρτών"; +"downloader_mwm_migration_dialog" = "Για να δημιουργήσετε μια διαδρομή, πρέπει να ενημερώσετε όλους τους χάρτες και στη συνέχεια να σχεδιάσετε τη διαδρομή ξανά."; + "downloader_search_field_hint" = "Ανεύρεση χάρτη"; "migration_download_error_dialog" = "Σφάλμα λήψης"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Διαγράψτε τυχόν μη απαραίτητα δεδομένα"; +"editor_login_error_dialog" = "Σφάλμα σύνδεσης."; + "editor_profile_changes" = "Επαληθευμένες αλλαγές"; "editor_focus_map_on_location" = "Σύρετε τον χάρτη για να επιλέξετε τη σωστή θέση του αντικειμένου."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Κατηγορία"; +"detailed_problem_description" = "Λεπτομερή περιγραφή του θέματος"; + +"editor_report_problem_other_title" = "Διαφορετικό πρόβλημα"; + +"placepage_add_business_button" = "Προσθήκη επιχείρησης"; + "whatsnew_editor_message_1" = "Προσθέστε νέες τοποθεσίες στο χάρτη, και επεξεργαστείτε τις υπάρχουσες απευθείας από την εφαρμογή."; "dialog_incorrect_feature_position" = "Αλλαγή τοποθεσίας"; @@ -710,6 +885,8 @@ "editor_operator" = "Ιδιοκτήτης"; +"downloader_my_maps_title" = "Οι χάρτες μου"; + "downloader_no_downloaded_maps_title" = "Δεν έχετε κατεβάσει χάρτες"; "downloader_no_downloaded_maps_message" = "Κατεβάστε χάρτες για να αναζητήσετε μια τοποθεσία και να χρησιμοποιήσετε την πλοήγησης χωρίς σύνδεση."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Description"; "placepage_more_button" = "Περισσότερα"; +"placepage_more_reviews_button" = "Περισσότερα σχόλια"; + "book_button" = "Book"; "placepage_call_button" = "Κλήση"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Η τοποθεσία δεν υπάρχει"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…περισσότερα"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Εισάγετε ένα έγκυρο email"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Ενημέρωση"; "placepage_add_place_button" = "Να προστεθεί η τοποθεσία στο χάρτη"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Διαφωνώ"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Λίστα"; "mobile_data_dialog" = "Θέλετε να χρησιμοποιήσετε το δίκτυο κινητής τηλεφωνίας για να εμφανίσετε αναλυτικές πληροφορίες;"; @@ -848,12 +1044,16 @@ "big_font" = "Αύξηση μεγέθους γραμματοσειράς στο χάρτη"; +"traffic_update_app" = "Κάντε ενημέρωση του Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Για να εμφανιστούν πληροφορίες για την κίνηση, πρέπει να γίνει ενημέρωση της εφαρμογής."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Οι πληροφορίες για την κίνηση δεν είναι διαθέσιμες"; +"enable_logging" = "Ενεργοποίηση δυνατότητας καταγραφής"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Γενικό σχόλιο"; @@ -861,14 +1061,24 @@ "off" = "Απενεργ."; +"prefs_languages_information" = "Χρησιμοποιούμε σύστημα TTS για τις φωνητικές οδηγίες. Αρκετές συσκευές Android χρησιμοποιούν Google TTS, μπορείτε να το κατεβάσετε ή να το ενημερώσετε από το Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Για μερικές γλώσσες θα χρειαστεί να εγκαταστήσετε συνθεσάιζερ ομιλίας ή συμπληρωματικό πακέτο γλώσσας από το app store (Google Play Market, Samsung Apps).\nΑνοίξτε τις Ρυθμίσεις της συσκευής σας → Γλώσσα και εισαγωγή → Ομιλία → Μετατροπή κειμένου σε ομιλία.\nΕδώ μπορείτε να διαχειριστείτε τις ρυθμίσεις της σύνθεσης ομιλίας (για παράδειγμα, μπορείτε να κατεβάσετε πακέτο γλώσσας για χρήση εκτός σύνδεσης) και να επιλέξετε άλλη μηχανή μετατροπής κειμένου σε ομιλία."; + +"prefs_languages_information_off_link" = "Για περισσότερες πληροφορίες δείτε αυτό τον οδηγό."; + "transliteration_title" = "Μεταγραφή στα Λατινικά"; +"learn_more" = "Μάθετε περισσότερα"; + "core_exit" = "Έξοδος"; "routing_add_start_point" = "Προσθέστε αφετηρία για να σχεδιάσετε μια διαδρομή"; "routing_add_finish_point" = "Προσθέστε τελικό προορισμό, για να σχεδιάσετε μια διαδρομή"; +"button_exit" = "Έξοδος"; + "planning_route_manage_route" = "Διαχείριση διαδρομής"; "button_plan" = "Σχέδιο"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Ωχ, παρουσιάστηκε σφάλμα. Προσπαθήστε να συνδεθείτε ξανά."; +"dialog_error_storage_title" = "Πρόβλημα πρόσβασης στον αποθηκευτικό χώρο"; + +"dialog_error_storage_message" = "Ο εξωτερικός απθηκευτικός χώρος δεν είναι διαθέσιμος, πιθανότατα έχει αφαιρεθεί η κάρτα SD, είναι κατεστραμμένη ή το σύστημα αρχείων είναι μόνο για ανάγνωση. Ελέγξτε το και επικοινωνήστε μαζί μας στη διεύθυνση support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Εξομείωση κακού αποθηκευτικού χώρου"; + "core_entrance" = "Είσοδος"; "error_enter_correct_name" = "Εισάγετε ένα σωστό όνομα"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Δημιουργία νέας λίστας"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Απόκρυψη οθόνης"; "downloader_percent" = "%s (%s από %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Αδύνατη η κοινή χρήση κενής λίστας"; +"bookmarks_error_title_empty_list_name" = "Το όνομα δεν θα μπορούσε να είναι άδειο"; + "bookmarks_error_message_empty_list_name" = "Εισαγάγετε το όνομα της λίστας"; +"bookmarks_new_list_hint" = "Νέα λίστα"; + "bookmarks_error_title_list_name_already_taken" = "Αυτό το όνομα έχει ήδη ληφθεί"; +"bookmarks_error_message_list_name_already_taken" = "Επιλέξτε άλλο όνομα"; + "bookmarks_error_title_list_name_too_long" = "Αυτό το όνομα είναι πολύ μεγάλο"; +"please_wait" = "Παρακαλώ περιμένετε…"; + +"phone_number" = "Τηλεφωνικό νούμερο"; + "profile" = "Προφίλ OpenStreetMap"; "bookmarks_detect_title" = "Εντοπίστηκαν νέα αρχεία"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Επαναφορά αυτής της έκδοσης;"; +"common_check_internet_connection_dialog_title" = "Δεν υπάρχει σύνδεση στο διαδίκτυο"; + "error_system_message" = "Συνέβη ένα άγνωστο σφάλμα"; "restore" = "Επαναφορά"; +"subtittle_opt_out" = "Ρυθμίσεις διαδρομών"; + +"crash_reports" = "Αναφορά σφάλματος"; + +"crash_reports_description" = "Μπορεί να χρησιμοποιήσουμε τα δεδομένα σας για να βελτιώσουμε την εμπειρία του Organic Maps. Οι αλλαγές θα ενεργοποιηθούν μετά την επανεκκίνηση της εφαρμογής."; + "privacy_policy" = "Πολιτική απορρήτου"; "terms_of_use" = "Όροι χρήσης"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Ο χάρτης μετρό δεν είναι διαθέσιμος"; +"bookmarks_empty_list_title" = "Η λίστα είναι άδεια"; + +"bookmarks_empty_list_message" = "Για να προσθέσετε σελιδοδείκτη, πατήστε ένα μέρος στο χάρτη και μετά πατήστε το αστεράκι"; + +"category_desc_more" = "…περισσότερα"; + "title_error_downloading_bookmarks" = "Συνέβη σφάλμα"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Κρύψε από τον χάρτη"; +"public_access" = "Δημόσια πρόσβαση"; + +"limited_access" = "Περιορισμένη πρόσβαση"; + "bookmark_list_description_hint" = "Πληκτρολογήστε μια περιγραφή (κείμενο ή html)"; +"not_shared" = "Προσωπικός"; + "tags_loading_error_subtitle" = "Ένα σφάλμα συνέβη στο φόρτωμα των ετικετών, παρακαλώ ξαναπροσπαθήστε"; "download_button" = "Κατέβασμα"; @@ -972,6 +1221,9 @@ "place_description_title" = "Περιγραφή μέρους"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Κατέβασμα χαρτών"; + "speedcams_notice_message" = "Αυτόματο- Να ειδοποιούμαι για κάμερες αν υπάρχει κίνδυνος να υπερβώ το όριο ταχύτητας\nΠάντα- Πάντα να ειδοποιούμαι για κάμερες\nΠοτέ- Ποτέ να μην ειδοποιούμαι για κάμερες"; "power_managment_title" = "Λειτουργία εξοικονόμησης ενέργειας"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Μέγιστη εξοικονόμηση ενέργειας"; +"enable_logging_warning_message" = "Αυτή η λειτουργία είναι ενεργοποιημένη για την καταγραφή ενεργειών για διαγνωστικούς σκοπούς. Αυτό βοηθά την ομάδα να εντοπίζει προβλήματα με την εφαρμογή. Να ενεργοποιείτε τη λειτουργία μόνο κατόπιν αιτήματος της υποστήριξης του Organic Maps."; + +"access_rules_author_only" = "Επεξεργάζεται online"; + "driving_options_title" = "Ρυθμίσεις παράκαμψης"; "driving_options_subheader" = "Αποφυγή σε κάθε διαδρομή"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Ταξινόμηση"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Ταξινόμηση σελιδοδ/τών"; + /* iOS */ "sort_default" = "Ταξινόμηση κατά προεπιλογή"; @@ -1086,6 +1345,18 @@ "sort_date" = "Ταξινόμηση κατά ημερομηνία"; +/* Android */ +"by_default" = "Προεπιλογή"; + +/* Android */ +"by_type" = "Ανά τύπο"; + +/* Android */ +"by_distance" = "Κατά απόσταση"; + +/* Android */ +"by_date" = "Κατά ημερομηνία"; + "week_ago_sorttype" = "Μια βδομάδα πριν"; "month_ago_sorttype" = "Ένας μήνας πριν"; @@ -1132,6 +1403,8 @@ "religious_places" = "Άγιοι τόποι"; +"select_list" = "Επιλογή λίστας"; + "transit_not_found" = "Η πλοήγηση στο μετρό γι' αυτή την περιοχή δεν είναι ακόμα διαθέσιμη"; "dialog_pedestrian_route_is_long_header" = "Η διαδρομή του μετρό δεν βρέθηκε"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Δυσκολία"; +"elevation_profile_distance" = "Απόστ.:"; + "elevation_profile_time" = "Διαρκ:"; "isolines_toast_zooms_1_10" = "Μεγεθύνετε για να δείτε περιγράμματα"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Φόρτωση"; +"key_information_title" = "Βασικές πληροφορίες"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Αφήστε την οθόνη να κοιμηθεί"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Όταν είναι ενεργοποιημένη, η οθόνη θα αφεθεί να κοιμηθεί μετά από περίοδο αδράνειας."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Θα πρέπει να ενημερώστε τους χάρτες που έχετε κατεβάσει"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Ιατρικό Εργαστήριο"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Στάση λεωφορείου"; "type.highway.construction" = "Οδός υπό κατασκευή"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Οδός"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Κάμερα ταχύτητας"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Οδός"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Διαδρομή"; - -"type.area_highway.living_street" = "Οδός"; - -"type.area_highway.motorway" = "Οδός"; - -"type.area_highway.path" = "Διαδρομή"; - -"type.area_highway.pedestrian" = "Οδός"; - -"type.area_highway.primary" = "Οδός"; - -"type.area_highway.residential" = "Οδός"; - -"type.area_highway.secondary" = "Οδός"; - -"type.area_highway.service" = "Οδός"; - -"type.area_highway.tertiary" = "Οδός"; - -"type.area_highway.steps" = "Διαδρομή"; - -"type.area_highway.track" = "Οδός"; - -"type.area_highway.trunk" = "Οδός"; - -"type.area_highway.unclassified" = "Οδός"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Αρχαιολογικός χώρος"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Υδάτινο πάρκο"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Πρωτεύουσα"; -"type.place.city.capital.10" = "Πόλη"; +"type.place.city.capital.10" = "Πρωτεύουσα"; -"type.place.city.capital.11" = "Πόλη"; +"type.place.city.capital.11" = "Πρωτεύουσα"; "type.place.city.capital.2" = "Πρωτεύουσα"; -"type.place.city.capital.3" = "Πόλη"; +"type.place.city.capital.3" = "Πρωτεύουσα"; -"type.place.city.capital.4" = "Πόλη"; +"type.place.city.capital.4" = "Πρωτεύουσα"; -"type.place.city.capital.5" = "Πόλη"; +"type.place.city.capital.5" = "Πρωτεύουσα"; -"type.place.city.capital.6" = "Πόλη"; +"type.place.city.capital.6" = "Πρωτεύουσα"; -"type.place.city.capital.7" = "Πόλη"; +"type.place.city.capital.7" = "Πρωτεύουσα"; -"type.place.city.capital.8" = "Πόλη"; +"type.place.city.capital.8" = "Πρωτεύουσα"; -"type.place.city.capital.9" = "Πόλη"; +"type.place.city.capital.9" = "Πρωτεύουσα"; "type.place.continent" = "Ήπειρος"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Κτίριο"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/el.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/el.lproj/Localizable.stringsdict index a8cbeed0a4..947a180673 100644 --- a/iphone/Maps/LocalizedStrings/el.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/el.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -56,6 +56,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d μέρη + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.strings index 1509d91055..424b0d43e8 100644 --- a/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Back"; + /* Button text (should be short) */ "cancel" = "Cancel"; @@ -17,6 +20,9 @@ "download_maps" = "Download Maps"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Download has failed. Touch to try again."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Downloading…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Maps"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Miles"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Search"; +/* Search box placeholder text */ +"search_map" = "Search Map"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Yes"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "You currently have all Location Services for this device or application disabled. Please enable them in Settings."; + /* View and button titles for accessibility */ "zoom_to_country" = "Show on the map"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Download has failed"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Try Again"; + "about_menu_title" = "About Organic Maps"; +"connection_settings" = "Connection Settings"; + "close" = "Close"; +"unsupported_phone" = "The app requires hardware accelerated OpenGL. Unfortunately, your device is not supported."; + "download" = "Download"; +"disconnect_usb_cable" = "Please disconnect USB cable or insert memory card to use Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Please free up some space on the SD card/USB storage first in order to use the app"; + +"not_enough_memory" = "Not enough memory to launch app"; + +"download_resources" = "Before you start using the app, allow us to download the general world map to your device.\nIt will use %@ of storage."; + +"download_resources_continue" = "Go to Map"; + +"downloading_country_can_proceed" = "Downloading %@. You can now\nproceed to the map."; + +"download_country_ask" = "Download %@?"; + +"update_country_ask" = "Update %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pause"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Continue"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ download has failed"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Add New List"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "My Places"; +/* Add bookmark dialog - bookmark name */ +"name" = "Name"; + /* Editor title above street and house number */ "address" = "Address"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "List"; + /* Settings button in system menu */ "settings" = "Settings"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Save maps to"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Select the place where maps should be downloaded to"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Move maps?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "This can take several minutes.\nPlease wait…"; + /* Measurement units title in settings activity */ "measurement_units" = "Measurement units"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Choose between miles and kilometres"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Where to eat"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Groceries"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transport"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Petrol"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parking"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Shopping"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Sights"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Entertainment"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "ATM"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Nightlife"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Family holiday"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Pharmacy"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Hospital"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toilet"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Post"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Police"; +/* Notes field in Bookmarks view */ +"description" = "Notes"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Organic Maps bookmarks were shared with you"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Your location hasn't been determined yet"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Sorry, Map Storage settings are currently disabled."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Map download is in progress now."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hey, check out my current location in Organic Maps! %1$@ or %2$@ Don't have offline maps? Download here: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hey, check out my pin in Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hey, check out my current location on the Organic Maps map!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hi,\n\nI'm here now: %1$@. Click this link %2$@ or this one %3$@ to see the place on the map.\n\nThanks."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Share"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Copied to clipboard: %1$@"; + /* place preview title */ "info" = "Info"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Are you sure you want to continue?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Tracks"; @@ -195,10 +283,18 @@ "share_my_location" = "Share My Location"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigation"; "pref_zoom_title" = "Zoom buttons"; +"pref_zoom_summary" = "Display on the map"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Night Mode"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Voice Language"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Not Available"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Other"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Help"; +/* Button in the main Help dialog */ +"faq" = "Frequently Asked Questions"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "How to support us?"; + /* Button in the main Help dialog */ "copyright" = "Copyright"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Update All"; +/* Cancel all button text */ +"downloader_cancel_all" = "Cancel All"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Downloaded"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Delete Map"; +/* Item in context menu. */ +"downloader_update_map" = "Update Map"; + +/* Preference text */ +"pref_use_google_play" = "Use Google Play Services to determine your current location"; + /* Text for rating dialog */ "rating_just_rated" = "I’ve just rated your app"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "In order to create a route, we need to download and update all the maps from your location to your destination."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Not enough space"; + /* bookmark button text */ "bookmark" = "bookmark"; +/* location service disabled */ +"enable_location_services" = "Please enable Location Services"; + "save" = "Save"; +"edit_description_hint" = "Your descriptions (text or html)"; + "create" = "create"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Unable to locate route"; +"dialog_routing_cant_build_route" = "Unable to create route."; + "dialog_routing_change_start_or_end" = "Please adjust your starting point or your destination."; "dialog_routing_change_start" = "Adjust starting point"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "To start searching and creating routes, please download the map. After that you will no longer need an Internet connection."; + +"search_select_map" = "Select Map"; + /* «Show» context menu */ "show" = "Show"; @@ -521,6 +655,9 @@ "clear_search" = "Clear Search History"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Your Location"; "p2p_start" = "Start"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Do you want us to plan a route from your current location?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Next"; + "editor_time_add" = "Add Schedule"; "editor_time_delete" = "Delete Schedule"; @@ -556,14 +696,28 @@ "editor_example_values" = "Example Values"; +"editor_correct_mistake" = "Correct mistake"; + "editor_add_select_location" = "Location"; "editor_done_dialog_1" = "You’ve changed the world map. Do not keep it to yourself! Tell your friends, and edit it together."; "share_with_friends" = "Share with friends"; +"editor_report_problem_desription_1" = "Please describe the problem in detail so that the OpenStreeMap community can fix the error."; + +"editor_report_problem_desription_2" = "Or do it yourself at https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Send"; +"editor_report_problem_title" = "Issue"; + +"editor_report_problem_no_place_title" = "The place does not exist"; + +"editor_report_problem_under_construction_title" = "Сlosed for maintenance"; + +"editor_report_problem_duplicate_place_title" = "Duplicated place"; + "autodownload" = "Auto-download"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Add opening hours"; +"edit_opening_hours" = "Edit business hours"; + "no_osm_account" = "Don't have an OpenStreetMap account?"; "register_at_openstreetmap" = "Register at OSM"; @@ -592,6 +748,8 @@ "login" = "Log In"; +"password" = "Password"; + "forgot_password" = "Forgot your password?"; "osm_account" = "OSM Account"; @@ -609,6 +767,8 @@ "add_language" = "Add a language"; +"street" = "Street"; + /* Editable House Number text field (in address block). */ "house_number" = "Building number"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Add a street"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Choose a language"; "choose_street" = "Choose a street"; @@ -632,12 +795,16 @@ "phone" = "Phone"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Please note"; "downloader_delete_map_dialog" = "All of your map edits will be deleted together with the map."; "downloader_update_maps" = "Update Maps"; +"downloader_mwm_migration_dialog" = "To create a route, you need to update all maps and then plan the route again."; + "downloader_search_field_hint" = "Find map"; "migration_download_error_dialog" = "Download error"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Please delete any unnecessary data"; +"editor_login_error_dialog" = "Login error."; + "editor_profile_changes" = "Verified Changes"; "editor_focus_map_on_location" = "Drag the map to select the correct location of the object."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Category"; +"detailed_problem_description" = "Detailed description of the issue"; + +"editor_report_problem_other_title" = "Different problem"; + +"placepage_add_business_button" = "Add business"; + "whatsnew_editor_message_1" = "Add new places to the map, and edit existing ones directly from the app."; "dialog_incorrect_feature_position" = "Change location"; @@ -710,6 +885,8 @@ "editor_operator" = "Owner"; +"downloader_my_maps_title" = "My maps"; + "downloader_no_downloaded_maps_title" = "You haven't downloaded any maps"; "downloader_no_downloaded_maps_message" = "Download maps to search for a location and use navigation offline."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Description"; "placepage_more_button" = "More"; +"placepage_more_reviews_button" = "More Reviews"; + "book_button" = "Book"; "placepage_call_button" = "Call"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Place does not exist"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…more"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Enter a valid email"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Update"; "placepage_add_place_button" = "Add a place to the map"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Decline"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "List"; "mobile_data_dialog" = "Use mobile internet to show detailed information?"; @@ -848,12 +1044,16 @@ "big_font" = "Increase font size on the map"; +"traffic_update_app" = "Please update Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "To display traffic data, the application must be updated."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Traffic data is not available"; +"enable_logging" = "Enable logging"; + /* Settings: "Send general feedback" button */ "feedback_general" = "General Feedback"; @@ -861,14 +1061,24 @@ "off" = "Off"; +"prefs_languages_information" = "We use system TTS for voice instructions. Many Android devices use Google TTS, you can download or update it from Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "For some languages, you will need to install a speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\nOpen your device's settings → Language and input → Speech → Text to speech output.\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine."; + +"prefs_languages_information_off_link" = "For more information please check this guide."; + "transliteration_title" = "Transliteration into Latin"; +"learn_more" = "Learn more"; + "core_exit" = "Exit"; "routing_add_start_point" = "Add a starting point to plan a route"; "routing_add_finish_point" = "Add a destination to plan a route"; +"button_exit" = "Exit"; + "planning_route_manage_route" = "Manage Route"; "button_plan" = "Plan"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Oops, there was an error. Try to sign in again."; +"dialog_error_storage_title" = "Storage access problem"; + +"dialog_error_storage_message" = "External storage is not accessible. The SD Card may have been removed, damaged, or the file system is read-only. Please, check your SD Card or contact us at support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emulate bad storage"; + "core_entrance" = "Entrance"; "error_enter_correct_name" = "Please, enter a correct name"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Create new list"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Hide Screen"; "downloader_percent" = "%s (%s of %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Cannot share an empty list"; +"bookmarks_error_title_empty_list_name" = "The name couldn't be empty"; + "bookmarks_error_message_empty_list_name" = "Please enter the list name"; +"bookmarks_new_list_hint" = "New list"; + "bookmarks_error_title_list_name_already_taken" = "This name is already taken"; +"bookmarks_error_message_list_name_already_taken" = "Please choose another name"; + "bookmarks_error_title_list_name_too_long" = "This name is too long"; +"please_wait" = "Please wait�"; + +"phone_number" = "Phone number"; + "profile" = "OpenStreetMap profile"; "bookmarks_detect_title" = "New files detected"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Restore this version?"; +"common_check_internet_connection_dialog_title" = "No internet connection"; + "error_system_message" = "An unknown error occurred"; "restore" = "Restore"; +"subtittle_opt_out" = "Tracking settings"; + +"crash_reports" = "Crash report"; + +"crash_reports_description" = "We may use your data to improve Organic Maps experience. Changes will take effect after you restart the app."; + "privacy_policy" = "Privacy policy"; "terms_of_use" = "Terms of use"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Subway map is unavailable"; +"bookmarks_empty_list_title" = "This list is empty"; + +"bookmarks_empty_list_message" = "To add a bookmark, tap a place on the map and then tap the star icon"; + +"category_desc_more" = "…more"; + "title_error_downloading_bookmarks" = "An error occurred"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Hide from map"; +"public_access" = "Public access"; + +"limited_access" = "Limited access"; + "bookmark_list_description_hint" = "Type a description (text or html)"; +"not_shared" = "Private"; + "tags_loading_error_subtitle" = "An error occurred while loading tags, please try again"; "download_button" = "Download"; @@ -972,6 +1221,9 @@ "place_description_title" = "Place Description"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Map downloader"; + "speedcams_notice_message" = "Auto - Warn about speedcams if there is a risk of exceeding the speed limit\nAlways - Always warn about speedcams\nNever - Never warn about speedcams"; "power_managment_title" = "Power saving mode"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maximum power saving"; +"enable_logging_warning_message" = "The option turns on logging for diagnostic purposes. It can be helpful for our team to troubleshoot issues with the app. Enable this option temporarily to record and send detailed logs about your issue to us."; + +"access_rules_author_only" = "Online editing"; + "driving_options_title" = "Routing options"; "driving_options_subheader" = "Avoid on every route"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Sort…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Sort bookmarks"; + /* iOS */ "sort_default" = "Sort by default"; @@ -1086,6 +1345,18 @@ "sort_date" = "Sort by date"; +/* Android */ +"by_default" = "By default"; + +/* Android */ +"by_type" = "By type"; + +/* Android */ +"by_distance" = "By distance"; + +/* Android */ +"by_date" = "By date"; + "week_ago_sorttype" = "A week ago"; "month_ago_sorttype" = "A month ago"; @@ -1132,6 +1403,8 @@ "religious_places" = "Religious places"; +"select_list" = "Select list"; + "transit_not_found" = "Subway navigation in this region is not available yet"; "dialog_pedestrian_route_is_long_header" = "Subway route is not found"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Difficulty"; +"elevation_profile_distance" = "Dist.:"; + "elevation_profile_time" = "Time:"; "isolines_toast_zooms_1_10" = "Zoom in to explore isolines"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Downloading"; +"key_information_title" = "Key information"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Allow screen to sleep"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "When enabled the screen will be allowed to sleep after a period of inactivity."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Update your downloaded maps"; @@ -1735,40 +2023,37 @@ "type.healthcare.laboratory" = "Medical Laboratory"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Bus Stop"; -"type.highway.construction" = "Road Under Construction"; +"type.highway.construction" = "Road under Construction"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Lift"; -"type.highway.footway" = "Foot Path"; +"type.highway.footway" = "Path"; "type.highway.footway.alpine_hiking" = "Path"; -"type.highway.footway.area" = "Foot Path"; +"type.highway.footway.area" = "Path"; -"type.highway.footway.bridge" = "Foot Path"; +"type.highway.footway.bridge" = "Path"; "type.highway.footway.demanding_alpine_hiking" = "Path"; @@ -1780,31 +2065,31 @@ "type.highway.footway.mountain_hiking" = "Path"; -"type.highway.footway.permissive" = "Foot Path"; +"type.highway.footway.permissive" = "Path"; -"type.highway.footway.tunnel" = "Foot Path"; +"type.highway.footway.tunnel" = "Path"; "type.highway.ford" = "Ford"; -"type.highway.living_street" = "Living Street"; +"type.highway.living_street" = "Street"; -"type.highway.living_street.bridge" = "Living Street"; +"type.highway.living_street.bridge" = "Street"; -"type.highway.living_street.tunnel" = "Living Street"; +"type.highway.living_street.tunnel" = "Street"; -"type.highway.motorway" = "Motorway"; +"type.highway.motorway" = "Street"; -"type.highway.motorway.bridge" = "Motorway"; +"type.highway.motorway.bridge" = "Street"; -"type.highway.motorway.tunnel" = "Motorway"; +"type.highway.motorway.tunnel" = "Street"; -"type.highway.motorway_junction" = "Road Exit"; +"type.highway.motorway_junction" = "Exit"; -"type.highway.motorway_link" = "Motorway"; +"type.highway.motorway_link" = "Street"; -"type.highway.motorway_link.bridge" = "Motorway"; +"type.highway.motorway_link.bridge" = "Street"; -"type.highway.motorway_link.tunnel" = "Motorway"; +"type.highway.motorway_link.tunnel" = "Street"; "type.highway.path" = "Path"; @@ -1830,25 +2115,25 @@ "type.highway.path.tunnel" = "Path"; -"type.highway.pedestrian" = "Pedestrian Street"; +"type.highway.pedestrian" = "Street"; -"type.highway.pedestrian.area" = "Pedestrian Street"; +"type.highway.pedestrian.area" = "Street"; -"type.highway.pedestrian.bridge" = "Pedestrian Street"; +"type.highway.pedestrian.bridge" = "Street"; -"type.highway.pedestrian.tunnel" = "Pedestrian Street"; +"type.highway.pedestrian.tunnel" = "Street"; -"type.highway.primary" = "Primary Road"; +"type.highway.primary" = "Street"; -"type.highway.primary.bridge" = "Primary Road"; +"type.highway.primary.bridge" = "Street"; -"type.highway.primary.tunnel" = "Primary Road"; +"type.highway.primary.tunnel" = "Street"; -"type.highway.primary_link" = "Primary Road"; +"type.highway.primary_link" = "Street"; -"type.highway.primary_link.bridge" = "Primary Road"; +"type.highway.primary_link.bridge" = "Street"; -"type.highway.primary_link.tunnel" = "Primary Road"; +"type.highway.primary_link.tunnel" = "Street"; "type.highway.raceway" = "Racetrack"; @@ -1860,141 +2145,108 @@ "type.highway.residential.tunnel" = "Street"; -"type.highway.rest_area" = "Rest Area"; +"type.highway.rest_area" = "Highway Rest Area"; -"type.highway.road" = "Road"; +"type.highway.road" = "Street"; -"type.highway.road.bridge" = "Road"; +"type.highway.road.bridge" = "Street"; -"type.highway.road.tunnel" = "Road"; +"type.highway.road.tunnel" = "Street"; -"type.highway.secondary" = "Secondary Road"; +"type.highway.secondary" = "Street"; -"type.highway.secondary.bridge" = "Secondary Road"; +"type.highway.secondary.bridge" = "Street"; -"type.highway.secondary.tunnel" = "Secondary Road"; +"type.highway.secondary.tunnel" = "Street"; -"type.highway.secondary_link" = "Secondary Road"; +"type.highway.secondary_link" = "Street"; -"type.highway.secondary_link.bridge" = "Secondary Road"; +"type.highway.secondary_link.bridge" = "Street"; -"type.highway.secondary_link.tunnel" = "Secondary Road"; +"type.highway.secondary_link.tunnel" = "Street"; -"type.highway.service" = "Service Road"; +"type.highway.service" = "Street"; -"type.highway.service.area" = "Service Road"; +"type.highway.service.area" = "Street"; -"type.highway.service.bridge" = "Service Road"; +"type.highway.service.bridge" = "Street"; -"type.highway.service.driveway" = "Service Road"; +"type.highway.service.driveway" = "Street"; -"type.highway.service.parking_aisle" = "Service Road"; +"type.highway.service.parking_aisle" = "Street"; -"type.highway.service.tunnel" = "Service Road"; +"type.highway.service.tunnel" = "Street"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Speed Camera"; -"type.highway.steps" = "Stairs"; +"type.highway.steps" = "Path"; -"type.highway.steps.bridge" = "Stairs"; +"type.highway.steps.bridge" = "Path"; -"type.highway.steps.tunnel" = "Stairs"; +"type.highway.steps.tunnel" = "Path"; -"type.highway.tertiary" = "Tertiary Road"; +"type.highway.tertiary" = "Street"; -"type.highway.tertiary.bridge" = "Tertiary Road"; +"type.highway.tertiary.bridge" = "Street"; -"type.highway.tertiary.tunnel" = "Tertiary Road"; +"type.highway.tertiary.tunnel" = "Street"; -"type.highway.tertiary_link" = "Tertiary Road"; +"type.highway.tertiary_link" = "Street"; -"type.highway.tertiary_link.bridge" = "Tertiary Road"; +"type.highway.tertiary_link.bridge" = "Street"; -"type.highway.tertiary_link.tunnel" = "Tertiary Road"; +"type.highway.tertiary_link.tunnel" = "Street"; -"type.highway.track" = "Track"; +"type.highway.track" = "Street"; -"type.highway.track.area" = "Track"; +"type.highway.track.area" = "Street"; -"type.highway.track.bridge" = "Track"; +"type.highway.track.bridge" = "Street"; -"type.highway.track.grade1" = "Track"; +"type.highway.track.grade1" = "Street"; -"type.highway.track.grade2" = "Track"; +"type.highway.track.grade2" = "Street"; -"type.highway.track.grade3" = "Track"; +"type.highway.track.grade3" = "Street"; -"type.highway.track.grade4" = "Track"; +"type.highway.track.grade4" = "Street"; -"type.highway.track.grade5" = "Track"; +"type.highway.track.grade5" = "Street"; -"type.highway.track.no.access" = "Track"; +"type.highway.track.no.access" = "Street"; -"type.highway.track.permissive" = "Track"; +"type.highway.track.permissive" = "Street"; -"type.highway.track.tunnel" = "Track"; +"type.highway.track.tunnel" = "Street"; "type.highway.traffic_signals" = "Traffic Lights"; -"type.highway.trunk" = "National Highway"; +"type.highway.trunk" = "Street"; -"type.highway.trunk.bridge" = "National Highway"; +"type.highway.trunk.bridge" = "Street"; -"type.highway.trunk.tunnel" = "National Highway"; +"type.highway.trunk.tunnel" = "Street"; -"type.highway.trunk_link" = "National Highway"; +"type.highway.trunk_link" = "Street"; -"type.highway.trunk_link.bridge" = "National Highway"; +"type.highway.trunk_link.bridge" = "Street"; -"type.highway.trunk_link.tunnel" = "National Highway"; +"type.highway.trunk_link.tunnel" = "Street"; -"type.highway.unclassified" = "Minor Road"; +"type.highway.unclassified" = "Street"; -"type.highway.unclassified.area" = "Minor Road"; +"type.highway.unclassified.area" = "Street"; -"type.highway.unclassified.bridge" = "Minor Road"; +"type.highway.unclassified.bridge" = "Street"; -"type.highway.unclassified.tunnel" = "Minor Road"; - -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Foot Path"; - -"type.area_highway.living_street" = "Living Street"; - -"type.area_highway.motorway" = "Motorway"; - -"type.area_highway.path" = "Path"; - -"type.area_highway.pedestrian" = "Pedestrian Street"; - -"type.area_highway.primary" = "Primary Road"; - -"type.area_highway.residential" = "Street"; - -"type.area_highway.secondary" = "Secondary Road"; - -"type.area_highway.service" = "Service Road"; - -"type.area_highway.tertiary" = "Tertiary Road"; - -"type.area_highway.steps" = "Stairs"; - -"type.area_highway.track" = "Track"; - -"type.area_highway.trunk" = "National Highway"; - -"type.area_highway.unclassified" = "Minor Road"; +"type.highway.unclassified.tunnel" = "Street"; "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Archaeological Site"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Water Park"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2313,7 +2563,7 @@ "type.natural.volcano" = "Volcano"; -"type.natural.water" = "Waterbody"; +"type.natural.water" = "Water body"; "type.natural.wetland" = "Wetland"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capital"; -"type.place.city.capital.10" = "City"; +"type.place.city.capital.10" = "Capital"; -"type.place.city.capital.11" = "City"; +"type.place.city.capital.11" = "Capital"; "type.place.city.capital.2" = "Capital"; -"type.place.city.capital.3" = "City"; +"type.place.city.capital.3" = "Capital"; -"type.place.city.capital.4" = "City"; +"type.place.city.capital.4" = "Capital"; -"type.place.city.capital.5" = "City"; +"type.place.city.capital.5" = "Capital"; -"type.place.city.capital.6" = "City"; +"type.place.city.capital.6" = "Capital"; -"type.place.city.capital.7" = "City"; +"type.place.city.capital.7" = "Capital"; -"type.place.city.capital.8" = "City"; +"type.place.city.capital.8" = "Capital"; -"type.place.city.capital.9" = "City"; +"type.place.city.capital.9" = "Capital"; "type.place.continent" = "Continent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Building"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.stringsdict index 55b32446b1..ca2ff1243c 100644 --- a/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/en-GB.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -54,6 +54,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d places + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/en.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/en.lproj/Localizable.strings index 5e9969c5df..42a3263f70 100644 --- a/iphone/Maps/LocalizedStrings/en.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/en.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Back"; + /* Button text (should be short) */ "cancel" = "Cancel"; @@ -17,6 +20,9 @@ "download_maps" = "Download Maps"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Download has failed. Touch to try again."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Downloading…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Maps"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Miles"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Search"; +/* Search box placeholder text */ +"search_map" = "Search Map"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Yes"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "You currently have all Location Services for this device or application disabled. Please enable them in Settings."; + /* View and button titles for accessibility */ "zoom_to_country" = "Show on the map"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Download has failed"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Try Again"; + "about_menu_title" = "About Organic Maps"; +"connection_settings" = "Connection Settings"; + "close" = "Close"; +"unsupported_phone" = "The app requires hardware accelerated OpenGL. Unfortunately, your device is not supported."; + "download" = "Download"; +"disconnect_usb_cable" = "Please disconnect USB cable or insert memory card to use Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Please free up some space on the SD card/USB storage first in order to use the app"; + +"not_enough_memory" = "Not enough memory to launch app"; + +"download_resources" = "Before you start using the app, allow us to download the general world map to your device.\nIt will use %@ of storage."; + +"download_resources_continue" = "Go to Map"; + +"downloading_country_can_proceed" = "Downloading %@. You can now\nproceed to the map."; + +"download_country_ask" = "Download %@?"; + +"update_country_ask" = "Update %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pause"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Continue"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ download has failed"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Add New List"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "My Places"; +/* Add bookmark dialog - bookmark name */ +"name" = "Name"; + /* Editor title above street and house number */ "address" = "Address"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "List"; + /* Settings button in system menu */ "settings" = "Settings"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Save maps to"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Select the place where maps should be downloaded to"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Move maps?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "This can take several minutes.\nPlease wait…"; + /* Measurement units title in settings activity */ "measurement_units" = "Measurement units"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Choose between miles and kilometers"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Where to eat"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Groceries"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transport"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Gas"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parking"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Shopping"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Sights"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Entertainment"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "ATM"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Nightlife"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Family holiday"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Pharmacy"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Hospital"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toilet"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Post"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Police"; +/* Notes field in Bookmarks view */ +"description" = "Notes"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Organic Maps bookmarks were shared with you"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Your location hasn't been determined yet"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Sorry, Map Storage settings are currently disabled."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Map download is in progress now."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hey, check out my current location in Organic Maps! %1$@ or %2$@ Don't have offline maps? Download here: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hey, check out my pin in Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hey, check out my current location on the Organic Maps map!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hi,\n\nI'm here now: %1$@. Click this link %2$@ or this one %3$@ to see the place on the map.\n\nThanks."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Share"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Copied to clipboard: %1$@"; + /* place preview title */ "info" = "Info"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Are you sure you want to continue?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Tracks"; @@ -195,10 +283,18 @@ "share_my_location" = "Share My Location"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigation"; "pref_zoom_title" = "Zoom buttons"; +"pref_zoom_summary" = "Display on the map"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Night Mode"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Voice Language"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Not Available"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Other"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Help"; +/* Button in the main Help dialog */ +"faq" = "Frequently Asked Questions"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "How to support us?"; + /* Button in the main Help dialog */ "copyright" = "Copyright"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Update All"; +/* Cancel all button text */ +"downloader_cancel_all" = "Cancel All"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Downloaded"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Delete Map"; +/* Item in context menu. */ +"downloader_update_map" = "Update Map"; + +/* Preference text */ +"pref_use_google_play" = "Use Google Play Services to determine your current location"; + /* Text for rating dialog */ "rating_just_rated" = "I’ve just rated your app"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "In order to create a route, we need to download and update all the maps from your location to your destination."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Not enough space"; + /* bookmark button text */ "bookmark" = "bookmark"; +/* location service disabled */ +"enable_location_services" = "Please enable Location Services"; + "save" = "Save"; +"edit_description_hint" = "Your descriptions (text or html)"; + "create" = "create"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Unable to locate route"; +"dialog_routing_cant_build_route" = "Unable to create route."; + "dialog_routing_change_start_or_end" = "Please adjust your starting point or your destination."; "dialog_routing_change_start" = "Adjust starting point"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "To start searching and creating routes, please download the map. After that you will no longer need an Internet connection."; + +"search_select_map" = "Select Map"; + /* «Show» context menu */ "show" = "Show"; @@ -521,6 +655,9 @@ "clear_search" = "Clear Search History"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Your Location"; "p2p_start" = "Start"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Do you want us to plan a route from your current location?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Next"; + "editor_time_add" = "Add Schedule"; "editor_time_delete" = "Delete Schedule"; @@ -556,14 +696,28 @@ "editor_example_values" = "Example Values"; +"editor_correct_mistake" = "Correct mistake"; + "editor_add_select_location" = "Location"; "editor_done_dialog_1" = "You’ve changed the world map. Do not keep it to yourself! Tell your friends, and edit it together."; "share_with_friends" = "Share with friends"; +"editor_report_problem_desription_1" = "Please describe the problem in detail so that the OpenStreeMap community can fix the error."; + +"editor_report_problem_desription_2" = "Or do it yourself at https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Send"; +"editor_report_problem_title" = "Issue"; + +"editor_report_problem_no_place_title" = "The place does not exist"; + +"editor_report_problem_under_construction_title" = "Сlosed for maintenance"; + +"editor_report_problem_duplicate_place_title" = "Duplicated place"; + "autodownload" = "Auto-download"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Add opening hours"; +"edit_opening_hours" = "Edit business hours"; + "no_osm_account" = "Don't have an OpenStreetMap account?"; "register_at_openstreetmap" = "Register at OSM"; @@ -592,6 +748,8 @@ "login" = "Log In"; +"password" = "Password"; + "forgot_password" = "Forgot your password?"; "osm_account" = "OSM Account"; @@ -609,6 +767,8 @@ "add_language" = "Add a language"; +"street" = "Street"; + /* Editable House Number text field (in address block). */ "house_number" = "Building number"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Add a street"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Choose a language"; "choose_street" = "Choose a street"; @@ -632,12 +795,16 @@ "phone" = "Phone"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Please note"; "downloader_delete_map_dialog" = "All of your map edits will be deleted together with the map."; "downloader_update_maps" = "Update Maps"; +"downloader_mwm_migration_dialog" = "To create a route, you need to update all maps and then plan the route again."; + "downloader_search_field_hint" = "Find map"; "migration_download_error_dialog" = "Download error"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Please delete any unnecessary data"; +"editor_login_error_dialog" = "Login error."; + "editor_profile_changes" = "Verified Changes"; "editor_focus_map_on_location" = "Drag the map to select the correct location of the object."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Category"; +"detailed_problem_description" = "Detailed description of the issue"; + +"editor_report_problem_other_title" = "Different problem"; + +"placepage_add_business_button" = "Add business"; + "whatsnew_editor_message_1" = "Add new places to the map, and edit existing ones directly from the app."; "dialog_incorrect_feature_position" = "Change location"; @@ -710,6 +885,8 @@ "editor_operator" = "Owner"; +"downloader_my_maps_title" = "My maps"; + "downloader_no_downloaded_maps_title" = "You haven't downloaded any maps"; "downloader_no_downloaded_maps_message" = "Download maps to search for a location and use navigation offline."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Description"; "placepage_more_button" = "More"; +"placepage_more_reviews_button" = "More Reviews"; + "book_button" = "Book"; "placepage_call_button" = "Call"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Place does not exist"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…more"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Enter a valid email"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Update"; "placepage_add_place_button" = "Add a place to the map"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Decline"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "List"; "mobile_data_dialog" = "Use mobile internet to show detailed information?"; @@ -848,12 +1044,16 @@ "big_font" = "Increase font size on the map"; +"traffic_update_app" = "Please update Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "To display traffic data, the application must be updated."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Traffic data is not available"; +"enable_logging" = "Enable logging"; + /* Settings: "Send general feedback" button */ "feedback_general" = "General Feedback"; @@ -861,14 +1061,24 @@ "off" = "Off"; +"prefs_languages_information" = "We use system TTS for voice instructions. Many Android devices use Google TTS, you can download or update it from Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "For some languages, you will need to install a speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\nOpen your device's settings → Language and input → Speech → Text to speech output.\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine."; + +"prefs_languages_information_off_link" = "For more information please check this guide."; + "transliteration_title" = "Transliteration into Latin"; +"learn_more" = "Learn more"; + "core_exit" = "Exit"; "routing_add_start_point" = "Add a starting point to plan a route"; "routing_add_finish_point" = "Add a destination to plan a route"; +"button_exit" = "Exit"; + "planning_route_manage_route" = "Manage Route"; "button_plan" = "Plan"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Oops, there was an error. Try to sign in again."; +"dialog_error_storage_title" = "Storage access problem"; + +"dialog_error_storage_message" = "External storage is not accessible. The SD Card may have been removed, damaged, or the file system is read-only. Please, check your SD Card or contact us at support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emulate bad storage"; + "core_entrance" = "Entrance"; "error_enter_correct_name" = "Please, enter a correct name"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Create new list"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Hide Screen"; "downloader_percent" = "%s (%s of %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Cannot share an empty list"; +"bookmarks_error_title_empty_list_name" = "The name couldn't be empty"; + "bookmarks_error_message_empty_list_name" = "Please enter the list name"; +"bookmarks_new_list_hint" = "New list"; + "bookmarks_error_title_list_name_already_taken" = "This name is already taken"; +"bookmarks_error_message_list_name_already_taken" = "Please choose another name"; + "bookmarks_error_title_list_name_too_long" = "This name is too long"; +"please_wait" = "Please wait�"; + +"phone_number" = "Phone number"; + "profile" = "OpenStreetMap profile"; "bookmarks_detect_title" = "New files detected"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Restore this version?"; +"common_check_internet_connection_dialog_title" = "No internet connection"; + "error_system_message" = "An unknown error occurred"; "restore" = "Restore"; +"subtittle_opt_out" = "Tracking settings"; + +"crash_reports" = "Crash report"; + +"crash_reports_description" = "We may use your data to improve Organic Maps experience. Changes will take effect after you restart the app."; + "privacy_policy" = "Privacy policy"; "terms_of_use" = "Terms of use"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Subway map is unavailable"; +"bookmarks_empty_list_title" = "This list is empty"; + +"bookmarks_empty_list_message" = "To add a bookmark, tap a place on the map and then tap the star icon"; + +"category_desc_more" = "…more"; + "title_error_downloading_bookmarks" = "An error occurred"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Hide from map"; +"public_access" = "Public access"; + +"limited_access" = "Limited access"; + "bookmark_list_description_hint" = "Type a description (text or html)"; +"not_shared" = "Private"; + "tags_loading_error_subtitle" = "An error occurred while loading tags, please try again"; "download_button" = "Download"; @@ -972,6 +1221,9 @@ "place_description_title" = "Place Description"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Map downloader"; + "speedcams_notice_message" = "Auto - Warn about speedcams if there is a risk of exceeding the speed limit\nAlways - Always warn about speedcams\nNever - Never warn about speedcams"; "power_managment_title" = "Power saving mode"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maximum power saving"; +"enable_logging_warning_message" = "The option turns on logging for diagnostic purposes. It can be helpful for our team to troubleshoot issues with the app. Enable this option temporarily to record and send detailed logs about your issue to us."; + +"access_rules_author_only" = "Online editing"; + "driving_options_title" = "Routing options"; "driving_options_subheader" = "Avoid on every route"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Sort…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Sort bookmarks"; + /* iOS */ "sort_default" = "Sort by default"; @@ -1086,6 +1345,18 @@ "sort_date" = "Sort by date"; +/* Android */ +"by_default" = "By default"; + +/* Android */ +"by_type" = "By type"; + +/* Android */ +"by_distance" = "By distance"; + +/* Android */ +"by_date" = "By date"; + "week_ago_sorttype" = "A week ago"; "month_ago_sorttype" = "A month ago"; @@ -1132,6 +1403,8 @@ "religious_places" = "Religious places"; +"select_list" = "Select list"; + "transit_not_found" = "Subway navigation in this region is not available yet"; "dialog_pedestrian_route_is_long_header" = "Subway route is not found"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Difficulty"; +"elevation_profile_distance" = "Dist.:"; + "elevation_profile_time" = "Time:"; "isolines_toast_zooms_1_10" = "Zoom in to explore isolines"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Downloading"; +"key_information_title" = "Key information"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Allow screen to sleep"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "When enabled the screen will be allowed to sleep after a period of inactivity."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Update your downloaded maps"; @@ -1735,40 +2023,37 @@ "type.healthcare.laboratory" = "Medical Laboratory"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Bus Stop"; -"type.highway.construction" = "Road Under Construction"; +"type.highway.construction" = "Road under Construction"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; -"type.highway.footway" = "Foot Path"; +"type.highway.footway" = "Path"; "type.highway.footway.alpine_hiking" = "Path"; -"type.highway.footway.area" = "Pedestrian Zone"; +"type.highway.footway.area" = "Path"; -"type.highway.footway.bridge" = "Foot Path"; +"type.highway.footway.bridge" = "Path"; "type.highway.footway.demanding_alpine_hiking" = "Path"; @@ -1780,37 +2065,37 @@ "type.highway.footway.mountain_hiking" = "Path"; -"type.highway.footway.permissive" = "Foot Path"; +"type.highway.footway.permissive" = "Path"; -"type.highway.footway.tunnel" = "Foot Path"; +"type.highway.footway.tunnel" = "Path"; "type.highway.ford" = "Ford"; -"type.highway.living_street" = "Living Street"; +"type.highway.living_street" = "Street"; -"type.highway.living_street.bridge" = "Living Street"; +"type.highway.living_street.bridge" = "Street"; -"type.highway.living_street.tunnel" = "Living Street"; +"type.highway.living_street.tunnel" = "Street"; -"type.highway.motorway" = "Motorway"; +"type.highway.motorway" = "Street"; -"type.highway.motorway.bridge" = "Motorway"; +"type.highway.motorway.bridge" = "Street"; -"type.highway.motorway.tunnel" = "Motorway"; +"type.highway.motorway.tunnel" = "Street"; -"type.highway.motorway_junction" = "Road Exit"; +"type.highway.motorway_junction" = "Exit"; -"type.highway.motorway_link" = "Motorway Ramp"; +"type.highway.motorway_link" = "Street"; -"type.highway.motorway_link.bridge" = "Motorway Ramp"; +"type.highway.motorway_link.bridge" = "Street"; -"type.highway.motorway_link.tunnel" = "Motorway Ramp"; +"type.highway.motorway_link.tunnel" = "Street"; "type.highway.path" = "Path"; "type.highway.path.alpine_hiking" = "Path"; -"type.highway.path.bicycle" = "Cycle & Foot Path"; +"type.highway.path.bicycle" = "Path"; "type.highway.path.bridge" = "Path"; @@ -1822,7 +2107,7 @@ "type.highway.path.hiking" = "Path"; -"type.highway.path.horse" = "Bridle Path"; +"type.highway.path.horse" = "Path"; "type.highway.path.mountain_hiking" = "Path"; @@ -1830,25 +2115,25 @@ "type.highway.path.tunnel" = "Path"; -"type.highway.pedestrian" = "Pedestrian Street"; +"type.highway.pedestrian" = "Street"; -"type.highway.pedestrian.area" = "Pedestrian Zone"; +"type.highway.pedestrian.area" = "Street"; -"type.highway.pedestrian.bridge" = "Pedestrian Street"; +"type.highway.pedestrian.bridge" = "Street"; -"type.highway.pedestrian.tunnel" = "Pedestrian Street"; +"type.highway.pedestrian.tunnel" = "Street"; -"type.highway.primary" = "Primary Road"; +"type.highway.primary" = "Street"; -"type.highway.primary.bridge" = "Primary Road"; +"type.highway.primary.bridge" = "Street"; -"type.highway.primary.tunnel" = "Primary Road"; +"type.highway.primary.tunnel" = "Street"; -"type.highway.primary_link" = "Primary Road Ramp"; +"type.highway.primary_link" = "Street"; -"type.highway.primary_link.bridge" = "Primary Road Ramp"; +"type.highway.primary_link.bridge" = "Street"; -"type.highway.primary_link.tunnel" = "Primary Road Ramp"; +"type.highway.primary_link.tunnel" = "Street"; "type.highway.raceway" = "Racetrack"; @@ -1860,141 +2145,108 @@ "type.highway.residential.tunnel" = "Street"; -"type.highway.rest_area" = "Rest Area"; +"type.highway.rest_area" = "Highway Rest Area"; -"type.highway.road" = "Road"; +"type.highway.road" = "Street"; -"type.highway.road.bridge" = "Road"; +"type.highway.road.bridge" = "Street"; -"type.highway.road.tunnel" = "Road"; +"type.highway.road.tunnel" = "Street"; -"type.highway.secondary" = "Secondary Road"; +"type.highway.secondary" = "Street"; -"type.highway.secondary.bridge" = "Secondary Road"; +"type.highway.secondary.bridge" = "Street"; -"type.highway.secondary.tunnel" = "Secondary Road"; +"type.highway.secondary.tunnel" = "Street"; -"type.highway.secondary_link" = "Secondary Road Ramp"; +"type.highway.secondary_link" = "Street"; -"type.highway.secondary_link.bridge" = "Secondary Road Ramp"; +"type.highway.secondary_link.bridge" = "Street"; -"type.highway.secondary_link.tunnel" = "Secondary Road Ramp"; +"type.highway.secondary_link.tunnel" = "Street"; -"type.highway.service" = "Service Road"; +"type.highway.service" = "Street"; -"type.highway.service.area" = "Service Road"; +"type.highway.service.area" = "Street"; -"type.highway.service.bridge" = "Service Road"; +"type.highway.service.bridge" = "Street"; -"type.highway.service.driveway" = "Driveway"; +"type.highway.service.driveway" = "Street"; -"type.highway.service.parking_aisle" = "Parking Aisle"; +"type.highway.service.parking_aisle" = "Street"; -"type.highway.service.tunnel" = "Service Road"; +"type.highway.service.tunnel" = "Street"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Speed Camera"; -"type.highway.steps" = "Stairs"; +"type.highway.steps" = "Path"; -"type.highway.steps.bridge" = "Stairs"; +"type.highway.steps.bridge" = "Path"; -"type.highway.steps.tunnel" = "Stairs"; +"type.highway.steps.tunnel" = "Path"; -"type.highway.tertiary" = "Tertiary Road"; +"type.highway.tertiary" = "Street"; -"type.highway.tertiary.bridge" = "Tertiary Road"; +"type.highway.tertiary.bridge" = "Street"; -"type.highway.tertiary.tunnel" = "Tertiary Road"; +"type.highway.tertiary.tunnel" = "Street"; -"type.highway.tertiary_link" = "Tertiary Road Ramp"; +"type.highway.tertiary_link" = "Street"; -"type.highway.tertiary_link.bridge" = "Tertiary Road Ramp"; +"type.highway.tertiary_link.bridge" = "Street"; -"type.highway.tertiary_link.tunnel" = "Tertiary Road Ramp"; +"type.highway.tertiary_link.tunnel" = "Street"; -"type.highway.track" = "Track"; +"type.highway.track" = "Street"; -"type.highway.track.area" = "Track"; +"type.highway.track.area" = "Street"; -"type.highway.track.bridge" = "Track"; +"type.highway.track.bridge" = "Street"; -"type.highway.track.grade1" = "Track"; +"type.highway.track.grade1" = "Street"; -"type.highway.track.grade2" = "Track"; +"type.highway.track.grade2" = "Street"; -"type.highway.track.grade3" = "Track"; +"type.highway.track.grade3" = "Street"; -"type.highway.track.grade4" = "Track"; +"type.highway.track.grade4" = "Street"; -"type.highway.track.grade5" = "Track"; +"type.highway.track.grade5" = "Street"; -"type.highway.track.no.access" = "Track"; +"type.highway.track.no.access" = "Street"; -"type.highway.track.permissive" = "Track"; +"type.highway.track.permissive" = "Street"; -"type.highway.track.tunnel" = "Track"; +"type.highway.track.tunnel" = "Street"; "type.highway.traffic_signals" = "Traffic Lights"; -"type.highway.trunk" = "National Highway"; +"type.highway.trunk" = "Street"; -"type.highway.trunk.bridge" = "National Highway"; +"type.highway.trunk.bridge" = "Street"; -"type.highway.trunk.tunnel" = "National Highway"; +"type.highway.trunk.tunnel" = "Street"; -"type.highway.trunk_link" = "National Highway Ramp"; +"type.highway.trunk_link" = "Street"; -"type.highway.trunk_link.bridge" = "National Highway Ramp"; +"type.highway.trunk_link.bridge" = "Street"; -"type.highway.trunk_link.tunnel" = "National Highway Ramp"; +"type.highway.trunk_link.tunnel" = "Street"; -"type.highway.unclassified" = "Minor Road"; +"type.highway.unclassified" = "Street"; -"type.highway.unclassified.area" = "Minor Road"; +"type.highway.unclassified.area" = "Street"; -"type.highway.unclassified.bridge" = "Minor Road"; +"type.highway.unclassified.bridge" = "Street"; -"type.highway.unclassified.tunnel" = "Minor Road"; - -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Foot Path"; - -"type.area_highway.living_street" = "Living Street"; - -"type.area_highway.motorway" = "Motorway"; - -"type.area_highway.path" = "Path"; - -"type.area_highway.pedestrian" = "Pedestrian Street"; - -"type.area_highway.primary" = "Primary Road"; - -"type.area_highway.residential" = "Street"; - -"type.area_highway.secondary" = "Secondary Road"; - -"type.area_highway.service" = "Service Road"; - -"type.area_highway.tertiary" = "Tertiary Road"; - -"type.area_highway.steps" = "Stairs"; - -"type.area_highway.track" = "Track"; - -"type.area_highway.trunk" = "National Highway"; - -"type.area_highway.unclassified" = "area:highway-unclassified"; +"type.highway.unclassified.tunnel" = "Street"; "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Archaeological Site"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Water Park"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2313,7 +2563,7 @@ "type.natural.volcano" = "Volcano"; -"type.natural.water" = "Waterbody"; +"type.natural.water" = "Water body"; "type.natural.wetland" = "Wetland"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capital"; -"type.place.city.capital.10" = "City"; +"type.place.city.capital.10" = "Capital"; -"type.place.city.capital.11" = "City"; +"type.place.city.capital.11" = "Capital"; "type.place.city.capital.2" = "Capital"; -"type.place.city.capital.3" = "City"; +"type.place.city.capital.3" = "Capital"; -"type.place.city.capital.4" = "City"; +"type.place.city.capital.4" = "Capital"; -"type.place.city.capital.5" = "City"; +"type.place.city.capital.5" = "Capital"; -"type.place.city.capital.6" = "City"; +"type.place.city.capital.6" = "Capital"; -"type.place.city.capital.7" = "City"; +"type.place.city.capital.7" = "Capital"; -"type.place.city.capital.8" = "City"; +"type.place.city.capital.8" = "Capital"; -"type.place.city.capital.9" = "City"; +"type.place.city.capital.9" = "Capital"; "type.place.continent" = "Continent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Building"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/en.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/en.lproj/Localizable.stringsdict index 87447b94f4..9c55410ff2 100644 --- a/iphone/Maps/LocalizedStrings/en.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/en.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -60,6 +60,23 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + one + %d place + other + %d places + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.strings index 5bf268b7c1..e42f195eee 100644 --- a/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Back"; + /* Button text (should be short) */ "cancel" = "Cancel"; @@ -17,6 +20,9 @@ "download_maps" = "Download Maps"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Download has failed. Touch to try again."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Downloading…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Maps"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Miles"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Search"; +/* Search box placeholder text */ +"search_map" = "Search Map"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Yes"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "You currently have all Location Services for this device or application disabled. Please enable them in Settings."; + /* View and button titles for accessibility */ "zoom_to_country" = "Show on the map"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Download has failed"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Try Again"; + "about_menu_title" = "About Organic Maps"; +"connection_settings" = "Connection Settings"; + "close" = "Close"; +"unsupported_phone" = "The app requires hardware accelerated OpenGL. Unfortunately, your device is not supported."; + "download" = "Download"; +"disconnect_usb_cable" = "Please disconnect USB cable or insert memory card to use Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Please free up some space on the SD card/USB storage first in order to use the app"; + +"not_enough_memory" = "Not enough memory to launch app"; + +"download_resources" = "Before you start using the app, allow us to download the general world map to your device.\nIt will use %@ of storage."; + +"download_resources_continue" = "Go to Map"; + +"downloading_country_can_proceed" = "Downloading %@. You can now\nproceed to the map."; + +"download_country_ask" = "Download %@?"; + +"update_country_ask" = "Update %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pause"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Continue"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ download has failed"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Add New List"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "My Places"; +/* Add bookmark dialog - bookmark name */ +"name" = "Name"; + /* Editor title above street and house number */ "address" = "Address"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "List"; + /* Settings button in system menu */ "settings" = "Settings"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Save maps to"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Select the place where maps should be downloaded to"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Move maps?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "This can take several minutes.\nPlease wait…"; + /* Measurement units title in settings activity */ "measurement_units" = "Measurement units"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Choose between miles and kilometers"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Where to eat"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Groceries"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transport"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Gas"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parking"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Shopping"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Sights"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Entertainment"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "ATM"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Nightlife"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Family holiday"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Pharmacy"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Hospital"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toilet"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Post"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Police"; +/* Notes field in Bookmarks view */ +"description" = "Notes"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Organic Maps bookmarks were shared with you"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Your location hasn't been determined yet"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Sorry, Map Storage settings are currently disabled."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Map download is in progress now."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hey, check out my current location in Organic Maps! %1$@ or %2$@ Don't have offline maps? Download here: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hey, check out my pin in Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hey, check out my current location on the Organic Maps map!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hi,\n\nI'm here now: %1$@. Click this link %2$@ or this one %3$@ to see the place on the map.\n\nThanks."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Share"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Copied to clipboard: %1$@"; + /* place preview title */ "info" = "Info"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Are you sure you want to continue?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Tracks"; @@ -195,10 +283,18 @@ "share_my_location" = "Share My Location"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigation"; "pref_zoom_title" = "Zoom buttons"; +"pref_zoom_summary" = "Display on the map"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Night Mode"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Voice Language"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Not Available"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Other"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Help"; +/* Button in the main Help dialog */ +"faq" = "Frequently Asked Questions"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "How to support us?"; + /* Button in the main Help dialog */ "copyright" = "Copyright"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Update All"; +/* Cancel all button text */ +"downloader_cancel_all" = "Cancel All"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Downloaded"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Delete Map"; +/* Item in context menu. */ +"downloader_update_map" = "Update Map"; + +/* Preference text */ +"pref_use_google_play" = "Use Google Play Services to determine your current location"; + /* Text for rating dialog */ "rating_just_rated" = "I’ve just rated your app"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "In order to create a route, we need to download and update all the maps from your location to your destination."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Not enough space"; + /* bookmark button text */ "bookmark" = "bookmark"; +/* location service disabled */ +"enable_location_services" = "Please enable Location Services"; + "save" = "Save"; +"edit_description_hint" = "Your descriptions (text or html)"; + "create" = "create"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Unable to locate route"; +"dialog_routing_cant_build_route" = "Unable to create route."; + "dialog_routing_change_start_or_end" = "Please adjust your starting point or your destination."; "dialog_routing_change_start" = "Adjust starting point"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "To start searching and creating routes, please download the map. After that you will no longer need an Internet connection."; + +"search_select_map" = "Select Map"; + /* «Show» context menu */ "show" = "Show"; @@ -521,6 +655,9 @@ "clear_search" = "Clear Search History"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Your Location"; "p2p_start" = "Start"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Do you want us to plan a route from your current location?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Next"; + "editor_time_add" = "Add Schedule"; "editor_time_delete" = "Delete Schedule"; @@ -556,14 +696,28 @@ "editor_example_values" = "Example Values"; +"editor_correct_mistake" = "Correct mistake"; + "editor_add_select_location" = "Location"; "editor_done_dialog_1" = "You’ve changed the world map. Do not keep it to yourself! Tell your friends, and edit it together."; "share_with_friends" = "Share with friends"; +"editor_report_problem_desription_1" = "Please describe the problem in detail so that the OpenStreeMap community can fix the error."; + +"editor_report_problem_desription_2" = "Or do it yourself at https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Send"; +"editor_report_problem_title" = "Issue"; + +"editor_report_problem_no_place_title" = "The place does not exist"; + +"editor_report_problem_under_construction_title" = "Сlosed for maintenance"; + +"editor_report_problem_duplicate_place_title" = "Duplicated place"; + "autodownload" = "Auto-download"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Add opening hours"; +"edit_opening_hours" = "Edit business hours"; + "no_osm_account" = "Don't have an OpenStreetMap account?"; "register_at_openstreetmap" = "Register at OSM"; @@ -592,6 +748,8 @@ "login" = "Log In"; +"password" = "Password"; + "forgot_password" = "Forgot your password?"; "osm_account" = "OSM Account"; @@ -609,6 +767,8 @@ "add_language" = "Add a language"; +"street" = "Street"; + /* Editable House Number text field (in address block). */ "house_number" = "Building number"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Add a street"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Choose a language"; "choose_street" = "Choose a street"; @@ -632,12 +795,16 @@ "phone" = "Phone"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Please note"; "downloader_delete_map_dialog" = "All of your map edits will be deleted together with the map."; "downloader_update_maps" = "Update Maps"; +"downloader_mwm_migration_dialog" = "To create a route, you need to update all maps and then plan the route again."; + "downloader_search_field_hint" = "Find map"; "migration_download_error_dialog" = "Download error"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Please delete any unnecessary data"; +"editor_login_error_dialog" = "Login error."; + "editor_profile_changes" = "Verified Changes"; "editor_focus_map_on_location" = "Drag the map to select the correct location of the object."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Category"; +"detailed_problem_description" = "Detailed description of the issue"; + +"editor_report_problem_other_title" = "Different problem"; + +"placepage_add_business_button" = "Add business"; + "whatsnew_editor_message_1" = "Add new places to the map, and edit existing ones directly from the app."; "dialog_incorrect_feature_position" = "Change location"; @@ -710,6 +885,8 @@ "editor_operator" = "Owner"; +"downloader_my_maps_title" = "My maps"; + "downloader_no_downloaded_maps_title" = "You haven't downloaded any maps"; "downloader_no_downloaded_maps_message" = "Download maps to search for a location and use navigation offline."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Description"; "placepage_more_button" = "More"; +"placepage_more_reviews_button" = "Más comentarios"; + "book_button" = "Book"; "placepage_call_button" = "Call"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Place does not exist"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…more"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Enter a valid email"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Update"; "placepage_add_place_button" = "Add a place to the map"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Decline"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "List"; "mobile_data_dialog" = "Use mobile internet to show detailed information?"; @@ -848,12 +1044,16 @@ "big_font" = "Increase font size on the map"; +"traffic_update_app" = "Please update Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "To display traffic data, the application must be updated."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Traffic data is not available"; +"enable_logging" = "Enable logging"; + /* Settings: "Send general feedback" button */ "feedback_general" = "General Feedback"; @@ -861,14 +1061,24 @@ "off" = "Off"; +"prefs_languages_information" = "We use system TTS for voice instructions. Many Android devices use Google TTS, you can download or update it from Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "For some languages, you will need to install a speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\nOpen your device's settings → Language and input → Speech → Text to speech output.\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine."; + +"prefs_languages_information_off_link" = "For more information please check this guide."; + "transliteration_title" = "Transliteración al alfabeto latino"; +"learn_more" = "Learn more"; + "core_exit" = "Exit"; "routing_add_start_point" = "Add a starting point to plan a route"; "routing_add_finish_point" = "Add a destination to plan a route"; +"button_exit" = "Exit"; + "planning_route_manage_route" = "Manage Route"; "button_plan" = "Plan"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Oops, there was an error. Try to sign in again."; +"dialog_error_storage_title" = "Problema de acceso al almacenamiento"; + +"dialog_error_storage_message" = "El almacenamiento externo no está disponible. Es posible que se haya quitado o dañado la tarjeta SD, o que el sistema de archivos solo permita la lectura. Revíselo y escríbanos a support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emular el almacenamiento dañado"; + "core_entrance" = "Entrada"; "error_enter_correct_name" = "Introduzca el nombre correcto"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Crear lista nueva"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Ocultar pantalla"; "downloader_percent" = "%s (%s de %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "No se puede compartir una lista vacía"; +"bookmarks_error_title_empty_list_name" = "El nombre no puede quedar vacío"; + "bookmarks_error_message_empty_list_name" = "Escriba el nombre"; +"bookmarks_new_list_hint" = "Lista nueva"; + "bookmarks_error_title_list_name_already_taken" = "Este nombre ya está en uso"; +"bookmarks_error_message_list_name_already_taken" = "Por favor elige otro nombre"; + "bookmarks_error_title_list_name_too_long" = "Este nombre es demasiado largo"; +"please_wait" = "Por favor, espere…"; + +"phone_number" = "Phone number"; + "profile" = "OpenStreetMap profile"; "bookmarks_detect_title" = "Se detectaron archivos nuevos"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "¿Está seguro que desea restaurar esta versión?"; +"common_check_internet_connection_dialog_title" = "Sin conexión a Internet"; + "error_system_message" = "Ocurrió un error desconocido"; "restore" = "Restaurar"; +"subtittle_opt_out" = "Configuraciones de rastreo"; + +"crash_reports" = "Reporte de fallas"; + +"crash_reports_description" = "Puede que utilicemos sus datos para mejorar la experiencia de Organic Maps. Los cambios surtirán efecto después de que reinicie la aplicación."; + "privacy_policy" = "Política de Privacidad"; "terms_of_use" = "Términos de uso"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "El mapa del metro no está disponible"; +"bookmarks_empty_list_title" = "Esta lista está vacía"; + +"bookmarks_empty_list_message" = "Para añadir un marcador, toque un lugar en el mapa y después toque el ícono de estrella"; + +"category_desc_more" = "…más"; + "title_error_downloading_bookmarks" = "Ocurrió un error"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Ocultar del mapa"; +"public_access" = "Acceso público"; + +"limited_access" = "Acceso limitado"; + "bookmark_list_description_hint" = "Introduzca una descripción (texto o html)"; +"not_shared" = "Privado"; + "tags_loading_error_subtitle" = "Ocurrió un error al cargar las etiquetas, por favor intente de nuevo"; "download_button" = "Descargar"; @@ -972,6 +1221,9 @@ "place_description_title" = "Descripción de lugares"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Descargar mapas"; + "speedcams_notice_message" = "Automático - Aviso de las cámaras de velocidad si existe el riesgo de exceder el límite de velocidad\nSiempre - Siempre dar aviso de las cámaras de velocidad\nNunca - Nunca dar aviso de las cámaras de velocidad"; "power_managment_title" = "Modo de ahorro de energía"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Máximo ahorro de energía"; +"enable_logging_warning_message" = "Esta opción está habilitada para las acciones de registro con fines de diagnóstico. Esto ayuda a nuestro equipo a identificar problemas con la aplicación. Habilite la opción solo a petición del apoyo de Organic Maps."; + +"access_rules_author_only" = "Se edita en línea"; + "driving_options_title" = "Ajustes de desvío"; "driving_options_subheader" = "Evitar en cada ruta"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Ordenar…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Ordenar marcadores"; + /* iOS */ "sort_default" = "Ordenar por defecto"; @@ -1086,6 +1345,18 @@ "sort_date" = "Ordenar por fecha"; +/* Android */ +"by_default" = "Por defecto"; + +/* Android */ +"by_type" = "Por tipo"; + +/* Android */ +"by_distance" = "Por distancia"; + +/* Android */ +"by_date" = "Por fecha"; + "week_ago_sorttype" = "Hace una semana"; "month_ago_sorttype" = "Hace un mes"; @@ -1132,6 +1403,8 @@ "religious_places" = "Sitios religiosos"; +"select_list" = "Seleccionar lista"; + "transit_not_found" = "Navegación por metro aún no disponible en esta región"; "dialog_pedestrian_route_is_long_header" = "Ruta de metro no encontrada"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Dificultad"; +"elevation_profile_distance" = "Distancia:"; + "elevation_profile_time" = "Lapso:"; "isolines_toast_zooms_1_10" = "Amplíe el mapa para ver las isolíneas"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Cargando"; +"key_information_title" = "Información clave"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Allow screen to sleep"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "When enabled the screen will be allowed to sleep after a period of inactivity."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Debe actualizar sus mapas descargados"; @@ -1735,40 +2023,37 @@ "type.healthcare.laboratory" = "Medical Laboratory"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Bus Stop"; "type.highway.construction" = "Carretera en construcción"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; -"type.highway.footway" = "Foot Path"; +"type.highway.footway" = "Path"; "type.highway.footway.alpine_hiking" = "Path"; -"type.highway.footway.area" = "Foot Path"; +"type.highway.footway.area" = "Path"; -"type.highway.footway.bridge" = "Foot Path"; +"type.highway.footway.bridge" = "Path"; "type.highway.footway.demanding_alpine_hiking" = "Path"; @@ -1780,31 +2065,31 @@ "type.highway.footway.mountain_hiking" = "Path"; -"type.highway.footway.permissive" = "Foot Path"; +"type.highway.footway.permissive" = "Path"; -"type.highway.footway.tunnel" = "Foot Path"; +"type.highway.footway.tunnel" = "Path"; "type.highway.ford" = "Vado (de lugar)"; -"type.highway.living_street" = "Living Street"; +"type.highway.living_street" = "Street"; -"type.highway.living_street.bridge" = "Living Street"; +"type.highway.living_street.bridge" = "Street"; -"type.highway.living_street.tunnel" = "Living Street"; +"type.highway.living_street.tunnel" = "Street"; -"type.highway.motorway" = "Motorway"; +"type.highway.motorway" = "Street"; -"type.highway.motorway.bridge" = "Motorway"; +"type.highway.motorway.bridge" = "Street"; -"type.highway.motorway.tunnel" = "Motorway"; +"type.highway.motorway.tunnel" = "Street"; -"type.highway.motorway_junction" = "Road Exit"; +"type.highway.motorway_junction" = "Exit"; -"type.highway.motorway_link" = "Motorway"; +"type.highway.motorway_link" = "Street"; -"type.highway.motorway_link.bridge" = "Motorway"; +"type.highway.motorway_link.bridge" = "Street"; -"type.highway.motorway_link.tunnel" = "Motorway"; +"type.highway.motorway_link.tunnel" = "Street"; "type.highway.path" = "Path"; @@ -1830,25 +2115,25 @@ "type.highway.path.tunnel" = "Path"; -"type.highway.pedestrian" = "Pedestrian Street"; +"type.highway.pedestrian" = "Street"; -"type.highway.pedestrian.area" = "Pedestrian Street"; +"type.highway.pedestrian.area" = "Street"; -"type.highway.pedestrian.bridge" = "Pedestrian Street"; +"type.highway.pedestrian.bridge" = "Street"; -"type.highway.pedestrian.tunnel" = "Pedestrian Street"; +"type.highway.pedestrian.tunnel" = "Street"; -"type.highway.primary" = "Primary Road"; +"type.highway.primary" = "Street"; -"type.highway.primary.bridge" = "Primary Road"; +"type.highway.primary.bridge" = "Street"; -"type.highway.primary.tunnel" = "Primary Road"; +"type.highway.primary.tunnel" = "Street"; -"type.highway.primary_link" = "Primary Road"; +"type.highway.primary_link" = "Street"; -"type.highway.primary_link.bridge" = "Primary Road"; +"type.highway.primary_link.bridge" = "Street"; -"type.highway.primary_link.tunnel" = "Primary Road"; +"type.highway.primary_link.tunnel" = "Street"; "type.highway.raceway" = "Racetrack"; @@ -1860,141 +2145,108 @@ "type.highway.residential.tunnel" = "Street"; -"type.highway.rest_area" = "Rest Area"; +"type.highway.rest_area" = "Highway Rest Area"; -"type.highway.road" = "Road"; +"type.highway.road" = "Street"; -"type.highway.road.bridge" = "Road"; +"type.highway.road.bridge" = "Street"; -"type.highway.road.tunnel" = "Road"; +"type.highway.road.tunnel" = "Street"; -"type.highway.secondary" = "Secondary Road"; +"type.highway.secondary" = "Street"; -"type.highway.secondary.bridge" = "Secondary Road"; +"type.highway.secondary.bridge" = "Street"; -"type.highway.secondary.tunnel" = "Secondary Road"; +"type.highway.secondary.tunnel" = "Street"; -"type.highway.secondary_link" = "Secondary Road"; +"type.highway.secondary_link" = "Street"; -"type.highway.secondary_link.bridge" = "Secondary Road"; +"type.highway.secondary_link.bridge" = "Street"; -"type.highway.secondary_link.tunnel" = "Secondary Road"; +"type.highway.secondary_link.tunnel" = "Street"; -"type.highway.service" = "Service Road"; +"type.highway.service" = "Street"; -"type.highway.service.area" = "Service Road"; +"type.highway.service.area" = "Street"; -"type.highway.service.bridge" = "Service Road"; +"type.highway.service.bridge" = "Street"; -"type.highway.service.driveway" = "Service Road"; +"type.highway.service.driveway" = "Street"; -"type.highway.service.parking_aisle" = "Service Road"; +"type.highway.service.parking_aisle" = "Street"; -"type.highway.service.tunnel" = "Service Road"; +"type.highway.service.tunnel" = "Street"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Speed Camera"; -"type.highway.steps" = "Stairs"; +"type.highway.steps" = "Path"; -"type.highway.steps.bridge" = "Stairs"; +"type.highway.steps.bridge" = "Path"; -"type.highway.steps.tunnel" = "Stairs"; +"type.highway.steps.tunnel" = "Path"; -"type.highway.tertiary" = "Tertiary Road"; +"type.highway.tertiary" = "Street"; -"type.highway.tertiary.bridge" = "Tertiary Road"; +"type.highway.tertiary.bridge" = "Street"; -"type.highway.tertiary.tunnel" = "Tertiary Road"; +"type.highway.tertiary.tunnel" = "Street"; -"type.highway.tertiary_link" = "Tertiary Road"; +"type.highway.tertiary_link" = "Street"; -"type.highway.tertiary_link.bridge" = "Tertiary Road"; +"type.highway.tertiary_link.bridge" = "Street"; -"type.highway.tertiary_link.tunnel" = "Tertiary Road"; +"type.highway.tertiary_link.tunnel" = "Street"; -"type.highway.track" = "Track"; +"type.highway.track" = "Street"; -"type.highway.track.area" = "Track"; +"type.highway.track.area" = "Street"; -"type.highway.track.bridge" = "Track"; +"type.highway.track.bridge" = "Street"; -"type.highway.track.grade1" = "Track"; +"type.highway.track.grade1" = "Street"; -"type.highway.track.grade2" = "Track"; +"type.highway.track.grade2" = "Street"; -"type.highway.track.grade3" = "Track"; +"type.highway.track.grade3" = "Street"; -"type.highway.track.grade4" = "Track"; +"type.highway.track.grade4" = "Street"; -"type.highway.track.grade5" = "Track"; +"type.highway.track.grade5" = "Street"; -"type.highway.track.no.access" = "Track"; +"type.highway.track.no.access" = "Street"; -"type.highway.track.permissive" = "Track"; +"type.highway.track.permissive" = "Street"; -"type.highway.track.tunnel" = "Track"; +"type.highway.track.tunnel" = "Street"; "type.highway.traffic_signals" = "Traffic Lights"; -"type.highway.trunk" = "National Highway"; +"type.highway.trunk" = "Street"; -"type.highway.trunk.bridge" = "National Highway"; +"type.highway.trunk.bridge" = "Street"; -"type.highway.trunk.tunnel" = "National Highway"; +"type.highway.trunk.tunnel" = "Street"; -"type.highway.trunk_link" = "National Highway"; +"type.highway.trunk_link" = "Street"; -"type.highway.trunk_link.bridge" = "National Highway"; +"type.highway.trunk_link.bridge" = "Street"; -"type.highway.trunk_link.tunnel" = "National Highway"; +"type.highway.trunk_link.tunnel" = "Street"; -"type.highway.unclassified" = "Minor Road"; +"type.highway.unclassified" = "Street"; -"type.highway.unclassified.area" = "Minor Road"; +"type.highway.unclassified.area" = "Street"; -"type.highway.unclassified.bridge" = "Minor Road"; +"type.highway.unclassified.bridge" = "Street"; -"type.highway.unclassified.tunnel" = "Minor Road"; - -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Foot Path"; - -"type.area_highway.living_street" = "Living Street"; - -"type.area_highway.motorway" = "Motorway"; - -"type.area_highway.path" = "Path"; - -"type.area_highway.pedestrian" = "Pedestrian Street"; - -"type.area_highway.primary" = "Primary Road"; - -"type.area_highway.residential" = "Street"; - -"type.area_highway.secondary" = "Secondary Road"; - -"type.area_highway.service" = "Service Road"; - -"type.area_highway.tertiary" = "Tertiary Road"; - -"type.area_highway.steps" = "Stairs"; - -"type.area_highway.track" = "Track"; - -"type.area_highway.trunk" = "National Highway"; - -"type.area_highway.unclassified" = "Minor Road"; +"type.highway.unclassified.tunnel" = "Street"; "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Archaeological Site"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Water Park"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2313,7 +2563,7 @@ "type.natural.volcano" = "Volcano"; -"type.natural.water" = "Waterbody"; +"type.natural.water" = "Water body"; "type.natural.wetland" = "Tierra pantanosa"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capital"; -"type.place.city.capital.10" = "City"; +"type.place.city.capital.10" = "Capital"; -"type.place.city.capital.11" = "City"; +"type.place.city.capital.11" = "Capital"; "type.place.city.capital.2" = "Capital"; -"type.place.city.capital.3" = "City"; +"type.place.city.capital.3" = "Capital"; -"type.place.city.capital.4" = "City"; +"type.place.city.capital.4" = "Capital"; -"type.place.city.capital.5" = "City"; +"type.place.city.capital.5" = "Capital"; -"type.place.city.capital.6" = "City"; +"type.place.city.capital.6" = "Capital"; -"type.place.city.capital.7" = "City"; +"type.place.city.capital.7" = "Capital"; -"type.place.city.capital.8" = "City"; +"type.place.city.capital.8" = "Capital"; -"type.place.city.capital.9" = "City"; +"type.place.city.capital.9" = "Capital"; "type.place.continent" = "Continent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Building"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.stringsdict index 52412d7054..6b43e0fd4b 100644 --- a/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/es-MX.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -56,6 +56,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d lugares + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/es.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/es.lproj/Localizable.strings index d2cabf92a1..ac2b1521f5 100644 --- a/iphone/Maps/LocalizedStrings/es.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/es.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Atrás"; + /* Button text (should be short) */ "cancel" = "Cancelar"; @@ -17,6 +20,9 @@ "download_maps" = "Descargar mapas"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Error durante la descarga, iniciar otra vez"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Descargando…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Mapas"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Milla"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Buscar"; +/* Search box placeholder text */ +"search_map" = "Buscar en el mapa"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Sí"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "No se puede acceder a los servicios de localización. Por favor, activelo en los ajustes."; + /* View and button titles for accessibility */ "zoom_to_country" = "Mostrar en el mapa"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Error durante la descarga"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Intentar otra vez"; + "about_menu_title" = "Sobre Organic Maps"; +"connection_settings" = "Ajustes de conexión"; + "close" = "Cerrar"; +"unsupported_phone" = "La aplicación requiere OpenGL acelerado por hardware. Lamentablemente, su dispositivo no es compatible."; + "download" = "Descargar"; +"disconnect_usb_cable" = "Por favor desconectar el cable USB o insertar la memoria SD para usar Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Por favor liberar espacio en la memoria SD/almacenamiento USB para usar la aplicación"; + +"not_enough_memory" = "No hay suficiente memoria para iniciar la aplicación"; + +"download_resources" = "Antes de comenzar, permite que descarguemos en tu dispositivo un mapamundi general.\nSe requieren %@ de datos."; + +"download_resources_continue" = "Ir al mapa"; + +"downloading_country_can_proceed" = "Descargando %@. Puede ahora\nproceder al mapa"; + +"download_country_ask" = "Descargar %@?"; + +"update_country_ask" = "Actualizar %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pausar"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Continuar"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ la descarga ha fallado"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Agregar un grupo nuevo"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Mis lugares"; +/* Add bookmark dialog - bookmark name */ +"name" = "Nombre"; + /* Editor title above street and house number */ "address" = "Dirección"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Grupo"; + /* Settings button in system menu */ "settings" = "Configuración"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Guardar mapas en"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Seleccione el lugar donde deben descargarse los mapas"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "¿Mover mapas?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Esto podría tardar varios minutos.\nPor favor, espere…"; + /* Measurement units title in settings activity */ "measurement_units" = "Unidades de medida"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Elija entre millas y kilómetros"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Dónde comer"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Productos"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transporte"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Gasolinera"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Aparcamiento"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Compras"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Turismo"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Entretenimiento"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Cajero automático"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Vida nocturna"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Descanso con niños"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Banco"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Farmacia"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Hospital"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Baños"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Oficina de correos"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Policía"; +/* Notes field in Bookmarks view */ +"description" = "Notas"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Marcapáginas de Organic Maps compartidos contigo"; + "share_bookmarks_email_body" = "Hola!\n\Adjunto mis marcadores de la aplicación Organic Maps. Por favor, ábrelos si tienes instalado Organic Maps. O, si no lo tienes, descarga la aplicación para tu dispositivo iOS o Android siguiendo este link: https://omaps.app/get?kmz\n¡Disfruta viajando con Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Tu ubicación aún no ha sido determinada"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Lo sentimos, la configuración del almacenamiento de mapas está desactivada."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "La descarga del mapa está en curso ahora."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Mira mi ubicación actual en Organic Maps!. %1$@ o %2$@ ¿No tienes mapas offline? Descarga aquí: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Mira mi marcador en el mapa de Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Mira mi ubicación actual en el mapa en Organic Maps!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hola:\n\nAhora estoy aquí: %1$@. Haz clic en este enlace %2$@ o esta %3$@ para verlo en el mapa.\n\nGracias."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Compartir"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Copiado al portapapeles: %1$@"; + /* place preview title */ "info" = "Información"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Versión de datos: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "¿Seguro que desea continuar?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Rutas"; @@ -195,10 +283,18 @@ "share_my_location" = "Compartir mi ubicación"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Ajustes generales"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Información"; + "prefs_group_route" = "Navegación"; "pref_zoom_title" = "Botones de zoom"; +"pref_zoom_summary" = "Visualización en la pantalla"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Modo nocturno"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Idioma de voz"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "No disponible"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Otros"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Ayuda"; +/* Button in the main Help dialog */ +"faq" = "Preguntas frecuentes"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "¿Cómo apoyarnos?"; + /* Button in the main Help dialog */ "copyright" = "Derechos de autor"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Actualizar todos"; +/* Cancel all button text */ +"downloader_cancel_all" = "Cancelar todo"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Descargado"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Eliminar mapa"; +/* Item in context menu. */ +"downloader_update_map" = "Actualizar mapa"; + +/* Preference text */ +"pref_use_google_play" = "Usar los servicios de Google Play para obtener tu ubicación actual"; + /* Text for rating dialog */ "rating_just_rated" = "Acabo de calificar tu aplicación"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Para crear una ruta es necesario descargar y actualizar todos los mapas de la ubicación de destino."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "No hay suficiente espacio"; + /* bookmark button text */ "bookmark" = "marcador"; +/* location service disabled */ +"enable_location_services" = "Por favor, active los servicios de localización"; + "save" = "Guardar"; +"edit_description_hint" = "Tus descripciones (texto o html)"; + "create" = "crear"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Imposible de encontrar una ruta"; +"dialog_routing_cant_build_route" = "No se puede crear la ruta."; + "dialog_routing_change_start_or_end" = "Ajuste su punto de inicio o su destino."; "dialog_routing_change_start" = "Ajustar el punto de inicio"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Para empezar a buscar y crear rutas, descargue el mapa. Después de eso ya no necesitarás una conexión a Internet."; + +"search_select_map" = "Seleccionar el mapa"; + /* «Show» context menu */ "show" = "Mostrar"; @@ -521,6 +655,9 @@ "clear_search" = "Eliminar el historial de búsqueda"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Tu ubicación"; "p2p_start" = "Empezar"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "¿Quieres que planeemos un ruta desde tu ubicación actual?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Siguiente"; + "editor_time_add" = "Añadir horario"; "editor_time_delete" = "Eliminar horario"; @@ -556,14 +696,28 @@ "editor_example_values" = "Valores de ejemplo"; +"editor_correct_mistake" = "Corregir error"; + "editor_add_select_location" = "Ubicación"; "editor_done_dialog_1" = "Has cambiado el mapa del mundo. No te lo guardes para ti. Díselo a tus amigos y edítenlo juntos."; "share_with_friends" = "Compartir con amigos"; +"editor_report_problem_desription_1" = "Por favor, describe el problema en detalle para que la comunidad de OpenStreeMap pueda corregir el error."; + +"editor_report_problem_desription_2" = "O hazlo tú mismo en https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Enviar"; +"editor_report_problem_title" = "Problema"; + +"editor_report_problem_no_place_title" = "El lugar no existe"; + +"editor_report_problem_under_construction_title" = "Сerrado por mantenimiento"; + +"editor_report_problem_duplicate_place_title" = "Lugar duplicado"; + "autodownload" = "Descarga automática"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Añadir horarios de apertura"; +"edit_opening_hours" = "Editar los horarios de apertura"; + "no_osm_account" = "¿No tienes cuenta en OpenStreetMap?"; "register_at_openstreetmap" = "Registrarse en OSM"; @@ -592,6 +748,8 @@ "login" = "Iniciar sesión"; +"password" = "Contraseña"; + "forgot_password" = "¿Has olvidado tu contraseña?"; "osm_account" = "Cuenta OSM"; @@ -609,6 +767,8 @@ "add_language" = "Añadir un idioma"; +"street" = "Calle"; + /* Editable House Number text field (in address block). */ "house_number" = "Número de casa"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Añadir una calle"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Ingrese un nombre de calle"; + "choose_language" = "Elegir un idioma"; "choose_street" = "Elegir una calle"; @@ -632,12 +795,16 @@ "phone" = "Teléfono"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Aviso"; "downloader_delete_map_dialog" = "Todos los cambios en los mapas se borrarán junto con el mapa."; "downloader_update_maps" = "Autodescarga de mapas"; +"downloader_mwm_migration_dialog" = "Para crear una ruta, es necesario actualizar todos los mapas y volver a planificar la ruta."; + "downloader_search_field_hint" = "Buscar en el mapa"; "migration_download_error_dialog" = "Error de descarga"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Por favor, elimina los datos innecesarios"; +"editor_login_error_dialog" = "Error de inicio de sesión."; + "editor_profile_changes" = "Cambios verificados"; "editor_focus_map_on_location" = "Arrastra el mapa para seleccionar la ubicación correcta del objeto."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Categoría"; +"detailed_problem_description" = "Descripción detallada del problema"; + +"editor_report_problem_other_title" = "Un problema diferente"; + +"placepage_add_business_button" = "Añadir organización"; + "whatsnew_editor_message_1" = "Añadir lugares nuevos al mapa y editar los lugares actuales directamente desde la aplicación."; "dialog_incorrect_feature_position" = "Cambiar ubicación"; @@ -710,6 +885,8 @@ "editor_operator" = "Operador"; +"downloader_my_maps_title" = "Mis mapas"; + "downloader_no_downloaded_maps_title" = "No ha descargado ningún mapa"; "downloader_no_downloaded_maps_message" = "Descargue mapas para encontrar la ubicación y navegar sin conexión."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Descripción"; "placepage_more_button" = "Más"; +"placepage_more_reviews_button" = "Más comentarios"; + "book_button" = "Reservar"; "placepage_call_button" = "Llamar"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "El lugar no existe"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…más"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Introduce un email válido"; +"error_enter_correct_facebook_page" = "Introduce una dirección web, una cuenta o un nombre de página de Facebook válidos"; + +"error_enter_correct_instagram_page" = "Introduce una dirección web o un nombre de cuenta de Instagram válidos"; + +"error_enter_correct_twitter_page" = "Introduzca una dirección web o un nombre de usuario válido de Twitter"; + +"error_enter_correct_vk_page" = "Introduce una dirección web o un nombre de cuenta de VK válidos"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Actualizar"; "placepage_add_place_button" = "Añadir un lugar al mapa"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Declinar"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Lista"; "mobile_data_dialog" = "¿Usar Internet móvil para mostrar información detallada?"; @@ -848,12 +1044,16 @@ "big_font" = "Aumentar el tamaño de fuente en el mapa"; +"traffic_update_app" = "Por favor, actualice Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Para mostrar los datos de tráfico, debe actualizar la aplicación."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Los datos de tráfico no están disponibles"; +"enable_logging" = "Habilitar historial"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Opinión general"; @@ -861,14 +1061,24 @@ "off" = "Desact."; +"prefs_languages_information" = "Utilizamos el sistema TTS para las instrucciones de voz. Muchos dispositivos de Android usan Google TTS. Puede descargar o actualizarlo desde Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Para algunos idiomas, debe instalar otro sintetizador de voz o un paquete de idioma adicional desde la tienda de aplicaciones (Google Play, Samsung Apps). Abra los Ajustes de su dispositivo → Idioma e introducción → Voz → Opciones texto a voz. Aquí puede administrar la configuración de síntesis de voz (por ejemplo, descargar un paquete de idioma para poder usarlo sin conexión) o seleccionar otro motor de texto a voz."; + +"prefs_languages_information_off_link" = "Para obtener más información, consulte esta guía."; + "transliteration_title" = "Transliteración al latín"; +"learn_more" = "Leer más"; + "core_exit" = "Salir"; "routing_add_start_point" = "Buscar un origen para el plan de ruta"; "routing_add_finish_point" = "Buscar un destino para el plan de ruta"; +"button_exit" = "Salir"; + "planning_route_manage_route" = "Administrar ruta"; "button_plan" = "Planificar"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Vaya, se ha producido un error. Intente iniciar sesión de nuevo."; +"dialog_error_storage_title" = "Problema de acceso al almacenamiento"; + +"dialog_error_storage_message" = "El almacenamiento externo no está disponible; puede que se haya quitado o dañado la tarjeta SD, o el sistema de archivos solo permite lectura. Por favor, compruébelo ó escríbanos a support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emular almacenamiento dañado"; + "core_entrance" = "Entrada"; "error_enter_correct_name" = "Por favor, introduzca el nombre correcto"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Crear nueva lista"; +/* Bookmark categories screen */ +"bookmarks_import" = "Importar marcadores"; + "downloader_hide_screen" = "Ocultar pantalla"; "downloader_percent" = "%s (%s de %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "No se puede compartir una lista vacía"; +"bookmarks_error_title_empty_list_name" = "El nombre no puede estar vacío"; + "bookmarks_error_message_empty_list_name" = "Por favor ingrese el nombre de la lista"; +"bookmarks_new_list_hint" = "Lista nueva"; + "bookmarks_error_title_list_name_already_taken" = "Este nombre ya ha sido tomado"; +"bookmarks_error_message_list_name_already_taken" = "Por favor elige otro nombre"; + "bookmarks_error_title_list_name_too_long" = "Este nombre es demasiado largo"; +"please_wait" = "Por favor espera…"; + +"phone_number" = "Número de teléfono"; + "profile" = "Perfil de OpenStreetMap"; "bookmarks_detect_title" = "Nuevos archivos detectados"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "¿Restaurar esta versión?"; +"common_check_internet_connection_dialog_title" = "Sin conexión a Internet"; + "error_system_message" = "Ocurrió un error desconocido"; "restore" = "Restaurar"; +"subtittle_opt_out" = "Configuraciones de seguimiento"; + +"crash_reports" = "Informe de incidentes"; + +"crash_reports_description" = "Puede que utilicemos vuestros datos para mejorar la experiencia de Organic Maps. Los cambios tendrán efecto después que reinicie la aplicación."; + "privacy_policy" = "Política de Privacidad"; "terms_of_use" = "Condiciones de uso"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "El mapa del metro no está disponible"; +"bookmarks_empty_list_title" = "Esta lista está vacía"; + +"bookmarks_empty_list_message" = "Para agregar un marcador, toque un lugar en el mapa y después toque el ícono de estrella"; + +"category_desc_more" = "…más"; + "title_error_downloading_bookmarks" = "Se ha producido un error"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Ocultar en el mapa"; +"public_access" = "Acceso público"; + +"limited_access" = "Acceso privado"; + "bookmark_list_description_hint" = "Agregue una descripción (texto o html)"; +"not_shared" = "Privado"; + "tags_loading_error_subtitle" = "Durante la carga de las etiquetas, se produjo un error, por favor inténtelo de nuevo"; "download_button" = "Descargar"; @@ -972,6 +1221,9 @@ "place_description_title" = "Descripción del lugar"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Descargar mapas"; + "speedcams_notice_message" = "Auto - advierte sobre las cámaras de velocidad si existe el riesgo de exceder el límite de velocidad\nSiempre - siempre alerta sobre las cámaras\nNunca - nunca advierte acerca de las cámaras"; "power_managment_title" = "Modo de ahorro de energía"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Ahorro de energía máximo"; +"enable_logging_warning_message" = "Esta opción está habilitada para las acciones de registro con fines de diagnóstico. Esto ayuda a nuestro equipo a identificar problemas con la aplicación. Habilite la opción solo a petición del apoyo de Organic Maps."; + +"access_rules_author_only" = "Se edita en línea"; + "driving_options_title" = "Configuración de desvío"; "driving_options_subheader" = "Evitar en todas las rutas"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Ordenar…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Ordenar marcadores"; + /* iOS */ "sort_default" = "Ordenar por defecto"; @@ -1086,6 +1345,18 @@ "sort_date" = "Ordenar por fecha"; +/* Android */ +"by_default" = "Por defecto"; + +/* Android */ +"by_type" = "Por tipo"; + +/* Android */ +"by_distance" = "Por distancia"; + +/* Android */ +"by_date" = "Por fecha"; + "week_ago_sorttype" = "Hace una semana"; "month_ago_sorttype" = "Hace un mes"; @@ -1132,6 +1403,8 @@ "religious_places" = "Lugares sagrados"; +"select_list" = "Seleccionar lista"; + "transit_not_found" = "Navegación en Metro aún no disponible en esta región"; "dialog_pedestrian_route_is_long_header" = "Ruta de metro no encontrada"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Dificultad"; +"elevation_profile_distance" = "Distancia:"; + "elevation_profile_time" = "Lapso:"; "isolines_toast_zooms_1_10" = "Amplía el mapa para ver las isolíneas"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Cargando"; +"key_information_title" = "Información clave"; + +"download_map_title" = "Descarga mapa mundial"; + +"connection_failure" = "Problema de conexión"; + +"disconnect_usb_cable_title" = "Desconecte el cable USB"; + +"enable_screen_sleep" = "Permitir que la pantalla duerma"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Cuando está habilitado, la pantalla podrá dormir después de un período de inactividad."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Actualice sus mapas descargados"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Laboratorio médico"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Parada de autobús"; "type.highway.construction" = "Carretera en construcción"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Calle"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Radar de velocidad"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Calle"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Camino"; - -"type.area_highway.living_street" = "Calle"; - -"type.area_highway.motorway" = "Calle"; - -"type.area_highway.path" = "Camino"; - -"type.area_highway.pedestrian" = "Calle"; - -"type.area_highway.primary" = "Calle"; - -"type.area_highway.residential" = "Calle"; - -"type.area_highway.secondary" = "Calle"; - -"type.area_highway.service" = "Calle"; - -"type.area_highway.tertiary" = "Calle"; - -"type.area_highway.steps" = "Camino"; - -"type.area_highway.track" = "Calle"; - -"type.area_highway.trunk" = "Calle"; - -"type.area_highway.unclassified" = "Calle"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Yacimiento arqueológico"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Parque acuático"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capital"; -"type.place.city.capital.10" = "Ciudad"; +"type.place.city.capital.10" = "Capital"; -"type.place.city.capital.11" = "Ciudad"; +"type.place.city.capital.11" = "Capital"; "type.place.city.capital.2" = "Capital"; -"type.place.city.capital.3" = "Ciudad"; +"type.place.city.capital.3" = "Capital"; -"type.place.city.capital.4" = "Ciudad"; +"type.place.city.capital.4" = "Capital"; -"type.place.city.capital.5" = "Ciudad"; +"type.place.city.capital.5" = "Capital"; -"type.place.city.capital.6" = "Ciudad"; +"type.place.city.capital.6" = "Capital"; -"type.place.city.capital.7" = "Ciudad"; +"type.place.city.capital.7" = "Capital"; -"type.place.city.capital.8" = "Ciudad"; +"type.place.city.capital.8" = "Capital"; -"type.place.city.capital.9" = "Ciudad"; +"type.place.city.capital.9" = "Capital"; "type.place.continent" = "Continente"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Edificio"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/es.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/es.lproj/Localizable.stringsdict index 2993ed58a3..5ff0c530a1 100644 --- a/iphone/Maps/LocalizedStrings/es.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/es.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -58,6 +58,23 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + one + %d lugar + other + %d lugares + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.strings index 408709cd9b..468b17e152 100644 --- a/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "بازگشت"; + /* Button text (should be short) */ "cancel" = "لغو"; @@ -17,6 +20,9 @@ "download_maps" = "دانلود نقشه ها"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "دانلود ناموفق بود . برای تلاش مجدد لمس کنید"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "درحال دانلود"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "نقشه ها"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "مگابایت"; + +"gb" = "گیگابایت"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "مایل"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "جست‌وجو"; +/* Search box placeholder text */ +"search_map" = "جست‌وجوی نقشه"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "بله"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "سرویس موقعیت مکانی شما غیر فعال است .لطفا جهت کارکرد صحیح نرم افزار ان را فعال کنید."; + /* View and button titles for accessibility */ "zoom_to_country" = "بر روی نقشه نمایش بده"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "دانلود با شکست مواجه شد"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "تلاش مجدد"; + "about_menu_title" = "Organic Maps درباره‌ی"; +"connection_settings" = "تنظیمات اتصال"; + "close" = "بستن"; +"unsupported_phone" = "نیازمند است. متاسفانه دستگاه شما از ان پشتیبانی نمی کندOpenGLبرنامه برای اجرا به"; + "download" = "دانلود"; +"disconnect_usb_cable" = "Please disconnect USB cable or insert memory card to use Organic Maps"; + +"not_enough_free_space_on_sdcard" = "لطفا مقداری از فضای ذخیره سازی را آزاد نمایید"; + +"not_enough_memory" = "حافظه کافی برای اجرای برنامه وجود ندارد"; + +"download_resources" = "قبل از استفاده از اپلیکیشن, اجازه دهید تا ما نقشه جهانی را بر روی موبایل شما دانلود کنیم.\nمقدار %@ از حافظه شما اشغال می شود."; + +"download_resources_continue" = "برو به نقشه"; + +"downloading_country_can_proceed" = "درحال دانلود %@. شما اکنون می توانید\nبه نقشه بروید."; + +"download_country_ask" = "دانلود %@?"; + +"update_country_ask" = "اپدیت %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "مکث"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "ادامه"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ دانلود با شکست مواجه شد"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "اضافه کردن مجموعه جدید"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "مکان من"; +/* Add bookmark dialog - bookmark name */ +"name" = "نام"; + /* Editor title above street and house number */ "address" = "ادرس"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "مجموعه"; + /* Settings button in system menu */ "settings" = "تنظیمات"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "ذخیره نقشه ها در"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "مسیری را که نقشه ها باید در ان دانلود شود را انتخاب کنید"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "ایا نقشه ها جابه جا شود؟"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "ممکن است چند دقیقه طول بکشد.\nلطفا صبر کنید…"; + /* Measurement units title in settings activity */ "measurement_units" = "واحد اندازه گیری"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "بین مایل و کیلومتر انتخاب کنید"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "کجا غذا بخوریم"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "عطاری"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "حمل و نقل"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "سوخت"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "پارکینگ"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "خرید کردن"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "هتل"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "منظره"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "سرگرمی"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "خود پرداز"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "تفریحات شبانه"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "تعطیلات خانوادگی"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "بانک"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "داروخانه"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "بیمارستان"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "توالت"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "صندوق پست"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "پلیس"; +/* Notes field in Bookmarks view */ +"description" = "یادداشت ها"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Organic Maps bookmarks were shared with you"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "مکان شما هنوز مشخص نشده است"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "متاسفانه,تنظیمات ذخیره سازی نقشه در حال حاظر غیر فعال است"; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "دانلود نقشه اکنون در حال انجام است"; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hey, check out my current location in Organic Maps! %1$@ or %2$@ Don't have offline maps? Download here: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hey, check out my pin in Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hey, check out my current location on the Organic Maps map!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hi,\n\nI'm here now: %1$@. Click this link %2$@ or this one %3$@ to see the place on the map.\n\nThanks."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "اشتراک گذاری"; /* Share by email button text, also used in editor. */ "email" = "ایمیل"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "کپی در کلیپ برد :%1$@"; + /* place preview title */ "info" = "اطلاعات"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "ورژن داده: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "برای ادامه کار مطمئن اید؟"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "مسیر"; @@ -195,10 +283,18 @@ "share_my_location" = "به اشتراک گذاری موقعیت مکانی من"; +/* Settings general group in settings screen */ +"prefs_group_general" = "تنظیمات عمومی"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "اطلاعات"; + "prefs_group_route" = "مسیریابی"; "pref_zoom_title" = "دکمه های درشت نمایی"; +"pref_zoom_summary" = "نمایش بر روی نقشه"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "حالت شب"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "زبان صوت"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "موجود نیست"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "بیشتر"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "کمک"; +/* Button in the main Help dialog */ +"faq" = "ﺦﺳﺎﭘ ﻭ ﺶﺳﺮﭘ"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "چگونه از ما حمایت کنیم؟"; + /* Button in the main Help dialog */ "copyright" = "حق نشر و کپی رایت"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "اپدیت همه"; +/* Cancel all button text */ +"downloader_cancel_all" = "لغو همه"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "دانلود شده"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "حذف نقشه"; +/* Item in context menu. */ +"downloader_update_map" = "به روز رسانی نقشه"; + +/* Preference text */ +"pref_use_google_play" = "استفاده از Google Play Services برای تعیین موقعیت کنونی شما"; + /* Text for rating dialog */ "rating_just_rated" = "I’ve just rated your app"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "به منظور ایجاد مسیر ما نیاز داریم تا تمامی نقشه های شما از مبدا تا مقصد را به روز رسانی کنیم."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "فضای کافی موجود نیست"; + /* bookmark button text */ "bookmark" = "نشانه ها"; +/* location service disabled */ +"enable_location_services" = "لطفا موقعیت مکانی(GPS)خود را فعال کنید."; + "save" = "ذخیره"; +"edit_description_hint" = "توضیحات شما (متن یا (html"; + "create" = "ایجاد"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "ناتوان در تعیین مسیر"; +"dialog_routing_cant_build_route" = "ناتوان در ایجاد مسیر"; + "dialog_routing_change_start_or_end" = "لطفا مبدا یا مقصد خود را تنظیم کنید."; "dialog_routing_change_start" = "مبدا خود را تنظیم کنید"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "برای شروع جستوجو و مسیر یابی لطفا نقشه رادانلود کنید بعد از ان دیگر نیازی به اتصال به اینترنت ندارید و برنامه کاملا افلاین اجرا می شود."; + +"search_select_map" = "انتخاب نقشه"; + /* «Show» context menu */ "show" = "نمایش"; @@ -521,6 +655,9 @@ "clear_search" = "پاک کردن سابقه جست وجو ها"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "ویکی پدیا"; + "p2p_your_location" = "موقعیت شما"; "p2p_start" = "شروع"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "ایا می خواهید یک مسیر را از موقعیت فعلیتان برنامه ریزی کنیم؟"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "بعدی"; + "editor_time_add" = "اضافه کردن برنامه ریزی"; "editor_time_delete" = "حذف کردن برنامه ریزی"; @@ -556,14 +696,28 @@ "editor_example_values" = "مقادیر پیش فرض"; +"editor_correct_mistake" = "تصحیح خطا"; + "editor_add_select_location" = "موقعیت"; "editor_done_dialog_1" = "شما نقشه جهان را تغییر دادید.این افتخار را پیش خود نگه ندارید!به دوستانتان درموردش بگویید و با یکدیگر ویرایش کنید."; "share_with_friends" = "اشتراک گذاری با دوستان"; +"editor_report_problem_desription_1" = "لطفا مشکلتان را با جزئیات توضیح دهید بطوری که انجمن OSM بتوانند ان را برطرف کنند."; + +"editor_report_problem_desription_2" = "یا خودتان ان را انجام دهید در وبسایت https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "ارسال"; +"editor_report_problem_title" = "مشکل"; + +"editor_report_problem_no_place_title" = "مکان وجود ندارد"; + +"editor_report_problem_under_construction_title" = "به علت تعمییرات بسته است"; + +"editor_report_problem_duplicate_place_title" = "مکان تکراری"; + "autodownload" = "دانلود خودکار"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "اضافه کردن ساعت بازگشایی"; +"edit_opening_hours" = "ویرایش ساعت کاری"; + "no_osm_account" = "ایا حساب OpenStreetMap ندارید؟"; "register_at_openstreetmap" = "ثبت نام در OSM"; @@ -592,6 +748,8 @@ "login" = "ورود"; +"password" = "رمز عبور"; + "forgot_password" = "رمز عبور خود را فراموش کردید؟"; "osm_account" = "حساب OSM"; @@ -609,6 +767,8 @@ "add_language" = "افزودن یک زبان"; +"street" = "خیابان"; + /* Editable House Number text field (in address block). */ "house_number" = "شماره ساختمان"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "اضافه کردن خیابان"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "ﺪﯿﻨﮐ ﺩﺭﺍﻭ ﺍﺭ ﻥﺎﺑﺎﯿﺧ ﻡﺎﻧ"; + "choose_language" = "انتخاب یک زبان"; "choose_street" = "انتخاب یک خیابان"; @@ -632,12 +795,16 @@ "phone" = "تلفن"; +"editor_add_phone" = "Add Phone"; + "please_note" = "لطفا توجه داشته باشد"; "downloader_delete_map_dialog" = "تمام ویرایش های که بر روی نقشه انجام داده اید به همراه نقشه حذف شد."; "downloader_update_maps" = "بروزرسانی نقشه ها"; +"downloader_mwm_migration_dialog" = "برای ایجاد مسیر شما نیازمند بروزرسانی تمامی نقشه ها هستید سپس می توانید دوباره مسیرتان را برنامه ریزی کنید"; + "downloader_search_field_hint" = "یافتن نقشه"; "migration_download_error_dialog" = "خطا در دانلود"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "لطفا داده های غیر ضروری را از دستگاه خود حذف کنید"; +"editor_login_error_dialog" = "خطای ورود"; + "editor_profile_changes" = "تغییرات تایید شد"; "editor_focus_map_on_location" = "برای انتخاب مکان صحیح شئی نقشه را بکشید."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "دسته بندی"; +"detailed_problem_description" = "توضیح مفصل در مورد مشکل"; + +"editor_report_problem_other_title" = "مشکلی دیگر"; + +"placepage_add_business_button" = "اضافه کردن یک تجارت"; + "whatsnew_editor_message_1" = "اضافه کردن مکان به نقشه و ویرایش ان مستقیما از طریق این اپلیکیشن."; "dialog_incorrect_feature_position" = "تغییر موقعیت"; @@ -710,6 +885,8 @@ "editor_operator" = "مالک"; +"downloader_my_maps_title" = "نقشه های من"; + "downloader_no_downloaded_maps_title" = "شما هیچ نقشه دانلود شده ای ندارید"; "downloader_no_downloaded_maps_message" = "برای جست وجو یک مکان و استفاده از قابلیت ناوبری, نقشه ها را دانلود کنید."; @@ -751,10 +928,16 @@ "miles_per_hour" = "مایل بر ساعت (mph)"; +"hour" = "ساعت"; + +"minute" = "دقیقه"; + "placepage_place_description" = "توضیحات"; "placepage_more_button" = "بیشتر"; +"placepage_more_reviews_button" = "نقدهای دیگر"; + "book_button" = "رزرو"; "placepage_call_button" = "تماس"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "مکان وجود ندارد"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "بیشتر…."; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "ایمیل معتبری وارد نمایید"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "بروزرسانی"; "placepage_add_place_button" = "اضافه کردن یک مکان به نقشه"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "کاهش"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "لیست"; "mobile_data_dialog" = "از دیتای موبایل برای نمایش اطلاعات بیشتر استفاده شود؟"; @@ -848,12 +1044,16 @@ "big_font" = "افزایش اندازه متن بر روی نقشه"; +"traffic_update_app" = "لطفا Organic Maps را بروزرسانی کنید"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "برای نمایش ترافیک باید اپلیکیشن را بروزرسانی کنید."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "اطلاعات ترافیکی موجود نیست"; +"enable_logging" = "ورود به سیستم را فعال کنید"; + /* Settings: "Send general feedback" button */ "feedback_general" = "\"تنظیمات: دکمه \"ارسال بازخورد کلی"; @@ -861,14 +1061,24 @@ "off" = "خاموش"; +"prefs_languages_information" = "ما از TTS سیستم برای دستورالعمل های صوتی استفاده می کنیم. بسیاری از دستگاه های Android از Google TTS استفاده می کنند، شما می توانید آن را از Google Play دانلود کنید (https://play.google.com/store/apps/details؟id=com.google.android.tts)"; + +"prefs_languages_information_off" = "برای بعضی از زبان ها، شما باید speech synthesizer یا یک بسته زبان دیگر را از فروشگاه برنامه (بازار Google Play، Samsung Apps) نصب کنید. \n تنظیمات دستگاه خود را باز کنید. → زبان و ورودی → گفتار → خروجی متن به گفتار. می توانید تنظیمات برای ترکیب گفتار (به عنوان مثال، بسته های زبان را برای استفاده آفلاین دانلود کنید) را مدیریت کنید و یک موتور دیگر متن به گفتار را انتخاب کنید."; + +"prefs_languages_information_off_link" = "برای اطلاعات بیشتر لطفا این راهنما را بررسی کنید."; + "transliteration_title" = "ترجمه به لاتین"; +"learn_more" = "بیشتر بدانید"; + "core_exit" = "خروج"; "routing_add_start_point" = "یک نقطه شروع برای برنامه ریزی یک مسیر اضافه کنید"; "routing_add_finish_point" = "یک مقصد برای برنامه ریزی یک مسیر اضافه کنید"; +"button_exit" = "خروج"; + "planning_route_manage_route" = "مدیریت مسیر"; "button_plan" = "برنامه"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "اوه، یک خطا وجود داشت سعی کنید دوباره وارد سیستم شوید"; +"dialog_error_storage_title" = "مشکل دسترسی به ذخیره سازی"; + +"dialog_error_storage_message" = "ذخیره سازی خارجی در دسترس نیست کارت SD ممکن است برداشته شده باشد، آسیب دیده باشد یا سیستم فایل فقط خواندنی باشد. لطفا کارت SD خود را بررسی کنید یا با ما در support@organicmaps.app تماس بگیرید"; + +"setting_emulate_bad_storage" = "شبیه سازی ذخیره سازی بد"; + "core_entrance" = "ورودی"; "error_enter_correct_name" = "لطفا نام صحیح را وارد کنید"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "ایجاد لیست جدید"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "پنهان کردن صفحه"; "downloader_percent" = "%s (%s از %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "یک لیست خالی را نمی توان به اشتراک گذاشت"; +"bookmarks_error_title_empty_list_name" = "نام نمیتواند خالی باشد"; + "bookmarks_error_message_empty_list_name" = "لطفا نام لیست را وارد کنید"; +"bookmarks_new_list_hint" = "لیست جدید"; + "bookmarks_error_title_list_name_already_taken" = "این اسم قبلا انتخاب شده است"; +"bookmarks_error_message_list_name_already_taken" = "لطفا نام دیگری را انتخاب کنید"; + "bookmarks_error_title_list_name_too_long" = "این نام خیلی طولانی است"; +"please_wait" = "لطفا صبر کنید…"; + +"phone_number" = "شماره تلفن"; + "profile" = "OpenStreetMap نمایه"; "bookmarks_detect_title" = "فایل‌های جدید پیدا شد"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "این نسخه برگردد؟"; +"common_check_internet_connection_dialog_title" = "اتصال اینترنتی برقرار نیست"; + "error_system_message" = "خطای ناشناخته‌ای رخ داد"; "restore" = "بازیابی"; +"subtittle_opt_out" = "تنظیمات ردیابی"; + +"crash_reports" = "گزارش خرابی"; + +"crash_reports_description" = "ما از داده‌های شما برای بهبود Organic Maps استفاده می‌کنیم. تغییرات پس از راه‌اندازی مجدد برنامه به‌کار می‌افتد."; + "privacy_policy" = "سیاست حریم خصوصی"; "terms_of_use" = "شرایط استفاده"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "نقشه مترو موجود نیست"; +"bookmarks_empty_list_title" = "این لیست خالی است"; + +"bookmarks_empty_list_message" = "برای افزودن یک نشانه، روی یک مکان روی نقشه ضربه بزنید و سپس روی نماد ستاره ضربه بزنید"; + +"category_desc_more" = "بیشتر…"; + "title_error_downloading_bookmarks" = "خطایی رخ داد"; "popular_place" = "مشهور"; @@ -956,8 +1199,14 @@ "hide_from_map" = "پنهان کردن از نقشه"; +"public_access" = "دسترسی عمومی"; + +"limited_access" = "دسترسی محدود"; + "bookmark_list_description_hint" = "یک توضیح (متن یا html) تایپ نمایید"; +"not_shared" = "خصوصی"; + "tags_loading_error_subtitle" = "هنگام بارگذاری برچسب خطایی رخ داد، لطفا دوباره امتحان کنید"; "download_button" = "دانلود"; @@ -972,6 +1221,9 @@ "place_description_title" = "توضیحات محل"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "دانلود کننده نقشه"; + "speedcams_notice_message" = "خودکار- در صورتی که خطر تجاوز از سرعت مجاز وجود داشت، نسبت به دوربین های کنترل سرعت هشدار دهد\nهمیشه-همیشه درباره دوربین های کنترل سرعت هشدار دهد\nهرگز-هرگز درباره دوربین های کنترل سرعت هشدار ندهد"; "power_managment_title" = "حالت ذخیره انرژی"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "حداکثر ذخیره انرژی"; +"enable_logging_warning_message" = "این گزینه ثبت گزارش را برای اهداف تشخیصی فعال می‌کند. برای کارکنان بخش پشتیبانی که مشکلات برنامه را عیب یابی می‌کنند، مفید باشد. این گزینه را تنها در صورت درخواست پشتیبانی Organic Maps فعال کنید."; + +"access_rules_author_only" = "ویرایش آنلاین"; + "driving_options_title" = "گزینه های رانندگی"; "driving_options_subheader" = "اجتناب از تمامی مسیرها"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "مرتب سازی…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "مرتب سازی نشانهها"; + /* iOS */ "sort_default" = "مرتب سازی بر اساس پیش فرض"; @@ -1086,6 +1345,18 @@ "sort_date" = "مرتب سازی بر اساس تاریخ"; +/* Android */ +"by_default" = "به صورت پیش فرض"; + +/* Android */ +"by_type" = "بر اساس تاریخ"; + +/* Android */ +"by_distance" = "بر اساس فاصله"; + +/* Android */ +"by_date" = "بر اساس تاریخ"; + "week_ago_sorttype" = "یک هفته قبل"; "month_ago_sorttype" = "یک ماه قبل"; @@ -1132,6 +1403,8 @@ "religious_places" = "اماکن مقدس"; +"select_list" = "انتخاب فهرست"; + "transit_not_found" = "راهنمای مترو در این منطقه هنوز دردسترس نیست"; "dialog_pedestrian_route_is_long_header" = "مسیر مترو یافت نشد"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "دشواری"; +"elevation_profile_distance" = "مسافت"; + "elevation_profile_time" = "زمان:"; "isolines_toast_zooms_1_10" = "برای بررسی خطوط تراز زوم کنید"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "در حال دانلود"; +"key_information_title" = "اطلاعات کلیدی"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "اجازه دهید صفحه نمایش بخوابد"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "درصورت فعال بودن ، بعد از یک دوره عدم فعالیت به صفحه اجازه خواب داده می شود."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "نقشه های دانلود شده خود را به روز کنید"; @@ -1415,7 +1703,7 @@ "type.amenity.theatre" = "سرگرمی"; -"type.amenity.toilets" = "دستشویی"; +"type.amenity.toilets" = "دستشویی^"; "type.amenity.townhall" = "گردشگری"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "ﯽﮑﺷﺰﭘ ﻩﺎﮕﺸﯾﺎﻣﺯﺁ"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "حمل و نقل"; "type.highway.construction" = "جاده در دست ساخت است"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1860,7 +2145,7 @@ "type.highway.residential.tunnel" = "جاده"; -"type.highway.rest_area" = "Rest Area"; +"type.highway.rest_area" = "Highway Rest Area"; "type.highway.road" = "جاده"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "جاده"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "دوربین سرعت سنج"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "جاده"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "مسیر"; - -"type.area_highway.living_street" = "جاده"; - -"type.area_highway.motorway" = "جاده"; - -"type.area_highway.path" = "مسیر"; - -"type.area_highway.pedestrian" = "جاده"; - -"type.area_highway.primary" = "جاده"; - -"type.area_highway.residential" = "جاده"; - -"type.area_highway.secondary" = "جاده"; - -"type.area_highway.service" = "جاده"; - -"type.area_highway.tertiary" = "جاده"; - -"type.area_highway.steps" = "مسیر"; - -"type.area_highway.track" = "جاده"; - -"type.area_highway.trunk" = "جاده"; - -"type.area_highway.unclassified" = "جاده"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "گردشگری"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "گردشگری"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "پایتخت"; -"type.place.city.capital.10" = "شهر"; +"type.place.city.capital.10" = "پایتخت"; -"type.place.city.capital.11" = "شهر"; +"type.place.city.capital.11" = "پایتخت"; "type.place.city.capital.2" = "پایتخت"; -"type.place.city.capital.3" = "شهر"; +"type.place.city.capital.3" = "پایتخت"; -"type.place.city.capital.4" = "شهر"; +"type.place.city.capital.4" = "پایتخت"; -"type.place.city.capital.5" = "شهر"; +"type.place.city.capital.5" = "پایتخت"; -"type.place.city.capital.6" = "شهر"; +"type.place.city.capital.6" = "پایتخت"; -"type.place.city.capital.7" = "شهر"; +"type.place.city.capital.7" = "پایتخت"; -"type.place.city.capital.8" = "شهر"; +"type.place.city.capital.8" = "پایتخت"; -"type.place.city.capital.9" = "شهر"; +"type.place.city.capital.9" = "پایتخت"; "type.place.continent" = "قاره"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "ساختما"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.stringsdict index 1ebf9fcf89..adf4712024 100644 --- a/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/fa.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -60,6 +60,23 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + one + %d مکان + other + %d مکان + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.strings index e95078e4ed..634a7ca781 100644 --- a/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Takaisin"; + /* Button text (should be short) */ "cancel" = "Peruuta"; @@ -17,6 +20,9 @@ "download_maps" = "Lataa karttoja"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Lataus epäonnistui, yritä uudelleen koskettamalla"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Ladataan…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Kartat"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "Mt"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Mailit"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Haku"; +/* Search box placeholder text */ +"search_map" = "Hae kartalta"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Kyllä"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Laitteen tai sovelluksen kaikki sijaintipalvelut ovat tällä hetkellä poissa käytöstä. Ota ne käyttöön Asetukset-valikossa."; + /* View and button titles for accessibility */ "zoom_to_country" = "Näytä kartalla"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Lataus epäonnistui"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Yritä uudelleen"; + "about_menu_title" = "Tietoa Organic Maps:stä"; +"connection_settings" = "Yhteysasetukset"; + "close" = "Sulje"; +"unsupported_phone" = "Laitteistokiihdytetty OpenGL vaaditaan. Valitettavasti laitteesi ei ole tuettu."; + "download" = "Lataa"; +"disconnect_usb_cable" = "Irrota USB-kaapeli tai syötä muistikortti käyttääksesi Organic Maps -sovellusta"; + +"not_enough_free_space_on_sdcard" = "Vapauta ensin tilaa SD-kortilta/USB-massamuistilta käyttääksesi sovellusta"; + +"not_enough_memory" = "Ei tarpeeksi muistia sovelluksen avaamiseksi"; + +"download_resources" = "Ennen aloitusta laitteelle tulee ladata yleinen maailmankartta.\nSe tarvitsee yhteensä %@ dataa."; + +"download_resources_continue" = "Siirry karttaan"; + +"downloading_country_can_proceed" = "Ladataan %@. Voit nyt jatkaa kartalle."; + +"download_country_ask" = "Ladataanko %@?"; + +"update_country_ask" = "Päivitetäänkö %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pysäytä"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Jatka"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ lataus epäonnistui"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Lisää uusi valikoima"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Paikkani"; +/* Add bookmark dialog - bookmark name */ +"name" = "Nimi"; + /* Editor title above street and house number */ "address" = "Osoite"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Aseta"; + /* Settings button in system menu */ "settings" = "Asetukset"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Tallenna kartat kohteeseen"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Valitse karttojen latauskohde"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Siirrä karttoja?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Tämä voi kestää useita minuutteja.\nOdota hetki…"; + /* Measurement units title in settings activity */ "measurement_units" = "Mittayksiköt"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Valitse mailit tai kilometrit"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Missä syödä"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Elintarvikkeet"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Liikenne"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Huoltoasema"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parkkipaikka"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Ostokset"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotelli"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Nähtävyydet"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Viihde"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Pankkiautomaatti"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Yöelämä"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Vapaa-aikaa lasten kanssa"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Pankki"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Apteekki"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Sairaala"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "WC"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Posti"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Poliisi"; +/* Notes field in Bookmarks view */ +"description" = "Muistiinpanot"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Jaetut Organic Maps-kirjanmerkit"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Sijaintiasi ei ole vielä määritetty"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Valitettavasti karttatallennusasetukset ovat pois päältä."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Maata ladataan parhaillaan."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hei, katso sijaintini Organic Maps-sovelluksessa! %1$@ tai %2$@ Eikö sinulla ole vielä offline-karttoja? Lataa ne täältä: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hei, katso merkintäni Organic Maps-kartalla"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hei, kurkkaa tämänhetkinen sijaintini Organic Maps:n kartalla!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hei,n\nOlen nyt täällä: %1$@. Klikkaa linkkiä %2$@ tai %3$@ nähdäksesi paikan kartalla. Kiitos."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Jaa"; /* Share by email button text, also used in editor. */ "email" = "Sähköposti"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Kopioitu leikepöydälle: %1$@"; + /* place preview title */ "info" = "Tietoa"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Oletko varma että haluat jatkaa?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Reitit"; @@ -195,10 +283,18 @@ "share_my_location" = "Jaa sijaintini"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Yleiset asetukset"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Tietoja"; + "prefs_group_route" = "Navigaatio"; "pref_zoom_title" = "Zoomauspainikkeet"; +"pref_zoom_summary" = "Näytä ruudulla"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Yötila"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Äänen kieli"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Ei saatavilla"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Muu"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Ohje"; +/* Button in the main Help dialog */ +"faq" = "Kysymykset ja vastaukset"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Kuinka tukea meitä?"; + /* Button in the main Help dialog */ "copyright" = "Tekijänoikeudet"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Päivitä kaikki"; +/* Cancel all button text */ +"downloader_cancel_all" = "Peruuta kaikki"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Ladatut"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Poista kartta"; +/* Item in context menu. */ +"downloader_update_map" = "Päivitä kartta"; + +/* Preference text */ +"pref_use_google_play" = "Käytä Google Play -palveluita sijaintisi selvittämiseksi"; + /* Text for rating dialog */ "rating_just_rated" = "Olen juuri arvostellut sovelluksesi."; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Reitin luominen vaatii karttojen lataamisen ja päivityksen oman sijaintisi ja kohteeen väliltä."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Ei tarpeeksi tilaa"; + /* bookmark button text */ "bookmark" = "kirjanmerkki"; +/* location service disabled */ +"enable_location_services" = "Ota sijaintipalvelut käyttöön"; + "save" = "Tallenna"; +"edit_description_hint" = "Kuvauksesi (teksti tai html)"; + "create" = "luo"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Reitin paikannus ei onnistu"; +"dialog_routing_cant_build_route" = "Reitin luonti ei onnistu."; + "dialog_routing_change_start_or_end" = "Muuta aloituskohtaa tai määränpäätä."; "dialog_routing_change_start" = "Muuta aloituskohtaa"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Lataa kartta jotta voit käyttää hakua ja luoda reittejä. Tämän jälkeen et tarvitse enää Internet-yhteyttä."; + +"search_select_map" = "Valitse kartta"; + /* «Show» context menu */ "show" = "Näytä"; @@ -521,6 +655,9 @@ "clear_search" = "Poista hakuhistoria"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Sijaintisi"; "p2p_start" = "Aloita"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Haluatko valita vaihtoehtoisen reitin?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Seuraava"; + "editor_time_add" = "Lisää aikataulu"; "editor_time_delete" = "Poista aikataulu"; @@ -556,14 +696,28 @@ "editor_example_values" = "Esimerkkiarvot"; +"editor_correct_mistake" = "Korjaa virhe"; + "editor_add_select_location" = "Sijainti"; "editor_done_dialog_1" = "Olet muuttanut maailmankarttaa. Älä piilota tätä! Kerro ystävillesi ja muokatkaa sitä yhdessä."; "share_with_friends" = "Jaa kavereille"; +"editor_report_problem_desription_1" = "Kuvaile ongelmaa yksityiskohtaisesti, jotta OpenStreetMap-yhteisö voi korjata vian."; + +"editor_report_problem_desription_2" = "Tai tee se itse osoitteessa https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Lähetä"; +"editor_report_problem_title" = "Ongelma"; + +"editor_report_problem_no_place_title" = "Paikkaa ei ole olemassa"; + +"editor_report_problem_under_construction_title" = "Suljettu huoltoa varten"; + +"editor_report_problem_duplicate_place_title" = "Paikan kaksoiskappale"; + "autodownload" = "Lataa automaattisesti"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Lisää aukioloajat"; +"edit_opening_hours" = "Muokkaa aukioloaikoja"; + "no_osm_account" = "Eikö sinulla ole OpenStreetMap tiliä?"; "register_at_openstreetmap" = "Rekisteröidy"; @@ -592,6 +748,8 @@ "login" = "Kirjaudu sisään"; +"password" = "Salasana"; + "forgot_password" = "Unohtuiko salasana?"; "osm_account" = "OSM-tili"; @@ -609,6 +767,8 @@ "add_language" = "Lisää kieli"; +"street" = "Katu"; + /* Editable House Number text field (in address block). */ "house_number" = "Talon numero"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Lisää katu"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Valitse kieli"; "choose_street" = "Valitse katu"; @@ -632,12 +795,16 @@ "phone" = "Puhelinnumero"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Huomaathan, että"; "downloader_delete_map_dialog" = "Kaikki karttaan tehdyt muutokset poistetaan kartan mukana."; "downloader_update_maps" = "Päivitä kartat"; +"downloader_mwm_migration_dialog" = "Sinun täytyy päivittää kaikki kartat ja suunnitella reitti uudelleen luodaksesi uuden reitin."; + "downloader_search_field_hint" = "Etsi kartta"; "migration_download_error_dialog" = "Latausvirhe"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Poista tarpeeton data"; +"editor_login_error_dialog" = "Kirjautumisvirhe."; + "editor_profile_changes" = "Vahvistetut karttamuutokset"; "editor_focus_map_on_location" = "Vedä karttaa valitaksesi kohteelle oikean sijainnin."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategoria"; +"detailed_problem_description" = "Ongelman tarkka kuvaus"; + +"editor_report_problem_other_title" = "Eri ongelma"; + +"placepage_add_business_button" = "Lisää organisaatio"; + "whatsnew_editor_message_1" = "Lisää karttaan uusia paikkoja ja muokkaa sovelluksessa olevia karttoja suoraan sovelluksessa."; "dialog_incorrect_feature_position" = "Vaihda sijaintia"; @@ -710,6 +885,8 @@ "editor_operator" = "Operaattori"; +"downloader_my_maps_title" = "Omat kartat"; + "downloader_no_downloaded_maps_title" = "Et ole ladannut yhtään karttaa"; "downloader_no_downloaded_maps_message" = "Lataa kartattoja löytääksesi paikkoja ja navigoidaksesi offline-tilassa."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "t"; + +"minute" = "min"; + "placepage_place_description" = "Kuvaus"; "placepage_more_button" = "Lisää"; +"placepage_more_reviews_button" = "Lisää arvosteluja"; + "book_button" = "Varaa"; "placepage_call_button" = "Soita"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Paikkaa ei ole olemassa"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…Näytä"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Syötä kelvollinen sähköpostiosoite"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Päivitä"; "placepage_add_place_button" = "Lisää paikka kartalle"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Hylkää"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Luettelo"; "mobile_data_dialog" = "Näytetäänkö lisätiedot mobiili-internetillä?"; @@ -848,12 +1044,16 @@ "big_font" = "Suurenna fonttikokoa kartalla"; +"traffic_update_app" = "Päivitä Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Liikennetietojen näyttämiseksi sovellus on päivitettävä."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Liikennetietoja ei ole saatavilla"; +"enable_logging" = "Ota loki käyttöön"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Yleinen palaute"; @@ -861,14 +1061,24 @@ "off" = "Ei käytössä"; +"prefs_languages_information" = "Käytämme ääniohjeisiin tekstistä puheeksi -järjestelmää. Monet Android-laitteet käyttävät Googlen tekstistä puheeksi -sovellusta, jonka voit ladata tai päivittää Google Playssä (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Joidenkin kielien osalta sinun täytyy asentaa toinen puhesyntetisaattori tai lisäkielipaketti sovelluskaupasta (Google Play Market, Samsung Apps). Avaa laitteen asetukset → Kieli ja syöttötapa → Puhe → Teksistä puheeksi -toisto. Täällä voit hallita puhesynteesin asetuksia (esimerkiksi ladata offline-tilassa käytettävän kielipaketin) ja valita toisen tekstistä puheeksi -moottorin."; + +"prefs_languages_information_off_link" = "Lisätietoja saat tästä oppaasta."; + "transliteration_title" = "Translitterointi latinaksi"; +"learn_more" = "Lisätietoja"; + "core_exit" = "Poistu"; "routing_add_start_point" = "Lisää alkupiste reitin suunnittelua varten"; "routing_add_finish_point" = "Lisää määränpää reitin suunnittelua varten"; +"button_exit" = "Poistu"; + "planning_route_manage_route" = "Hallitse reittiä"; "button_plan" = "Suunnittele"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Tapahtui virhe. Yritä kirjautua sisään uudelleen."; +"dialog_error_storage_title" = "Ongelma tallennustilan käyttämisessä"; + +"dialog_error_storage_message" = "Ulkoinen tallennustila ei ole käytettävissä, SD-kortti on luultavasti poistettu tai vahingoittunut tai tiedostojärjestelmä on vain luku -tilassa. Tarkista ja ota yhteyttä osoitteeseen support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Jäljittele virheellistä tallennustilaa"; + "core_entrance" = "Sisäänkäynti"; "error_enter_correct_name" = "Anna oikea nimi"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Luo uusi luettelo"; +/* Bookmark categories screen */ +"bookmarks_import" = "Tuo kirjamerkit"; + "downloader_hide_screen" = "Piilota näyttö"; "downloader_percent" = "%s (%s / %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Tyhjää listaa ei voi jakaa"; +"bookmarks_error_title_empty_list_name" = "Nimi ei voinut olla tyhjä"; + "bookmarks_error_message_empty_list_name" = "Anna luettelon nimi"; +"bookmarks_new_list_hint" = "Uusi lista"; + "bookmarks_error_title_list_name_already_taken" = "Nimi on jo käytössä"; +"bookmarks_error_message_list_name_already_taken" = "Valitse toinen nimi"; + "bookmarks_error_title_list_name_too_long" = "Tämä nimi on liian pitkä"; +"please_wait" = "Odota…"; + +"phone_number" = "Puhelinnumero"; + "profile" = "OpenStreetMap-profiili"; "bookmarks_detect_title" = "Uusia tiedostoja havaittiin"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Palauta tämä versio?"; +"common_check_internet_connection_dialog_title" = "Ei Internet-yhteyttä"; + "error_system_message" = "Tuntematon virhe tapahtui"; "restore" = "Palauttaa"; +"subtittle_opt_out" = "Paikannusasetukset"; + +"crash_reports" = "Kaatumisraportti"; + +"crash_reports_description" = "Me saatamme käyttää tietojasi parantaaksemme Organic Maps kokemusta. Muutokset alkavat vaikuttamaan kun käynnistät sovelluksen uudestaan."; + "privacy_policy" = "Yksityisyyskäytäntö"; "terms_of_use" = "Käyttöehdot"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Metrokartta ei ole saatavilla"; +"bookmarks_empty_list_title" = "Lista on tyhjä"; + +"bookmarks_empty_list_message" = "Lisätäksesi kirjanmerkin, paina kartasta ja sitten paina tähden kuvaa"; + +"category_desc_more" = "…lisää"; + "title_error_downloading_bookmarks" = "Tapahtui virhe"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Piilota kartalta"; +"public_access" = "Julkinen pääsy"; + +"limited_access" = "Yksityinen pääsy"; + "bookmark_list_description_hint" = "Lisää kuvaus (teksti tai html)"; +"not_shared" = "Henkilökohtainen"; + "tags_loading_error_subtitle" = "Tunnisteiden lataamisen aikana tapahtui virhe, yritä uudelleen"; "download_button" = "Ladata"; @@ -972,6 +1221,9 @@ "place_description_title" = "Paikan kuvaus"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Karttojen lataaminen"; + "speedcams_notice_message" = "Auto - Varoita nopeuskameroista, jos tuntuu siltä, että nopeusrajan ylitys on mahdollista\nAina - Varoita kameroista aina\nEi koskaan - älä koskaan varoita kameroista"; "power_managment_title" = "Virransäästötila"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Täysi virransäästö"; +"enable_logging_warning_message" = "Valinta ottaa käyttöön lokikirjaukset diagnostiikkaa varten. Se voi auttaa tukihenkilöstöämme, kun he korjaavat sovelluksen ongelmia. Ota tämä ominaisuus käyttöön vain, jos Organic Maps:n tuki pyytää."; + +"access_rules_author_only" = "Nettimuokkaus"; + "driving_options_title" = "Kiertotien asetukset"; "driving_options_subheader" = "Vältettävä kaikissa reiteissä"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Järjestä…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Järjestä kirjanmerkit"; + /* iOS */ "sort_default" = "Järjestä: oletus"; @@ -1086,6 +1345,18 @@ "sort_date" = "Järjestä: päivämäärä"; +/* Android */ +"by_default" = "Oletus"; + +/* Android */ +"by_type" = "Tyyppi"; + +/* Android */ +"by_distance" = "Etäisyys"; + +/* Android */ +"by_date" = "Päivämäärä"; + "week_ago_sorttype" = "Viikko sitten"; "month_ago_sorttype" = "Kuukausi sitten"; @@ -1132,6 +1403,8 @@ "religious_places" = "Pyhät paikat"; +"select_list" = "Valitse luettelo"; + "transit_not_found" = "Metron reittiohjeet eivät ole vielä saatavilla tällä alueella"; "dialog_pedestrian_route_is_long_header" = "Metroreittiä ei löytynyt"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Vaikeus"; +"elevation_profile_distance" = "Etäisyys:"; + "elevation_profile_time" = "Aika:"; "isolines_toast_zooms_1_10" = "Suurenna kartta nähdäksesi korkeuskäyrät"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Lataus"; +"key_information_title" = "Avaintietoa"; + +"download_map_title" = "Lataa maailmankartta"; + +"connection_failure" = "Yhteysvirhe"; + +"disconnect_usb_cable_title" = "Irrota USB-kaapeli"; + +"enable_screen_sleep" = "Salli näytön lepotila"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Kun tämä asetus on käytössä, näyttö menee lepotilaan käyttämättömyyden jälkeen."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Päivitä ladatut kartat"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Lääketieteellinen laboratorio"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Bussipysäkki"; "type.highway.construction" = "Rakenteilla oleva tie"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Katu"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Nopeusvalvontakamera"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Katu"; -"type.area_highway.cycleway" = "Pyörätie"; - -"type.area_highway.footway" = "Kävelytie"; - -"type.area_highway.living_street" = "Katu"; - -"type.area_highway.motorway" = "Moottoritie"; - -"type.area_highway.path" = "Polku"; - -"type.area_highway.pedestrian" = "Kävelykatu"; - -"type.area_highway.primary" = "Katu"; - -"type.area_highway.residential" = "Katu"; - -"type.area_highway.secondary" = "Katu"; - -"type.area_highway.service" = "Katu"; - -"type.area_highway.tertiary" = "Katu"; - -"type.area_highway.steps" = "Portaat"; - -"type.area_highway.track" = "Katu"; - -"type.area_highway.trunk" = "Katu"; - -"type.area_highway.unclassified" = "Katu"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Arkeologinen kohde"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Vesipuisto"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Pääkaupunki"; -"type.place.city.capital.10" = "Kaupunki"; +"type.place.city.capital.10" = "Pääkaupunki"; -"type.place.city.capital.11" = "Kaupunki"; +"type.place.city.capital.11" = "Pääkaupunki"; "type.place.city.capital.2" = "Pääkaupunki"; -"type.place.city.capital.3" = "Kaupunki"; +"type.place.city.capital.3" = "Pääkaupunki"; -"type.place.city.capital.4" = "Kaupunki"; +"type.place.city.capital.4" = "Pääkaupunki"; -"type.place.city.capital.5" = "Kaupunki"; +"type.place.city.capital.5" = "Pääkaupunki"; -"type.place.city.capital.6" = "Kaupunki"; +"type.place.city.capital.6" = "Pääkaupunki"; -"type.place.city.capital.7" = "Kaupunki"; +"type.place.city.capital.7" = "Pääkaupunki"; -"type.place.city.capital.8" = "Kaupunki"; +"type.place.city.capital.8" = "Pääkaupunki"; -"type.place.city.capital.9" = "Kaupunki"; +"type.place.city.capital.9" = "Pääkaupunki"; "type.place.continent" = "Maanosa"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Rakennus"; + +"type.area_highway.cycleway" = "Pyörätie"; + +"type.area_highway.footway" = "Kävelytie"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "Moottoritie"; + +"type.area_highway.path" = "Polku"; + +"type.area_highway.pedestrian" = "Kävelykatu"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Katu"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Portaat"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.stringsdict index be2b29dab5..21d8c32391 100644 --- a/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/fi.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -56,6 +56,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d paikat + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.strings index c387c9d363..88d2d29569 100644 --- a/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Retour"; + /* Button text (should be short) */ "cancel" = "Annuler"; @@ -17,6 +20,9 @@ "download_maps" = "Télécharger des cartes"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Échec lors du téléchargement. Toucher de nouveau pour un essai de plus."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Téléchargement…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Cartes"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "Mo"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Miles"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Recherche"; +/* Search box placeholder text */ +"search_map" = "Rechercher sur la carte"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Oui"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Tous les services de localisation de cet appareil sont désactivés, ou ils le sont pour cette application. Veuillez les activer dans les paramètres."; + /* View and button titles for accessibility */ "zoom_to_country" = "Voir sur la carte"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Échec lors du téléchargement"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Réessayer"; + "about_menu_title" = "À propos de Organic Maps"; +"connection_settings" = "Paramètres de connexion"; + "close" = "Fermer"; +"unsupported_phone" = "L'accélération OpenGL matérielle est exigée. Malheureusement, votre appareil n'est pas pris en charge."; + "download" = "Télécharger"; +"disconnect_usb_cable" = "Veuillez débrancher le câble USB ou insérer la carte SD pour utiliser Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Veuillez d'abord libérer de l'espace sur la carte SD/le stockage USB afin d'utiliser l'appli"; + +"not_enough_memory" = "Mémoire insuffisante pour lancer l'appli"; + +"download_resources" = "Avant de commencer, permettez-nous de télécharger la carte générale du monde dans votre appareil.\n%@ de données sont nécessaires."; + +"download_resources_continue" = "Aller sur la carte"; + +"downloading_country_can_proceed" = "%@ en téléchargement. Vous pouvez\nmaintenant aller sur la carte."; + +"download_country_ask" = "Télécharger %@ ?"; + +"update_country_ask" = "Mettre %@ à jour ?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pause"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Continuer"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@, échec lors du téléchargement"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Ajouter un nouveau groupe"; @@ -80,73 +126,97 @@ /* Default bookmark list name */ "core_my_places" = "Mes endroits"; +/* Add bookmark dialog - bookmark name */ +"name" = "Nom"; + /* Editor title above street and house number */ "address" = "Adresse"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Groupe"; + /* Settings button in system menu */ "settings" = "Paramètres"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Enregistrer les cartes dans"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Sélectionner l'emplacement où les cartes devraient être téléchargées"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Déplacer les cartes ?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Ceci peut prendre plusieurs minutes.\nVeuillez patienter…"; + /* Measurement units title in settings activity */ "measurement_units" = "Unités de mesure"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Choisir entre miles et kilomètres"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Un endroit pour manger"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Les courses"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transport"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Essence"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Stationnement"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Shopping"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hôtel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Site touristique"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Divertissement"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "DAB"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Vie nocturne"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Vacances en famille"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Banque"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Pharmacie"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Hôpital"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toilettes"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Poste"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Police"; -"share_bookmarks_email_body" = "Bonjour !\n\nVous trouverez ci-joint mes signets de l'appli Organic Maps. Veuillez les ouvrir si vous avez installé Organic Maps. Si vous ne l'avez pas, téléchargez l'application pour votre appareil iOS ou Android en suivant ce lien : https://omaps.app/get?kmz\n\nBon voyage avec Organic Maps!"; +/* Notes field in Bookmarks view */ +"description" = "Notes"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Signets Organic Maps partagés"; + +"share_bookmarks_email_body" = "Bonjour !\n\nVous trouverez ci-joint mes signets de l'appli Organic Maps. Veuillez les ouvrir si vous avez installé Organic Maps. Si vous ne l'avez pas, téléchargez l'application pour votre appareil iOS ou Android en suivant ce lien : https://omaps.app/get?kmz\n\nBon voyage avec Organic Maps !"; /* message title of loading file */ "load_kmz_title" = "Chargement des signets"; @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Votre position n'a pas encore été déterminée"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Désolé, les paramètres de stockage des cartes sont présentement désactivés."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Le téléchargement de la carte est en cours."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hé, regarde ma position actuelle sur Organic Maps ! %1$@ ou %2$@. Les cartes hors ligne ne sont pas installées ? Les télécharger ici : https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hé, regarde mon signet sur la carte Organic Maps !"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hé, regarde ma position actuelle sur la carte Organic Maps !"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Bonjour,\n\nJe suis actuellement ici : %1$@. Clique sur ce lien %2$@ ou sur celui-ci %3$@ pour voir l'endroit sur la carte.\n\nMerci."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Partager"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Copié dans le presse-papiers : %1$@"; + /* place preview title */ "info" = "Infos"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Version des données: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Êtes-vous certain de vouloir continuer ?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Parcours"; @@ -195,10 +283,18 @@ "share_my_location" = "Partager ma position"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Paramètres généraux"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigation"; "pref_zoom_title" = "Boutons de zoom"; +"pref_zoom_summary" = "Afficher à l'écran"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Mode nuit"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Langue vocale"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Non disponible"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Autre"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Aide"; +/* Button in the main Help dialog */ +"faq" = "Foire aux questions"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Comment nous soutenir?"; + /* Button in the main Help dialog */ "copyright" = "Tous droits réservés"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Tout mettre à jour"; +/* Cancel all button text */ +"downloader_cancel_all" = "Tout annuler"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Téléchargé"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Supprimer carte"; +/* Item in context menu. */ +"downloader_update_map" = "Mise à jour carte"; + +/* Preference text */ +"pref_use_google_play" = "Utilisez l'application Google Play Services pour obtenir votre emplacement actuel"; + /* Text for rating dialog */ "rating_just_rated" = "Je viens d'évaluer votre appli"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "La création d'un itinéraire nécessite que toutes les cartes de votre localisation vers votre destination soient téléchargées et actualisées."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Pas assez d'espace"; + /* bookmark button text */ "bookmark" = "signet"; +/* location service disabled */ +"enable_location_services" = "Veuillez activer les services de localisation"; + "save" = "Sauvegarder"; +"edit_description_hint" = "Vos descriptions (version texte ou html)"; + "create" = "créer"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Impossible de localiser l'itinéraire"; +"dialog_routing_cant_build_route" = "Impossible de créer l'itinéraire."; + "dialog_routing_change_start_or_end" = "Modifiez votre point de départ ou votre destination."; "dialog_routing_change_start" = "Modifiez votre point de départ"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Pour commencer à rechercher et à créer des itinéraires, veuillez télécharger la carte. Après cela, vous n'aurez plus besoin d'une connexion Internet."; + +"search_select_map" = "Sélectionner la carte"; + /* «Show» context menu */ "show" = "Afficher"; @@ -521,6 +655,9 @@ "clear_search" = "Effacer l'historique de recherche"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipédia"; + "p2p_your_location" = "Votre emplacement"; "p2p_start" = "Démarrer"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Souhaitez-vous que nous planifiions un itinéraire à partir de votre emplacement actuel ?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Suivant"; + "editor_time_add" = "Ajouter un horaire d'ouverture"; "editor_time_delete" = "Supprimer un horaire d'ouverture"; @@ -556,14 +696,28 @@ "editor_example_values" = "Exemple de valeurs"; +"editor_correct_mistake" = "Corriger l'erreur"; + "editor_add_select_location" = "Emplacement"; "editor_done_dialog_1" = "Vous avez modifié la carte du monde ! Ne le cachez pas ! Dites-le à vos amis, et modifiez-le ensemble."; "share_with_friends" = "Partagez avec vos amis"; +"editor_report_problem_desription_1" = "Veuillez décrire le problème en détail pour permettre à la communauté OpenStreeMap de réparer l'erreur."; + +"editor_report_problem_desription_2" = "Ou faites-le vous-même sur https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Envoyer"; +"editor_report_problem_title" = "Problème"; + +"editor_report_problem_no_place_title" = "Le lieu n'existe pas"; + +"editor_report_problem_under_construction_title" = "Fermé pour cause de maintenance"; + +"editor_report_problem_duplicate_place_title" = "Lieu doublon"; + "autodownload" = "Téléchargement automatique"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Ajouter les heures d'ouverture"; +"edit_opening_hours" = "Modifier les heures d'ouverture"; + "no_osm_account" = "Vous n'avez pas de compte sur OpenStreetMap?"; "register_at_openstreetmap" = "Inscription"; @@ -592,6 +748,8 @@ "login" = "Connexion"; +"password" = "Mot de passe"; + "forgot_password" = "Mot de passe oublié ?"; "osm_account" = "Compte OSM"; @@ -609,6 +767,8 @@ "add_language" = "Ajouter une langue"; +"street" = "Rue"; + /* Editable House Number text field (in address block). */ "house_number" = "Numéro de la maison"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Ajouter une rue"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Choisir une langue"; "choose_street" = "Choisir une rue"; @@ -632,12 +795,16 @@ "phone" = "Numéro de téléphone"; +"editor_add_phone" = "Ajouter un numéro de téléphone"; + "please_note" = "À noter"; "downloader_delete_map_dialog" = "Toutes vos modifications de la carte seront supprimées avec elle."; "downloader_update_maps" = "Mettre à jour les cartes"; +"downloader_mwm_migration_dialog" = "Pour créer un itinéraire, vous devez mettre à jour toutes les cartes puis reprogrammer l'itinéraire."; + "downloader_search_field_hint" = "Trouver la carte"; "migration_download_error_dialog" = "Erreur de téléchargement"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Veuillez supprimer les données inutiles"; +"editor_login_error_dialog" = "Erreur de connexion."; + "editor_profile_changes" = "Modifications vérifiées"; "editor_focus_map_on_location" = "Faite glisser la carte pour sélectionner la bonne position de l'objet."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Catégorie"; +"detailed_problem_description" = "Description détaillée du problème"; + +"editor_report_problem_other_title" = "Un problème différent"; + +"placepage_add_business_button" = "Ajouter une organisation"; + "whatsnew_editor_message_1" = "Ajoutez de nouveaux lieux sur la carte et modifiez les lieux existants directement depuis l'appli."; "dialog_incorrect_feature_position" = "Modifier l'emplacement"; @@ -710,6 +885,8 @@ "editor_operator" = "Opérateur"; +"downloader_my_maps_title" = "Mes cartes"; + "downloader_no_downloaded_maps_title" = "Vous n'avez téléchargé aucune carte"; "downloader_no_downloaded_maps_message" = "Téléchargez des cartes pour rechercher un lieu et utiliser la navigation hors ligne"; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Description"; "placepage_more_button" = "Plus"; +"placepage_more_reviews_button" = "Plus d'avis"; + "book_button" = "Réserver"; "placepage_call_button" = "Appeler"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Ce lieu n'existe pas"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…Afficher la suite"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Saisissez un email valide"; +"error_enter_correct_facebook_page" = "Saisissez une adresse web, un compte ou un nom de page Facebook valide"; + +"error_enter_correct_instagram_page" = "Saisissez une adresse web, un nom de compte Instagram valide"; + +"error_enter_correct_twitter_page" = "Saisissez une adresse web, un nom de compte Twitter valide"; + +"error_enter_correct_vk_page" = "Saisissez une adresse web, un nom de compte VK valide"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Mettre à jour"; "placepage_add_place_button" = "Ajouter un lieu sur la carte"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Refuser"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Liste"; "mobile_data_dialog" = "Utiliser l'Internet mobile pour afficher les informations détaillées ?"; @@ -848,12 +1044,16 @@ "big_font" = "Augmenter la taille de police sur la carte"; +"traffic_update_app" = "Veuillez mettre à jour Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Pour afficher les données de circulation, l'application doit être actualisée."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Les données de circulation ne sont pas disponibles"; +"enable_logging" = "Activer le journal"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Feedback général"; @@ -861,14 +1061,24 @@ "off" = "Off"; +"prefs_languages_information" = "Nous utilisons le système TTS pour les instructions vocales. De nombreux appareils Android utilisent Google TTS, vous pouvez le télécharger ou le mettre à jour depuis Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Pour certaines langues, il vous faudra installer un autre logiciel de synthèse vocale ou un pack de langue supplémentaire depuis l’app store (Google Play Market, Samsung Apps). Ouvrez les paramètres de votre appareil → Langue et saisie → Reconnaissance vocale → Saisie vocale. Ici, vous pouvez gérer les paramètres pour la synthèse vocale (par exemple, télécharger un pack de langue pour une utilisation en mode hors ligne) et sélectionner un autre moteur de saisie vocale."; + +"prefs_languages_information_off_link" = "Pour plus d’informations, veuillez consulter ce guide."; + "transliteration_title" = "Translittération en latin"; +"learn_more" = "En savoir plus"; + "core_exit" = "Quitter"; "routing_add_start_point" = "Ajouter un point de départ pour planifier un itinéraire"; "routing_add_finish_point" = "Ajouter un point d'arrivée pour planifier un itinéraire"; +"button_exit" = "Quitter"; + "planning_route_manage_route" = "Gérer l’itinéraire"; "button_plan" = "Planifier"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Oups, une erreur s'est produite. Essayez de vous connecter à nouveau."; +"dialog_error_storage_title" = "Problème d'accès au stockage"; + +"dialog_error_storage_message" = "Le stockage externe n'est pas disponible. La carte SD a probablement été enlevée, endommagée ou le système est en lecture seule. Veuillez vérifier et nous contacter via support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Émuler le mauvais stockage"; + "core_entrance" = "Entrée"; "error_enter_correct_name" = "Veuillez entrer un nom correct"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Créer une nouvelle liste"; +/* Bookmark categories screen */ +"bookmarks_import" = "Importer des signets"; + "downloader_hide_screen" = "Masquer l’écran"; "downloader_percent" = "%s (%s de %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Impossible de partager une liste vide"; +"bookmarks_error_title_empty_list_name" = "Le nom ne peut pas être vide"; + "bookmarks_error_message_empty_list_name" = "Veuillez entrer le nom de la liste"; +"bookmarks_new_list_hint" = "Nouvelle liste"; + "bookmarks_error_title_list_name_already_taken" = "Ce nom est déjà pris"; +"bookmarks_error_message_list_name_already_taken" = "Merci de choisir un autre nom"; + "bookmarks_error_title_list_name_too_long" = "Ce nom est trop long"; +"please_wait" = "S'il vous plaît, attendez…"; + +"phone_number" = "Numéro de téléphone"; + "profile" = "Profil OpenStreetMap"; "bookmarks_detect_title" = "Nouveaux fichiers détectés"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Restaurer cette version?"; +"common_check_internet_connection_dialog_title" = "Pas de connexion Internet"; + "error_system_message" = "Une erreur inconnue est survenue"; "restore" = "Restaurer"; +"subtittle_opt_out" = "Paramètres de suivi"; + +"crash_reports" = "Rapport d'accident"; + +"crash_reports_description" = "Nous pouvons utiliser vos données pour améliorer l'expérience de Organic Maps. Les modifications prendront effet après le redémarrage de l'application."; + "privacy_policy" = "Politique de confidentialité"; "terms_of_use" = "Conditions d'utilisation"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "La carte du métro n'est pas disponible"; +"bookmarks_empty_list_title" = "Cette liste est vide"; + +"bookmarks_empty_list_message" = "Pour ajouter un signet, appuyez sur un lieu sur la carte, puis appuyez sur l'icône étoile"; + +"category_desc_more" = "…plus"; + "title_error_downloading_bookmarks" = "Une erreur est survenue"; "popular_place" = "Populaire"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Masquer de la carte"; +"public_access" = "Accès publique"; + +"limited_access" = "Accès limité"; + "bookmark_list_description_hint" = "Tapez une description (texte ou html)"; +"not_shared" = "Personnel"; + "tags_loading_error_subtitle" = "Une erreur s'est produite lors du chargement des tags, veuillez réessayer"; "download_button" = "Téléchargez"; @@ -972,6 +1221,9 @@ "place_description_title" = "Description d'endroit"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Téléchargeur carte"; + "speedcams_notice_message" = "Auto - Alerte sur les radars en cas de risque de dépassement de la limite de vitesse\nToujours - Toujours avertir des radars\nJamais - Jamais avertir à propos des radars"; "power_managment_title" = "Mode économie d'énergie"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Économie d'énergie maximale"; +"enable_logging_warning_message" = "Cette option est activée pour l'identification des actions à des fins de diagnostic. Cela aide l’équipe à identifier les problèmes liés à l’application. Activez cette option uniquement à la demande du support Organic Maps."; + +"access_rules_author_only" = "Édition en ligne"; + "driving_options_title" = "Paramètres des itinéraires"; "driving_options_subheader" = "Éviter sur tous les itinéraires"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Trier…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Trier les signets"; + /* iOS */ "sort_default" = "Trier par défaut"; @@ -1086,6 +1345,18 @@ "sort_date" = "Classer pa date"; +/* Android */ +"by_default" = "Par défaut"; + +/* Android */ +"by_type" = "Par type"; + +/* Android */ +"by_distance" = "Par distance"; + +/* Android */ +"by_date" = "Par date"; + "week_ago_sorttype" = "Il y a une semaine"; "month_ago_sorttype" = "Il y a un mois"; @@ -1132,6 +1403,8 @@ "religious_places" = "Lieux saints"; +"select_list" = "Sélectionner une liste"; + "transit_not_found" = "La navigation en métro n'est pas encore disponible dans la région"; "dialog_pedestrian_route_is_long_header" = "Itinéraire de métro non trouvé"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Difficulté"; +"elevation_profile_distance" = "Distance :"; + "elevation_profile_time" = "Temps:"; "isolines_toast_zooms_1_10" = "Zoomez pour voir les courbes de niveaux"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Téléchargement"; +"key_information_title" = "Informations clés"; + +"download_map_title" = "Télécharcher la carte du monde"; + +"connection_failure" = "Erreur de connexion"; + +"disconnect_usb_cable_title" = "Déconnectez le câble USB"; + +"enable_screen_sleep" = "Autoriser l'écran à dormir"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Lorsqu'il est activé, l'écran sera autorisé à dormir après une période d'inactivité."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Mettez à jour vos cartes téléchargées"; @@ -1735,9 +2023,6 @@ "type.healthcare.laboratory" = "Laboratoire médical"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; "type.highway.bridleway" = "Chemin pour cavalier"; @@ -1800,11 +2085,11 @@ "type.highway.motorway_junction" = "Sortie"; -"type.highway.motorway_link" = "Autoroute"; +"type.highway.motorway_link" = "Rue"; -"type.highway.motorway_link.bridge" = "Autoroute"; +"type.highway.motorway_link.bridge" = "Rue"; -"type.highway.motorway_link.tunnel" = "Autoroute"; +"type.highway.motorway_link.tunnel" = "Rue"; "type.highway.path" = "Chemin"; @@ -1944,11 +2229,11 @@ "type.highway.trunk.tunnel" = "Voie rapide"; -"type.highway.trunk_link" = "Voie rapide"; +"type.highway.trunk_link" = "Rue"; -"type.highway.trunk_link.bridge" = "Voie rapide"; +"type.highway.trunk_link.bridge" = "Rue"; -"type.highway.trunk_link.tunnel" = "Voie rapide"; +"type.highway.trunk_link.tunnel" = "Rue"; "type.highway.unclassified" = "Rue"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Rue"; -"type.area_highway.cycleway" = "Piste cyclable"; - -"type.area_highway.footway" = "Chemin"; - -"type.area_highway.living_street" = "Zone de rencontre"; - -"type.area_highway.motorway" = "Autoroute"; - -"type.area_highway.path" = "Chemin"; - -"type.area_highway.pedestrian" = "Rue piétonne"; - -"type.area_highway.primary" = "Rue"; - -"type.area_highway.residential" = "Rue"; - -"type.area_highway.secondary" = "Rue"; - -"type.area_highway.service" = "Rue"; - -"type.area_highway.tertiary" = "Rue"; - -"type.area_highway.steps" = "Escaliers"; - -"type.area_highway.track" = "Piste"; - -"type.area_highway.trunk" = "Voie rapide"; - -"type.area_highway.unclassified" = "Rue"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Site archéologique"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Centre aquatique"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Brise-lames"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capitale"; -"type.place.city.capital.10" = "Ville"; +"type.place.city.capital.10" = "Capitale"; -"type.place.city.capital.11" = "Ville"; +"type.place.city.capital.11" = "Capitale"; "type.place.city.capital.2" = "Capitale"; -"type.place.city.capital.3" = "Ville"; +"type.place.city.capital.3" = "Capitale"; -"type.place.city.capital.4" = "Ville"; +"type.place.city.capital.4" = "Capitale"; -"type.place.city.capital.5" = "Ville"; +"type.place.city.capital.5" = "Capitale"; -"type.place.city.capital.6" = "Ville"; +"type.place.city.capital.6" = "Capitale"; -"type.place.city.capital.7" = "Ville"; +"type.place.city.capital.7" = "Capitale"; -"type.place.city.capital.8" = "Ville"; +"type.place.city.capital.8" = "Capitale"; -"type.place.city.capital.9" = "Ville"; +"type.place.city.capital.9" = "Capitale"; "type.place.continent" = "Continent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Bâtiment"; + +"type.area_highway.cycleway" = "Piste cyclable"; + +"type.area_highway.footway" = "Chemin"; + +"type.area_highway.living_street" = "Zone de rencontre"; + +"type.area_highway.motorway" = "Autoroute"; + +"type.area_highway.path" = "Chemin"; + +"type.area_highway.pedestrian" = "Rue piétonne"; + +"type.area_highway.primary" = "Rue"; + +"type.area_highway.residential" = "Rue"; + +"type.area_highway.secondary" = "Rue"; + +"type.area_highway.service" = "Rue"; + +"type.area_highway.tertiary" = "Rue"; + +"type.area_highway.steps" = "Escaliers"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "Voie rapide"; + +"type.area_highway.unclassified" = "Rue"; diff --git a/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.stringsdict index e02aa6e153..80f8832f9e 100644 --- a/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/fr.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -58,6 +58,23 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + one + %d lieu + other + %d lieux + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/he.lproj/InfoPlist.strings b/iphone/Maps/LocalizedStrings/he.lproj/InfoPlist.strings deleted file mode 100644 index 96b9cef4f9..0000000000 --- a/iphone/Maps/LocalizedStrings/he.lproj/InfoPlist.strings +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Apple Strings File - * Generated by Twine 1.1.1 - * Language: he - */ - -/********** 3d touch strings **********/ - -/* Used in home screen quick actions. */ -"search" = "Search"; - -/* Used in home screen quick actions. */ -"bookmarks" = "רשימות אתרים"; - -/* Used in home screen quick actions. */ -"route" = "נתיב"; - - -/********** gps strings **********/ - -/* Needed to explain why we always require access to GPS coordinates, and not only when the app is active. */ -"NSLocationAlwaysUsageDescription" = "גילוי המיקום הנוכחי ברקע נחוץ כדי ליהנות באופן מלא מהפונקציונליות של האפליקציה. הוא משמש לניווט ולשמירה על המסלול שנסעת לאחרונה."; - -/* Needed to explain why we require access to GPS coordinates when the app is active. */ -"NSLocationWhenInUseUsageDescription" = "קביעת המיקום שלך נחוצה לניווט ולשמירה על המסלול שנסעת לאחרונה."; diff --git a/iphone/Maps/LocalizedStrings/he.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/he.lproj/Localizable.strings deleted file mode 100644 index f9b28757c6..0000000000 --- a/iphone/Maps/LocalizedStrings/he.lproj/Localizable.strings +++ /dev/null @@ -1,2918 +0,0 @@ -/** - * Apple Strings File - * Generated by Twine 1.1.1 - * Language: he - */ - -/********** Strings **********/ - -/* Button text (should be short) */ -"cancel" = "בטל"; - -/* Button which interrupts country download */ -"cancel_download" = "בטל הורדת הקובץ"; - -/* Button which deletes downloaded country */ -"delete" = "מחק"; - -"download_maps" = "הורד קבצי מפות"; - -/* Settings/Downloader - info for country which started downloading */ -"downloading" = "מוריד…."; - -/* Choose measurement on first launch alert - choose metric system button */ -"kilometres" = "ק\"מ"; - -/* Leave Review dialog - Review button */ -"leave_a_review" = "הבע דעתך"; - -/* View and button titles for accessibility */ -"maps" = "מפות"; - -/* Choose measurement on first launch alert - choose imperial system button */ -"miles" = "מ\"ב"; - -/* View and button titles for accessibility */ -"core_my_position" = "מיקומי"; - -/* Update maps later/Buy pro version later button text */ -"later" = "מאוחר יותר"; - -/* View and button titles for accessibility */ -"search" = "Search"; - -/* Settings/Downloader - 3G download warning dialog confirm button */ -"use_cellular_data" = "כן"; - -/* View and button titles for accessibility */ -"zoom_to_country" = "Show on the map"; - -/* Button text for the button at the center of the screen when the country is not downloaded and the size should not be shown */ -"country_status_download_without_size" = "הורידו מפה"; - -/* Message to display at the center of the screen when the country download has failed */ -"country_status_download_failed" = "הורדנכשלה"; - -"about_menu_title" = "Organic Maps אודות"; - -"close" = "סגור"; - -"download" = "הורד"; - -/* REMOVE THIS STRING AFTER REFACTORING */ -"continue_download" = "המשך"; - -/* "Add new bookmark list" dialog title */ -"add_new_set" = "הוסף קבוצה חדשה"; - -/* Bookmark Color dialog title */ -"bookmark_color" = "צבע רשימת האתרים"; - -/* Add Bookmark list dialog - hint when the list name is empty */ -"bookmark_set_name" = "שם רשימת האתרים"; - -/* "Bookmark Lists" dialog title */ -"bookmark_sets" = "רשימות אתרים"; - -/* "Bookmarks" dialog title */ -"bookmarks" = "רשימות אתרים"; - -/* Default bookmark list name */ -"core_my_places" = "המקומות שלי"; - -/* Editor title above street and house number */ -"address" = "כתובת"; - -/* Settings button in system menu */ -"settings" = "הגדרות"; - -/* Measurement units title in settings activity */ -"measurement_units" = "יחידות מדידה"; - - -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ -"eat" = "Where to eat"; - -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ -"food" = "Groceries"; - -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ -"transport" = "תחבורה"; - -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ -"fuel" = "גז"; - -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ -"parking" = "חניה"; - -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ -"shopping" = "Shopping"; - -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ -"hotel" = "מלון"; - -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ -"tourism" = "נקודות עיניין"; - -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ -"entertainment" = "בידור"; - -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ -"atm" = "כספומט"; - -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ -"nightlife" = "Nightlife"; - -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ -"children" = "Family holiday"; - -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ -"bank" = "בנק"; - -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ -"pharmacy" = "בית מרקחת"; - -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ -"hospital" = "בית חולים"; - -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ -"toilet" = "שירותים"; - -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ -"post" = "דואר"; - -/* Search category for police; any changes should be duplicated in categories.txt @police! */ -"police" = "משטרה"; - -"share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; - -/* message title of loading file */ -"load_kmz_title" = "טוען רשימות אתרים"; - -/* Kmz file successful loading */ -"load_kmz_successful" = "רשימת האתרים הועלתה בהצלחה! תוכל למצוא אותה על המפה או במסך נהול רשימות האתרים."; - -/* Kml file loading failed */ -"load_kmz_failed" = "טעינת רשימת האתרים נכשלה. יתכן שהקובץ פגום."; - -/* resource for context menu */ -"edit" = "ערוך"; - -/* Warning message when doing search around current position */ -"unknown_current_position" = "מיקומך לא אותר עדיין"; - -/* Subject for emailed bookmark */ -"bookmark_share_email_subject" = "הי, בדוק את הסיכה שלי במפה של Organic Maps!"; - -/* Subject for emailed position */ -"my_position_share_email_subject" = "היי, בדקו את המיקום הנוכחי שלי במפה של Organic Maps!"; - -/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ -"share" = "הפץ"; - -/* Share by email button text, also used in editor. */ -"email" = "Email"; - -/* place preview title */ -"info" = "מידע"; - -/* Used for bookmark editing */ -"done" = "בוצע"; - -/* Prints version number in About dialog */ -"version" = "%@ וורסיה"; - -/* Data version in «About» screen */ -"data_version" = "Data version: %d"; - -/* Title for tracks category in bookmarks manager */ -"tracks_title" = "נתיבים"; - -/* Length of track in cell that describes route */ -"length" = "אורך"; - -"share_my_location" = "שתף את מקומי"; - -"prefs_group_route" = "Navigation"; - -"pref_zoom_title" = "כפתורי זום"; - -/* Settings «Map» category: «Night style» title */ -"pref_map_style_title" = "Night Mode"; - -/* «Map style» entry value */ -"pref_map_style_default" = "Off"; - -/* «Map style» entry value */ -"pref_map_style_night" = "On"; - -/* «Map style» entry value */ -"pref_map_style_auto" = "Auto"; - -/* Settings «Map» category: «Perspective view» title */ -"pref_map_3d_title" = "Perspective view"; - -/* Settings «Map» category: «3D buildings» title */ -"pref_map_3d_buildings_title" = "3D buildings"; - -/* Settings «Route» category: «Tts enabled» title */ -"pref_tts_enable_title" = "Voice Instructions"; - -/* Settings «Route» category: «Tts language» title */ -"pref_tts_language_title" = "Voice Language"; - -/* Title for "Other" section in TTS settings. */ -"pref_tts_other_section_title" = "Other"; - -/* Settings «Map» category: «Record track» title */ -"pref_track_record_title" = "Recent track"; - -"pref_map_auto_zoom" = "Auto zoom"; - -"duration_disabled" = "Off"; - -"duration_1_hour" = "1 hour"; - -"duration_2_hours" = "2 hours"; - -"duration_6_hours" = "6 hours"; - -"duration_12_hours" = "12 hours"; - -"duration_1_day" = "1 day"; - -"recent_track_help_text" = "This option allows you to record traveled path for a certain period and see it on the map. Please note: activation of this function causes increased battery usage. The track will be removed automatically from the map after the time interval will expire."; - -"placepage_distance" = "מרחק"; - -"search_show_on_map" = "ראה במפה"; - -/* Text in menu */ -"website" = "Website"; - -/* Text in menu */ -"github" = "GitHub"; - -/* Text in menu */ -"telegram" = "Telegram"; - -/* Text in menu */ -"facebook" = "Facebook"; - -/* Text in menu */ -"twitter" = "Twitter"; - -/* Text in menu */ -"instagram" = "Instagram"; - -/* Text in menu */ -"openstreetmap" = "OpenStreetMap"; - -/* Settings: Send feedback button and dialog title */ -"feedback" = "Feedback"; - -/* Text in menu */ -"rate_the_app" = "דרגו את האפליקציה"; - -/* Text in menu */ -"help" = "עזרה"; - -/* Button in the main Help dialog */ -"copyright" = "זכויות יוצרים"; - -/* Text in menu + Button in the main Help dialog */ -"report_a_bug" = "דווחו על באג"; - -/* Alert text */ -"email_error_body" = "יישום הדוא\"ל לא הוגדר. אנא קבעו את תצורתו או השתמשו בכל דרך אחרת על מנת ליצור עמנו קשר בכתובת %@"; - -/* Alert title */ -"email_error_title" = "שגיאה בשליחת דוא\"ל"; - -/* Settings item title */ -"pref_calibration_title" = "כיול המצפן"; - -/* Search category */ -"wifi" = "WiFi"; - -/* Update all button text */ -"downloader_update_all_button" = "Update All"; - -/* Downloaded maps category */ -"downloader_downloaded_subtitle" = "Downloaded"; - -/* Downloaded maps category */ -"downloader_available_maps" = "Available"; - -/* Country queued for download */ -"downloader_queued" = "נוסף/ו לתור"; - -"downloader_near_me_subtitle" = "Near me"; - -"downloader_status_maps" = "Maps"; - -"downloader_download_all_button" = "Download All"; - -"downloader_downloading" = "Downloading:"; - -"downloader_search_results" = "Found"; - -/* Status of outdated country in the list */ -"downloader_status_outdated" = "לְעַדְכֵּן"; - -/* Status of failed country in the list */ -"downloader_status_failed" = "נכשלה"; - -/* Displayed in a dialog that appears when a user tries to delete a map while the app is in the follow route mode */ -"downloader_delete_map_while_routing_dialog" = "To delete map, please stop navigation."; - -/* PointsInDifferentMWM */ -"routing_failed_cross_mwm_building" = "ניתן ליצור רק מסלולים שמוכלים במלואם בתוך מפה אחת."; - -/* Context menu item for downloader. */ -"downloader_download_map" = "הורידו את המפה"; - -/* Item status in downloader. */ -"downloader_retry" = "Retry"; - -/* Item in context menu. */ -"downloader_delete_map" = "מחק מפה"; - -/* Text for rating dialog */ -"rating_just_rated" = "I’ve just rated your app"; - -/* Text for rating dialog */ -"rating_thanks" = "Thank you!"; - -/* Text for rating dialog */ -"rating_share_ideas" = "Share any ideas or issues so we can improve the app for you."; - -/* Text for rating dialog */ -"rating_send_feedback" = "Send feedback"; - -/* Text for routing error dialog */ -"routing_download_maps_along" = "Download all of the maps along your route"; - -/* Text for routing error dialog */ -"routing_requires_all_map" = "In order to create a route, we need to download and update all the maps from your location to your destination."; - -/* bookmark button text */ -"bookmark" = "סימניה"; - -"save" = "Save"; - -"create" = "create"; - -/* red color */ -"red" = "Red"; - -/* yellow color */ -"yellow" = "Yellow"; - -/* blue color */ -"blue" = "Blue"; - -/* green color */ -"green" = "Green"; - -/* purple color */ -"purple" = "Purple"; - -/* orange color */ -"orange" = "Orange"; - -/* brown color */ -"brown" = "Brown"; - -/* pink color */ -"pink" = "Pink"; - -/* deep purple color */ -"deep_purple" = "Deep Purple"; - -/* light blue color */ -"light_blue" = "Light Blue"; - -/* cyan color */ -"cyan" = "Cyan"; - -/* teal color */ -"teal" = "Teal"; - -/* lime color */ -"lime" = "Lime"; - -/* deep orange color */ -"deep_orange" = "Deep Orange"; - -/* gray color */ -"gray" = "Gray"; - -/* blue gray color */ -"blue_gray" = "Blue Gray"; - -/* Wi-Fi available */ -"WiFi_available" = "כן"; - - -/********** Routing dialogs strings **********/ - -"dialog_routing_disclaimer_title" = "בעת נסיעה לאורך המסלול, שים לב לדברים הבאים:"; - -"dialog_routing_disclaimer_priority" = "— תנאי הכביש, חוקי התנועה והתמרורים תמיד מקבלים עדיפות על פני הנחיות הניווט;"; - -"dialog_routing_disclaimer_precision" = "— ייתכנו אי-דיוקים במפה, וייתכן כי המסלול המוצע אינו תמיד הדרך המיטבית להגעה אל היעד;"; - -"dialog_routing_disclaimer_recommendations" = "— יש לראות במסלולים המוצעים המלצה בלבד;"; - -"dialog_routing_disclaimer_borders" = "— Exercise caution with routes in border zones: the routes created by our app may sometimes cross country borders in unauthorized places."; - -"dialog_routing_disclaimer_beware" = "שמור על ערנות ועל הבטיחות בכביש!"; - -"dialog_routing_check_gps" = "בדוק אות GPS"; - -"dialog_routing_error_location_not_found" = "לא ניתן ליצור מסלול. לא ניתן לזהות את קואורדינטות ה-GPS הנוכחיות."; - -"dialog_routing_location_turn_wifi" = "בדוק את אות ה-GPS שלך. הפעלת ה-Wi-Fi תשפר את הדיוק בזיהוי המיקום שלך."; - -"dialog_routing_location_turn_on" = "הפעל שירותי מיקום"; - -"dialog_routing_location_unknown_turn_on" = "לא ניתן לאתר קואורדינטות GPS נוכחיות. הפעל שירותי מיקום כדי לחשב מסלול."; - -"dialog_routing_download_files" = "הורד את הקבצים הדרושים"; - -"dialog_routing_download_and_update_all" = "הורד ועדכן את כל מידע המפות ויצירת המסלולים לאורך הנתיב הצפוי, כדי לחשב מסלול."; - -"dialog_routing_unable_locate_route" = "לא ניתן לאתר מסלול"; - -"dialog_routing_change_start_or_end" = "כוונן את נקודת ההתחלה או היעד שלך."; - -"dialog_routing_change_start" = "כוונן נקודת התחלה"; - -"dialog_routing_start_not_determined" = "לא נוצר מסלול. לא ניתן לאתר את נקודת ההתחלה."; - -"dialog_routing_select_closer_start" = "בחר נקודת התחלה הקרובה יותר לכביש כלשהו."; - -"dialog_routing_change_end" = "כוונן יעד"; - -"dialog_routing_end_not_determined" = "לא נוצר מסלול. לא ניתן לאתר את היעד."; - -"dialog_routing_select_closer_end" = "בחר נקודת יעד הקרובה יותר לכביש כלשהו."; - -"dialog_routing_change_intermediate" = "Unable to locate the intermediate point."; - -"dialog_routing_intermediate_not_determined" = "Please adjust your intermediate point."; - -"dialog_routing_system_error" = "שגיאת מערכת"; - -"dialog_routing_application_error" = "לא ניתן ליצור מסלול עקב שגיאת אפליקציה."; - -"dialog_routing_try_again" = "נסה שוב"; - -"not_now" = "לא עכשיו"; - -"dialog_routing_download_and_build_cross_route" = "האם ברצונך להוריד את המפה וליצור מסלול מיטבי יותר, הכולל יותר מאשר מפה אחת?"; - -"dialog_routing_download_cross_route" = "הורד את המפה כדי ליצור מסלול מיטבי יותר, החוצה את הגבול של מפה זו."; - - -/********** Strings for downloading map from search **********/ - -/* «Show» context menu */ -"show" = "Show"; - -/* «Hide» context menu */ -"hide" = "Hide"; - -/* Failed planning route message in navigation view */ -"routing_planning_error" = "Route Planning Failed"; - -/* Arrive routing message in navigation view */ -"routing_arrive" = "Arrival at %s"; - -/* Text for routing::RouterResultCode::FileTooOld dialog. */ -"dialog_routing_download_and_update_maps" = "Download and update all map along the projected path to calculate route."; - -"rate_alert_title" = "Like the app?"; - -"rate_alert_default_message" = "Thank you for using Organic Maps. Please rate the app. Your feedback helps us improve our product."; - -"rate_alert_five_star_message" = "Hooray! We love you, too!"; - -"rate_alert_four_star_message" = "Thank you, we will do our best!"; - -"rate_alert_less_than_four_star_message" = "Any idea how we can make it better?"; - -"categories" = "Categories"; - -"history" = "History"; - -"closed" = "Closed"; - -"search_not_found" = "Oops, no results found."; - -"search_not_found_query" = "Try changing your search criteria."; - -"search_history_title" = "Search History"; - -"search_history_text" = "View recent searches."; - -"clear_search" = "Clear Search History"; - -"p2p_your_location" = "Your Location"; - -"p2p_start" = "Start"; - -"p2p_from_here" = "Route from"; - -"p2p_to_here" = "Route to"; - -"p2p_only_from_current" = "Navigation is available only from your current location."; - -"p2p_reroute_from_current" = "Do you want us to plan a route from your current location?"; - -"editor_time_add" = "Add Schedule"; - -"editor_time_delete" = "Delete Schedule"; - -/* Text for allday switch. */ -"editor_time_allday" = "All Day (24 hours)"; - -"editor_time_open" = "Open"; - -"editor_time_close" = "Closed"; - -"editor_time_add_closed" = "Add Non-Business Hours"; - -"editor_time_title" = "Business Hours"; - -"editor_time_advanced" = "Advanced Mode"; - -"editor_time_simple" = "Simple Mode"; - -"editor_hours_closed" = "Non-Business Hours"; - -"editor_example_values" = "Example Values"; - -"editor_add_select_location" = "Location"; - -"editor_done_dialog_1" = "You’ve changed the world map. Do not keep it to yourself! Tell your friends, and edit it together."; - -"share_with_friends" = "Share with friends"; - -"editor_report_problem_send_button" = "Send"; - -"autodownload" = "Auto-download"; - -/* Place Page opening hours text */ -"closed_now" = "Closed now"; - -/* Place Page opening hours text */ -"daily" = "Daily"; - -"twentyfour_seven" = "יום ולילה"; - -"day_off_today" = "Closed today"; - -"day_off" = "Closed"; - -"today" = "Today"; - -"add_opening_hours" = "Add opening hours"; - -"no_osm_account" = "Don't have an OpenStreetMap account?"; - -"register_at_openstreetmap" = "Register at OSM"; - -"password_8_chars_min" = "Password (8 characters minimum)"; - -"invalid_username_or_password" = "Invalid username or password."; - -"login" = "Log In"; - -"forgot_password" = "Forgot your password?"; - -"osm_account" = "OSM Account"; - -"logout" = "Log Out"; - -/* Information text: "Last upload 11.01.2016" */ -"last_upload" = "Last upload"; - -"thank_you" = "Thank You"; - -"edit_place" = "Edit Place"; - -"place_name" = "Place Name"; - -"add_language" = "Add a language"; - -/* Editable House Number text field (in address block). */ -"house_number" = "Building number"; - -"details" = "Details"; - -/* Text field to enter non-existing street name, below list of known streets around */ -"add_street" = "Add a street"; - -"choose_language" = "Choose a language"; - -"choose_street" = "Choose a street"; - -"postal_code" = "Postal Code"; - -"cuisine" = "Cuisine"; - -"select_cuisine" = "Select cuisine"; - -/* login text field */ -"email_or_username" = "Email or username"; - -"phone" = "Phone"; - -"please_note" = "Please note"; - -"downloader_delete_map_dialog" = "All of your map edits will be deleted together with the map."; - -"downloader_update_maps" = "Update Maps"; - -"downloader_search_field_hint" = "Find map"; - -"migration_download_error_dialog" = "Download error"; - -"common_check_internet_connection_dialog" = "Please check your settings and make sure your device is connected to the Internet."; - -"downloader_no_space_title" = "Not enough space"; - -"downloader_no_space_message" = "Please delete any unnecessary data"; - -"editor_profile_changes" = "Verified Changes"; - -"editor_focus_map_on_location" = "Drag the map to select the correct location of the object."; - -"editor_add_select_category" = "Select category"; - -"editor_add_select_category_popular_subtitle" = "Popular"; - -"editor_add_select_category_all_subtitle" = "All Categories"; - -"editor_edit_place_title" = "Editing"; - -"editor_add_place_title" = "Adding"; - -"editor_edit_place_name_hint" = "Name of the place"; - -"editor_edit_place_category_title" = "Category"; - -"whatsnew_editor_message_1" = "Add new places to the map, and edit existing ones directly from the app."; - -"dialog_incorrect_feature_position" = "Change location"; - -"message_invalid_feature_position" = "No object can be located here"; - -"login_to_make_edits_visible" = "Log in so other users can see the changes that you have made"; - -/* Error dialog no space */ -"migration_no_space_message" = "To download, you need more space. Please delete any unnecessary data."; - -"editor_sharing_title" = "I improved the Organic Maps maps"; - -/* Downloaded 10 **of** 20 <- it is that "of" */ -"downloader_of" = "%1$d of %2$d"; - -"download_over_mobile_header" = "Download over a cellular network connection?"; - -"download_over_mobile_message" = "This could be considerably expensive with some plans or if roaming."; - -"error_enter_correct_house_number" = "Enter a valid building number"; - -"editor_storey_number" = "Number of floors (maximum of %d)"; - -/* Error message in Editor when a user tries to set the number of floors for a building higher than 25 */ -"error_enter_correct_storey_number" = "The number of floors must non exceed 25"; - -"editor_zip_code" = "ZIP Code"; - -"error_enter_correct_zip_code" = "Enter a valid ZIP code"; - -/* Place Page title for long tap */ -"core_placepage_unknown_place" = "Unknown Place"; - -"editor_other_info" = "Send a note to OSM editors"; - -"editor_detailed_description_hint" = "Detailed comment"; - -"editor_detailed_description" = "Your suggested map changes will be sent to the OpenStreetMap community. Describe any additional details that cannot be edited in Organic Maps."; - -"editor_more_about_osm" = "More about OpenStreetMap"; - -"editor_operator" = "Owner"; - -"downloader_no_downloaded_maps_title" = "You haven't downloaded any maps"; - -"downloader_no_downloaded_maps_message" = "Download maps to search for a location and use navigation offline."; - -/* Error title that appears after certain time without location. */ -"current_location_unknown_title" = "Continue detecting your current location?"; - -/* Error that appears after certain time without location. */ -"current_location_unknown_message" = "Current location is unknown. Maybe you are in a building or in a tunnel."; - -"current_location_unknown_continue_button" = "Continue"; - -"current_location_unknown_stop_button" = "Stop"; - -"current_location_unknown_error_title" = "Current location is unknown."; - -"current_location_unknown_error_message" = "An error occurred while searching for your location. Check that your device is working properly and try again later."; - -"location_services_disabled_header" = "זיהוי המיקום אינו מופעל"; - -"location_services_disabled_message" = "אפשרו גישה לגאולוקיישן בהגדרות המכשיר"; - -"location_services_disabled_1" = "1. פתחו את \"הגדרות\" (Settings)"; - -"location_services_disabled_2" = "2. געו ב\"מיקום\" (Location)"; - -/* iOS Dialog for the case when the location permission is not granted */ -"location_services_disabled_3" = "3. Select While Using the App"; - -"meter" = "m"; - -"kilometer" = "km"; - -"kilometers_per_hour" = "km/h"; - -"mile" = "mi"; - -"foot" = "ft"; - -"miles_per_hour" = "mph"; - -"placepage_place_description" = "Description"; - -"placepage_more_button" = "More"; - -"book_button" = "Book"; - -"placepage_call_button" = "Call"; - -"placepage_edit_bookmark_button" = "Edit Bookmark"; - -"placepage_bookmark_name_hint" = "Bookmark Name"; - -"placepage_personal_notes_hint" = "Personal notes"; - -"placepage_delete_bookmark_button" = "Delete Bookmark"; - -"editor_edits_sent_message" = "Your suggested changes have been sent"; - -"editor_comment_hint" = "Comment…"; - -"editor_reset_edits_message" = "Discard all local changes?"; - -"editor_reset_edits_button" = "Discard"; - -"editor_remove_place_message" = "Delete added place?"; - -"editor_remove_place_button" = "Delete"; - -"editor_place_doesnt_exist" = "Place does not exist"; - -"text_more_button" = "…more"; - -/* Phone number error message */ -"error_enter_correct_phone" = "Enter a valid phone number"; - -"error_enter_correct_web" = "Enter a valid web address"; - -"error_enter_correct_email" = "Enter a valid email"; - -"refresh" = "Update"; - -"placepage_add_place_button" = "Add a place to the map"; - -/* Displayed when saving some edits to the map to warn against publishing personal data */ -"editor_share_to_all_dialog_title" = "Do you want to send it to all users?"; - -/* iOS Dialog before publishing the modifications to the public map. */ -"editor_share_to_all_dialog_message_1" = "Make sure you did not enter any personal data."; - -"editor_share_to_all_dialog_message_2" = "We will check the changes. If we have any questions we will contact you via email."; - -"navigation_stop_button" = "stop"; - -/* iOS dialog for the case when recent track recording is on and the app comes back from background */ -"recent_track_background_dialog_title" = "Disable recording of your recently traveled route?"; - -"off_recent_track_background_button" = "Disable"; - -/* For sharing via SMS and so on */ -"sharing_call_action_look" = "Check out"; - -"recent_track_background_dialog_message" = "Organic Maps uses your geoposition in the background for recording your recently traveled route."; - -/* Text under the version number in the Help dialog. */ -"about_description" = "Organic Maps היא אפליקציית מפות לא מקוונות בחינם ובקוד פתוח. ללא פרסומות. אין מעקב. אם אתה רואה שגיאה במפה, אנא תקן אותה ב-OpenStreetMap. הפרויקט נוצר על ידי חובבים בזמננו הפנוי, אז אנו זקוקים למשוב ולתמיכה שלכם."; - -"general_settings" = "General settings"; - -/* For the first routing */ -"accept" = "Accept"; - -/* For the first routing */ -"decline" = "Decline"; - -/* A noun - a button name used to show search results in list form */ -"search_in_table" = "List"; - -"mobile_data_dialog" = "Use mobile internet to show detailed information?"; - -"mobile_data_option_always" = "Use Always"; - -"mobile_data_option_today" = "Only Today"; - -"mobile_data_option_not_today" = "Do not Use Today"; - -"mobile_data" = "Mobile Internet"; - -"mobile_data_description" = "Mobile internet is required for displaying detailed information about places, such as photographs, prices and reviews."; - -"mobile_data_option_never" = "Never Use"; - -"mobile_data_option_ask" = "Always Ask"; - -"traffic_update_maps_text" = "To display traffic data, maps must be updated."; - -"big_font" = "Increase font size on the map"; - -/* "traffic" as in road congestion */ -"traffic_update_app_message" = "To display traffic data, the application must be updated."; - -/* "traffic" as in "road congestion" */ -"traffic_data_unavailable" = "Traffic data is not available"; - -/* Settings: "Send general feedback" button */ -"feedback_general" = "General Feedback"; - -"on" = "On"; - -"off" = "Off"; - -"transliteration_title" = "תעתיק ללטינית"; - -"core_exit" = "Exit"; - -"routing_add_start_point" = "Add a starting point to plan a route"; - -"routing_add_finish_point" = "Add a destination to plan a route"; - -"planning_route_manage_route" = "Manage Route"; - -"button_plan" = "Plan"; - -"placepage_remove_stop" = "Remove"; - -"planning_route_remove_title" = "Drag here to remove"; - -"placepage_add_stop" = "Add Stop"; - -"start_from_my_position" = "Start from"; - -"profile_authorization_error" = "Oops, there was an error. Try to sign in again."; - -"core_entrance" = "Entrance"; - -"error_enter_correct_name" = "Please, enter a correct name"; - -"bookmark_lists" = "Lists"; - -/* Do not display all bookmark lists on the map */ -"bookmark_lists_hide_all" = "Hide all"; - -"bookmark_lists_show_all" = "Show all"; - -"bookmarks_create_new_group" = "Create new list"; - -"downloader_hide_screen" = "Hide Screen"; - -"downloader_percent" = "%s (%s of %s)"; - -"downloader_process" = "Downloading %s…"; - -"downloader_applying" = "Applying %s…"; - -"bookmarks_error_message_share_general" = "Unable to share due to an application error"; - -"bookmarks_error_title_share_empty" = "Sharing error"; - -"bookmarks_error_message_share_empty" = "Cannot share an empty list"; - -"bookmarks_error_message_empty_list_name" = "Please enter the list name"; - -"bookmarks_error_title_list_name_already_taken" = "This name is already taken"; - -"bookmarks_error_title_list_name_too_long" = "This name is too long"; - -"profile" = "OpenStreetMap profile"; - -"bookmarks_detect_title" = "New files detected"; - -"button_convert" = "Convert"; - -"bookmarks_convert_error_title" = "Error"; - -"bookmarks_convert_error_message" = "Some files were not converted."; - -"bookmarks_restore_title" = "Restore this version?"; - -"error_system_message" = "An unknown error occurred"; - -"restore" = "Restore"; - -"privacy_policy" = "Privacy policy"; - -"terms_of_use" = "Terms of use"; - -"button_layer_traffic" = "Traffic"; - -"button_layer_subway" = "Subway"; - -"layers_title" = "Map layers"; - -"subway_data_unavailable" = "Subway map is unavailable"; - -"title_error_downloading_bookmarks" = "An error occurred"; - -"popular_place" = "Popular"; - -"export_file" = "Export file"; - -"list_settings" = "List Settings"; - -"delete_list" = "Delete list"; - -"hide_from_map" = "Hide from map"; - -"bookmark_list_description_hint" = "Type a description (text or html)"; - -"tags_loading_error_subtitle" = "An error occurred while loading tags, please try again"; - -"download_button" = "Download"; - -"speedcams_alert_title" = "Speed cameras"; - -"speedcam_option_auto" = "Auto"; - -"speedcam_option_always" = "Always"; - -"speedcam_option_never" = "Never"; - -"place_description_title" = "Place Description"; - -"speedcams_notice_message" = "Auto - Warn about speedcams if there is a risk of exceeding the speed limit\nAlways - Always warn about speedcams\nNever - Never warn about speedcams"; - -"power_managment_title" = "Power saving mode"; - -"power_managment_description" = "When automatic mode is selected the application starts to disable battery draining features depending on the current battery charge level"; - -"power_managment_setting_never" = "Never"; - -"power_managment_setting_auto" = "Automatic"; - -"power_managment_setting_manual_max" = "Maximum power saving"; - -"driving_options_title" = "Routing options"; - -"driving_options_subheader" = "Avoid on every route"; - -"avoid_tolls" = "Toll roads"; - -"avoid_unpaved" = "Unpaved roads"; - -"avoid_ferry" = "Ferry crossings"; - -"avoid_motorways" = "Motorways"; - -"unable_to_calc_alert_title" = "Unable to calculate route"; - -"unable_to_calc_alert_subtitle" = "Unfortunately, we couldn't find a route, probably due to the options you have chosen. Please change the settings and try again."; - -"define_to_avoid_btn" = "Define roads to avoid"; - -"change_driving_options_btn" = "Routing options enabled"; - -"toll_road" = "Toll road"; - -"unpaved_road" = "Unpaved road"; - -"ferry_crossing" = "Ferry crossing"; - -"avoid_toll_roads_placepage" = "Avoid toll roads"; - -"avoid_unpaved_roads_placepage" = "Avoid unpaved roads"; - -"avoid_ferry_crossing_placepage" = "Avoid ferry crossings"; - -"trip_start" = "Let's go"; - -"pick_destination" = "Destination"; - -"follow_my_position" = "Re-center"; - -"search_results" = "Search results"; - -"then_turn" = "Then"; - -"redirect_route_alert" = "Do you want to rebuild the route?"; - -"redirect_route_yes" = "Yes"; - -"redirect_route_no" = "No"; - -"trip_finished" = "You have arrived!"; - -"keyboard_availability_alert" = "Keyboard is not available while driving"; - -"dialog_routing_change_start_carplay" = "Unable to build a route from your current location"; - -"dialog_routing_change_end_carplay" = "Unable to build a route to your destination. Please choose another point"; - -"dialog_routing_check_gps_carplay" = "No GPS signal. Please move to an open area"; - -"dialog_routing_unable_locate_route_carplay" = "Unable to build a route. Please specify other route points"; - -"dialog_routing_download_files_carplay" = "To create a route, download missing maps on your device"; - -"dialog_routing_system_error_carplay" = "An error occurred. Please restart the application"; - -"dialog_routing_rebuild_from_current_location_carplay" = "The route will be rebuilt from your current location"; - -"dialog_routing_rebuild_for_vehicle_carplay" = "The route will be converted into an automobile one"; - -"ok" = "Ok"; - -"avoid_unpaved_carplay_1" = "No dirt road"; - -"avoid_unpaved_carplay_2" = "Avoid unpaved"; - -"avoid_ferry_carplay_1" = "No ferries"; - -"avoid_ferry_carplay_2" = "Avoid ferries"; - -"avoid_tolls_carplay_1" = "No toll road"; - -"avoid_tolls_carplay_2" = "Avoid toll road"; - -"speedcams_alert_title_carplay_1" = "Speedсams"; - -"speedcams_alert_title_carplay_2" = "Speed warnings"; - -"download_map_carplay" = "Please download maps in Organic Maps app on your device"; - -"carplay_roundabout_exit" = "%s exit"; - -/* max. 10 symbols, both iOS and Android */ -"sort" = "Sort…"; - -/* iOS */ -"sort_default" = "Sort by default"; - -"sort_type" = "Sort by type"; - -"sort_distance" = "Sort by distance"; - -"sort_date" = "Sort by date"; - -"week_ago_sorttype" = "A week ago"; - -"month_ago_sorttype" = "A month ago"; - -"moremonth_ago_sorttype" = "More than a month ago"; - -"moreyear_ago_sorttype" = "More than a year ago"; - -"near_me_sorttype" = "Near me"; - -"others_sorttype" = "Others"; - -"food_places" = "Food"; - -"tourist_places" = "Sights"; - -"museums" = "Museums"; - -"parks" = "Parks"; - -"swim_places" = "Swim"; - -"mountains" = "Mountains"; - -"animals" = "Animals"; - -"hotels" = "Hotels"; - -"buildings" = "Buildings"; - -"money" = "Money"; - -"shops" = "Shops"; - -"parkings" = "Parkings"; - -"fuel_places" = "Gas stations"; - -"water" = "Water"; - -"medicine" = "Medicine"; - -"search_in_the_list" = "Search in the list"; - -"religious_places" = "Religious places"; - -"transit_not_found" = "Subway navigation in this region is not available yet"; - -"dialog_pedestrian_route_is_long_header" = "Subway route is not found"; - -"dialog_pedestrian_route_is_long_message" = "Please choose a start or end point closer to a subway station"; - -"button_layer_isolines" = "Terrain"; - -"isolines_activation_error_dialog" = "To activate and use the topographic layer please update or download the map of the area"; - -"isolines_location_error_dialog" = "The topographic layer is not yet available in this area"; - -"elevation_profile_diff_level" = "Difficulty level"; - -"elevation_profile_diff_level_easy" = "Easy"; - -"elevation_profile_diff_level_moderate" = "Moderate"; - -"elevation_profile_diff_level_hard" = "Hard"; - -"elevation_profile_ascent" = "Ascent"; - -"elevation_profile_descent" = "Descent"; - -"elevation_profile_minaltitude" = "Min. altitude"; - -"elevation_profile_maxaltitude" = "Max. altitude"; - -"elevation_profile_difficulty" = "Difficulty"; - -"elevation_profile_time" = "Time:"; - -"isolines_toast_zooms_1_10" = "Zoom in to explore isolines"; - -"downloader_updating_ios" = "Updating"; - -"downloader_loading_ios" = "Downloading"; - -/* Autoupdate dialog on start */ -"whats_new_auto_update_title" = "עדכן את המפות שהורדת"; - -/* Autoupdate dialog on start */ -"whats_new_auto_update_message" = "עדכון המפות שומר על המידע שבהן עדכני"; - -/* Autoupdate dialog on start */ -"whats_new_auto_update_button_size" = "עדכן (%s)"; - -/* Autoupdate dialog on start */ -"whats_new_auto_update_button_later" = "עדכן ידנית מאוחר יותר"; - -/* Delete track button on track edit screen */ -"placepage_delete_track_button" = "Delete Track"; - -/* Placeholder for track name input on track edit screen */ -"placepage_track_name_hint" = "Track Name"; - -/* move track or bookmark from the list button text */ -"move" = "Move"; - -/* edit track screen title */ -"track_title" = "מַסלוּל"; - - -/********** Types **********/ - -"type.aerialway" = "Aerialway"; - -"type.aerialway.cable_car" = "Aerialway"; - -"type.aerialway.chair_lift" = "Aerialway"; - -"type.aerialway.drag_lift" = "Aerialway"; - -"type.aerialway.gondola" = "Aerialway"; - -"type.aerialway.mixed_lift" = "Aerialway"; - -"type.aerialway.station" = "Aerialway Station"; - -"type.aeroway" = "Aeroway"; - -"type.aeroway.aerodrome" = "Airport"; - -"type.aeroway.aerodrome.international" = "Airport"; - -"type.aeroway.apron" = "aeroway-apron"; - -"type.aeroway.gate" = "Gate"; - -"type.aeroway.helipad" = "Helipad"; - -"type.aeroway.runway" = "aeroway-runway"; - -"type.aeroway.taxiway" = "aeroway-taxiway"; - -"type.aeroway.terminal" = "Terminal"; - -"type.amenity" = "Amenity"; - -"type.amenity.arts_centre" = "Art Center"; - -"type.amenity.atm" = "ATM"; - -"type.amenity.bank" = "Bank"; - -"type.amenity.bar" = "Bar"; - -"type.amenity.bbq" = "Picnic Site"; - -"type.amenity.bench" = "Bench"; - -"type.amenity.bicycle_parking" = "Bicycle Parking"; - -"type.amenity.bicycle_rental" = "Bicycle Rental"; - -"type.amenity.biergarten" = "Biergarten"; - -"type.amenity.brothel" = "Brothel"; - -"type.amenity.bureau_de_change" = "Currency Exchange"; - -"type.amenity.bus_station" = "Bus Station"; - -"type.amenity.cafe" = "Cafe"; - -"type.amenity.car_rental" = "Car Rental"; - -"type.amenity.car_sharing" = "Car Sharing"; - -"type.amenity.car_wash" = "Car Wash"; - -"type.amenity.casino" = "Casino"; - -"type.amenity.charging_station" = "Charging Station"; - -"type.amenity.childcare" = "Nursery"; - -"type.amenity.cinema" = "Cinema"; - -"type.amenity.clinic" = "Clinic"; - -"type.amenity.college" = "College"; - -"type.amenity.community_centre" = "Community Centre"; - -"type.amenity.courthouse" = "Courthouse"; - -"type.amenity.dentist" = "Dentist"; - -"type.amenity.doctors" = "Doctor"; - -"type.amenity.drinking_water" = "Drinking Water"; - -"type.amenity.driving_school" = "Driving School"; - -"type.office.diplomatic" = "Embassy"; - -"type.amenity.fast_food" = "Fast Food"; - -"type.amenity.ferry_terminal" = "Ferry"; - -"type.amenity.fire_station" = "Fire Station"; - -"type.amenity.food_court" = "Food Court"; - -"type.amenity.fountain" = "Fountain"; - -"type.amenity.fuel" = "Gas Station"; - -"type.amenity.grave_yard" = "Graveyard"; - -"type.amenity.grave_yard.christian" = "Graveyard"; - -"type.amenity.hospital" = "Hospital"; - -"type.amenity.hunting_stand" = "Hunting Stand"; - -"type.amenity.ice_cream" = "Ice Cream Stand"; - -"type.amenity.internet_cafe" = "Internet Cafe"; - -"type.amenity.kindergarten" = "Kindergarten"; - -"type.amenity.library" = "Library"; - -"type.amenity.marketplace" = "Marketplace"; - -"type.amenity.motorcycle_parking" = "Motorcycle Parking"; - -"type.amenity.nightclub" = "Nightclub"; - -"type.amenity.nursing_home" = "Nursing Home"; - -"type.amenity.parking" = "Parking"; - -"type.amenity.parking.fee" = "Parking"; - -"type.amenity.parking.multi.storey" = "Parking"; - -"type.amenity.parking.no.access" = "Parking"; - -"type.amenity.parking.park_and_ride" = "Parking"; - -"type.amenity.parking.permissive" = "Parking"; - -"type.amenity.parking.private" = "Parking"; - -"type.amenity.parking.underground" = "Parking"; - -"type.amenity.parking_space" = "Parking Space"; - -"type.amenity.parking_space.permissive" = "Parking Space"; - -"type.amenity.parking_space.private" = "Parking Space"; - -"type.amenity.parking_space.underground" = "Parking Space"; - -"type.amenity.payment_terminal" = "Payment Terminal"; - -"type.amenity.pharmacy" = "Pharmacy"; - -"type.amenity.place_of_worship" = "Place of Worship"; - -"type.amenity.place_of_worship.buddhist" = "Temple"; - -"type.amenity.place_of_worship.christian" = "Church"; - -"type.amenity.place_of_worship.hindu" = "Temple"; - -"type.amenity.place_of_worship.jewish" = "Synagogue"; - -"type.amenity.place_of_worship.muslim" = "Mosque"; - -"type.amenity.place_of_worship.shinto" = "Shrine"; - -"type.amenity.place_of_worship.taoist" = "Temple"; - -"type.amenity.police" = "Police"; - -"type.amenity.post_box" = "Postbox"; - -"type.amenity.post_office" = "Post Office"; - -"type.amenity.prison" = "Prison"; - -"type.amenity.pub" = "Pub"; - -"type.amenity.public_bookcase" = "Book Exchange"; - -"type.amenity.recycling" = "Recycling Center"; - -"type.amenity.recycling_container" = "Recycling Container"; - -"type.recycling.toxic" = "Toxic Waste"; - -"type.recycling.clothes" = "Old Clothes"; - -"type.recycling.glass_bottles" = "Glass Bottles"; - -"type.recycling.paper" = "Paper Waste"; - -"type.recycling.plastic" = "Plastic Waste"; - -"type.recycling.plastic_bottles" = "Plastic Bottles"; - -"type.recycling.scrap_metal" = "Scrap Metal"; - -"type.recycling.small_appliances" = "Electronic Waste"; - -"type.amenity.restaurant" = "Restaurant"; - -"type.amenity.school" = "School"; - -"type.amenity.shelter" = "Shelter"; - -"type.amenity.shower" = "Shower"; - -"type.amenity.taxi" = "Taxi"; - -"type.amenity.telephone" = "Phone"; - -"type.amenity.theatre" = "Theatre"; - -"type.amenity.toilets" = "Toilet"; - -"type.amenity.townhall" = "Town Hall"; - -"type.amenity.university" = "University"; - -"type.amenity.vending_machine" = "Vending Machine"; - -"type.amenity.vending_machine.cigarettes" = "Cigarette Dispenser"; - -"type.amenity.vending_machine.drinks" = "Drink Dispenser"; - -"type.amenity.vending_machine.parking_tickets" = "Parking Tickets"; - -"type.amenity.vending_machine.public_transport_tickets" = "Vending Machine for Public Transport Tickets"; - -"type.amenity.veterinary" = "Veterinary Doctor"; - -"type.amenity.waste_basket" = "Trash Bin"; - -"type.amenity.waste_disposal" = "Dumpster"; - -"type.amenity.water_point" = "Water Point"; - -"type.barrier" = "Barrier"; - -"type.barrier.block" = "Block"; - -"type.barrier.bollard" = "Pillar"; - -"type.barrier.border_control" = "Border Control"; - -"type.barrier.chain" = "Chain"; - -"type.barrier.city_wall" = "City Wall"; - -"type.barrier.cycle_barrier" = "Cycle Barrier"; - -"type.barrier.entrance" = "Entrance"; - -"type.barrier.fence" = "Fence"; - -"type.barrier.gate" = "Gate"; - -"type.barrier.hedge" = "Hedge"; - -"type.barrier.lift_gate" = "Lift Gate"; - -"type.barrier.retaining_wall" = "Retaining Wall"; - -"type.barrier.stile" = "Stile"; - -"type.barrier.swing_gate" = "Swing Gate"; - -"type.barrier.toll_booth" = "Toll Booth"; - -"type.barrier.wall" = "Wall"; - -"type.boundary" = "Boundary"; - -"type.boundary.administrative" = "boundary-administrative"; - -"type.boundary.administrative.10" = "boundary-administrative-10"; - -"type.boundary.administrative.11" = "boundary-administrative-11"; - -"type.boundary.administrative.2" = "boundary-administrative-2"; - -"type.boundary.administrative.3" = "boundary-administrative-3"; - -"type.boundary.administrative.4" = "boundary-administrative-4"; - -"type.boundary.administrative.4.state" = "boundary-administrative-4-state"; - -"type.boundary.administrative.5" = "boundary-administrative-5"; - -"type.boundary.administrative.6" = "boundary-administrative-6"; - -"type.boundary.administrative.7" = "boundary-administrative-7"; - -"type.boundary.administrative.8" = "boundary-administrative-8"; - -"type.boundary.administrative.9" = "boundary-administrative-9"; - -"type.boundary.administrative.city" = "boundary-administrative-city"; - -"type.boundary.administrative.country" = "boundary-administrative-country"; - -"type.boundary.administrative.county" = "boundary-administrative-county"; - -"type.boundary.administrative.municipality" = "boundary-administrative-municipality"; - -"type.boundary.administrative.nation" = "boundary-administrative-nation"; - -"type.boundary.administrative.region" = "boundary-administrative-region"; - -"type.boundary.administrative.state" = "boundary-administrative-state"; - -"type.boundary.administrative.suburb" = "boundary-administrative-suburb"; - -"type.boundary.national_park" = "National Park"; - -"type.building" = "Building"; - -"type.building.address" = "Building"; - -"type.building.garage" = "Garage"; - -"type.building.has_parts" = "Building"; - -"type.building.train_station" = "Train Station"; - -"type.building.warehouse" = "Warehouse"; - -"type.craft" = "Craft"; - -"type.craft.brewery" = "Craft Brewery"; - -"type.craft.carpenter" = "Carpenter"; - -"type.craft.electrician" = "Electrician"; - -"type.craft.gardener" = "Gardener"; - -"type.craft.hvac" = "Hvac"; - -"type.craft.metal_construction" = "Metal Worker"; - -"type.craft.painter" = "Painter"; - -"type.craft.photographer" = "Photographer"; - -"type.craft.plumber" = "Plumber"; - -"type.craft.shoemaker" = "Shoe Repair"; - -"type.craft.tailor" = "Tailor"; - -"type.cuisine.african" = "מטבח אפריקאי"; - -"type.cuisine.american" = "מטבח אמריקאי"; - -"type.cuisine.arab" = "מטבח ערבי"; - -"type.cuisine.argentinian" = "מטבח ארגטינאי"; - -"type.cuisine.asian" = "מטבח אסיאתי"; - -"type.cuisine.austrian" = "מטבח אוסטרי"; - -"type.cuisine.bagel" = "בייגל"; - -"type.cuisine.balkan" = "מטבח בלקני"; - -"type.cuisine.barbecue" = "ברביקיו"; - -"type.cuisine.bavarian" = "מטבח של בוואריה"; - -"type.cuisine.beef_bowl" = "קערת בשר בקר"; - -"type.cuisine.brazilian" = "מטבח ברזילאי"; - -"type.cuisine.breakfast" = "ארוחת בוקר"; - -"type.cuisine.burger" = "המבורגר"; - -"type.cuisine.buschenschank" = "בושנשאנק"; - -"type.cuisine.cake" = "עוגה"; - -"type.cuisine.caribbean" = "מטבח קריבי"; - -"type.cuisine.chicken" = "עוף"; - -"type.cuisine.chinese" = "מטבח סיני"; - -"type.cuisine.coffee_shop" = "הֶפָק"; - -"type.cuisine.crepe" = "קרפ"; - -"type.cuisine.croatian" = "מטבח קרואטי"; - -"type.cuisine.curry" = "קארי"; - -"type.cuisine.deli" = "מעדנייה"; - -"type.cuisine.diner" = "דיינר"; - -"type.cuisine.donut" = "דונאט"; - -"type.cuisine.ethiopian" = "מטבח אתיופי"; - -"type.cuisine.filipino" = "מטבח פיליפיני"; - -"type.cuisine.fine_dining" = "אכילה במסעדות יוקרה"; - -"type.cuisine.fish" = "דגים"; - -"type.cuisine.fish_and_chips" = "פיש אנד צ'יפס"; - -"type.cuisine.french" = "מטבח צרפתי"; - -"type.cuisine.friture" = "פריטורה"; - -"type.cuisine.georgian" = "מטבח גיאורגי"; - -"type.cuisine.german" = "מטבח גרמני"; - -"type.cuisine.greek" = "מטבח יווני"; - -"type.cuisine.grill" = "גריל"; - -"type.cuisine.heuriger" = "הויריגר"; - -"type.cuisine.hotdog" = "נקניקיה"; - -"type.cuisine.hungarian" = "מטבח הונגרי"; - -"type.cuisine.ice_cream" = "גלידה"; - -"type.cuisine.indian" = "מטבח הודי"; - -"type.cuisine.indonesian" = "מטבח אינדונזי"; - -"type.cuisine.international" = "מטבח בינלאומי"; - -"type.cuisine.irish" = "מטבח אירי"; - -"type.cuisine.italian" = "מטבח איטלקי"; - -"type.cuisine.italian_pizza" = "מטבח איטלקי;פיצה"; - -"type.cuisine.japanese" = "מטבח יפני"; - -"type.cuisine.kebab" = "קבב"; - -"type.cuisine.korean" = "מטבח קוריאני"; - -"type.cuisine.lao" = "מטבח לאו"; - -"type.cuisine.lebanese" = "מטבח לבנוני"; - -"type.cuisine.local" = "מטבח מקומי"; - -"type.cuisine.malagasy" = "מלגאסי"; - -"type.cuisine.malaysian" = "מטבח מלזי"; - -"type.cuisine.mediterranean" = "מטבח ים-תיכוני"; - -"type.cuisine.mexican" = "מטבח מקסיקני"; - -"type.cuisine.moroccan" = "מטבח מרוקאי"; - -"type.cuisine.noodles" = "אטריות"; - -"type.cuisine.oriental" = "מטבח מזרחי"; - -"type.cuisine.pancake" = "פנקייק"; - -"type.cuisine.pasta" = "פסטה"; - -"type.cuisine.persian" = "מטבח פרסי"; - -"type.cuisine.peruvian" = "מטבח פרואני"; - -"type.cuisine.pizza" = "פיצה"; - -"type.cuisine.polish" = "מטבח פולני"; - -"type.cuisine.portuguese" = "מטבח פורטוגלי"; - -"type.cuisine.ramen" = "ראמן"; - -"type.cuisine.regional" = "מטבח אזורי"; - -"type.cuisine.russian" = "מטבח רוסי"; - -"type.cuisine.sandwich" = "סנדוויץ'"; - -"type.cuisine.sausage" = "נקניק"; - -"type.cuisine.savory_pancakes" = "חביתיות טעימות"; - -"type.cuisine.seafood" = "מאכלי ים"; - -"type.cuisine.soba" = "אטריות סובה"; - -"type.cuisine.spanish" = "מטבח ספרדי"; - -"type.cuisine.steak_house" = "סטייקיה"; - -"type.cuisine.sushi" = "סושי"; - -"type.cuisine.tapas" = "טאפאס"; - -"type.cuisine.tea" = "תה"; - -"type.cuisine.thai" = "מטבח תאילנדי"; - -"type.cuisine.turkish" = "מטבח תורכי"; - -"type.cuisine.vegan" = "מטבח טבעוני"; - -"type.cuisine.vegetarian" = "מטבח צמחוני"; - -"type.cuisine.vietnamese" = "מטבח וייטנאמי"; - -"type.emergency" = "Emergency"; - -"type.emergency.defibrillator" = "Defibrillator"; - -"type.emergency.fire_hydrant" = "Fire Hydrant"; - -"type.emergency.phone" = "Emergency Phone"; - -"type.entrance" = "Entrance"; - -"type.healthcare.laboratory" = "תיאופר הדבעמ"; - - -/********** Types: Roads **********/ - -"type.highway" = "Highway"; - -"type.highway.bridleway" = "Bridle Path"; - -"type.highway.bridleway.bridge" = "Bridle Path"; - -"type.highway.bridleway.permissive" = "Bridle Path"; - -"type.highway.bridleway.tunnel" = "Bridle Path"; - -"type.highway.bus_stop" = "Bus Stop"; - -"type.highway.construction" = "Road Under Construction"; - -"type.highway.cycleway" = "Cycle Path"; - -"type.highway.cycleway.bridge" = "Cycle Path"; - -"type.highway.cycleway.permissive" = "Cycle Path"; - -"type.highway.cycleway.tunnel" = "Cycle Path"; - -"type.highway.elevator" = "Elevator"; - -"type.highway.footway" = "Foot Path"; - -"type.highway.footway.alpine_hiking" = "Path"; - -"type.highway.footway.area" = "Foot Path"; - -"type.highway.footway.bridge" = "Foot Path"; - -"type.highway.footway.demanding_alpine_hiking" = "Path"; - -"type.highway.footway.demanding_mountain_hiking" = "Path"; - -"type.highway.footway.difficult_alpine_hiking" = "Path"; - -"type.highway.footway.hiking" = "Path"; - -"type.highway.footway.mountain_hiking" = "Path"; - -"type.highway.footway.permissive" = "Foot Path"; - -"type.highway.footway.tunnel" = "Foot Path"; - -"type.highway.ford" = "Ford"; - -"type.highway.living_street" = "Living Street"; - -"type.highway.living_street.bridge" = "Living Street"; - -"type.highway.living_street.tunnel" = "Living Street"; - -"type.highway.motorway" = "Motorway"; - -"type.highway.motorway.bridge" = "Motorway"; - -"type.highway.motorway.tunnel" = "Motorway"; - -"type.highway.motorway_junction" = "Road Exit"; - -"type.highway.motorway_link" = "Motorway"; - -"type.highway.motorway_link.bridge" = "Motorway"; - -"type.highway.motorway_link.tunnel" = "Motorway"; - -"type.highway.path" = "Path"; - -"type.highway.path.alpine_hiking" = "Path"; - -"type.highway.path.bicycle" = "Path"; - -"type.highway.path.bridge" = "Path"; - -"type.highway.path.demanding_alpine_hiking" = "Path"; - -"type.highway.path.demanding_mountain_hiking" = "Path"; - -"type.highway.path.difficult_alpine_hiking" = "Path"; - -"type.highway.path.hiking" = "Path"; - -"type.highway.path.horse" = "Path"; - -"type.highway.path.mountain_hiking" = "Path"; - -"type.highway.path.permissive" = "Path"; - -"type.highway.path.tunnel" = "Path"; - -"type.highway.pedestrian" = "Pedestrian Street"; - -"type.highway.pedestrian.area" = "Pedestrian Street"; - -"type.highway.pedestrian.bridge" = "Pedestrian Street"; - -"type.highway.pedestrian.tunnel" = "Pedestrian Street"; - -"type.highway.primary" = "Primary Road"; - -"type.highway.primary.bridge" = "Primary Road"; - -"type.highway.primary.tunnel" = "Primary Road"; - -"type.highway.primary_link" = "Primary Road"; - -"type.highway.primary_link.bridge" = "Primary Road"; - -"type.highway.primary_link.tunnel" = "Primary Road"; - -"type.highway.raceway" = "Racetrack"; - -"type.highway.residential" = "Street"; - -"type.highway.residential.area" = "Street"; - -"type.highway.residential.bridge" = "Street"; - -"type.highway.residential.tunnel" = "Street"; - -"type.highway.rest_area" = "Rest Area"; - -"type.highway.road" = "Road"; - -"type.highway.road.bridge" = "Road"; - -"type.highway.road.tunnel" = "Road"; - -"type.highway.secondary" = "Secondary Road"; - -"type.highway.secondary.bridge" = "Secondary Road"; - -"type.highway.secondary.tunnel" = "Secondary Road"; - -"type.highway.secondary_link" = "Secondary Road"; - -"type.highway.secondary_link.bridge" = "Secondary Road"; - -"type.highway.secondary_link.tunnel" = "Secondary Road"; - -"type.highway.service" = "Service Road"; - -"type.highway.service.area" = "Service Road"; - -"type.highway.service.bridge" = "Service Road"; - -"type.highway.service.driveway" = "Service Road"; - -"type.highway.service.parking_aisle" = "Service Road"; - -"type.highway.service.tunnel" = "Service Road"; - -"type.highway.services" = "Service Area"; - -"type.highway.speed_camera" = "Speed Camera"; - -"type.highway.steps" = "Stairs"; - -"type.highway.steps.bridge" = "Stairs"; - -"type.highway.steps.tunnel" = "Stairs"; - -"type.highway.tertiary" = "Tertiary Road"; - -"type.highway.tertiary.bridge" = "Tertiary Road"; - -"type.highway.tertiary.tunnel" = "Tertiary Road"; - -"type.highway.tertiary_link" = "Tertiary Road"; - -"type.highway.tertiary_link.bridge" = "Tertiary Road"; - -"type.highway.tertiary_link.tunnel" = "Tertiary Road"; - -"type.highway.track" = "Track"; - -"type.highway.track.area" = "Track"; - -"type.highway.track.bridge" = "Track"; - -"type.highway.track.grade1" = "Track"; - -"type.highway.track.grade2" = "Track"; - -"type.highway.track.grade3" = "Track"; - -"type.highway.track.grade4" = "Track"; - -"type.highway.track.grade5" = "Track"; - -"type.highway.track.no.access" = "Track"; - -"type.highway.track.permissive" = "Track"; - -"type.highway.track.tunnel" = "Track"; - -"type.highway.traffic_signals" = "Traffic Lights"; - -"type.highway.trunk" = "National Highway"; - -"type.highway.trunk.bridge" = "National Highway"; - -"type.highway.trunk.tunnel" = "National Highway"; - -"type.highway.trunk_link" = "National Highway"; - -"type.highway.trunk_link.bridge" = "National Highway"; - -"type.highway.trunk_link.tunnel" = "National Highway"; - -"type.highway.unclassified" = "Minor Road"; - -"type.highway.unclassified.area" = "Minor Road"; - -"type.highway.unclassified.bridge" = "Minor Road"; - -"type.highway.unclassified.tunnel" = "Minor Road"; - -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Foot Path"; - -"type.area_highway.living_street" = "Living Street"; - -"type.area_highway.motorway" = "Motorway"; - -"type.area_highway.path" = "Path"; - -"type.area_highway.pedestrian" = "Pedestrian Street"; - -"type.area_highway.primary" = "Primary Road"; - -"type.area_highway.residential" = "Street"; - -"type.area_highway.secondary" = "Secondary Road"; - -"type.area_highway.service" = "Service Road"; - -"type.area_highway.tertiary" = "Tertiary Road"; - -"type.area_highway.steps" = "Stairs"; - -"type.area_highway.track" = "Track"; - -"type.area_highway.trunk" = "National Highway"; - -"type.area_highway.unclassified" = "Minor Road"; - -"type.highway.world_level" = "highway-world_level"; - -"type.highway.world_towns_level" = "highway-world_towns_level"; - - -/********** Types: Historic **********/ - -"type.historic" = "Historic"; - -"type.historic.archaeological_site" = "Archaeological Site"; - -"type.historic.battlefield" = "Battlefield"; - -"type.historic.boundary_stone" = "Boundary Stone"; - -"type.historic.castle" = "Castle"; - -"type.historic.castle.defensive" = "Castle"; - -"type.historic.castle.stately" = "Castle"; - -"type.historic.citywalls" = "City Wall"; - -"type.historic.fort" = "Fort"; - -"type.historic.memorial" = "Memorial"; - -"type.historic.memorial.plaque" = "Commemorative plaque"; - -"type.historic.memorial.sculpture" = "Sculpture"; - -"type.historic.memorial.statue" = "Statue"; - -"type.historic.monument" = "Monument"; - -"type.historic.ruins" = "Ruins"; - -"type.historic.ship" = "Ship"; - -"type.historic.tomb" = "Tomb"; - -"type.historic.wayside_cross" = "Christian Cross"; - -"type.historic.wayside_shrine" = "Shrine"; - -"type.hwtag" = "hwtag"; - -"type.hwtag.bidir_bicycle" = "hwtag-bidir_bicycle"; - -"type.hwtag.onedir_bicycle" = "hwtag-onedir_bicycle"; - -"type.hwtag.lit" = "hwtag-lit"; - -"type.hwtag.nobicycle" = "hwtag-nobicycle"; - -"type.hwtag.nocar" = "hwtag-nocar"; - -"type.hwtag.nofoot" = "hwtag-nofoot"; - -"type.hwtag.oneway" = "hwtag-oneway"; - -"type.hwtag.private" = "hwtag-private"; - -"type.hwtag.toll" = "hwtag-toll"; - -"type.hwtag.yesbicycle" = "hwtag-yesbicycle"; - -"type.hwtag.yescar" = "hwtag-yescar"; - -"type.hwtag.yesfoot" = "hwtag-yesfoot"; - -"type.internet_access" = "Internet"; - -"type.internet_access.wlan" = "Internet"; - -"type.junction" = "Junction"; - -"type.junction.roundabout" = "Roundabout"; - -"type.landuse" = "Landuse"; - -"type.landuse.allotments" = "Allotments"; - -"type.landuse.basin" = "אגן מים"; - -"type.landuse.brownfield" = "Brownfield"; - -"type.landuse.cemetery" = "Graveyard"; - -"type.landuse.cemetery.christian" = "Christian Graveyard"; - -"type.landuse.churchyard" = "Churchyard"; - -"type.landuse.commercial" = "Commercial Area"; - -"type.landuse.construction" = "Construction"; - -"type.landuse.farm" = "Farm"; - -"type.landuse.farmland" = "Farmland"; - -"type.landuse.farmyard" = "Farmyard"; - -"type.landuse.field" = "Field"; - -"type.landuse.forest" = "Forest"; - -"type.landuse.forest.coniferous" = "Coniferous Forest"; - -"type.landuse.forest.deciduous" = "Deciduous Forest"; - -"type.landuse.forest.mixed" = "Mixed Forest"; - -"type.landuse.garages" = "Garages"; - -"type.landuse.grass" = "Lawn"; - -"type.landuse.greenfield" = "Greenfield"; - -"type.landuse.greenhouse_horticulture" = "Greenhouse"; - -"type.landuse.industrial" = "Industrial Land"; - -"type.landuse.landfill" = "Landfill"; - -"type.landuse.meadow" = "Meadow"; - -"type.landuse.military" = "Military Area"; - -"type.landuse.orchard" = "Orchard"; - -"type.landuse.quarry" = "Quarry"; - -"type.landuse.railway" = "Railway Premises"; - -"type.landuse.recreation_ground" = "Recreation Ground"; - -"type.landuse.reservoir" = "Water"; - -"type.landuse.residential" = "Residential Land"; - -"type.landuse.retail" = "Retail Land"; - -"type.landuse.salt_pond" = "Pond"; - -"type.landuse.village_green" = "Land"; - -"type.landuse.vineyard" = "Vineyard"; - -"type.leisure" = "Leisure"; - -"type.leisure.common" = "leisure-common"; - -"type.leisure.dog_park" = "Dog Area"; - -"type.leisure.fitness_centre" = "Fitness Centre"; - -"type.leisure.fitness_station" = "Fitness Station"; - -"type.leisure.garden" = "Garden"; - -"type.leisure.golf_course" = "Golf Course"; - -"type.leisure.ice_rink" = "Ice Rink"; - -"type.leisure.landscape_reserve" = "Landscape Reserve"; - -"type.leisure.marina" = "Marina"; - -"type.leisure.nature_reserve" = "Nature Reserve"; - -"type.leisure.park" = "Park"; - -"type.leisure.park.no.access" = "Park"; - -"type.leisure.park.permissive" = "Park"; - -"type.leisure.park.private" = "Park"; - -"type.leisure.picnic_table" = "קינקיפ ןחלוש"; - -"type.leisure.pitch" = "Sports Ground"; - -"type.leisure.playground" = "Playground"; - -"type.leisure.recreation_ground" = "Recreation Ground"; - -"type.leisure.sauna" = "Sauna"; - -"type.leisure.slipway" = "Slipway"; - -"type.leisure.sports_centre" = "Sports Center"; - -"type.leisure.sports_centre.climbing" = "Climbing Centre"; - -"type.leisure.sports_centre.shooting" = "Shooting Range"; - -"type.leisure.sports_centre.swimming" = "Swimming Centre"; - -"type.leisure.sports_centre.yoga" = "Yoga Studio"; - -"type.leisure.stadium" = "Stadium"; - -"type.leisure.swimming_pool" = "Swimming Pool"; - -"type.leisure.track" = "Track"; - -"type.leisure.water_park" = "Water Park"; - -"type.leisure.beach_resort" = "Beach Resort"; - -"type.man_made" = "Man Made"; - -"type.man_made.breakwater" = "Breakwater"; - -"type.man_made.cairn" = "Cairn"; - -"type.man_made.chimney" = "Factory Chimney"; - -"type.man_made.cutline" = "Cutline"; - -"type.man_made.lighthouse" = "Lighthouse"; - -"type.man_made.pier" = "Pier"; - -"type.man_made.pipeline" = "Pipeline"; - -"type.man_made.pipeline.overground" = "Overground Pipeline"; - -"type.man_made.silo" = "Silo"; - -"type.man_made.storage_tank" = "Storage Tank"; - -"type.man_made.surveillance" = "Surveillance Camera"; - -"type.man_made.tower" = "Tower"; - -"type.man_made.wastewater_plant" = "Wastewater Plant"; - -"type.man_made.water_tap" = "Water Tap"; - -"type.man_made.water_tower" = "Water Tower"; - -"type.man_made.water_well" = "Water Well"; - -"type.man_made.windmill" = "Windmill"; - -"type.man_made.works" = "Industrial Works"; - -"type.mapswithme" = "mapswithme"; - -"type.mapswithme.grid" = "mapswithme-grid"; - -"type.military" = "Military"; - -"type.military.bunker" = "Bunker"; - -"type.mountain_pass" = "Mountain Pass"; - -"type.natural" = "Natural"; - -"type.natural.bare_rock" = "Bare Rock"; - -"type.natural.bay" = "Bay"; - -"type.natural.beach" = "Beach"; - -"type.natural.beach.sand" = "Sandy Beach"; - -"type.natural.beach.gravel" = "Gravel Beach"; - -"type.natural.cape" = "Cape"; - -"type.natural.cave_entrance" = "Cave"; - -"type.natural.cliff" = "Cliff"; - -"type.natural.coastline" = "Coastline"; - -"type.natural.geyser" = "Geyser"; - -"type.natural.glacier" = "Glacier"; - -"type.natural.grassland" = "Field"; - -"type.natural.heath" = "Heath"; - -"type.natural.hot_spring" = "Hot Spring"; - -"type.natural.water.lake" = "Lake"; - -"type.natural.water.pond" = "Pond"; - -"type.natural.water.reservoir" = "מאגר"; - -"type.natural.water.basin" = "אגן מים"; - -"type.natural.water.river" = "River"; - -"type.natural.land" = "Land"; - -"type.natural.meadow" = "Meadow"; - -"type.natural.orchard" = "Orchard"; - -"type.natural.peak" = "Peak"; - -"type.natural.saddle" = "Mountain Saddle"; - -"type.natural.rock" = "Rock"; - -"type.natural.scrub" = "Scrub"; - -"type.natural.spring" = "Spring"; - -"type.natural.strait" = "Strait"; - -"type.natural.tree" = "Tree"; - -"type.natural.tree_row" = "Tree Row"; - -"type.natural.vineyard" = "Vineyard"; - -"type.natural.volcano" = "Volcano"; - -"type.natural.water" = "גוף מים"; - -"type.natural.wetland" = "Wetland"; - -"type.natural.wetland.bog" = "Wetland"; - -"type.natural.wetland.marsh" = "Wetland"; - -"type.noexit" = "noexit"; - -"type.noexit.motor_vehicle" = "noexit-motor_vehicle"; - -"type.office" = "Office"; - -"type.office.company" = "Company Office"; - -"type.office.estate_agent" = "Estate Agent"; - -"type.office.government" = "Government Office"; - -"type.office.insurance" = "Insurance Office"; - -"type.office.lawyer" = "Lawyer"; - -"type.office.ngo" = "NGO Office"; - -"type.office.telecommunication" = "Mobile Operator"; - -"type.place" = "place"; - -"type.place.city" = "City"; - -"type.place.city.capital" = "Capital"; - -"type.place.city.capital.10" = "City"; - -"type.place.city.capital.11" = "City"; - -"type.place.city.capital.2" = "Capital"; - -"type.place.city.capital.3" = "City"; - -"type.place.city.capital.4" = "City"; - -"type.place.city.capital.5" = "City"; - -"type.place.city.capital.6" = "City"; - -"type.place.city.capital.7" = "City"; - -"type.place.city.capital.8" = "City"; - -"type.place.city.capital.9" = "City"; - -"type.place.continent" = "Continent"; - -"type.place.country" = "Country"; - -"type.place.county" = "County"; - -"type.place.farm" = "Farm"; - -"type.place.hamlet" = "Hamlet"; - -"type.place.island" = "Island"; - -"type.place.islet" = "Island"; - -"type.place.isolated_dwelling" = "Dwelling"; - -"type.place.locality" = "Locality"; - -"type.place.neighbourhood" = "Neighbourhood"; - -"type.place.ocean" = "Ocean"; - -"type.place.region" = "Region"; - -"type.place.sea" = "Sea"; - -"type.place.square" = "Square"; - -"type.place.state" = "State"; - -"type.place.state.USA" = "State"; - -"type.place.suburb" = "Suburb"; - -"type.place.town" = "Town"; - -"type.place.village" = "Village"; - -"type.power" = "Power"; - -"type.power.generator" = "Generator"; - -"type.power.line" = "Power Line"; - -"type.power.line.underground" = "Underground Power Line"; - -"type.power.minor_line" = "Minor Power Line"; - -"type.power.pole" = "Power Tower"; - -"type.power.station" = "Power Station"; - -"type.power.substation" = "Substation"; - -"type.power.tower" = "Power Tower"; - -"type.psurface" = "psurface"; - -"type.psurface.paved_bad" = "psurface-paved_bad"; - -"type.psurface.paved_good" = "psurface-paved_good"; - -"type.psurface.unpaved_bad" = "psurface-unpaved_bad"; - -"type.psurface.unpaved_good" = "psurface-unpaved_good"; - -"type.public_transport" = "Public Transport"; - -"type.public_transport.platform" = "Platform"; - -"type.railway" = "Railway"; - -"type.railway.abandoned" = "Abandoned railway"; - -"type.railway.abandoned.bridge" = "Abandoned railway"; - -"type.railway.abandoned.tunnel" = "Abandoned Railway"; - -"type.railway.construction" = "Railway's Construction"; - -"type.railway.crossing" = "Railway Crossing"; - -"type.railway.disused" = "Disused railway"; - -"type.railway.funicular" = "Funicular"; - -"type.railway.funicular.bridge" = "Funicular"; - -"type.railway.funicular.tunnel" = "Funicular"; - -"type.railway.halt" = "Train Station"; - -"type.railway.level_crossing" = "Level Crossing"; - -"type.railway.light_rail" = "Light Rail"; - -"type.railway.light_rail.bridge" = "Light Rail"; - -"type.railway.light_rail.tunnel" = "Light Rail"; - -"type.railway.monorail" = "Monorail"; - -"type.railway.monorail.bridge" = "Monorail"; - -"type.railway.monorail.tunnel" = "Monorail"; - -"type.railway.narrow_gauge" = "Narrow Gauge Rail"; - -"type.railway.narrow_gauge.bridge" = "Narrow Gauge Rail"; - -"type.railway.narrow_gauge.tunnel" = "Narrow Gauge Rail"; - -"type.railway.platform" = "Platform"; - -"type.railway.preserved" = "Preserved Rail"; - -"type.railway.preserved.bridge" = "Preserved Rail"; - -"type.railway.preserved.tunnel" = "Preserved Rail"; - -"type.railway.rail" = "Railway"; - -"type.railway.rail.bridge" = "Railway"; - -"type.railway.rail.motor_vehicle" = "Railway"; - -"type.railway.rail.tunnel" = "Railway"; - -"type.railway.razed" = "Razed Rail"; - -"type.railway.siding" = "Siding Rail"; - -"type.railway.siding.bridge" = "Siding Rail"; - -"type.railway.siding.tunnel" = "Siding Rail"; - -"type.railway.spur" = "Spur Rail"; - -"type.railway.spur.bridge" = "Spur Rail"; - -"type.railway.spur.tunnel" = "Spur Rail"; - -"type.railway.station" = "Train Station"; - -"type.railway.station.light_rail" = "Train Station"; - -"type.railway.station.monorail" = "Train Station"; - -"type.railway.station.subway" = "Subway"; - -"type.railway.station.subway.barcelona" = "Subway"; - -"type.railway.station.subway.berlin" = "Subway"; - -"type.railway.station.subway.kiev" = "Subway"; - -"type.railway.station.subway.london" = "Subway"; - -"type.railway.station.subway.madrid" = "Subway"; - -"type.railway.station.subway.minsk" = "Subway"; - -"type.railway.station.subway.moscow" = "Subway"; - -"type.railway.station.subway.newyork" = "Subway"; - -"type.railway.station.subway.paris" = "Subway"; - -"type.railway.station.subway.roma" = "Subway"; - -"type.railway.station.subway.spb" = "Subway"; - -"type.railway.subway" = "Subway Line"; - -"type.railway.subway.bridge" = "Subway Line"; - -"type.railway.subway.tunnel" = "Subway Line"; - -"type.railway.subway_entrance" = "Subway Entrance"; - -"type.railway.subway_entrance.barcelona" = "Subway"; - -"type.railway.subway_entrance.berlin" = "Subway"; - -"type.railway.subway_entrance.kiev" = "Subway"; - -"type.railway.subway_entrance.london" = "Subway"; - -"type.railway.subway_entrance.madrid" = "Subway"; - -"type.railway.subway_entrance.minsk" = "Subway"; - -"type.railway.subway_entrance.moscow" = "Subway"; - -"type.railway.subway_entrance.newyork" = "Subway"; - -"type.railway.subway_entrance.paris" = "Subway"; - -"type.railway.subway_entrance.roma" = "Subway"; - -"type.railway.subway_entrance.spb" = "Subway"; - -"type.railway.tram" = "Tram Line"; - -"type.railway.tram.bridge" = "Tram Line"; - -"type.railway.tram.tunnel" = "Tram Line"; - -"type.railway.tram_stop" = "Tram Stop"; - -"type.railway.yard" = "Railway Yard"; - -"type.railway.yard.bridge" = "Railway Yard"; - -"type.railway.yard.tunnel" = "Railway Yard"; - -"type.route" = "route"; - -"type.route.ferry" = "Ferry"; - -"type.route.shuttle_train" = "Shuttle Train"; - -"type.shop" = "Shop"; - -"type.shop.alcohol" = "Liquor Store"; - -"type.shop.bakery" = "Bakery"; - -"type.shop.beauty" = "Beauty Shop"; - -"type.shop.beverages" = "Beverages"; - -"type.shop.bicycle" = "Bicycle Shop"; - -"type.shop.bookmaker" = "Bookmaker"; - -"type.shop.books" = "Bookstore"; - -"type.shop.butcher" = "Butcher’s"; - -"type.shop.car" = "Car Shop"; - -"type.shop.car_parts" = "Car Parts"; - -"type.shop.car_repair" = "Car Repair Shop"; - -"type.shop.car_repair.tyres" = "Tyre Repair"; - -"type.shop.chemist" = "Chemist Shop"; - -"type.shop.chocolate" = "Shop"; - -"type.shop.clothes" = "Clothes Shop"; - -"type.shop.coffee" = "Shop"; - -"type.shop.computer" = "Computer Store"; - -"type.shop.confectionery" = "Sweets"; - -"type.shop.convenience" = "Convenience Store"; - -"type.shop.copyshop" = "Copy Shop"; - -"type.shop.cosmetics" = "Beauty Care"; - -"type.shop.department_store" = "Department Store"; - -"type.shop.doityourself" = "Hardware Store"; - -"type.shop.dry_cleaning" = "Dry Cleaning"; - -"type.shop.electronics" = "Electronics"; - -"type.shop.erotic" = "Erotic Shop"; - -"type.shop.fabric" = "Shop"; - -"type.shop.florist" = "Florist’s"; - -"type.shop.funeral_directors" = "Funeral Directors"; - -"type.shop.furniture" = "Furniture Store"; - -"type.shop.garden_centre" = "Garden Store"; - -"type.shop.gift" = "Gift Shop"; - -"type.shop.greengrocer" = "Greengrocer's"; - -"type.shop.hairdresser" = "Hairdresser"; - -"type.shop.hardware" = "Hardware Store"; - -"type.shop.jewelry" = "Jewelry"; - -"type.shop.kiosk" = "Kiosk"; - -"type.shop.laundry" = "Laundry"; - -"type.shop.mall" = "Mall"; - -"type.shop.massage" = "Massage Salon"; - -"type.shop.mobile_phone" = "Cell Phones"; - -"type.shop.money_lender" = "Shop"; - -"type.shop.motorcycle" = "Motorcycle Shop"; - -"type.shop.music" = "Shop"; - -"type.shop.musical_instrument" = "Shop"; - -"type.shop.newsagent" = "Newspaper Stand"; - -"type.shop.optician" = "Optician’s"; - -"type.shop.outdoor" = "Outdoor Equipment"; - -"type.shop.pawnbroker" = "Pawnbroker"; - -"type.shop.pet" = "Petshop"; - -"type.shop.photo" = "Photo Shop"; - -"type.shop.seafood" = "Seafood Shop"; - -"type.shop.shoes" = "Shoe Store"; - -"type.shop.sports" = "Sports Goods"; - -"type.shop.stationery" = "Stationery Shop"; - -"type.shop.supermarket" = "Supermarket"; - -"type.shop.tattoo" = "Tattoo Parlour"; - -"type.shop.tea" = "Shop"; - -"type.shop.ticket" = "Ticket Shop"; - -"type.shop.toys" = "Toy Store"; - -"type.shop.travel_agency" = "Travel Agency"; - -"type.shop.tyres" = "Tyre Shop"; - -"type.shop.variety_store" = "Variety Store"; - -"type.shop.video" = "Video Shop"; - -"type.shop.video_games" = "Video Games Shop"; - -"type.shop.wine" = "Wine Shop"; - -"type.sport" = "sport"; - -"type.sport.american_football" = "American Football"; - -"type.sport.archery" = "Archery"; - -"type.sport.athletics" = "Athletics"; - -"type.sport.australian_football" = "Rugby"; - -"type.sport.baseball" = "Baseball"; - -"type.sport.basketball" = "Basketball"; - -"type.sport.bowls" = "Bowls"; - -"type.sport.cricket" = "Cricket"; - -"type.sport.curling" = "Сurling"; - -"type.sport.diving" = "Diving"; - -"type.sport.equestrian" = "Equestrian Sports"; - -"type.sport.golf" = "Golf"; - -"type.sport.gymnastics" = "Gymnastics"; - -"type.sport.handball" = "Handball"; - -"type.sport.multi" = "Various Sport"; - -"type.sport.scuba_diving" = "Scuba Diving"; - -"type.sport.shooting" = "Shooting"; - -"type.sport.skiing" = "Skiing"; - -"type.sport.soccer" = "Soccer (Football)"; - -"type.sport.swimming" = "Swimming"; - -"type.sport.tennis" = "Tennis Court"; - -"type.tourism" = "Tourism"; - -"type.tourism.alpine_hut" = "Mountains Lodging"; - -"type.tourism.apartment" = "Apartments"; - -"type.tourism.artwork" = "Artwork"; - -"type.tourism.artwork.architecture" = "Artwork"; - -"type.tourism.artwork.painting" = "Artwork"; - -"type.tourism.artwork.sculpture" = "Artwork"; - -"type.tourism.artwork.statue" = "Artwork"; - -"type.tourism.attraction" = "Attraction"; - -"type.tourism.attraction.animal" = "Attraction"; - -"type.tourism.attraction.specified" = "Attraction"; - -"type.tourism.camp_site" = "Camping"; - -"type.tourism.caravan_site" = "Caravan Site"; - -"type.tourism.chalet" = "Chalet"; - -"type.tourism.gallery" = "Gallery"; - -"type.tourism.guest_house" = "Guest House"; - -"type.tourism.hostel" = "Hostel"; - -"type.tourism.hotel" = "Hotel"; - -"type.tourism.information" = "Tourist Information"; - -"type.tourism.information.board" = "Information Board"; - -"type.tourism.information.guidepost" = "Tourist Information"; - -"type.tourism.information.map" = "Tourist Map"; - -"type.tourism.information.office" = "Tourist Office"; - -"type.tourism.motel" = "Motel"; - -"type.tourism.museum" = "Museum"; - -"type.tourism.picnic_site" = "Picnic Site"; - -"type.tourism.resort" = "Resort"; - -"type.tourism.theme_park" = "Theme Park"; - -"type.tourism.viewpoint" = "Viewpoint"; - -"type.tourism.wilderness_hut" = "Wilderness Hut"; - -"type.tourism.zoo" = "Zoo"; - -"type.traffic_calming" = "Traffic Calming"; - -"type.traffic_calming.bump" = "Traffic Bump"; - -"type.traffic_calming.hump" = "Traffic Hump"; - -"type.waterway" = "Waterway"; - -"type.waterway.canal" = "Canal"; - -"type.waterway.canal.tunnel" = "Canal"; - -"type.waterway.dam" = "Dam"; - -"type.waterway.ditch" = "Ditch"; - -"type.waterway.ditch.tunnel" = "Ditch"; - -"type.waterway.dock" = "Waterway Dock"; - -"type.waterway.drain" = "Drain"; - -"type.waterway.drain.tunnel" = "Drain"; - -"type.waterway.lock" = "Waterway Lock"; - -"type.waterway.lock_gate" = "Lock Gate"; - -"type.waterway.river" = "River"; - -"type.waterway.river.tunnel" = "River"; - -"type.waterway.riverbank" = "River"; - -"type.waterway.stream" = "River"; - -"type.waterway.stream.ephemeral" = "River"; - -"type.waterway.stream.intermittent" = "River"; - -"type.waterway.stream.tunnel" = "River"; - -"type.waterway.waterfall" = "Waterfall"; - -"type.waterway.weir" = "Weir"; - -"type.wheelchair" = "Wheelchair"; - -"type.wheelchair.limited" = "Limited Wheelchair Access"; - -"type.wheelchair.no" = "No Wheelchair Access"; - -"type.wheelchair.yes" = "Full Wheelchair Access"; - -"type.piste_lift" = "piste:lift"; - -"type.piste_lift.j.bar" = "piste:lift-j-bar"; - -"type.piste_lift.magic_carpet" = "piste:lift-magic_carpet"; - -"type.piste_lift.platter" = "piste:lift-platter"; - -"type.piste_lift.rope_tow" = "piste:lift-rope_tow"; - -"type.piste_lift.t.bar" = "piste:lift-t-bar"; - -"type.piste_type" = "piste:type"; - -"type.piste_type.downhill" = "piste:type-downhill"; - -"type.piste_type.downhill.advanced" = "piste:type-downhill-advanced"; - -"type.piste_type.downhill.easy" = "piste:type-downhill-easy"; - -"type.piste_type.downhill.expert" = "piste:type-downhill-expert"; - -"type.piste_type.downhill.freeride" = "piste:type-downhill-freeride"; - -"type.piste_type.downhill.intermediate" = "piste:type-downhill-intermediate"; - -"type.piste_type.downhill.novice" = "piste:type-downhill-novice"; - -"type.piste_type.nordic" = "piste:type-nordic"; - -"type.piste_type.sled" = "piste:type-sled"; - -"type.building_part" = "Building"; diff --git a/iphone/Maps/LocalizedStrings/he.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/he.lproj/Localizable.stringsdict deleted file mode 100644 index a2f2be447f..0000000000 --- a/iphone/Maps/LocalizedStrings/he.lproj/Localizable.stringsdict +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - bookmarks_places - - NSStringLocalizedFormatKey - %#@value@ - value - - NSStringFormatSpecTypeKey - NSStringPluralRuleType - NSStringFormatValueTypeKey - d - other - %d bookmarks - - - - bookmarks_detect_message - - NSStringLocalizedFormatKey - %#@value@ - value - - NSStringFormatSpecTypeKey - NSStringPluralRuleType - NSStringFormatValueTypeKey - d - other - %d files were found. You can see them after conversion. - - - - objects - - NSStringLocalizedFormatKey - %#@value@ - value - - NSStringFormatSpecTypeKey - NSStringPluralRuleType - NSStringFormatValueTypeKey - d - other - %d objects - - - - tracks - - NSStringLocalizedFormatKey - %#@value@ - value - - NSStringFormatSpecTypeKey - NSStringPluralRuleType - NSStringFormatValueTypeKey - d - other - %d tracks - - - - \ No newline at end of file diff --git a/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.strings index 2b385022ea..6d0e63f602 100644 --- a/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Vissza"; + /* Button text (should be short) */ "cancel" = "Mégse"; @@ -17,6 +20,9 @@ "download_maps" = "Térképek letöltése"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Letöltés sikertelen. Kérjük próbálja újra!"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Letöltés…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Térképek"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Mérföld"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Keresés"; +/* Search box placeholder text */ +"search_map" = "Keresés a térképen"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Igen"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Ezen az eszközön jelenleg minden helyzetmeghatározó szolgáltatás ki van kapcsolva. Kérjük kapcsolja be ezeket a Beállítások között."; + /* View and button titles for accessibility */ "zoom_to_country" = "Megjelenítés a térképen"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Letöltése sikertelen"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Újrapróbálkozás"; + "about_menu_title" = "A Organic Maps programról"; +"connection_settings" = "Kapcsolat beállítások"; + "close" = "Bezár"; +"unsupported_phone" = "Hardware-s gyorsítású OpenGL szükséges. Sajnos az Ön eszköze nem támogatott."; + "download" = "Letöltés"; +"disconnect_usb_cable" = "Kérjük bontsa az USB kapcsolatot vagy helyezzen be memóriakártyát a Organic Maps használatához"; + +"not_enough_free_space_on_sdcard" = "Kérjük szabadítson fel helyet az SD kártyán / USB tárolón az alkalmazás használatához!"; + +"not_enough_memory" = "Nincs elegendő memória az alkalmazás futtatásához"; + +"download_resources" = "Első használat előtt letöltjük a világtérképet.\n%@ tárolóhely szükséges."; + +"download_resources_continue" = "Térképhez ugrás"; + +"downloading_country_can_proceed" = "%@ letöltése. Mos továbbléphet\na térképhez."; + +"download_country_ask" = "Letöltsem %@-t?"; + +"update_country_ask" = "Frissítsem %@-t?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Szünet"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Folytatás"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ letöltése sikertelen"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Új csoport létrehozása"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Saját helyeim"; +/* Add bookmark dialog - bookmark name */ +"name" = "Név"; + /* Editor title above street and house number */ "address" = "Cím"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Csoport"; + /* Settings button in system menu */ "settings" = "Beállítások"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Térképek mentése ide:"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Válassza ki, hogy hova töltsük le a térképeket"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Áthelyezzük a térképeket?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Ez több percig is eltarthat.\nKérjük várjon…"; + /* Measurement units title in settings activity */ "measurement_units" = "Mértékegységek"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Válasszon kilométer és mérföld között"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Hol lehet enni valamit"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Termékek"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Közlekedés"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Benzinkút"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parkoló"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Bevásárlás"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Szálloda"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Látnivaló"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Szórakozás"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Pénzautomata"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Éjjeli élet"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Pihenés a gyerekekkel"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Gyógyszertár"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Kórház"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Mosdó"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Posta"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Rendőrség"; +/* Notes field in Bookmarks view */ +"description" = "Jegyzetek"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Egy Organic Maps könyvjelzőt osztottak meg Önnel"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Még nem határoztuk meg az aktuális helyzetét"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Sajnáljuk, a térképek tárolása jelenleg ki van kapcsolva."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Országletöltés folyamatban."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Nézd meg a Organic Maps helyzetemet! %1$@ vagy %2$@ A program letöltése: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Nézze meg a Organic Maps jelzőmet"; /* Subject for emailed position */ "my_position_share_email_subject" = "Nézze meg a helyzetemet a Organic Maps térképen!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Üdvözlöm!\n\nJelenleg itt vagyok: %1$@ Kattintson erre a hivatkozásra %2$@ vagy erre %3$@, hogy lássa a helyet a térképen.\n\nKöszönöm."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Megosztás"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "A vágólapra másolva: %1$@"; + /* place preview title */ "info" = "Info"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Valóban folytatni akarja?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Csoportok"; @@ -195,10 +283,18 @@ "share_my_location" = "Helyzetem megosztása"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigáció"; "pref_zoom_title" = "Nagyítás/kicsinyítés gombok"; +"pref_zoom_summary" = "Mutassa a kijelzőn"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Éjszakai üzemmód"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "A hang nyelve"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Nem áll rendelkezésre"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Egyéb"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Segítség"; +/* Button in the main Help dialog */ +"faq" = "Kérdések és válaszok"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Hogyan támogat minket?"; + /* Button in the main Help dialog */ "copyright" = "Szerzői jog"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Mindegyik frissítése"; +/* Cancel all button text */ +"downloader_cancel_all" = "Mindent visszavon"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Letöltve"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Térkép törlése"; +/* Item in context menu. */ +"downloader_update_map" = "Térkép frissítése"; + +/* Preference text */ +"pref_use_google_play" = "Használja a Google Play szolgáltatást, hogy szert tegyen aktuális helyszínéről"; + /* Text for rating dialog */ "rating_just_rated" = "Most értékeltem az alkalmazásodat"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Útvonal tervezéséhez a kiindulási pont és a célútvonal összes térképét szükséges letölteni és frissíteni."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Nincs elég hely"; + /* bookmark button text */ "bookmark" = "könyvjelző"; +/* location service disabled */ +"enable_location_services" = "Kérjük kapcsolja be a helyzetmeghatározó szolgáltatást"; + "save" = "Simpan"; +"edit_description_hint" = "Az ön leírásai (sima szöveg vagy html)"; + "create" = "létrehoz"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Nem sikerült meghatározni az útvonalat"; +"dialog_routing_cant_build_route" = "Nem sikerült létrehozni az útvonalat."; + "dialog_routing_change_start_or_end" = "Kérjük, pontosítsa indulási helyét, vagy célállomását."; "dialog_routing_change_start" = "Pontosítsa indulási helyét"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Útvonalak kereséséhez és létrehozásához, kérjük, töltsd le a térképet és többé nem lesz szükséged internetkapcsolatra."; + +"search_select_map" = "Jelöld ki a térképet"; + /* «Show» context menu */ "show" = "Mutat"; @@ -521,6 +655,9 @@ "clear_search" = "A keresési előzmények törlése"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Az Ön helyzete"; "p2p_start" = "Indítás"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Szeretne útvonaltervet készíttetni a jelenlegi pozíciójától?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Következő"; + "editor_time_add" = "Időrend felvitele"; "editor_time_delete" = "Időrend törlése"; @@ -556,14 +696,28 @@ "editor_example_values" = "Példa értékek"; +"editor_correct_mistake" = "Hiba javítása"; + "editor_add_select_location" = "Elhelyezkedés"; "editor_done_dialog_1" = "Megváltoztattad a világ térképét. Ne titkold el mások elől! Mondd el a barátaidnak, és szerkesszétek közösen!"; "share_with_friends" = "Oszd meg az ismerőseiddel"; +"editor_report_problem_desription_1" = "Kérjük, írd le részletesen a problémát, hogy az OpenStreeMap csapata kijavíthassa."; + +"editor_report_problem_desription_2" = "Vagy végezd el te magad a javítást itt: https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Küldés"; +"editor_report_problem_title" = "Probléma"; + +"editor_report_problem_no_place_title" = "A hely nem létezik"; + +"editor_report_problem_under_construction_title" = "Karbantartás miatt nem elérhető"; + +"editor_report_problem_duplicate_place_title" = "Duplikált hely"; + "autodownload" = "Automatikus letöltés"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Nyitvatartás hozzáadása"; +"edit_opening_hours" = "Nyitvatartás szerkesztése"; + "no_osm_account" = "Nem rendelkezel még OpenStreetMap-felhasználói fiókkal?"; "register_at_openstreetmap" = "Regisztráció"; @@ -592,6 +748,8 @@ "login" = "Bejelentkezés"; +"password" = "Jelszó"; + "forgot_password" = "Elfelejtett jelszó?"; "osm_account" = "OSM-felhasználói fiók"; @@ -609,6 +767,8 @@ "add_language" = "Nyelv hozzáadása"; +"street" = "Utca"; + /* Editable House Number text field (in address block). */ "house_number" = "Házszám"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Utca hozzáadása"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Nyelv kiválasztása"; "choose_street" = "Utca kiválasztása"; @@ -632,12 +795,16 @@ "phone" = "Telefonszám"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Megjegyzés"; "downloader_delete_map_dialog" = "A térképekkel együtt minden rajtuk végzett módosítás is törlésre kerül."; "downloader_update_maps" = "Térképek frissítése"; +"downloader_mwm_migration_dialog" = "Útvonal létrehozásához frissítsd az összes térképet, majd tervezd meg újra az útvonalat."; + "downloader_search_field_hint" = "Térkép keresése"; "migration_download_error_dialog" = "Letöltési hiba"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Kérjük, töröld a szükségtelen adatokat"; +"editor_login_error_dialog" = "Bejelentkezési hiba."; + "editor_profile_changes" = "Jóváhagyott változtatások"; "editor_focus_map_on_location" = "Húzd a térképet a megfelelő helyre az objektum helyes helyszínének kiválasztásához."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategória"; +"detailed_problem_description" = "A probléma részletes leírása"; + +"editor_report_problem_other_title" = "Különböző probléma"; + +"placepage_add_business_button" = "Szervezet hozzáadása"; + "whatsnew_editor_message_1" = "Adj hozzá új helyeket a térképhez, és szerkeszd a meglévőket közvetlenül az alkalmazásból."; "dialog_incorrect_feature_position" = "Helyszín megváltoztatása"; @@ -710,6 +885,8 @@ "editor_operator" = "Üzemeltető"; +"downloader_my_maps_title" = "Térképeim"; + "downloader_no_downloaded_maps_title" = "Még nem töltött le térképet"; "downloader_no_downloaded_maps_message" = "Töltse le a szükséges térképeket, hogy megtalálja a helyet és internet nélkül is navigálhasson."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "ó"; + +"minute" = "p"; + "placepage_place_description" = "Leírás"; "placepage_more_button" = "Még"; +"placepage_more_reviews_button" = "További vélemények"; + "book_button" = "Foglalás"; "placepage_call_button" = "Hívás"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "A hely nem létezik"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…tovább"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Adj meg egy érvényes email-címet"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Frissítés"; "placepage_add_place_button" = "Hely hozzáadása a térképhez"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Elutasítja"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Lista"; "mobile_data_dialog" = "Részletes információk megjelenítése a mobil internet segítségével?"; @@ -848,12 +1044,16 @@ "big_font" = "Betűméret növelése a térképen"; +"traffic_update_app" = "Kérjük, frissítse a Organic Maps alkalmazást"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "A forgalmi adatok megjelenítéséhez frissíteni kell az alkalmazást."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Forgalmi adatok nem állnak rendelkezésre"; +"enable_logging" = "Naplózás engedélyezése"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Általános visszajelzés"; @@ -861,14 +1061,24 @@ "off" = "Ki"; +"prefs_languages_information" = "TTS rendszert használunk a hangnavigációhoz. Sok Android-os készülék használja a Google TTS-t; töltse le vagy frissítse a Google Play áruházból (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Egyes nyelveknél másik beszédszintetizátort vagy további nyelvi csomagot kell telepítenie az alkalmazás-áruházból (Google Play Market, Samsung Apps). Nyissa meg a készülék beállításait → Nyelv és bevitel → Beszéd → Szöveg-beszéd átalakító kimenet. Itt kezelheti a beszédszintézis beállításokat (például nyelvi csomag letöltése kapcsolat nélküli használatra) és másik szövegfelolvasót jelölhe tki."; + +"prefs_languages_information_off_link" = "További tájékoztatást találhat még ebben az útmutatóban."; + "transliteration_title" = "Átírás latin nyelvre"; +"learn_more" = "Tudjon meg többet"; + "core_exit" = "Kilépés"; "routing_add_start_point" = "Adjon hozzá kiindulási pontot az útvonal megtervezéséhez"; "routing_add_finish_point" = "Adjon hozzá végpontot az útvonal tervezéséhez"; +"button_exit" = "Kilépés"; + "planning_route_manage_route" = "Útvonal kezelése"; "button_plan" = "Terv"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Hoppá, volt egy hiba. Próbáljon meg újra bejelentkezni."; +"dialog_error_storage_title" = "Tároló hozzáférési hiba"; + +"dialog_error_storage_message" = "Külső tároló nem áll rendelkezésre, valószínűleg az SD-kártyát eltávolították vagy sérült, vagy rendszerfájl csak olvasható. Ellenőrizze, és lépjen kapcsolatba velünk a support@organicmaps.app címen"; + +"setting_emulate_bad_storage" = "Sérült tároló emulálása"; + "core_entrance" = "Bejárat"; "error_enter_correct_name" = "Kérjük adja meg a helyes nevet"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Új lista létrehozása"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Képernyő elrejtése"; "downloader_percent" = "%s (%s / %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Üres lista nem osztható meg"; +"bookmarks_error_title_empty_list_name" = "A név nem lehet üres"; + "bookmarks_error_message_empty_list_name" = "Adja meg a lista nevét"; +"bookmarks_new_list_hint" = "Új lista"; + "bookmarks_error_title_list_name_already_taken" = "Ez a név már foglalt"; +"bookmarks_error_message_list_name_already_taken" = "Kérjük, válasszon másik nevet"; + "bookmarks_error_title_list_name_too_long" = "Ez a név túl hosszú"; +"please_wait" = "Kérlek várj…"; + +"phone_number" = "Telefonszám"; + "profile" = "OpenStreetMap profil"; "bookmarks_detect_title" = "Új fájlokat észleltek"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "A verzió visszaállítása?"; +"common_check_internet_connection_dialog_title" = "Nincs internetkapcsolat"; + "error_system_message" = "Ismeretlen hiba történt"; "restore" = "Visszaállítás"; +"subtittle_opt_out" = "Követési beállítások"; + +"crash_reports" = "Hibajelentés"; + +"crash_reports_description" = "A Organic Maps fejlesztéséhez felhasználhatjuk az adatait. A változtatások az alkalmazás újraindítása után lépnek életbe."; + "privacy_policy" = "Adatvédelmi irányelvek"; "terms_of_use" = "Felhasználási feltételek"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "A metrótérkép nem elérhető"; +"bookmarks_empty_list_title" = "A lista üres"; + +"bookmarks_empty_list_message" = "A könyvjelző hozzáadásához, érintsen meg a térképen egy helyet majd érintse meg a csillag ikont"; + +"category_desc_more" = "…tovább"; + "title_error_downloading_bookmarks" = "Hiba történt"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Lefedés a térképen"; +"public_access" = "Nyílt hozzáférés"; + +"limited_access" = "Személyes hozzáférés"; + "bookmark_list_description_hint" = "Leírás hozzáadása (szöveg vagy html)"; +"not_shared" = "Privát"; + "tags_loading_error_subtitle" = "A tag-ek feltöltésekor hiba történt, kérjük próbálja meg még egyszer"; "download_button" = "Letöltés"; @@ -972,6 +1221,9 @@ "place_description_title" = "A hely ismertetése"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Kártyák letöltése"; + "speedcams_notice_message" = "Autó - Figyelmeztetés a sebesség kamerákról, ha van kockázat a sebesség korlátozás megsértéséről\nMindig - Mindig figyelmeztet a kamerákról\nSoha - Soha ne figyelmezet a kamerákról"; "power_managment_title" = "Energiatakarékos mód"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maximális energiatakarékosság"; +"enable_logging_warning_message" = "Az opció bekapcsolja a diagnosztikai célú naplózást. Hasznos lehet a support csapatunknak, akik elhárítják az alkalmazás hibáit. Csak a Organic Maps support kérésére kapcsold be ezt az opciót."; + +"access_rules_author_only" = "Online szerkesztés"; + "driving_options_title" = "Vezetési lehetőségek"; "driving_options_subheader" = "Elkerülés minden útvonalon"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Rendezd…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Könyvelzők rendezése"; + /* iOS */ "sort_default" = "Alapértelmezés szerint"; @@ -1086,6 +1345,18 @@ "sort_date" = "Dátum szerint"; +/* Android */ +"by_default" = "Alapértelmezés szerint"; + +/* Android */ +"by_type" = "Típus szerint"; + +/* Android */ +"by_distance" = "Távolság szerint"; + +/* Android */ +"by_date" = "Dátum szerint"; + "week_ago_sorttype" = "Egy hete"; "month_ago_sorttype" = "Egy hónapja"; @@ -1132,6 +1403,8 @@ "religious_places" = "Vallási helyek"; +"select_list" = "Lista kiválasztása"; + "transit_not_found" = "Metró navigáció ebben a régióban még nem érhető el"; "dialog_pedestrian_route_is_long_header" = "Metró útvonal nem található"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Nehézség"; +"elevation_profile_distance" = "Táv.:"; + "elevation_profile_time" = "Idő"; "isolines_toast_zooms_1_10" = "Nagyítás az isovonalak felfedezéséhez"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Letöltés"; +"key_information_title" = "Kulcs információ"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Hagyja aludni a képernyőt"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Ha engedélyezve van, akkor a képernyő inaktivitás után alszik."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Frissítse a letöltött térképeit"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Orvosi laboratórium"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Buszmegálló"; "type.highway.construction" = "Útépítés"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Utca"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Traffipax"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Utca"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Ösvény"; - -"type.area_highway.living_street" = "Utca"; - -"type.area_highway.motorway" = "Utca"; - -"type.area_highway.path" = "Ösvény"; - -"type.area_highway.pedestrian" = "Utca"; - -"type.area_highway.primary" = "Utca"; - -"type.area_highway.residential" = "Utca"; - -"type.area_highway.secondary" = "Utca"; - -"type.area_highway.service" = "Utca"; - -"type.area_highway.tertiary" = "Utca"; - -"type.area_highway.steps" = "Ösvény"; - -"type.area_highway.track" = "Utca"; - -"type.area_highway.trunk" = "Utca"; - -"type.area_highway.unclassified" = "Utca"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Ásatás"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Aquapark"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Főváros"; -"type.place.city.capital.10" = "Város"; +"type.place.city.capital.10" = "Főváros"; -"type.place.city.capital.11" = "Város"; +"type.place.city.capital.11" = "Főváros"; "type.place.city.capital.2" = "Főváros"; -"type.place.city.capital.3" = "Város"; +"type.place.city.capital.3" = "Főváros"; -"type.place.city.capital.4" = "Város"; +"type.place.city.capital.4" = "Főváros"; -"type.place.city.capital.5" = "Város"; +"type.place.city.capital.5" = "Főváros"; -"type.place.city.capital.6" = "Város"; +"type.place.city.capital.6" = "Főváros"; -"type.place.city.capital.7" = "Város"; +"type.place.city.capital.7" = "Főváros"; -"type.place.city.capital.8" = "Város"; +"type.place.city.capital.8" = "Főváros"; -"type.place.city.capital.9" = "Város"; +"type.place.city.capital.9" = "Főváros"; "type.place.continent" = "Kontinens"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Épület"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.stringsdict index 5aae50e4da..7a3ebadadc 100644 --- a/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/hu.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -56,6 +56,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d hely + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/id.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/id.lproj/Localizable.strings index 9203980f71..6966dacd90 100644 --- a/iphone/Maps/LocalizedStrings/id.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/id.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Kembali"; + /* Button text (should be short) */ "cancel" = "Batalkan"; @@ -17,6 +20,9 @@ "download_maps" = "Unduh Peta"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Pengunduhan gagal, sentuh untuk mencoba sekali lagi"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Sedang mengunduh…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Peta"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Mil"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Cari"; +/* Search box placeholder text */ +"search_map" = "Cari Peta"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Ya"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Saat ini semua Layanan Lokasi untuk perangkat atau aplikasi ini non-aktif. Mohon aktifkan lewat Setelan."; + /* View and button titles for accessibility */ "zoom_to_country" = "Tampilkan di peta"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Sedang Mengunduh telah gagal"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Coba Lagi"; + "about_menu_title" = "Tentang Organic Maps"; +"connection_settings" = "Pengaturan Koneksi"; + "close" = "Tutup"; +"unsupported_phone" = "OpenGL yang dipercepat oleh OpenGL diperlukan. Sayangnya, perangkat Anda tidak mendukung."; + "download" = "Unduh"; +"disconnect_usb_cable" = "Mohon lepas kabel USB atau masukkan kartu memori untuk menggunakan Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Mohon bebaskan sejumlah ruang pada kartu SD/penyimpanan USB terlebih dahulu untuk menggunakan aplikasi"; + +"not_enough_memory" = "Memori tidak cukup untuk meluncurkan aplikasi"; + +"download_resources" = "Sebelum Anda mulai izinkan kami mengunduh peta dunia secara umum ke perangkat Anda.\nHal ini memerlukan data %@."; + +"download_resources_continue" = "Pergi ke Peta"; + +"downloading_country_can_proceed" = "Sedang mengunduh %@. Sekarang Anda dapat melanjutkan ke peta."; + +"download_country_ask" = "Unduh %@?"; + +"update_country_ask" = "Perbarui %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Jeda"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Lanjutkan"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ gagal diunduh"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Tambahkan Set baru"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Tempat-tempat Saya"; +/* Add bookmark dialog - bookmark name */ +"name" = "Nama"; + /* Editor title above street and house number */ "address" = "Alamat"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Set"; + /* Settings button in system menu */ "settings" = "Pengaturan"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Simpan peta di"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Pilih tempat untuk menyimpan unduhan peta"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Pindahkan peta?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Ini akan memakan waktu beberapa menit.\nMohon tunggu…"; + /* Measurement units title in settings activity */ "measurement_units" = "Unit Pengukuran"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Pilihlah antara mil dan kilometer"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Tempat makan"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Toserba"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transportasi"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Bahan bakar"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parkir"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Berbelanja"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Pemandangan"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Hiburan"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "ATM"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Kehidupan Malam"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Liburan keluarga"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Apotek"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Rumah sakit"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toilet"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Pos"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Polisi"; +/* Notes field in Bookmarks view */ +"description" = "Catatan"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Bagikan penanda Organic Maps"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Lokasi Anda belum ditentukan"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Maaf, pengaturan Penyimpanan Peta saat ini sedang non-aktif."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Pengunduhan negara sedang berjalan."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hei, lihat lokasiku saat ini di Organic Maps! %1$@ atau %2$@ belum memiliki peta offline? Unduh di sini: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hei, lihat pinku di peta Organic Maps"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hei, lihat lokasiku saat ini di peta Organic Maps!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hai,\n\nSekarang saya ada di sini: %1$@. Klik tautan ini %2$@ atau yang ini %3$@ untuk melihat tempatnya di peta.\n\nTerima kasih."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Bagikan"; /* Share by email button text, also used in editor. */ "email" = "Surel"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Telah Disalin ke Papan Klip: %1$@"; + /* place preview title */ "info" = "Info"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Apakah Anda yakin ingin melanjutkan?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Jalur"; @@ -195,10 +283,18 @@ "share_my_location" = "Bagikan Lokasi Saya"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigasi"; "pref_zoom_title" = "Tombol perbesaran"; +"pref_zoom_summary" = "Tampilkan pada layar"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Mode Malam"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Bahasa Suara"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Tidak Tersedia"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Lainnya"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Bantuan"; +/* Button in the main Help dialog */ +"faq" = "Pertanyaan dan jawaban"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Bagaimana cara mendukung kami?"; + /* Button in the main Help dialog */ "copyright" = "Hak cipta"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Perbarui semua"; +/* Cancel all button text */ +"downloader_cancel_all" = "Batalkan Semuanya"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Diunduh"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Hapus Peta"; +/* Item in context menu. */ +"downloader_update_map" = "Perbarui Peta"; + +/* Preference text */ +"pref_use_google_play" = "Gunakan Layanan Google Play untuk mendapatkan lokasi Anda saat ini"; + /* Text for rating dialog */ "rating_just_rated" = "Saya baru saja menilai app Anda"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Membuat rute memerlukan semua peta dari lokasi Anda ke tujuan yang diunduh dan diperbarui."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Ruang simpan tidak cukup"; + /* bookmark button text */ "bookmark" = "bookmark"; +/* location service disabled */ +"enable_location_services" = "Mohon aktifkan Layanan Lokasi"; + "save" = "Simpan"; +"edit_description_hint" = "Deskripsi Anda (teks atau html)"; + "create" = "buat"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Tidak dapat menemukan rute"; +"dialog_routing_cant_build_route" = "Tidak dapat membuat rute."; + "dialog_routing_change_start_or_end" = "Sesuaikan titik mula atau tujuan Anda."; "dialog_routing_change_start" = "Sesuaikan titik mula"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Untuk mulai mencari dan membuat rute, silakan unduh peta, dan Anda tidak akan membutuhkan koneksi internet lagi."; + +"search_select_map" = "Pilih Peta"; + /* «Show» context menu */ "show" = "Tampilkan"; @@ -521,6 +655,9 @@ "clear_search" = "Bersihkan riwayat pencarian"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Lokasi Anda"; "p2p_start" = "Mulai"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Apakah Anda ingin kami merencanakan sebuah rute dari lokasi Anda saat ini?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Berikut"; + "editor_time_add" = "Tambah Jadwal"; "editor_time_delete" = "Hapus Jadwal"; @@ -556,14 +696,28 @@ "editor_example_values" = "Contoh Nilai"; +"editor_correct_mistake" = "Koreksi kesalahan"; + "editor_add_select_location" = "Lokasi"; "editor_done_dialog_1" = "Anda telah mengubah peta dunia. Jangan menyembunyikan ini! Katakan kepada teman-teman Anda, dan edit bersama."; "share_with_friends" = "Bagikan dengan teman-teman"; +"editor_report_problem_desription_1" = "Harap menggambarkan masalah secara rinci sehingga komunitas OpenStreeMap dapat memperbaiki kesalahan."; + +"editor_report_problem_desription_2" = "Atau Anda bisa melakukan sendiri di https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Kirim"; +"editor_report_problem_title" = "Masalah"; + +"editor_report_problem_no_place_title" = "Tempat tidak ada"; + +"editor_report_problem_under_construction_title" = "Ditutup karena pemeliharaan"; + +"editor_report_problem_duplicate_place_title" = "Tempat ganda"; + "autodownload" = "Unduhan otomatis"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Tambah jam kerja"; +"edit_opening_hours" = "Sunting jam kerja"; + "no_osm_account" = "Tidak ada akun di OpenStreetMap?"; "register_at_openstreetmap" = "Mendaftar"; @@ -592,6 +748,8 @@ "login" = "Masuk"; +"password" = "Kata sandi"; + "forgot_password" = "Lupa kata sandi?"; "osm_account" = "Akun OSM"; @@ -609,6 +767,8 @@ "add_language" = "Tambahkan bahasa"; +"street" = "Jalan"; + /* Editable House Number text field (in address block). */ "house_number" = "Nomor rumah"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Tambahkan jalan"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Pilih bahasa"; "choose_street" = "Pilih jalan"; @@ -632,12 +795,16 @@ "phone" = "Telepon"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Harap diperhatikan"; "downloader_delete_map_dialog" = "Semua perubahan peta akan dihapus bersama dengan peta."; "downloader_update_maps" = "Perbarui peta"; +"downloader_mwm_migration_dialog" = "Untuk membuat rute, Anda perlu memperbarui semua peta dan kemudian merencanakan rute tersebut lagi."; + "downloader_search_field_hint" = "Temukan peta"; "migration_download_error_dialog" = "Unduh kesalahan"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Harap menghapus data yang tidak diperlukan"; +"editor_login_error_dialog" = "Kesalahan masuk."; + "editor_profile_changes" = "Perubahan Terverifikasi"; "editor_focus_map_on_location" = "Tarik peta untuk memilih lokasi yang benar dari obyek."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategori"; +"detailed_problem_description" = "Gambaran terperinci tentang masalah"; + +"editor_report_problem_other_title" = "Masalah yang berbeda"; + +"placepage_add_business_button" = "Tambahkan organisasi"; + "whatsnew_editor_message_1" = "Tambahkan tempat-tempat baru di peta, dan edit peta-peta yang ada langsung dari aplikasi."; "dialog_incorrect_feature_position" = "Ubah lokasi"; @@ -710,6 +885,8 @@ "editor_operator" = "Pemilik"; +"downloader_my_maps_title" = "Peta saya"; + "downloader_no_downloaded_maps_title" = "Tidak ada peta apa pun yang diunduh"; "downloader_no_downloaded_maps_message" = "Unduh peta untuk menemukan lokasi dan bernavigasi secara offline."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mpj"; +"hour" = "j"; + +"minute" = "mnt"; + "placepage_place_description" = "Deskripsi"; "placepage_more_button" = "Lainnya"; +"placepage_more_reviews_button" = "Ulasan Lainnya"; + "book_button" = "Pesan"; "placepage_call_button" = "Hubungi"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Tempat tidak ada"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…selebihnya"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Masukkan surel valid"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Memperbarui"; "placepage_add_place_button" = "Tambahkan tempat ke peta"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Tolak"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Daftar"; "mobile_data_dialog" = "Gunakan internet seluler untuk memperlihatkan informasi terperinci?"; @@ -848,12 +1044,16 @@ "big_font" = "Perbesar ukuran huruf pada peta"; +"traffic_update_app" = "Perbarui Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Untuk menampilkan data lalu lintas, aplikasi ini harus diperbarui."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Data lalu lintas tidak tersedia"; +"enable_logging" = "Aktifkan pencatatan"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Umpan Balik Umum"; @@ -861,14 +1061,24 @@ "off" = "Mati"; +"prefs_languages_information" = "Kami menggunakan TTS sistem untuk petunjuk suara. Banyak perangkat Android menggunakan Google TTS, Anda dapat mengunduhnya dari Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Untuk beberapa bahasa, Anda perlu menginstal synthesizer suara atau paket bahasa tambahan dari toko aplikasi (Google Play Market, Samsung Apps).\nBuka pengaturan perangkat Anda → Language and input (Bahasa dan input) → Speech (Suara) → Text to speech (Teks ke suara).\nDi sini, Anda dapat mengelola pengaturan untuk sintesis suara (contohnya, mengunduh paket bahasa untuk penggunaan tanpa internet) dan memilih mesin tekske suara lain."; + +"prefs_languages_information_off_link" = "Untuk informasi selengkapnya, bacalah panduan ini."; + "transliteration_title" = "Transliterasi ke dalam bahasa Latin"; +"learn_more" = "Pelajari selengkapnya"; + "core_exit" = "Keluar"; "routing_add_start_point" = "Tambahkan titik awal untuk merencanakan rute"; "routing_add_finish_point" = "Tambahkan titik akhir untuk merencanakan rute"; +"button_exit" = "Keluar"; + "planning_route_manage_route" = "Kelola rute"; "button_plan" = "Rencana"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Ah, tadi ada kesalahan. Coba masuk kembali."; +"dialog_error_storage_title" = "Masalah akses penyimpanan"; + +"dialog_error_storage_message" = "Penyimpanan eksternal tidak tersedia, mungkin Kartu SD sudah dilepaskan, rusak, atau sistem berkasnya hanya dapat dibaca. Silakan periksa dan beri tahu kami di alamat support@ maps.me"; + +"setting_emulate_bad_storage" = "Emulasi penyimpanan yang buruk"; + "core_entrance" = "Tempat masuk"; "error_enter_correct_name" = "Harap masukkan nama yang benar"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Buat daftar baru"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Sembunyikan Layar"; "downloader_percent" = "%s (%s dari %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Tidak dapat membagikan daftar kosong"; +"bookmarks_error_title_empty_list_name" = "Namanya tidak boleh kosong"; + "bookmarks_error_message_empty_list_name" = "Silakan masukkan nama daftar"; +"bookmarks_new_list_hint" = "Daftar baru"; + "bookmarks_error_title_list_name_already_taken" = "Nama ini sudah dipakai"; +"bookmarks_error_message_list_name_already_taken" = "Silakan pilih nama lain"; + "bookmarks_error_title_list_name_too_long" = "Nama ini terlalu panjang"; +"please_wait" = "Mohon tunggu…"; + +"phone_number" = "Nomor telepon"; + "profile" = "Profil OpenStreetMap"; "bookmarks_detect_title" = "File baru terdeteksi"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Kembalikan versi ini?"; +"common_check_internet_connection_dialog_title" = "Tidak ada koneksi internet"; + "error_system_message" = "Terjadi kesalahan yang tidak diketahui"; "restore" = "Mengembalikan"; +"subtittle_opt_out" = "Pengaturan treking"; + +"crash_reports" = "Laporan tabrakan"; + +"crash_reports_description" = "Kami dapat menggunakan data Anda untuk meningkatkan pengalaman Organic Maps. Perubahan akan berlaku setelah Anda memulai ulang aplikasi."; + "privacy_policy" = "Kebijakan privasi"; "terms_of_use" = "Ketentuan penggunaan"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Peta bawah tanah tidak tersedia"; +"bookmarks_empty_list_title" = "Daftar ini kosong"; + +"bookmarks_empty_list_message" = "Untuk menambahkan bookmark, ketuk satu tempat di peta lalu ketuk ikon bintang"; + +"category_desc_more" = "…selengkapnya"; + "title_error_downloading_bookmarks" = "Terjadi kesalahan"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Sembunyikan dari peta"; +"public_access" = "Akses umum"; + +"limited_access" = "Akses terbatas"; + "bookmark_list_description_hint" = "Ketikkan deskripsi (teks atau html)"; +"not_shared" = "Pribadi"; + "tags_loading_error_subtitle" = "Kesalahan terjadi saat memuat tag, silakan coba lagi"; "download_button" = "Unduh"; @@ -972,6 +1221,9 @@ "place_description_title" = "Deskripsi Tempat"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Pengunduh peta"; + "speedcams_notice_message" = "Auto - Peringatkan tentang kamera kecepatan saat terdapat risiko melebihi batas kecepatan\nSelalu - Selalu peringatkan tentang kamera kecepatan\nTidak pernah - Jangan pernah peringatkan tentang kamera kecepatan"; "power_managment_title" = "Mode hemat daya"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Hemat daya maksimum"; +"enable_logging_warning_message" = "Opsi ini mengaktifkan pencatatan untuk tujuan diagnostik. Bisa amat membantu bagi staf dukungan kami yang memecahkan masalah dalam aplikasi. Aktifkan opsi ini hanya saat diminta oleh dukungan Organic Maps."; + +"access_rules_author_only" = "Pengeditan online"; + "driving_options_title" = "Pilihan berkendara"; "driving_options_subheader" = "Hindari di setiap rute"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Urutkan…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Urutkan bookmark"; + /* iOS */ "sort_default" = "Urutkan standar"; @@ -1086,6 +1345,18 @@ "sort_date" = "Urutkan per tanggal"; +/* Android */ +"by_default" = "Standar"; + +/* Android */ +"by_type" = "Per tipe"; + +/* Android */ +"by_distance" = "Per jarak"; + +/* Android */ +"by_date" = "Per tanggal"; + "week_ago_sorttype" = "Seminggu yang lalu"; "month_ago_sorttype" = "Sebulan yang lalu"; @@ -1132,6 +1403,8 @@ "religious_places" = "Tempat ibadah"; +"select_list" = "Pilih daftar"; + "transit_not_found" = "Navigasi kereta bawah tanah di wilayah ini belum tersedia"; "dialog_pedestrian_route_is_long_header" = "Jalur kereta bawah tanah tidak ditemukan"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Kesulitan"; +"elevation_profile_distance" = "Jarak:"; + "elevation_profile_time" = "Waktu:"; "isolines_toast_zooms_1_10" = "Perbesar untuk menjelajahi garis kontur"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Mengunduh"; +"key_information_title" = "Informasi kunci"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Izinkan layar untuk tidur"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Jika diaktifkan, layar akan diizinkan untuk tidur setelah beberapa saat tidak aktif."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Perbarui peta yang sudah Anda unduh"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Laboratorium medis"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Halte bus"; "type.highway.construction" = "Jalan sedang dibangun"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Jalan"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Kamera Kecepatan"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Jalan"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Jalur"; - -"type.area_highway.living_street" = "Jalan"; - -"type.area_highway.motorway" = "Jalan"; - -"type.area_highway.path" = "Jalur"; - -"type.area_highway.pedestrian" = "Jalan"; - -"type.area_highway.primary" = "Jalan"; - -"type.area_highway.residential" = "Jalan"; - -"type.area_highway.secondary" = "Jalan"; - -"type.area_highway.service" = "Jalan"; - -"type.area_highway.tertiary" = "Jalan"; - -"type.area_highway.steps" = "Jalur"; - -"type.area_highway.track" = "Jalan"; - -"type.area_highway.trunk" = "Jalan"; - -"type.area_highway.unclassified" = "Jalan"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Situs arkeologi"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Taman air"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Ibu kota"; -"type.place.city.capital.10" = "Kota"; +"type.place.city.capital.10" = "Ibu kota"; -"type.place.city.capital.11" = "Kota"; +"type.place.city.capital.11" = "Ibu kota"; "type.place.city.capital.2" = "Ibu kota"; -"type.place.city.capital.3" = "Kota"; +"type.place.city.capital.3" = "Ibu kota"; -"type.place.city.capital.4" = "Kota"; +"type.place.city.capital.4" = "Ibu kota"; -"type.place.city.capital.5" = "Kota"; +"type.place.city.capital.5" = "Ibu kota"; -"type.place.city.capital.6" = "Kota"; +"type.place.city.capital.6" = "Ibu kota"; -"type.place.city.capital.7" = "Kota"; +"type.place.city.capital.7" = "Ibu kota"; -"type.place.city.capital.8" = "Kota"; +"type.place.city.capital.8" = "Ibu kota"; -"type.place.city.capital.9" = "Kota"; +"type.place.city.capital.9" = "Ibu kota"; "type.place.continent" = "Benua"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Gedung"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/id.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/id.lproj/Localizable.stringsdict index 4d8652b8ca..6b44184672 100644 --- a/iphone/Maps/LocalizedStrings/id.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/id.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -56,6 +56,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + tempat %d + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/it.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/it.lproj/Localizable.strings index 00c2d42de4..e2154acd46 100644 --- a/iphone/Maps/LocalizedStrings/it.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/it.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Indietro"; + /* Button text (should be short) */ "cancel" = "Annulla"; @@ -15,7 +18,10 @@ /* Button which deletes downloaded country */ "delete" = "Cancella"; -"download_maps" = "Scarica mappe"; +"download_maps" = "Scarica le mappe"; + +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Download fallito, tocca di nuovo per un altro tentativo"; /* Settings/Downloader - info for country which started downloading */ "downloading" = "Download in corso…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Mappe"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Miglia"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Cerca"; +/* Search box placeholder text */ +"search_map" = "Cerca sulla mappa"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Sì"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Attualmente tutti i servizi di localizzazione per questo dispositivo o applicazione sono disattivati. Si prega di abilitarli in Impostazioni."; + /* View and button titles for accessibility */ "zoom_to_country" = "Mostra sulla mappa"; @@ -53,109 +70,162 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Il download non è riuscito"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Riprova"; + "about_menu_title" = "Informazioni su Organic Maps"; +"connection_settings" = "Impostazioni di connessione"; + "close" = "Chiudi"; +"unsupported_phone" = "È necessaria una accelerazione hardware OpenGL. Purtroppo, il tuo dispositivo non è supportato."; + "download" = "Scarica"; +"disconnect_usb_cable" = "Si prega di scollegare il cavo USB o inserire la scheda di memoria per utilizzare Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Libera prima dello spazio sulla scheda Sd/ memoria USB per usare l'app"; + +"not_enough_memory" = "Memoria insufficiente per lanciare l'app"; + +"download_resources" = "Prima di iniziare è necessario scaricare la mappa generale del mondo sul tuo dispositivo.\nLa dimensione del download è di %@."; + +"download_resources_continue" = "Vai alla mappa"; + +"downloading_country_can_proceed" = "Sto scaricando %@. Puoi ora\nprocedere con la mappa."; + +"download_country_ask" = "Vuoi scaricare %@?"; + +"update_country_ask" = "Vuoi aggiornare %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pausa"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Continua"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "Il download di %@ non è riuscito"; + /* "Add new bookmark list" dialog title */ -"add_new_set" = "Aggiungi nuovo elenco"; +"add_new_set" = "Aggiungi un nuovo Set"; /* Bookmark Color dialog title */ -"bookmark_color" = "Colore Luogo preferito"; +"bookmark_color" = "Colore del Segnalibro"; /* Add Bookmark list dialog - hint when the list name is empty */ -"bookmark_set_name" = "Nome dell'elenco"; +"bookmark_set_name" = "Seleziona un nome del segnalibro"; /* "Bookmark Lists" dialog title */ -"bookmark_sets" = "Elenchi di luoghi preferiti"; +"bookmark_sets" = "Seleziona un segnalibro"; /* "Bookmarks" dialog title */ -"bookmarks" = "Luoghi preferiti"; +"bookmarks" = "Segnalibri"; /* Default bookmark list name */ "core_my_places" = "I miei luoghi"; +/* Add bookmark dialog - bookmark name */ +"name" = "Name"; + /* Editor title above street and house number */ "address" = "Indirizzo"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Seleziona"; + /* Settings button in system menu */ "settings" = "Impostazioni"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Salva mappe in"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Seleziona il luogo in cui le mappe devono essere scaricate"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Vuoi spostare le mappe?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Questo può richiedere diversi minuti.\ncortesemente attendi…"; + /* Measurement units title in settings activity */ "measurement_units" = "Unità di misura"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Scegli tra miglia e chilometri"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Dove mangiare"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Alimentari"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ -"transport" = "Trasporto"; +/* Search category */ +"transport" = "Transporto"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ -"fuel" = "Benzinaio"; +/* Search category */ +"fuel" = "Stazione di rifornimento"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parcheggio"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ -"shopping" = "Negozi"; +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ +"shopping" = "Shopping"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ -"hotel" = "Albergo"; +/* Search category */ +"hotel" = "Hôtel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ -"tourism" = "Luoghi turistici"; +/* Search category */ +"tourism" = "Turistico"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Divertimento"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Bancomat"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Vita notturna"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ -"children" = "Tempo libero"; +/* Search category for water park/disneyland/playground/toys store */ +"children" = "Vacanze bambini"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Banca"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Farmacia"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Ospedale"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toilette"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Posta"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Polizia"; -"share_bookmarks_email_body" = "Ciao!\n\nIn allegato ci sono i miei luoghi preferiti. Aprili se hai installato Organic Maps. Oppure, se non ce l'hai, scarica l'app per iOS o Android seguendo questo link: https://omaps.app/\n\nDivertiti a viaggiare con Organic Maps!"; +/* Notes field in Bookmarks view */ +"description" = "Note"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Il segnalibri Organic Maps è stato condiviso con te"; + +"share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ -"load_kmz_title" = "Caricamento luoghi preferiti"; +"load_kmz_title" = "Caricamento segnalibri in corso"; /* Kmz file successful loading */ -"load_kmz_successful" = "Luoghi preferiti caricati con successo! Puoi trovarli sulla mappa o nella schermata \"Gestione Luoghi preferiti\"."; +"load_kmz_successful" = "Segnalibri caricati con successo! Puoi trovare i segnalibri direttamente sulla mappa, oppure aprendo la schermata dedicata alla Gestione dei segnalibri."; /* Kml file loading failed */ -"load_kmz_failed" = "Caricamento dei luoghi preferiti non riuscito. Il file potrebbe essere corrotto o difettoso."; +"load_kmz_failed" = "Caricamento dei segnalibri non riuscito. Il file potrebbe essere corrotto o difettoso."; /* resource for context menu */ "edit" = "Modifica"; @@ -163,11 +233,23 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "La tua posizione non è stata ancora stabilita"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Siamo spiacenti, ma le impostazioni di archiviazione delle mappe sono disabilitate."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Il download della nazione è in corso."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Vedi dove sono ora. Apri %1$@ o %2$@"; + /* Subject for emailed bookmark */ -"bookmark_share_email_subject" = "Puoi vedere il mio luogo preferito sulla mappa Organic Maps!"; +"bookmark_share_email_subject" = "Dai uno sguardo al mio pin sulla mappa di Organic Maps"; /* Subject for emailed position */ -"my_position_share_email_subject" = "Guarda dove mi trovo attualmente sulla mappa Organic Maps!"; +"my_position_share_email_subject" = "Guarda dove mi trovo attualmente sulla mappa Organic Maps"; + +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Ciao,\n\nSono qui adesso: %1$@. Clicca su questo link %2$@ oppure su questo %3$@ per vedere il posto sulla mappa.\n\nGrazie."; /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Condividi"; @@ -175,30 +257,44 @@ /* Share by email button text, also used in editor. */ "email" = "E-mail"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Copiato sugli Appunti: %1$@"; + /* place preview title */ -"info" = "Info"; +"info" = "Informazioni"; /* Used for bookmark editing */ -"done" = "Fatto"; +"done" = "Fine"; /* Prints version number in About dialog */ "version" = "Versione: %@"; /* Data version in «About» screen */ -"data_version" = "Versione: %d"; +"data_version" = "Data version: %d"; + +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Sei sicuro di voler continuare?"; /* Title for tracks category in bookmarks manager */ -"tracks_title" = "Percorsi"; +"tracks_title" = "Tracciati"; /* Length of track in cell that describes route */ "length" = "Lunghezza"; -"share_my_location" = "Condividi la mia posizione"; +"share_my_location" = "Condividi la mia location"; + +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; "prefs_group_route" = "Navigazione"; "pref_zoom_title" = "Pulsanti per lo zoom"; +"pref_zoom_summary" = "Condividi la mia location"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Modalità notturna"; @@ -209,13 +305,13 @@ "pref_map_style_night" = "Acceso"; /* «Map style» entry value */ -"pref_map_style_auto" = "Automatico"; +"pref_map_style_auto" = "Auto"; /* Settings «Map» category: «Perspective view» title */ "pref_map_3d_title" = "Vista in prospettiva"; /* Settings «Map» category: «3D buildings» title */ -"pref_map_3d_buildings_title" = "Edifici 3D"; +"pref_map_3d_buildings_title" = "Edifici in 3D"; /* Settings «Route» category: «Tts enabled» title */ "pref_tts_enable_title" = "Istruzioni vocali"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Lingua per la voce"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Non disponibile"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Altro"; @@ -231,7 +330,7 @@ "pref_map_auto_zoom" = "Zoom automatico"; -"duration_disabled" = "Spento"; +"duration_disabled" = "Disabilitato"; "duration_1_hour" = "1 ora"; @@ -243,7 +342,7 @@ "duration_1_day" = "1 giorno"; -"recent_track_help_text" = "Consente di registrare il percorso effettuato in un determinato periodo di tempo e di vederlo sulla mappa. Nota: l'attivazione di questa funzione incrementa l'uso della batteria. Il percorso viene rimosso automaticamente dalla mappa allo scadere dell'intervallo di tempo."; +"recent_track_help_text" = "Consente di registrare il tratto percorso in un determinato periodo di tempo e vedere lo stesso sulla mappa. Nota: l'attivazione di questa funzione incrementa l'uso della batteria. Il tratto viene rimosso automaticamente dalla mappa allo scadere dell'intervallo di tempo."; "placepage_distance" = "Distanza"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,27 +384,36 @@ /* Text in menu */ "help" = "Aiuto"; +/* Button in the main Help dialog */ +"faq" = "Domande e risposte"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Come supportarci?"; + /* Button in the main Help dialog */ "copyright" = "Copyright"; /* Text in menu + Button in the main Help dialog */ -"report_a_bug" = "Segnala un errore"; +"report_a_bug" = "Riporta un bug"; /* Alert text */ -"email_error_body" = "L'app per e-mail non è stata configurata. Si prega di configurarla o di usare altro metodo per contattarci all'indirizzo %@"; +"email_error_body" = "Il client email non è stato configurato. Si prega di configurarlo o di usare qualsiasi altro metodo per contattarci all'indirizzo %@"; /* Alert title */ "email_error_title" = "Errore invio e-mail"; /* Settings item title */ -"pref_calibration_title" = "Calibrazione bussola"; +"pref_calibration_title" = "Calibrazione del compasso"; /* Search category */ -"wifi" = "Wi-Fi"; +"wifi" = "WiFi"; /* Update all button text */ "downloader_update_all_button" = "Aggiorna tutte"; +/* Cancel all button text */ +"downloader_cancel_all" = "Annulla tutto"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Scaricate"; @@ -329,17 +443,23 @@ "downloader_delete_map_while_routing_dialog" = "Per eliminare una mappa interrompi la navigazione."; /* PointsInDifferentMWM */ -"routing_failed_cross_mwm_building" = "Si possono creare solo percorsi che sono completamente contenuti in una mappa di una singola regione."; +"routing_failed_cross_mwm_building" = "I percorsi possono essere creati solo se interamente presenti in una singola mappa."; /* Context menu item for downloader. */ "downloader_download_map" = "Scarica mappa"; /* Item status in downloader. */ -"downloader_retry" = "Riprova"; +"downloader_retry" = "Ripeti"; /* Item in context menu. */ "downloader_delete_map" = "Elimina mappa"; +/* Item in context menu. */ +"downloader_update_map" = "Aggiorna mappa"; + +/* Preference text */ +"pref_use_google_play" = "Usa i servizi Google Play per ottenere la tua posizione attuale"; + /* Text for rating dialog */ "rating_just_rated" = "Ho appena valutato la tua app"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Creare un percorso necessita la presenza di tutte le mappe scaricate e aggiornate dalla tua posizione alla destinazione."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Spazio non sufficiente"; + /* bookmark button text */ -"bookmark" = "preferito"; +"bookmark" = "segnalibro"; + +/* location service disabled */ +"enable_location_services" = "Cortesemente abilita i servizi di localizzazione"; "save" = "Salva"; +"edit_description_hint" = "Le tue descrizioni (formato testo o html)"; + "create" = "crea"; /* red color */ @@ -396,10 +524,10 @@ "light_blue" = "Azzurro"; /* cyan color */ -"cyan" = "Ciano"; +"cyan" = "Cyan"; /* teal color */ -"teal" = "Blu tè"; +"teal" = "Verde smeraldo"; /* lime color */ "lime" = "Verde fluo"; @@ -421,7 +549,7 @@ "dialog_routing_disclaimer_title" = "Quando segui il percorso, ricorda che:"; -"dialog_routing_disclaimer_priority" = "— Le condizioni stradali, il codice della strada e la segnaletica stradale hanno sempre precedenza sulle indicazioni del navigatore;"; +"dialog_routing_disclaimer_priority" = "— Le condizioni stradali, il codice della strada e la segnaletica stradale hanno sempre precedenza sui consigli di navigazione;"; "dialog_routing_disclaimer_precision" = "— La mappa potrebbe essere imprecisa e il percorso suggerito potrebbe non essere sempre quello ottimale per raggiungere la destinazione;"; @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Impossibile individuare il percorso"; +"dialog_routing_cant_build_route" = "Impossibile creare il percorso."; + "dialog_routing_change_start_or_end" = "Modifica il punto di partenza o la destinazione."; "dialog_routing_change_start" = "Modifica il punto di partenza"; @@ -463,7 +593,7 @@ "dialog_routing_change_intermediate" = "Impossibile individuare un punto intermedio."; -"dialog_routing_intermediate_not_determined" = "Modifica il punto intermedio."; +"dialog_routing_intermediate_not_determined" = "Regolare il punto intermedio."; "dialog_routing_system_error" = "Errore di sistema"; @@ -475,11 +605,15 @@ "dialog_routing_download_and_build_cross_route" = "Vuoi scaricare la mappa e creare un percorso migliore che si estende su più mappe?"; -"dialog_routing_download_cross_route" = "Scarica altre mappe per creare un percorso migliore che attraversi i confini di questa mappa."; +"dialog_routing_download_cross_route" = "Per creare un percorso migliore che oltrepassa il limite di questa mappa, scarica la mappa."; /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Per iniziare a cercare e a creare i percorsi, scarica la mappa e non avrai più bisogno di una connessione a internet."; + +"search_select_map" = "Seleziona mappa"; + /* «Show» context menu */ "show" = "Mostra"; @@ -490,7 +624,7 @@ "routing_planning_error" = "Pianificazione del percorso fallito"; /* Arrive routing message in navigation view */ -"routing_arrive" = "Arrivo a %s"; +"routing_arrive" = "Arrivo: %s"; /* Text for routing::RouterResultCode::FileTooOld dialog. */ "dialog_routing_download_and_update_maps" = "Per creare un percorso, scaricare e aggiornare tutte le mappe interessate dal percorso."; @@ -499,7 +633,7 @@ "rate_alert_default_message" = "Grazie per aver utilizzato Organic Maps. Valuta l’app. Il tuo feedback ci permette di migliorare."; -"rate_alert_five_star_message" = "Urrà! Anche noi ti amiamo!"; +"rate_alert_five_star_message" = "Hooray! Anche noi amiamo i nostri utenti!"; "rate_alert_four_star_message" = "Grazie, faremo del nostro meglio!"; @@ -511,31 +645,37 @@ "closed" = "Chiuso"; -"search_not_found" = "Non ho trovato nulla."; +"search_not_found" = "Spiacente, non ho trovato nulla."; "search_not_found_query" = "Prova con un'altra ricerca."; -"search_history_title" = "Cronologia delle ricerche"; +"search_history_title" = "Cerca nella cronologia"; -"search_history_text" = "Visualizza le ricerche recenti."; +"search_history_text" = "Accedi velocemente alle stringhe di ricerca recenti."; "clear_search" = "Cancella сronologia ricerche"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "La tua posizione"; "p2p_start" = "Inizia"; "p2p_from_here" = "Da"; -"p2p_to_here" = "A"; +"p2p_to_here" = "Percorso per"; "p2p_only_from_current" = "La navigazione è disponibile solo dalla tua posizione attuale."; -"p2p_reroute_from_current" = "Vuoi che pianifichiamo un percorso dalla tua posizione attuale?"; +"p2p_reroute_from_current" = "Vuoi che impostiamo il percorso dalla tua posizione corrente?"; -"editor_time_add" = "Aggiungi pianificazione"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Avanti"; -"editor_time_delete" = "Elimina pianificazione"; +"editor_time_add" = "Aggiungi orari"; + +"editor_time_delete" = "Elimina orari"; /* Text for allday switch. */ "editor_time_allday" = "Tutto il giorno (24 ore)"; @@ -554,7 +694,9 @@ "editor_hours_closed" = "Orari di chiusura"; -"editor_example_values" = "Esempi"; +"editor_example_values" = "Valori esemplificativi"; + +"editor_correct_mistake" = "Correggi errore"; "editor_add_select_location" = "Posizione"; @@ -562,8 +704,20 @@ "share_with_friends" = "Condividi con gli amici"; +"editor_report_problem_desription_1" = "Si prega di descrivere il problema in dettaglio in modo che la community OpenStreeMap possa riparare l’errore."; + +"editor_report_problem_desription_2" = "O fallo tu stesso su https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Invia"; +"editor_report_problem_title" = "Problema"; + +"editor_report_problem_no_place_title" = "Questo luogo non esiste"; + +"editor_report_problem_under_construction_title" = "Chiuso per manutenzione"; + +"editor_report_problem_duplicate_place_title" = "Luogo duplicato"; + "autodownload" = "Scaricamento automatico"; /* Place Page opening hours text */ @@ -572,7 +726,7 @@ /* Place Page opening hours text */ "daily" = "Tutti i giorni"; -"twentyfour_seven" = "24/7"; +"twentyfour_seven" = "Giorno e notte"; "day_off_today" = "Oggi chiuso"; @@ -582,9 +736,11 @@ "add_opening_hours" = "Aggiungi orari di apertura"; -"no_osm_account" = "Non hai un account OpenStreetMap?"; +"edit_opening_hours" = "Modifica orari di apertura"; -"register_at_openstreetmap" = "Iscriviti"; +"no_osm_account" = "Non hai un account su OpenStreetMap?"; + +"register_at_openstreetmap" = "Registrati"; "password_8_chars_min" = "Password (minimo 8 caratteri)"; @@ -592,6 +748,8 @@ "login" = "Accedi"; +"password" = "Password"; + "forgot_password" = "Hai dimenticato la password?"; "osm_account" = "Account OSM"; @@ -609,17 +767,22 @@ "add_language" = "Aggiungi una lingua"; +"street" = "Via"; + /* Editable House Number text field (in address block). */ "house_number" = "Numero civico"; "details" = "Dettagli"; /* Text field to enter non-existing street name, below list of known streets around */ -"add_street" = "Aggiungi una via"; +"add_street" = "Aggiungi una strada"; + +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; "choose_language" = "Scegli una lingua"; -"choose_street" = "Scegli una via"; +"choose_street" = "Scegli una strada"; "postal_code" = "Codice postale"; @@ -628,49 +791,61 @@ "select_cuisine" = "Seleziona la cucina"; /* login text field */ -"email_or_username" = "E-mail o nome utente"; +"email_or_username" = "Email o nome utente"; "phone" = "Telefono"; -"please_note" = "Avviso"; +"editor_add_phone" = "Add Phone"; -"downloader_delete_map_dialog" = "Tutte le tue modifiche alla mappa saranno cancellate insieme alla mappa."; +"please_note" = "Si prega di notare"; + +"downloader_delete_map_dialog" = "Tutti i cambiamenti nella mappa saranno cancellati insieme alla mappa."; "downloader_update_maps" = "Aggiorna mappe"; +"downloader_mwm_migration_dialog" = "Per creare un percorso, devi aggiornare tutte le mappe e pianificare nuovamente il percorso."; + "downloader_search_field_hint" = "Trova la mappa"; -"migration_download_error_dialog" = "Errore download"; +"migration_download_error_dialog" = "Errore nel download"; -"common_check_internet_connection_dialog" = "Verifica le tue impostazioni e assicurarti che il tuo dispositivo sia connesso a internet."; +"common_check_internet_connection_dialog" = "Sei pregato di verificare le tue impostazioni e assicurarti che il tuo dispositivo sia connesso a internet."; "downloader_no_space_title" = "Spazio insufficiente"; "downloader_no_space_message" = "Si prega di rimuovere i dati non necessari"; +"editor_login_error_dialog" = "Errore accesso."; + "editor_profile_changes" = "Modifiche approvate"; "editor_focus_map_on_location" = "Sposta la mappa per selezionare l’esatta posizione dell’oggetto."; "editor_add_select_category" = "Seleziona categoria"; -"editor_add_select_category_popular_subtitle" = "Popolare"; +"editor_add_select_category_popular_subtitle" = "Popolari"; "editor_add_select_category_all_subtitle" = "Tutte le categorie"; "editor_edit_place_title" = "Modifica"; -"editor_add_place_title" = "Aggiungi"; +"editor_add_place_title" = "Aggiunta"; "editor_edit_place_name_hint" = "Nome del luogo"; "editor_edit_place_category_title" = "Categoria"; -"whatsnew_editor_message_1" = "Aggiungi nuovi luoghi sulla mappa e modifica quelli esistenti direttamente dall'app."; +"detailed_problem_description" = "Descrizione dettagliata di un problema"; + +"editor_report_problem_other_title" = "Un problema diverso"; + +"placepage_add_business_button" = "Aggiungi organizzazione"; + +"whatsnew_editor_message_1" = "Aggiungi nuovi luoghi alla mappa, e modifica quelli già esistenti direttamente dall’app."; "dialog_incorrect_feature_position" = "Cambia posizione"; -"message_invalid_feature_position" = "Nessun oggetto può essere posizionato qui"; +"message_invalid_feature_position" = "Un oggetto non può essere posizionato qui"; "login_to_make_edits_visible" = "Accedi per consentire ad altri utenti di vedere le modifiche apportate."; @@ -691,7 +866,7 @@ "editor_storey_number" = "Numero di piani (massimo %d)"; /* Error message in Editor when a user tries to set the number of floors for a building higher than 25 */ -"error_enter_correct_storey_number" = "Il numero di piani non deve superare 25"; +"error_enter_correct_storey_number" = "Modificare l'edificio con un massimo di 25 piani"; "editor_zip_code" = "Codice postale"; @@ -700,35 +875,37 @@ /* Place Page title for long tap */ "core_placepage_unknown_place" = "Luogo sconosciuto"; -"editor_other_info" = "Invia un messaggio a OSM"; +"editor_other_info" = "Invia una nota agli editor di OSM"; "editor_detailed_description_hint" = "Commento dettagliato"; -"editor_detailed_description" = "Le modifiche alla mappa da te suggerite saranno inviate alla comunità di OpenStreetMap. Descrivi qualsiasi dettaglio aggiuntivo che non può essere modificato in Organic Maps."; +"editor_detailed_description" = "Le modifiche suggerite saranno inviate alla community OpenStreetMap. Descrivere i dettagli che non è possibile modificare in Organic Maps."; -"editor_more_about_osm" = "Informazioni su OpenStreetMap"; +"editor_more_about_osm" = "Ulteriori informazioni su OpenStreetMap"; -"editor_operator" = "Proprietario"; +"editor_operator" = "Titolare"; + +"downloader_my_maps_title" = "Le mie mappe"; "downloader_no_downloaded_maps_title" = "Non hai scaricato mappe"; -"downloader_no_downloaded_maps_message" = "Scarica mappe per trovare un luogo e navigare offline."; +"downloader_no_downloaded_maps_message" = "Scarica mappe per trovare il luogo e navigare offline."; /* Error title that appears after certain time without location. */ -"current_location_unknown_title" = "Continuare a rilevare la tua posizione attuale?"; +"current_location_unknown_title" = "Continuare a rilevare la posizione attuale?"; /* Error that appears after certain time without location. */ "current_location_unknown_message" = "La posizione attuale è sconosciuta. È possibile che ci si trovi all'interno di un edificio o un tunnel."; "current_location_unknown_continue_button" = "Continua"; -"current_location_unknown_stop_button" = "Ferma"; +"current_location_unknown_stop_button" = "Arresta"; "current_location_unknown_error_title" = "La posizione attuale è sconosciuta."; -"current_location_unknown_error_message" = "Si è verificato un errore durante la ricerca della tua posizione. Controlla che il tuo dispositivo funzioni correttamente e riprova più tardi."; +"current_location_unknown_error_message" = "Si è verificato un errore durante la ricerca della posizione. Controllare che il dispositivo utilizzato funzioni correttamente e riprovare."; -"location_services_disabled_header" = "I servizi di localizzazione sono disabilitati"; +"location_services_disabled_header" = "La geolocalizzazione è disabilitata"; "location_services_disabled_message" = "Abilita l'accesso alla geolocalizzazione dalle impostazioni del dispositivo"; @@ -737,60 +914,79 @@ "location_services_disabled_2" = "2. Tocca su Localizzazione"; /* iOS Dialog for the case when the location permission is not granted */ -"location_services_disabled_3" = "3. Seleziona Mentre usi l'app"; +"location_services_disabled_3" = "3. Seleziona mentre usi l'app"; "meter" = "m"; "kilometer" = "km"; -"kilometers_per_hour" = "km/h"; +"kilometers_per_hour" = "chilometri orari (km/h)"; "mile" = "mi"; -"foot" = "piede"; +"foot" = "ft"; "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Descrizione"; -"placepage_more_button" = "Di più"; +"placepage_more_button" = "Altro"; + +"placepage_more_reviews_button" = "Altre recensioni"; "book_button" = "Prenota"; "placepage_call_button" = "Chiama"; -"placepage_edit_bookmark_button" = "Modifica luogo preferito"; +"placepage_edit_bookmark_button" = "Modifica segnalibro"; -"placepage_bookmark_name_hint" = "Nome luogo preferito"; +"placepage_bookmark_name_hint" = "Nome segnalibro"; "placepage_personal_notes_hint" = "Note personali"; -"placepage_delete_bookmark_button" = "Elimina luogo preferito"; +"placepage_delete_bookmark_button" = "Elimina segnalibro"; "editor_edits_sent_message" = "Le modifiche suggerite sono state inviate"; -"editor_comment_hint" = "Commento…"; +"editor_comment_hint" = "Commenta…"; -"editor_reset_edits_message" = "Cancellare tutte le modifiche locali?"; +"editor_reset_edits_message" = "Reimpostare tutte le modifiche locali?"; -"editor_reset_edits_button" = "Cancella"; +"editor_reset_edits_button" = "Reimposta"; -"editor_remove_place_message" = "Eliminare il luogo aggiunto?"; +"editor_remove_place_message" = "Rimuovere il luogo aggiunto?"; -"editor_remove_place_button" = "Elimina"; +"editor_remove_place_button" = "Rimuovi"; -"editor_place_doesnt_exist" = "Il luogo non esiste"; +"editor_place_doesnt_exist" = "Luogo inesistente"; -"text_more_button" = "…di più"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + +"text_more_button" = "…continua"; /* Phone number error message */ "error_enter_correct_phone" = "Inserisci un numero di telefono corretto"; "error_enter_correct_web" = "Inserisci un indirizzo web valido"; -"error_enter_correct_email" = "Inserisci un'e-mail valida"; +"error_enter_correct_email" = "Inserisci un'email valida"; -"refresh" = "Aggiorna"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + +"refresh" = "Aggiornare"; "placepage_add_place_button" = "Aggiungi un luogo sulla mappa"; @@ -800,7 +996,7 @@ /* iOS Dialog before publishing the modifications to the public map. */ "editor_share_to_all_dialog_message_1" = "Assicurati di non aver inserito alcun dato personale."; -"editor_share_to_all_dialog_message_2" = "Controlleremo le modifiche. Se avremo delle domande, ti contatteremo via e-mail."; +"editor_share_to_all_dialog_message_2" = "Controlleremo le modifiche. Se avremo delle domande, ti contatteremo via email."; "navigation_stop_button" = "ferma"; @@ -810,12 +1006,12 @@ "off_recent_track_background_button" = "Disattiva"; /* For sharing via SMS and so on */ -"sharing_call_action_look" = "Controlla"; +"sharing_call_action_look" = "Dai uno sguardo"; -"recent_track_background_dialog_message" = "Organic Maps usa la tua posizione geografica per registrare il tuo percorso effettuato più di recente."; +"recent_track_background_dialog_message" = "Organic Maps usa la tua posizione geografica in background per registrare il tuo percorso effettuato più di recente."; /* Text under the version number in the Help dialog. */ -"about_description" = "Organic Maps è un'applicazione gratuita e open-source di mappe offline. Nessuna pubblicità. Nessun tracciamento. Se vedi un errore sulla mappa, correggilo in OpenStreetMap. Il progetto è creato da appassionati nel nostro tempo libero, quindi abbiamo bisogno del vostro parere e sostegno."; +"about_description" = "Organic Maps è un'applicazione di mappe offline gratuita e open source. Nessuna pubblicità. No tracciabilità. Se vedi un errore sulla mappa, correggilo in OpenStreetMap. Il progetto è creato da appassionati nel nostro tempo libero, quindi abbiamo bisogno del tuo feedback e supporto."; "general_settings" = "Impostazioni generali"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Rifiuta"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Elenco"; "mobile_data_dialog" = "Usare l'Internet mobile per mostrare le informazioni dettagliate?"; @@ -846,7 +1042,9 @@ "traffic_update_maps_text" = "Per visualizzare i dati sul traffico, le mappe devono essere aggiornate."; -"big_font" = "Aumenta caratteri sulla mappa"; +"big_font" = "Aumenta dimensione carattere sulla mappa"; + +"traffic_update_app" = "Aggiorna Organic Maps"; /* "traffic" as in road congestion */ "traffic_update_app_message" = "Per visualizzare i dati sul traffico, l'applicazione deve essere aggiornata."; @@ -854,21 +1052,33 @@ /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Dati sul traffico non disponibili"; +"enable_logging" = "Abilita registrazione"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Feedback generale"; -"on" = "Acceso"; +"on" = "On"; -"off" = "Spento"; +"off" = "Off"; -"transliteration_title" = "Trascrizione in latino"; +"prefs_languages_information" = "Usiamo il TTS di sistema per le istruzioni vocali. Molti dispositivi Android utilizzano Google TTS, che puoi scaricare o aggiornare da Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; -"core_exit" = "Uscita"; +"prefs_languages_information_off" = "Per alcune lingue, sarà necessario installare un altro sintetizzatore vocale o un language pack aggiuntivo dall'app store (Google Play Market, Samsung Apps).\nApri le impostazioni del tuo dispositivo → Lingua e input → Riconoscimento vocale → Output sintesi vocale.\nQui puoi gestire le impostazioni di sintesi vocale (ad esempio, scaricare un language pack per l'utilizzo offline) e selezionare un altro motore di sintesi vocale."; + +"prefs_languages_information_off_link" = "Per maggiori informazioni, consulta questa guida."; + +"transliteration_title" = "Traslitterazione in latino"; + +"learn_more" = "Ulteriori informazioni"; + +"core_exit" = "Esci"; "routing_add_start_point" = "Aggiungi un punto di partenza per pianificare un percorso"; "routing_add_finish_point" = "Aggiungi un punto di arrivo per pianificare un percorso"; +"button_exit" = "Esci"; + "planning_route_manage_route" = "Gestisci percorso"; "button_plan" = "Pianifica"; @@ -881,7 +1091,13 @@ "start_from_my_position" = "Parti da"; -"profile_authorization_error" = "Si è verificato un errore. Prova a ripetere l'accesso più tardi."; +"profile_authorization_error" = "Ops, si è verificato un errore. Prova a ripetere l'accesso più tardi."; + +"dialog_error_storage_title" = "Problema di accesso all'archivio"; + +"dialog_error_storage_message" = "Archivio esterno non disponibile, probabilmente la scheda SD è stata rimossa, è danneggiata o il file system è di sola lettura. Controllala e contattaci su support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Simula archivio danneggiato"; "core_entrance" = "Ingresso"; @@ -894,7 +1110,10 @@ "bookmark_lists_show_all" = "Mostra tutto"; -"bookmarks_create_new_group" = "Crea un nuovo elenco"; +"bookmarks_create_new_group" = "Crea una nuova lista"; + +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; "downloader_hide_screen" = "Nascondi schermata"; @@ -908,14 +1127,24 @@ "bookmarks_error_title_share_empty" = "Errore di condivisione"; -"bookmarks_error_message_share_empty" = "Impossibile condividere un elenco vuoto"; +"bookmarks_error_message_share_empty" = "Impossibile condividere una lista vuota"; -"bookmarks_error_message_empty_list_name" = "Inserire il nome dell'elenco"; +"bookmarks_error_title_empty_list_name" = "Il nome non può essere vuoto"; + +"bookmarks_error_message_empty_list_name" = "Si prega di inserire il nome della lista"; + +"bookmarks_new_list_hint" = "Nuova lista"; "bookmarks_error_title_list_name_already_taken" = "Questo nome è già stato scelto"; +"bookmarks_error_message_list_name_already_taken" = "Si prega di scegliere un altro nome"; + "bookmarks_error_title_list_name_too_long" = "Questo nome è troppo lungo"; +"please_wait" = "Attendere prego…"; + +"phone_number" = "Numero di telefono"; + "profile" = "Profilo OpenStreetMap"; "bookmarks_detect_title" = "Nuovi file rilevati"; @@ -926,13 +1155,21 @@ "bookmarks_convert_error_message" = "Alcuni file non sono stati convertiti."; -"bookmarks_restore_title" = "Ripristinare questa versione?"; +"bookmarks_restore_title" = "Ripristina questa versione?"; + +"common_check_internet_connection_dialog_title" = "Nessuna connessione internet"; "error_system_message" = "Si è verificato un errore sconosciuto"; -"restore" = "Ripristina"; +"restore" = "Ristabilire"; -"privacy_policy" = "Riservatezza"; +"subtittle_opt_out" = "Impostazioni di tracciamento"; + +"crash_reports" = "Rapporto incidenti"; + +"crash_reports_description" = "Potremmo utilizzare i tuoi dati per migliorare l'esperienza Organic Maps. Le modifiche avranno effetto dopo il riavvio dell'applicazione."; + +"privacy_policy" = "Politica sulla riservatezza"; "terms_of_use" = "Condizioni d'uso"; @@ -944,9 +1181,15 @@ "subway_data_unavailable" = "La mappa della metropolitana non è disponibile"; +"bookmarks_empty_list_title" = "Questa lista è vuota"; + +"bookmarks_empty_list_message" = "Per aggiungere un segnalibro, toccare un punto sulla mappa e successivamente toccare l'icona a forma di stella"; + +"category_desc_more" = "…altro"; + "title_error_downloading_bookmarks" = "Si è verificato un errore"; -"popular_place" = "Popolare"; +"popular_place" = "Popular"; "export_file" = "Esportare il file"; @@ -954,15 +1197,21 @@ "delete_list" = "Cancella elenco"; -"hide_from_map" = "Nascondi sulla mappa"; +"hide_from_map" = "Nascondere sulla mappa"; -"bookmark_list_description_hint" = "Scrivi una descrizione (testo o html)"; +"public_access" = "Accesso pubblico"; -"tags_loading_error_subtitle" = "Si è verificato un errore durante il caricamento delle etichette, per favore riprova"; +"limited_access" = "Accesso privato"; -"download_button" = "Scarica"; +"bookmark_list_description_hint" = "Aggiungere la descrizione (testo o html)"; -"speedcams_alert_title" = "Autovelox"; +"not_shared" = "Personale"; + +"tags_loading_error_subtitle" = "Si è verificato un errore durante il caricamento dei tag. Si prega di riprovare"; + +"download_button" = "Scaricare"; + +"speedcams_alert_title" = "Autovelox o Tutor"; "speedcam_option_auto" = "Auto"; @@ -972,91 +1221,98 @@ "place_description_title" = "Descrizione luogo"; -"speedcams_notice_message" = "Auto - Avvisare di autovelox in caso di rischio eccesso velocità\nSempre - Avvisare sempre di autovelox\nMai - Non avvisare mai di autovelox"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Caricamento mappe"; -"power_managment_title" = "Risparmio energetico"; +"speedcams_notice_message" = "Auto - Avvisare di autovelox in caso di rischio eccesso velocità\nSempre - avvisare sempre di autovelox\nMai - Non avvisare mai di autovelox"; + +"power_managment_title" = "Modalità di risparmio energetico"; "power_managment_description" = "In modalità di risparmio energetico l'applicazione disattiva alcuni funzioni che hanno un impatto sulla batteria a secondo della carica restante"; "power_managment_setting_never" = "Mai"; -"power_managment_setting_auto" = "Automatico"; +"power_managment_setting_auto" = "Auto"; "power_managment_setting_manual_max" = "Massimo risparmio energetico"; +"enable_logging_warning_message" = "Questa opzione si attiva per registrare tutte le azioni ai fini diagnostici. Ciò aiuta il nostro staff ad ottimizzare il funzionamento dell'applicazione. Attiva l'opzione sulla richiesta dello staff di suporto di Organic Maps."; + +"access_rules_author_only" = "Modifica online"; + "driving_options_title" = "Impostazioni di deviazione"; "driving_options_subheader" = "Evitare in tutti i percorsi"; "avoid_tolls" = "Strade a pedaggio"; -"avoid_unpaved" = "Strade non asfaltate"; +"avoid_unpaved" = "Strade sterrate"; "avoid_ferry" = "Traghetti"; "avoid_motorways" = "Autostrade"; -"unable_to_calc_alert_title" = "Impossibile elaborare il percorso"; +"unable_to_calc_alert_title" = "Impossibile pianificare percorso"; -"unable_to_calc_alert_subtitle" = "Purtroppo non siamo riusciti a trovare un percorso, probabilmente a causa delle opzioni che hai scelto. Si prega di cambiare le impostazioni e riprovare."; +"unable_to_calc_alert_subtitle" = "Impossibile creare percorso con modalità prescelte. Modifica impostazioni e riprova"; -"define_to_avoid_btn" = "Definire le strade da evitare"; +"define_to_avoid_btn" = "Impostare modalità di deviazione"; -"change_driving_options_btn" = "Opzioni di deviazione abilitate"; +"change_driving_options_btn" = "Impostazioni di deviazione abilitate"; "toll_road" = "Strada a pedaggio"; -"unpaved_road" = "Strada non asfaltata"; +"unpaved_road" = "Strada sterrata"; "ferry_crossing" = "Traghetto"; "avoid_toll_roads_placepage" = "Evitare strade a pedaggio"; -"avoid_unpaved_roads_placepage" = "Evitare le strade non asfaltate"; +"avoid_unpaved_roads_placepage" = "Evitare strade sterrate"; "avoid_ferry_crossing_placepage" = "Evitare i traghetti"; "trip_start" = "Si parte"; -"pick_destination" = "Destinazione"; +"pick_destination" = "Meta"; "follow_my_position" = "Centrare"; "search_results" = "Risultati di ricerca"; -"then_turn" = "Poi"; +"then_turn" = "Avanti"; -"redirect_route_alert" = "Vuoi ricalcolare il percorso?"; +"redirect_route_alert" = "Vuoi modificare il percorso?"; "redirect_route_yes" = "Sì"; "redirect_route_no" = "No"; -"trip_finished" = "Sei arrivato!"; +"trip_finished" = "Sei giunto a destinazione!"; "keyboard_availability_alert" = "Tastiera non disponibile in movimento"; -"dialog_routing_change_start_carplay" = "Impossibile creare un percorso dalla tua posizione attuale"; +"dialog_routing_change_start_carplay" = "Impossibile creare percorso dal punto di partenza selezionato"; -"dialog_routing_change_end_carplay" = "Impossibile creare un percorso per raggiungere la destinazione. Scegli un'altra destinazione."; +"dialog_routing_change_end_carplay" = "Impossibile creare percorso per raggiungere la destinazione Scegli un'altra destinazione"; "dialog_routing_check_gps_carplay" = "Segnale GPS assente. Procedi su terreno aperto"; -"dialog_routing_unable_locate_route_carplay" = "Impossibile creare un percorso. Specificare altri punti del percorso"; +"dialog_routing_unable_locate_route_carplay" = "Impossibile trovare percorso. Scegli altre tappe"; -"dialog_routing_download_files_carplay" = "Per creare un percorso scarica le mappe mancanti sul proprio dispositivo"; +"dialog_routing_download_files_carplay" = "Per creare percorso scarica mappe mancanti sul proprio dispositivo"; "dialog_routing_system_error_carplay" = "Si è verificato un errore. Riavviare l'applicazione"; -"dialog_routing_rebuild_from_current_location_carplay" = "Il percorso sarà ricreato a partire dalla tua posizione attuale"; +"dialog_routing_rebuild_from_current_location_carplay" = "Il percorso verrà impostato dalla tua posizione corrente"; -"dialog_routing_rebuild_for_vehicle_carplay" = "Il percorso sarà convertito in un percorso automobilistico"; +"dialog_routing_rebuild_for_vehicle_carplay" = "Il percorso verrà modificato in modalità Auto"; "ok" = "Ok"; -"avoid_unpaved_carplay_1" = "No sterrate"; +"avoid_unpaved_carplay_1" = "No sterrati"; -"avoid_unpaved_carplay_2" = "No sterrate"; +"avoid_unpaved_carplay_2" = "No sterrati"; "avoid_ferry_carplay_1" = "No traghetti"; @@ -1070,15 +1326,18 @@ "speedcams_alert_title_carplay_2" = "Info autovelox"; -"download_map_carplay" = "Scarica le mappe nell'applicazione Organic Maps sul tuo dispositivo"; +"download_map_carplay" = "Scarica l'applicazione Organic Maps sul tuo smartphone"; "carplay_roundabout_exit" = "%s uscita"; /* max. 10 symbols, both iOS and Android */ "sort" = "Ordina…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Ordina i segnalibri"; + /* iOS */ -"sort_default" = "Ordina come predefinito"; +"sort_default" = "Ordina per default"; "sort_type" = "Ordina per tipo"; @@ -1086,6 +1345,18 @@ "sort_date" = "Ordina per data"; +/* Android */ +"by_default" = "Per default"; + +/* Android */ +"by_type" = "Per tipo"; + +/* Android */ +"by_distance" = "Per distanza"; + +/* Android */ +"by_date" = "Per data"; + "week_ago_sorttype" = "Una settimana fa"; "month_ago_sorttype" = "Un mese fa"; @@ -1096,7 +1367,7 @@ "near_me_sorttype" = "Vicino a me"; -"others_sorttype" = "Altro"; +"others_sorttype" = "Altri"; "food_places" = "Cibo"; @@ -1128,15 +1399,17 @@ "medicine" = "Farmacia"; -"search_in_the_list" = "Cerca nell'elenco"; +"search_in_the_list" = "Cerca nella lista"; "religious_places" = "Luoghi di culto"; -"transit_not_found" = "La navigazione in metropolitana in questa regione non è ancora disponibile"; +"select_list" = "Scegli la lista"; + +"transit_not_found" = "L'utilizzo della metro non è ancora disponibile in questa regione"; "dialog_pedestrian_route_is_long_header" = "Percorso della metro non trovato"; -"dialog_pedestrian_route_is_long_message" = "Scegli un punto di partenza o di arrivo più vicino a una stazione della metropolitana"; +"dialog_pedestrian_route_is_long_message" = "Seleziona il punto iniziale o finale del percorso più vicino alla stazione della metro"; "button_layer_isolines" = "Terreno"; @@ -1152,7 +1425,7 @@ "elevation_profile_diff_level_hard" = "Difficile"; -"elevation_profile_ascent" = "Salita"; +"elevation_profile_ascent" = "Ascesa"; "elevation_profile_descent" = "Discesa"; @@ -1162,19 +1435,34 @@ "elevation_profile_difficulty" = "Difficoltà"; +"elevation_profile_distance" = "Dist."; + "elevation_profile_time" = "Tempo:"; "isolines_toast_zooms_1_10" = "Ingrandisci mappa per vedere l'isolinea"; "downloader_updating_ios" = "Aggiornamento in corso"; -"downloader_loading_ios" = "Download in corso"; +"downloader_loading_ios" = "Caricamento"; + +"key_information_title" = "Informazioni importanti"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Consenti allo schermo di dormire"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Quando abilitato, lo schermo potrà dormire dopo un periodo di inattività."; /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Aggiorna le mappe scaricate"; /* Autoupdate dialog on start */ -"whats_new_auto_update_message" = "L'aggiornamento delle mappe mantiene aggiornate le informazioni sugli oggetti"; +"whats_new_auto_update_message" = "Aggiornamento mappe mantiene aggiornate le informazioni sugli oggetti"; /* Autoupdate dialog on start */ "whats_new_auto_update_button_size" = "Aggiorna (%s)"; @@ -1183,16 +1471,16 @@ "whats_new_auto_update_button_later" = "Aggiorna manualmente più tardi"; /* Delete track button on track edit screen */ -"placepage_delete_track_button" = "Elimina percorso"; +"placepage_delete_track_button" = "Delete Track"; /* Placeholder for track name input on track edit screen */ -"placepage_track_name_hint" = "Nome percorso"; +"placepage_track_name_hint" = "Track Name"; /* move track or bookmark from the list button text */ -"move" = "Sposta"; +"move" = "Move"; /* edit track screen title */ -"track_title" = "Percorso"; +"track_title" = "Traccia"; /********** Types **********/ @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Laboratorio Medico"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Fermata"; "type.highway.construction" = "Strada in costruzione"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1798,7 +2083,7 @@ "type.highway.motorway.tunnel" = "Via"; -"type.highway.motorway_junction" = "Road Exit"; +"type.highway.motorway_junction" = "Exit"; "type.highway.motorway_link" = "Via"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Via"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Autovelox"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Via"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Sentiero"; - -"type.area_highway.living_street" = "Via"; - -"type.area_highway.motorway" = "Via"; - -"type.area_highway.path" = "Sentiero"; - -"type.area_highway.pedestrian" = "Via"; - -"type.area_highway.primary" = "Via"; - -"type.area_highway.residential" = "Via"; - -"type.area_highway.secondary" = "Via"; - -"type.area_highway.service" = "Via"; - -"type.area_highway.tertiary" = "Via"; - -"type.area_highway.steps" = "Sentiero"; - -"type.area_highway.track" = "Via"; - -"type.area_highway.trunk" = "Via"; - -"type.area_highway.unclassified" = "Via"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Sito archeologico"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Parco acquatico"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capitale"; -"type.place.city.capital.10" = "Città"; +"type.place.city.capital.10" = "Capitale"; -"type.place.city.capital.11" = "Città"; +"type.place.city.capital.11" = "Capitale"; "type.place.city.capital.2" = "Capitale"; -"type.place.city.capital.3" = "Città"; +"type.place.city.capital.3" = "Capitale"; -"type.place.city.capital.4" = "Città"; +"type.place.city.capital.4" = "Capitale"; -"type.place.city.capital.5" = "Città"; +"type.place.city.capital.5" = "Capitale"; -"type.place.city.capital.6" = "Città"; +"type.place.city.capital.6" = "Capitale"; -"type.place.city.capital.7" = "Città"; +"type.place.city.capital.7" = "Capitale"; -"type.place.city.capital.8" = "Città"; +"type.place.city.capital.8" = "Capitale"; -"type.place.city.capital.9" = "Città"; +"type.place.city.capital.9" = "Capitale"; "type.place.continent" = "Continente"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Edificio"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/it.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/it.lproj/Localizable.stringsdict index 9efc16dbfd..b5769dab73 100644 --- a/iphone/Maps/LocalizedStrings/it.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/it.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -19,8 +19,6 @@ NSStringPluralRuleType NSStringFormatValueTypeKey d - one - %d preferito other %d preferiti @@ -39,7 +37,7 @@ one %d file è stato trovato. Lo vedrai dopo la conversione. other - %d file trovati. Li vedrai dopo la conversione. + %d file trovati Li vedrai dopo la conversione. @@ -53,10 +51,23 @@ NSStringPluralRuleType NSStringFormatValueTypeKey d - one - %d oggetto other - %d oggetti + %d luogo + + + + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d luoghi @@ -70,10 +81,8 @@ NSStringPluralRuleType NSStringFormatValueTypeKey d - one - %d percorso other - %d percorsi + %d tracce diff --git a/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.strings index 7c5ce04668..0274d95517 100644 --- a/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "戻る"; + /* Button text (should be short) */ "cancel" = "キャンセル"; @@ -17,6 +20,9 @@ "download_maps" = "マップをダウンロード"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "ダウンロードが失敗しました。もう一度試すには画面をタッチしてください。"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "ダウンロード中…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "マップ"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "マイル"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "検索"; +/* Search box placeholder text */ +"search_map" = "マップを検索"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "はい"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "端末の位置情報サービスが無効になっているか、このアプリケーションからの位置情報利用が制限されています。端末の設定を有効化してください。"; + /* View and button titles for accessibility */ "zoom_to_country" = "地図に表示"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "のダウンロードに失敗しました"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "再実行"; + "about_menu_title" = "Organic Mapsについて"; +"connection_settings" = "接続設定"; + "close" = "閉じる"; +"unsupported_phone" = "ハードウェアアクセラレーションされたOpenGLが必要です。残念ながらご利用中のデバイスではサポートされていません。"; + "download" = "ダウンロード"; +"disconnect_usb_cable" = "Organic Mapsを利用するにはUSBケーブルを抜くかメモリーカードを挿入してください"; + +"not_enough_free_space_on_sdcard" = "アプリを起動するにはSDカード/USBストレージの空き容量を確保する必要があります"; + +"not_enough_memory" = "メモリ不足のためアプリを起動できません"; + +"download_resources" = "利用を開始する前におおまかな世界地図をダウンロードします。これには%@の空き容量が必要です。"; + +"download_resources_continue" = "マップを表示"; + +"downloading_country_can_proceed" = "%@をダウンロードしました\nマップを表示可能です"; + +"download_country_ask" = "%@をダウンロードしますか?"; + +"update_country_ask" = "%@を更新しますか?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "一時停止"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "続行"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@のダウンロードが失敗しました"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "新しいセットを作成"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "マイロケーション"; +/* Add bookmark dialog - bookmark name */ +"name" = "名称"; + /* Editor title above street and house number */ "address" = "住所"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "セット"; + /* Settings button in system menu */ "settings" = "設定"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "地図の保存先"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "マップのダウンロード先を選択してください"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "マップを移動させますか?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "数分かかる場合があります。\nしばらくお待ち下さい…"; + /* Measurement units title in settings activity */ "measurement_units" = "距離計測単位"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "マイルまたはキロメートルを選択"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "食事場所"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "食料雑貨"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "交通機関"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "ガソリンスタンド"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "駐車場"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "ショッピング"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "ホテル"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "観光"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "エンターテイメント"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "ATM"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "ナイトライフ"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "家族の休日"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "銀行"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "薬局"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "病院"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "トイレ"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "郵便局"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "警察"; +/* Notes field in Bookmarks view */ +"description" = "メモ"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Organic Mapsの位置情報シェア"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "現在の座標が未確定です"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "恐れ入ります、マップストレージ設定が無効になっています。"; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "ダウンロードを実行中です"; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "私は今ここにいます。リンク: %1$@, %2$@"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Organic Mapsでピン情報を確認"; /* Subject for emailed position */ "my_position_share_email_subject" = "Organic Mapsで現在地を確認"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "私は今ここにいます: %1$@\n\nリンクをクリックすると詳細がマップに表示されます。\n\n%2$@\n\n%3$@"; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "共有"; /* Share by email button text, also used in editor. */ "email" = "Eメール"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "クリップボードにコピーしました: %1$@"; + /* place preview title */ "info" = "情報"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "本当に続けますか?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "トラック"; @@ -195,10 +283,18 @@ "share_my_location" = "位置情報を共有する"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "ナビゲーション"; "pref_zoom_title" = "ズームボタン"; +"pref_zoom_summary" = "画面上に表示"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "夜間モード"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "音声言語"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "利用不可"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "その他"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "ヘルプ"; +/* Button in the main Help dialog */ +"faq" = "質問と回答"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "どのように私たちを支持する方法?"; + /* Button in the main Help dialog */ "copyright" = "著作権"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "全てをアップデート"; +/* Cancel all button text */ +"downloader_cancel_all" = "すべてキャンセル"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "ダウンロード済み"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "地図を削除"; +/* Item in context menu. */ +"downloader_update_map" = "地図を更新"; + +/* Preference text */ +"pref_use_google_play" = "現在のロケーションを取得するためにGoogle Playのサービスを使う"; + /* Text for rating dialog */ "rating_just_rated" = "たった今アプリを評価したところです"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "ルートの作成には現在位置から目的地までのすべての地図をダウンロードし、最新のものにする必要があります。"; +/* Text for routing error dialog */ +"routing_not_enough_space" = "空き容量が足りません"; + /* bookmark button text */ "bookmark" = "お気に入り"; +/* location service disabled */ +"enable_location_services" = "位置情報サービスを有効化してください"; + "save" = "保存"; +"edit_description_hint" = "説明(テキストまたはHTML)"; + "create" = "作成"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "ルートの位置を確認できません"; +"dialog_routing_cant_build_route" = "案内ルートを作成できません。"; + "dialog_routing_change_start_or_end" = "出発地または目的地の位置調整をしてください。"; "dialog_routing_change_start" = "出発地の位置調整をしてください"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "検索とルート作成を開始するには、地図をダウンロードしてください。地図をダウンロードすると、インターネット接続は必要なくなります。"; + +"search_select_map" = "地図を選択"; + /* «Show» context menu */ "show" = "表示する"; @@ -521,6 +655,9 @@ "clear_search" = "検索履歴を消去"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "現在位置"; "p2p_start" = "開始"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "現在位置からのルートを作成しますか?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "次へ"; + "editor_time_add" = "スケジュール追加"; "editor_time_delete" = "スケジュール削除"; @@ -556,14 +696,28 @@ "editor_example_values" = "値の例"; +"editor_correct_mistake" = "間違いの訂正"; + "editor_add_select_location" = "現在位置"; "editor_done_dialog_1" = "世界地図を変更しました。この変更を秘密にしないでください! 友達に教えて一緒に編集しましょう。"; "share_with_friends" = "友達にシェア"; +"editor_report_problem_desription_1" = "OpenStreeMapコミュニティがエラーを修正できるよう、問題の詳細を説明してください。"; + +"editor_report_problem_desription_2" = "または、このURLでご自身で修正してください https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "送信"; +"editor_report_problem_title" = "問題"; + +"editor_report_problem_no_place_title" = "この場所は存在しません"; + +"editor_report_problem_under_construction_title" = "メンテナンスのため使えません"; + +"editor_report_problem_duplicate_place_title" = "重複している場所"; + "autodownload" = "自動ダウンロード"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "営業時間を追加"; +"edit_opening_hours" = "営業時間を編集"; + "no_osm_account" = "OpenStreetMapのアカウントがありませんか?"; "register_at_openstreetmap" = "登録"; @@ -592,6 +748,8 @@ "login" = "ログイン"; +"password" = "パスワード"; + "forgot_password" = "パスワードをお忘れですか?"; "osm_account" = "OSMアカウント"; @@ -609,6 +767,8 @@ "add_language" = "言語を追加"; +"street" = "通り"; + /* Editable House Number text field (in address block). */ "house_number" = "番地"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "通りを追加"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "言語を選択"; "choose_street" = "通りを選択"; @@ -632,12 +795,16 @@ "phone" = "電話"; +"editor_add_phone" = "Add Phone"; + "please_note" = "ご注意ください"; "downloader_delete_map_dialog" = "この地図を削除すると、今まで行った変更の全ても一緒に削除されます。"; "downloader_update_maps" = "地図をアップデート"; +"downloader_mwm_migration_dialog" = "ルートを作成するには、全ての地図をアップデートした後で再びルート計画を行う必要があります。"; + "downloader_search_field_hint" = "地図を検索"; "migration_download_error_dialog" = "ダウンロードエラー"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "不必要なデータを削除してください"; +"editor_login_error_dialog" = "ログインエラー。"; + "editor_profile_changes" = "確認された変更"; "editor_focus_map_on_location" = "地図を操作してオブジェクトの正しい場所を選択します。"; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "カテゴリ"; +"detailed_problem_description" = "問題の詳細な説明"; + +"editor_report_problem_other_title" = "異なる問題"; + +"placepage_add_business_button" = "団体を追加"; + "whatsnew_editor_message_1" = "アプリから直接地図に新しい場所を追加したり、既存の場所を編集できます。"; "dialog_incorrect_feature_position" = "位置を変更してください"; @@ -710,6 +885,8 @@ "editor_operator" = "オペレーター"; +"downloader_my_maps_title" = "マイマップ"; + "downloader_no_downloaded_maps_title" = "マップをダウンロードしていません"; "downloader_no_downloaded_maps_message" = "ロケーションの検索とオフラインナビゲートのためにマップをダウンロードしてください。"; @@ -751,10 +928,16 @@ "miles_per_hour" = "マイル毎時"; +"hour" = "時間"; + +"minute" = "分"; + "placepage_place_description" = "説明"; "placepage_more_button" = "さらに詳しく"; +"placepage_more_reviews_button" = "レビューを更に表示"; + "book_button" = "予約"; "placepage_call_button" = "コール"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "存在しない場所"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…続き"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "有効なメールアドレスを入力してください"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "更新"; "placepage_add_place_button" = "地図上に場所を追加"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "拒否"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "一覧"; "mobile_data_dialog" = "モバイルインターネットを使用して詳細な情報を表示しますか?"; @@ -848,12 +1044,16 @@ "big_font" = "地図上のフォントサイズを大きく"; +"traffic_update_app" = "Organic Maps をアップデートしてください"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "交通データを表示するには、アプリケーションをアップデートする必要があります。"; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "交通データは利用できません"; +"enable_logging" = "ログを有効化"; + /* Settings: "Send general feedback" button */ "feedback_general" = "一般的なフィードバック"; @@ -861,14 +1061,24 @@ "off" = "オフ"; +"prefs_languages_information" = "音声案内にはシステムの TTS を使用します。多くの Android 端末が Google の TTS を使用しており、Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) からダウンロードや更新を行うことができます。"; + +"prefs_languages_information_off" = "いくつかの言語では、アプリストアからその他の音声合成または追加の言語パックをインストールする必要があります (Google Play マーケット、Samsung Apps) 。お使いのデバイスで [設定] → [言語と入力] → [音声] → [音声出力] を開いてください。ここで音声合成の設定 (たとえば、オフラインで使用する言語パックのダウンロードなど) を管理し、別の音声合成エンジンを選択することができます。"; + +"prefs_languages_information_off_link" = "詳細については、このガイドをご確認ください。"; + "transliteration_title" = "ラテン文字への字訳"; +"learn_more" = "詳細情報"; + "core_exit" = "終了"; "routing_add_start_point" = "ルートを計画するには出発地点を追加してください"; "routing_add_finish_point" = "ルートを計画するには到着地点を追加してください"; +"button_exit" = "終了"; + "planning_route_manage_route" = "ルートを編集"; "button_plan" = "適用する"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "エラーが発生しました。もう一度サインインしてみてください。"; +"dialog_error_storage_title" = "ストレージアクセスの問題"; + +"dialog_error_storage_message" = "外部ストレージは使用できません。おそらく SD カードが取り外されたか、破損している、あるいはファイルシステムが読み取り専用になっています。確認後、support@organicmaps.app までご連絡ください。"; + +"setting_emulate_bad_storage" = "壊れたストレージをエミュレート"; + "core_entrance" = "入口"; "error_enter_correct_name" = "正しい名前を入力してください"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "新しいリストを作成する"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "画面を非表示"; "downloader_percent" = "%s (%s / %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "空のリストは共有できません"; +"bookmarks_error_title_empty_list_name" = "名前を空にすることはできませんでした"; + "bookmarks_error_message_empty_list_name" = "リスト名を入力してください"; +"bookmarks_new_list_hint" = "新しいリスト"; + "bookmarks_error_title_list_name_already_taken" = "この名前はすでに使用されています"; +"bookmarks_error_message_list_name_already_taken" = "別の名前を選んでください"; + "bookmarks_error_title_list_name_too_long" = "この名前は長すぎます"; +"please_wait" = "お待ちください…"; + +"phone_number" = "電話番号"; + "profile" = "OpenStreetMap プロフィール"; "bookmarks_detect_title" = "新しいファイルが検出されました"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "このバージョンを復元しますか?"; +"common_check_internet_connection_dialog_title" = "インターネット接続なし"; + "error_system_message" = "不明なエラーが発生しました"; "restore" = "リストア"; +"subtittle_opt_out" = "追跡の設定"; + +"crash_reports" = "クラッシュレポート"; + +"crash_reports_description" = "Organic Maps体験を向上させるため、お客様のデータを使用する可能性があります。変更は、アプリを再起動した後に、反映されます。"; + "privacy_policy" = "個人情報保護方針"; "terms_of_use" = "ご利用規約"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "地下鉄路線図はご利用いただけません"; +"bookmarks_empty_list_title" = "このリストは空です"; + +"bookmarks_empty_list_message" = "ブックマークを追加するには、地図上の場所をタップし、星のアイコンをタップします。"; + +"category_desc_more" = "詳細"; + "title_error_downloading_bookmarks" = "エラーが発生しました"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "マップから隠す"; +"public_access" = "パブリック・アクセス"; + +"limited_access" = "制限されたアクセス"; + "bookmark_list_description_hint" = "説明(テキストまたはhtml)を記入してください"; +"not_shared" = "非公開"; + "tags_loading_error_subtitle" = "タグのロード中にエラーが起きました。もう一度やり直してください"; "download_button" = "ダウンロード"; @@ -972,6 +1221,9 @@ "place_description_title" = "場所の説明"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "マップダウンローダー"; + "speedcams_notice_message" = "自動-速度制限超過の危険性がある場合には、自動速度違反取締装置について警告します\n常時-自動速度違反取締装置について常に警告します\n無効-自動速度違反取締装置を警告しません"; "power_managment_title" = "電力節約モード"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "最大電力節約"; +"enable_logging_warning_message" = "このオプションは診断目的でのデータ記録を有効にします。これはこのアプリケーションのトラブルシューティングを担当する当社のサポートスタッフの助けになります。このオプションはOrganic Mapsにリクエストされた場合にのみ有効にしてください。"; + +"access_rules_author_only" = "オンライン編集"; + "driving_options_title" = "運転オプション"; "driving_options_subheader" = "すべてのルートで回避"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "並び替え中…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "ブックマークの並び替え"; + /* iOS */ "sort_default" = "デフォルトで並び替え"; @@ -1086,6 +1345,18 @@ "sort_date" = "日付で並び替え"; +/* Android */ +"by_default" = "デフォルトで"; + +/* Android */ +"by_type" = "タイプで"; + +/* Android */ +"by_distance" = "距離で"; + +/* Android */ +"by_date" = "日付で"; + "week_ago_sorttype" = "1週間前"; "month_ago_sorttype" = "1ケ月前"; @@ -1132,6 +1403,8 @@ "religious_places" = "宗教に関連した場所"; +"select_list" = "リストを選択"; + "transit_not_found" = "この地域の地下鉄ナビはまだ利用できません"; "dialog_pedestrian_route_is_long_header" = "地下鉄ルートが見つかりませんでした"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "難易度"; +"elevation_profile_distance" = "距離:"; + "elevation_profile_time" = "時間:"; "isolines_toast_zooms_1_10" = "等高線を調べるためにズームインしましょう"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "ダウンロード中"; +"key_information_title" = "重要情報"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "画面をスリープ状態にする"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "有効にすると、画面は一定時間非アクティブになった後もスリープ状態になります。"; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "ダウンロード済みのマップを更新してください"; @@ -1735,9 +2023,6 @@ "type.healthcare.laboratory" = "医療研究所"; - -/********** Types: Roads **********/ - "type.highway" = "道路"; "type.highway.bridleway" = "馬道"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "ストリート"; -"type.area_highway.cycleway" = "自転車道"; - -"type.area_highway.footway" = "歩道"; - -"type.area_highway.living_street" = "ストリート"; - -"type.area_highway.motorway" = "ストリート"; - -"type.area_highway.path" = "歩道"; - -"type.area_highway.pedestrian" = "ストリート"; - -"type.area_highway.primary" = "ストリート"; - -"type.area_highway.residential" = "ストリート"; - -"type.area_highway.secondary" = "ストリート"; - -"type.area_highway.service" = "ストリート"; - -"type.area_highway.tertiary" = "ストリート"; - -"type.area_highway.steps" = "歩道"; - -"type.area_highway.track" = "ストリート"; - -"type.area_highway.trunk" = "ストリート"; - -"type.area_highway.unclassified" = "ストリート"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "史跡"; "type.historic.archaeological_site" = "考古遺跡"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "ウォーターパーク"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "構造物"; "type.man_made.breakwater" = "防波堤"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "首都"; -"type.place.city.capital.10" = "市"; +"type.place.city.capital.10" = "首都"; -"type.place.city.capital.11" = "市"; +"type.place.city.capital.11" = "首都"; "type.place.city.capital.2" = "首都"; -"type.place.city.capital.3" = "市"; +"type.place.city.capital.3" = "首都"; -"type.place.city.capital.4" = "市"; +"type.place.city.capital.4" = "首都"; -"type.place.city.capital.5" = "市"; +"type.place.city.capital.5" = "首都"; -"type.place.city.capital.6" = "市"; +"type.place.city.capital.6" = "首都"; -"type.place.city.capital.7" = "市"; +"type.place.city.capital.7" = "首都"; -"type.place.city.capital.8" = "市"; +"type.place.city.capital.8" = "首都"; -"type.place.city.capital.9" = "市"; +"type.place.city.capital.9" = "首都"; "type.place.continent" = "大陸"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "建物"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.stringsdict index c948c9a1b6..c465da183c 100644 --- a/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/ja.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -54,6 +54,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %dの場所 + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.strings index 9c55e10853..5057f23b99 100644 --- a/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "뒤로"; + /* Button text (should be short) */ "cancel" = "취소하기"; @@ -17,6 +20,9 @@ "download_maps" = "지도 다운로드받기"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "다운로드에 실패하였습니다. 다시 두드려 시도하여 주십시요."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "다운로드 중…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "지도"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "마일"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "검색하기"; +/* Search box placeholder text */ +"search_map" = "지도 검색하기"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "네"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "현재 이 장치나 애플리케이션을 위한 전 위치 서비스를 불능시키셨습니다. 설정에서 이를 작동시켜 주시기 바랍니다."; + /* View and button titles for accessibility */ "zoom_to_country" = "지도에 표시"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "다운로드에 실패하였습니다"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "다시 시도"; + "about_menu_title" = "소개"; +"connection_settings" = "연결 설정"; + "close" = "닫기"; +"unsupported_phone" = "하드웨어 촉진 OpenGL이 요구됩니다. 애석하게도 귀하의 장치는 지원되지 않습니다."; + "download" = "다운로드"; +"disconnect_usb_cable" = "Organic Maps를 사용하려면 USB 케이블이나 삽입 메모리 카드를 분리하십시오"; + +"not_enough_free_space_on_sdcard" = "응용 프로그램을 사용하기 위해서는 첫째 SD 카드 / USB 저장 장치에 여유 공간을 확보하십시오"; + +"not_enough_memory" = "응용 프로그램을 실행하기위한 메모리가 충분하지 않다"; + +"download_resources" = "시작하시기 전에 일반 세계 지도를 귀하의 장치로 다운로드하겠습니다.\n%@ 데이터가 필요합니다."; + +"download_resources_continue" = "지도로 이동"; + +"downloading_country_can_proceed" = "%@다운로드. 이제지도를 진행할 수 있습니다."; + +"download_country_ask" = "%@다운로드?"; + +"update_country_ask" = "%@업데이트?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "중지"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "계속"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@다운로드가 실패했습니다"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "새로운 세트 추가"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "내 장소"; +/* Add bookmark dialog - bookmark name */ +"name" = "이름"; + /* Editor title above street and house number */ "address" = "주소"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "집합"; + /* Settings button in system menu */ "settings" = "설정"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "지도 저장 위치:"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "지도가 다운로드될 곳을 선택합니다"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "지도를 이동합니까?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "이 작업은 수 분 소요될 수 있습니다.\n잠시 기다리세요…"; + /* Measurement units title in settings activity */ "measurement_units" = "측정 단위"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "마일과 킬로미터 중에서 선택하십시오"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "어디서먹을까"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "식료품들"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "수송"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "연료"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "주차"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "쇼핑"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "호텔"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "관광"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "엔터테인먼트"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "ATM"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "유흥"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "가족 기념일"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "은행"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "약국"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "병원"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "화장실"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "우편"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "치안대"; +/* Notes field in Bookmarks view */ +"description" = "메모"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "귀하와 공유된 Organic Maps 즐겨찾기"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "귀하의 위치를 아직 알아내지 못 했습니다"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "죄송합니다, 지도 스토리지 설정이 비활성화되어 있습니다."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "국가 다운로드가 지금 진행 중입니다."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "현재 위치를 알아 보십시오. %1$@ 또는 %2$@ 열기"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Organic Maps 지도에서 내 핀 보기"; /* Subject for emailed position */ "my_position_share_email_subject" = "Organic Maps 지도에서 제 현재 위치를 살펴 보시기 바랍니다"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "안녕하세요.\n\n지금 다음 위치에 있습니다: %1$@. %2$@ 또는 %3$@ 링크를 클릭하여 지도상에서 해당 장소를 살펴보시기 바랍니다.\n\n감사합니다."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "공유"; /* Share by email button text, also used in editor. */ "email" = "이메일"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "클립보드에 복사됨: %1$@"; + /* place preview title */ "info" = "정보"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "계속하겠습니까?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "트랙"; @@ -195,10 +283,18 @@ "share_my_location" = "내 위치 공유"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "네비게이션"; "pref_zoom_title" = "확대/축소 버튼"; +"pref_zoom_summary" = "화면에 표시"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "나이트 모드"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "음성 언어"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "사용할 수 없음"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "다른 언어"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "도움말"; +/* Button in the main Help dialog */ +"faq" = "질문과 답변"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "우리를 지원하는 방법?"; + /* Button in the main Help dialog */ "copyright" = "저작권"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "모두 업데이트"; +/* Cancel all button text */ +"downloader_cancel_all" = "모두 취소"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "다운로드"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "지도 삭제"; +/* Item in context menu. */ +"downloader_update_map" = "지도 업데이트"; + +/* Preference text */ +"pref_use_google_play" = "Google Play 서비스를 사용하여 현재 위치 정보 얻기"; + /* Text for rating dialog */ "rating_just_rated" = "앱 평가 완료"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "경로를 만드는 것은 사용자의 위치에서의 모든 지도를 다운로드되고 업데이트된 대상으로 필요합니다."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "여유 공간 부족"; + /* bookmark button text */ "bookmark" = "북마크"; +/* location service disabled */ +"enable_location_services" = "위치 서비스를 작동시켜 주십시요."; + "save" = "저장"; +"edit_description_hint" = "설명(텍스트 또는 HTML)"; + "create" = "만들기기"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "경로를 찾을 수 없습니다"; +"dialog_routing_cant_build_route" = "경로를 찾을 수 없습니다."; + "dialog_routing_change_start_or_end" = "출발지나 목적지를 조정하세요."; "dialog_routing_change_start" = "출발지 조정"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "경로를 검색하고 만들기시작하려면, 지도를 다운로드하십시오. 그러면, 더 이상 인터넷 연결이 필요하지 않습니다."; + +"search_select_map" = "지도 선택"; + /* «Show» context menu */ "show" = "표시"; @@ -521,6 +655,9 @@ "clear_search" = "이력 검색 지우기"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "위치"; "p2p_start" = "시작"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "현재 위치에서 경로를 계획하시겠습니까?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "다음"; + "editor_time_add" = "스케줄 추가"; "editor_time_delete" = "스케줄 삭제"; @@ -556,14 +696,28 @@ "editor_example_values" = "예제"; +"editor_correct_mistake" = "입력 수정"; + "editor_add_select_location" = "위치"; "editor_done_dialog_1" = "세계 지도를 변경했습니다. 이를 숨기지 마십시오! 친구에게 말하고, 이를 함께 편집합니다."; "share_with_friends" = "친구들과 공유"; +"editor_report_problem_desription_1" = "OpenStreeMap 커뮤니티가 오류를 수정할 수 있도록 상세하게 문제를 설명하십시오."; + +"editor_report_problem_desription_2" = "아니면, 다음에서 스스로 가능: https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "전송"; +"editor_report_problem_title" = "문제"; + +"editor_report_problem_no_place_title" = "장소가 존재하지 않음"; + +"editor_report_problem_under_construction_title" = "유지 보수를 위해 닫음"; + +"editor_report_problem_duplicate_place_title" = "중복된 장소"; + "autodownload" = "자동 다운로드"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "영업일 추가"; +"edit_opening_hours" = "영업일 편집"; + "no_osm_account" = "OpenStreetMap에서 계정이 없습니까?"; "register_at_openstreetmap" = "등록"; @@ -592,6 +748,8 @@ "login" = "로그인"; +"password" = "암호"; + "forgot_password" = "암호를 잊으 셨나요?"; "osm_account" = "OSM 계정"; @@ -609,6 +767,8 @@ "add_language" = "언어 추가"; +"street" = "거리"; + /* Editable House Number text field (in address block). */ "house_number" = "집 번호"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "거리 추가"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "언어 선택"; "choose_street" = "거리 선택"; @@ -632,12 +795,16 @@ "phone" = "전화"; +"editor_add_phone" = "Add Phone"; + "please_note" = "참고 사항"; "downloader_delete_map_dialog" = "모든 지도의 변경 사항은 지도와 함께 삭제됩니다."; "downloader_update_maps" = "지도 업데이트"; +"downloader_mwm_migration_dialog" = "경로를 만들려면, 모든 지도를 업데이트한 다음, 다시 경로를 계획해야 합니다."; + "downloader_search_field_hint" = "지도 찾기"; "migration_download_error_dialog" = "다운로드 오류"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "불필요한 데이터를 제거하십시오."; +"editor_login_error_dialog" = "로그인 오류."; + "editor_profile_changes" = "변경사항 승인"; "editor_focus_map_on_location" = "개체의 정확한 위치를 선택하려면 지도를 당깁니다."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "범주"; +"detailed_problem_description" = "문제에 대한 자세한 설명"; + +"editor_report_problem_other_title" = "다른 문제"; + +"placepage_add_business_button" = "조직 추가"; + "whatsnew_editor_message_1" = "지도에 새로운 장소를 추가하고 응용 프로그램에서 직접 기존 편집 할 수 있습니다."; "dialog_incorrect_feature_position" = "위치 변경"; @@ -710,6 +885,8 @@ "editor_operator" = "소유자"; +"downloader_my_maps_title" = "내 지도"; + "downloader_no_downloaded_maps_title" = "지도를 다운로드하지 않았습니다"; "downloader_no_downloaded_maps_message" = "오프라인으로 위치를 검색하려면 지도를 다운로드하세요."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "t"; + +"minute" = "min"; + "placepage_place_description" = "설명"; "placepage_more_button" = "자세히"; +"placepage_more_reviews_button" = "더 많은 리뷰"; + "book_button" = "예약"; "placepage_call_button" = "전화"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "존재하지 않는 장소입니다."; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…기타"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "유효한 이메일 주소 입력"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "최신 정보"; "placepage_add_place_button" = "지도에 장소 추가"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "거부"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "목록"; "mobile_data_dialog" = "모바일 인터넷을 사용하여 자세한 정보를 표시하시겠습니까?"; @@ -848,12 +1044,16 @@ "big_font" = "지도에서 글꼴 크기 늘리기"; +"traffic_update_app" = "Organic Maps를 업데이트하세요."; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "교통 데이터를 표시하려면 응용 프로그램을 업데이트해야 합니다."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "교통 데이터를 사용할 수 없습니다"; +"enable_logging" = "로깅 사용"; + /* Settings: "Send general feedback" button */ "feedback_general" = "일반 피드백"; @@ -861,14 +1061,24 @@ "off" = "끄기"; +"prefs_languages_information" = "당사는 음성 지침을 위해 시스템 TTS를 사용합니다. 많은 Android 장치에서 Google TTS를 사용합니다. Google Play(https://play.google.com/store/apps/details?id=com.google.android.tts)에서 Google TTS를 다운로드하거나 업데이트할 수 있습니다."; + +"prefs_languages_information_off" = "일부 언어의 경우 앱 스토어(Google Play Market, Samsung Apps)에서 다른 음성 합성기 또는 추가 언어 팩을 설치해야 합니다.\n장치의 설정 → 언어 및 입력 → 음성 → 텍스트-음성 변환 출력을 엽니다.\n여기서 음성 합성에 대한 설정을 관리하고(예: 오프라인 사용을 위한 언어 팩 다운로드) 다른 텍스트-음성 변환 엔진을 선택할 수 있습니다."; + +"prefs_languages_information_off_link" = "자세한 내용을 보려면 이 가이드를 확인하세요."; + "transliteration_title" = "라틴어로 음역"; +"learn_more" = "자세히 알아보기"; + "core_exit" = "끝내기"; "routing_add_start_point" = "경로 계획을 세우기 위한 시작 지점을 추가하세요"; "routing_add_finish_point" = "경로 계획을 세우기 위한 끝 지점을 추가하세요"; +"button_exit" = "끝내기"; + "planning_route_manage_route" = "경로 관리"; "button_plan" = "계획"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "죄송합니다. 오류가 발생했습니다. 다시 로그인해 보세요."; +"dialog_error_storage_title" = "저장소 액세스 문제"; + +"dialog_error_storage_message" = "외부 저장소를 사용할 수 없습니다. SD 카드가 제거되었거나 손상되었거나 파일 시스템이 읽기 전용일 수 있습니다. 확인 후 support@organicmaps.app로 문의하세요."; + +"setting_emulate_bad_storage" = "불량 저장소 에뮬레이션"; + "core_entrance" = "입구"; "error_enter_correct_name" = "올바른 이름을 입력하세요."; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "새 목록 만들기"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "화면 숨기기"; "downloader_percent" = "%s(%s / %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "빈 목록을 공유 할 수 없습니다"; +"bookmarks_error_title_empty_list_name" = "이름을 비워 둘 수는 없습니다."; + "bookmarks_error_message_empty_list_name" = "목록 이름을 입력하십시오."; +"bookmarks_new_list_hint" = "새 목록"; + "bookmarks_error_title_list_name_already_taken" = "이 이름은 이미 사용 중입니다."; +"bookmarks_error_message_list_name_already_taken" = "다른 이름을 선택하십시오."; + "bookmarks_error_title_list_name_too_long" = "이 이름이 너무 깁니다."; +"please_wait" = "잠시만 기다려주십시오…"; + +"phone_number" = "전화 번호"; + "profile" = "OpenStreetMap 프로필"; "bookmarks_detect_title" = "새 파일이 감지되었습니다."; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "이 버전을 복원 하시겠습니까?"; +"common_check_internet_connection_dialog_title" = "인터넷에 연결되지 않음"; + "error_system_message" = "알 수없는 오류가 발생했습니다"; "restore" = "복원"; +"subtittle_opt_out" = "추적 설정"; + +"crash_reports" = "오류 보고서"; + +"crash_reports_description" = "당사는 Organic Maps 경험을 개선하기 위해 귀하의 데이터를 활용할 수 있습니다. 앱을 다시 시작한 후 변경사항이 적용됩니다."; + "privacy_policy" = "개인정보 보호 방침"; "terms_of_use" = "사용 약관"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "지하철 지도가 가용하지 않습니다."; +"bookmarks_empty_list_title" = "이 목록은 비어있습니다."; + +"bookmarks_empty_list_message" = "북마크를 추가하려면 맵에서 장소를 탭하고 별 모양 아이콘을 탭하세요."; + +"category_desc_more" = "…기타 정보"; + "title_error_downloading_bookmarks" = "오류가 발생했습니다."; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "지도에서 숨기기"; +"public_access" = "일반 접근"; + +"limited_access" = "제한 접근"; + "bookmark_list_description_hint" = "묘사를 적으세요 (글자 혹은 html)"; +"not_shared" = "개인"; + "tags_loading_error_subtitle" = "태그를 불러오는 중 에러가 발생했습니다. 다시 시도해보세요"; "download_button" = "다운로드"; @@ -972,6 +1221,9 @@ "place_description_title" = "장소 묘사"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "맵 다운로더"; + "speedcams_notice_message" = "자동 - 속도 제한 초과 위험이 있을때 스피드캠에 대해 경고하기\n항상 - 스피드캠에 대해 항상 경고하기\n절대 아님 - 스피드캠에 대해 경고하지 않기"; "power_managment_title" = "전력 절약 모드"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "최대 전력 절약"; +"enable_logging_warning_message" = "이 옵션은 진단을 목적으로 로그를 엽니다 이를 통해 앱에 대한 문제를 분석하는 우리의 스탭을 도울 수 있습니다 이 옵션은 오직 Organic Maps 지원 요청에서만 가능합니다."; + +"access_rules_author_only" = "온라인 수정"; + "driving_options_title" = "운전 옵션"; "driving_options_subheader" = "모든 길에서 피하기"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "분류…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "북마크 분류하기"; + /* iOS */ "sort_default" = "기본 값으로 분류"; @@ -1086,6 +1345,18 @@ "sort_date" = "날짜로 분류"; +/* Android */ +"by_default" = "기본 값"; + +/* Android */ +"by_type" = "유형 별"; + +/* Android */ +"by_distance" = "거리 별"; + +/* Android */ +"by_date" = "날짜 별"; + "week_ago_sorttype" = "일주일 전"; "month_ago_sorttype" = "한달 전"; @@ -1132,6 +1403,8 @@ "religious_places" = "종교적 장소"; +"select_list" = "목록 선택"; + "transit_not_found" = "이 지역의 지하철 노선 기능이 아직 없습니다"; "dialog_pedestrian_route_is_long_header" = "지하철 루트가 발견되지 않았습니다"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "난이도"; +"elevation_profile_distance" = "거리:"; + "elevation_profile_time" = "소비 시간:"; "isolines_toast_zooms_1_10" = "등치선 탐색을 위한 확대"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "다운로드 중"; +"key_information_title" = "핵심 정보"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "화면 절전 모드 허용"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "활성화되면 일정 시간 동안 활동이 없으면 화면이 절전 모드로 전환됩니다."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "다운로드한 지도를 업데이트해야 합니다"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "의료 연구실"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "버스 정류장"; "type.highway.construction" = "공사 중 도로"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1798,7 +2083,7 @@ "type.highway.motorway.tunnel" = "거리"; -"type.highway.motorway_junction" = "Road Exit"; +"type.highway.motorway_junction" = "Exit"; "type.highway.motorway_link" = "거리"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "거리"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "스피드 카메라"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "거리"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "길"; - -"type.area_highway.living_street" = "거리"; - -"type.area_highway.motorway" = "거리"; - -"type.area_highway.path" = "길"; - -"type.area_highway.pedestrian" = "거리"; - -"type.area_highway.primary" = "거리"; - -"type.area_highway.residential" = "거리"; - -"type.area_highway.secondary" = "거리"; - -"type.area_highway.service" = "거리"; - -"type.area_highway.tertiary" = "거리"; - -"type.area_highway.steps" = "길"; - -"type.area_highway.track" = "거리"; - -"type.area_highway.trunk" = "거리"; - -"type.area_highway.unclassified" = "거리"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "발굴"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "워터파크"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "수도"; -"type.place.city.capital.10" = "도시"; +"type.place.city.capital.10" = "수도"; -"type.place.city.capital.11" = "도시"; +"type.place.city.capital.11" = "수도"; "type.place.city.capital.2" = "수도"; -"type.place.city.capital.3" = "도시"; +"type.place.city.capital.3" = "수도"; -"type.place.city.capital.4" = "도시"; +"type.place.city.capital.4" = "수도"; -"type.place.city.capital.5" = "도시"; +"type.place.city.capital.5" = "수도"; -"type.place.city.capital.6" = "도시"; +"type.place.city.capital.6" = "수도"; -"type.place.city.capital.7" = "도시"; +"type.place.city.capital.7" = "수도"; -"type.place.city.capital.8" = "도시"; +"type.place.city.capital.8" = "수도"; -"type.place.city.capital.9" = "도시"; +"type.place.city.capital.9" = "수도"; "type.place.continent" = "대륙"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "건물"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.stringsdict index 1d6c00e805..d01e976716 100644 --- a/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/ko.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -54,6 +54,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d 장소들 + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.strings index fbc95b2eb7..d21e51b67e 100644 --- a/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Tilbake"; + /* Button text (should be short) */ "cancel" = "Avbryt"; @@ -17,6 +20,9 @@ "download_maps" = "Last ned kart"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Nedlastingen mislyktes – trykk på nytt for å prøve en gang til"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Laster ned …"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Kart"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Miles"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Søk"; +/* Search box placeholder text */ +"search_map" = "Søk kart"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Ja"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Du har for øyeblikket deaktivert alle posisjonstjenester for denne enheten eller applikasjonen. Slå dem på i «Innstillinger»."; + /* View and button titles for accessibility */ "zoom_to_country" = "Vis på kartet"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Laster ned mislyktes"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Prøv på nytt"; + "about_menu_title" = "Om Organic Maps"; +"connection_settings" = "Tilkoblingsinnstillinger"; + "close" = "Lukk"; +"unsupported_phone" = "En maskinvareakselerert OpenGL kreves. Dessverre støttes ikke enheten din."; + "download" = "Last ned"; +"disconnect_usb_cable" = "Koble fra USB-kabelen eller sett inn minnekortet for å bruke Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Frigjør plass på SD-kortet/USB-enheten først for å bruke appen"; + +"not_enough_memory" = "Ikke nok minne til å starte appen"; + +"download_resources" = "Før du begynner, la oss laste ned det generelle verdenskartet til enheten. Det trengs %@ med data."; + +"download_resources_continue" = "Gå til kart"; + +"downloading_country_can_proceed" = "Laster ned %@. Du kan nå\nfortsette til kartet."; + +"download_country_ask" = "Vil du laste ned %@?"; + +"update_country_ask" = "Vil du oppdatere %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pause"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Fortsett"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "Nedlasting av %@ mislyktes"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Legg til nytt sett"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Mine steder"; +/* Add bookmark dialog - bookmark name */ +"name" = "Navn"; + /* Editor title above street and house number */ "address" = "Adresse"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Sett"; + /* Settings button in system menu */ "settings" = "Innstillinger"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Lagre kart på"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Velg hvor du vil at kartene skal lastes ned til"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Flytt kart?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Dette kan ta flere minutter. Vent et øyeblikk …"; + /* Measurement units title in settings activity */ "measurement_units" = "Måleenheter"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Velg mellom miles og kilometer"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Spisesteder"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Dagligvarer"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transport"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Drivstoff"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parkering"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Shopping"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotell"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Severdigheter"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Underholdning"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Minibank"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Nattliv"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Familieferie"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Apotek"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Sykehus"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toalett"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Post"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Politi"; +/* Notes field in Bookmarks view */ +"description" = "Merknader"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Delte Organic Maps-bokmerker"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Posisjonen din har ikke blitt fastslått enda"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Beklager, innstillingene for kartlagring er for øyeblikket deaktivert."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Nedlasting av land pågår nå."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hei, se posisjonen min på Organic Maps! %1$@ eller %2$@ Har du ikke offline-kart? Last dem ned her: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hei, se merket mitt på Organic Maps-kartet"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hei, se posisjonen min på Organic Maps-kartet!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hei,Jeg er her nå: %1$@. Klikk på denne koblingen %2$@ eller denne %3$@ for å se stedet på kartet.\n\nTakk."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Del"; /* Share by email button text, also used in editor. */ "email" = "E-post"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Kopiert til utklippstavlen: %1$@"; + /* place preview title */ "info" = "Informasjon"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Er du sikker på at du ønsker å fortsette?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Ruter"; @@ -195,10 +283,18 @@ "share_my_location" = "Del posisjonen min"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigasjon"; "pref_zoom_title" = "Zoom-knapper"; +"pref_zoom_summary" = "Vis på skjermen"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Nattmodus"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Talespråk"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Ikke tilgjengelig"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Andre"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Hjelp"; +/* Button in the main Help dialog */ +"faq" = "Spørsmål og svar"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Hvordan støtte oss?"; + /* Button in the main Help dialog */ "copyright" = "Opphavsrett"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Oppdater alle"; +/* Cancel all button text */ +"downloader_cancel_all" = "Avbryt alle"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Lastet ned"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Slett kart"; +/* Item in context menu. */ +"downloader_update_map" = "Oppdater kart"; + +/* Preference text */ +"pref_use_google_play" = "Bruk Google Play Services for å hente din nåværende posisjon"; + /* Text for rating dialog */ "rating_just_rated" = "Jeg har nettopp vurdert appen"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Når du skal opprette en rute må du ha oppdatert alle kartene fra ditt ståsted til din destinasjon."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Ikke nok ledig minne"; + /* bookmark button text */ "bookmark" = "bokmerk"; +/* location service disabled */ +"enable_location_services" = "Aktiver posisjonstjenester"; + "save" = "Lagre"; +"edit_description_hint" = "Dine beskrivelser (tekst eller html)"; + "create" = "opprett"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Kunne ikke finne rute"; +"dialog_routing_cant_build_route" = "Kunne ikke finne rute."; + "dialog_routing_change_start_or_end" = "Endre startpunkt eller bestemmelsessted."; "dialog_routing_change_start" = "Endre startpunkt"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Last vennligst ned kartet for å begynne å søke og opprette ruter - så slipper du i fremtiden å være avhengig av å ha internettforbindelse."; + +"search_select_map" = "Velg kartet"; + /* «Show» context menu */ "show" = "Vis"; @@ -521,6 +655,9 @@ "clear_search" = "Tøm søkehistorikk"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Din beliggenhet"; "p2p_start" = "Start"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Vil du vi skal planlegge en rute fra din nåværende posisjon?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Neste"; + "editor_time_add" = "Legg til tidsrom"; "editor_time_delete" = "Slett tidsrom"; @@ -556,14 +696,28 @@ "editor_example_values" = "Eksempelverdier"; +"editor_correct_mistake" = "Rett feil"; + "editor_add_select_location" = "Plassering"; "editor_done_dialog_1" = "Du har endret verdenskartet. Ikke skjul denne! Fortell vennene dine, og rediger det sammen."; "share_with_friends" = "Del med venner"; +"editor_report_problem_desription_1" = "Beskriv problemet detaljert slik at OpenStreetMap-samfunnet kan fikse feilen."; + +"editor_report_problem_desription_2" = "Eller gjør det selv på https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Send"; +"editor_report_problem_title" = "Problem"; + +"editor_report_problem_no_place_title" = "Stedet finnes ikke"; + +"editor_report_problem_under_construction_title" = "Stengt pga. vedlikehold"; + +"editor_report_problem_duplicate_place_title" = "Duplisert sted"; + "autodownload" = "Automatisk nedlasting"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Legg til åpningstider"; +"edit_opening_hours" = "Rediger åpningstider"; + "no_osm_account" = "Har du ingen konto hos OpenStreetMap?"; "register_at_openstreetmap" = "Registrer deg"; @@ -592,6 +748,8 @@ "login" = "Logg inn"; +"password" = "Passord"; + "forgot_password" = "Glemt passordet?"; "osm_account" = "OSM-konto"; @@ -609,6 +767,8 @@ "add_language" = "Legg til et språk"; +"street" = "Gate"; + /* Editable House Number text field (in address block). */ "house_number" = "Et husnummer"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Legg til en gate"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Velg et språk"; "choose_street" = "Velg en gate"; @@ -632,12 +795,16 @@ "phone" = "Telefon"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Vær oppmerksom på at"; "downloader_delete_map_dialog" = "Alle endringer i kartet vil slettes sammen med kartet."; "downloader_update_maps" = "Oppdater kart"; +"downloader_mwm_migration_dialog" = "For å opprette en reiserute må du oppdatere alle kartene og deretter planlegge reiseruten på nytt."; + "downloader_search_field_hint" = "Finn kartet"; "migration_download_error_dialog" = "Nedlastningsfeil"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Fjern unødvendig data"; +"editor_login_error_dialog" = "Innloggingsfeil."; + "editor_profile_changes" = "Bekreftede endringer"; "editor_focus_map_on_location" = "Dra kartet for å velge riktig beliggenhet for objektet."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategori"; +"detailed_problem_description" = "Detaljert beskrivelse av problemet"; + +"editor_report_problem_other_title" = "Et annet problem"; + +"placepage_add_business_button" = "Legg til organisasjon"; + "whatsnew_editor_message_1" = "Legg til nye steder i kartet og rediger eksisterende steder direkte fra appen."; "dialog_incorrect_feature_position" = "Endre plassering"; @@ -710,6 +885,8 @@ "editor_operator" = "Eier"; +"downloader_my_maps_title" = "Mine kart"; + "downloader_no_downloaded_maps_title" = "Du har ikke lastet ned noen kart"; "downloader_no_downloaded_maps_message" = "Last ned kart for å finne plasseringen og navigere frakoblet."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "t"; + +"minute" = "min"; + "placepage_place_description" = "Beskrivelse"; "placepage_more_button" = "Mer"; +"placepage_more_reviews_button" = "Flere anmeldelser"; + "book_button" = "Bestill"; "placepage_call_button" = "Ring"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Sted finnes ikke"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…mer"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Oppgi en gyldig epostadresse"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Oppdatere"; "placepage_add_place_button" = "Legg til en plass på kartet"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Avvis"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Liste"; "mobile_data_dialog" = "Bruke mobilt Internett til å vise detaljert informasjon?"; @@ -848,12 +1044,16 @@ "big_font" = "Forstørr skriften på kartet"; +"traffic_update_app" = "Vennligst oppdater Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Du må oppdatere applikasjonen for å kunne se trafikkdata."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Trafikkdata er ikke tilgjengelig"; +"enable_logging" = "Aktiver loggføring"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Generell tilbakemelding"; @@ -861,14 +1061,24 @@ "off" = "Av"; +"prefs_languages_information" = "Vi bruker system TTS for stemmeveiledning. Mange Android-enheter bruker Google TTS, Du kan laste ned eller oppdatere via Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "For enkelte språk er det nødvendig å installere en annen talesyntese eller en ekstra språkpakke fra appbutikken (Google Play Market, Samsung Apps).\nGå til enhetens innstillinger → Språk og input → Tale → Tekst til tale output.\nHer kan du administrere innstillingene for talesyntese (for eksempel laste ned språkpakke for offline bruk) og velge en annen tekst-til-tale-motor."; + +"prefs_languages_information_off_link" = "Les denne veiledningen for mer informasjon."; + "transliteration_title" = "Omskrivning til latin"; +"learn_more" = "Finn ut mer"; + "core_exit" = "Avslutt"; "routing_add_start_point" = "Angi startpunkt for å planlegge rute"; "routing_add_finish_point" = "Angi sluttpunkt for å planlegge rute"; +"button_exit" = "Avslutt"; + "planning_route_manage_route" = "Administrere rute"; "button_plan" = "Planlegge"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Oops, en feil oppstod. Prøv å logge inn på nytt."; +"dialog_error_storage_title" = "Problemer med tilgang til lagring"; + +"dialog_error_storage_message" = "Ekstern lagring er ikke tilgjengelig. Sannsynligvis er SD-kortet fjernet eller skadet eller så er filsystemet skrivebeskyttet. Undersøk og kontakt oss på support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emulere skadet lagring"; + "core_entrance" = "Inngang"; "error_enter_correct_name" = "Skriv inn korrekt navn"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Opprett ny liste"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Skjul skjerm"; "downloader_percent" = "%s (%s av %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Kan ikke dele en tom liste"; +"bookmarks_error_title_empty_list_name" = "Navnet kan ikke være tomt"; + "bookmarks_error_message_empty_list_name" = "Vennligst skriv inn listenavnet"; +"bookmarks_new_list_hint" = "Ny liste"; + "bookmarks_error_title_list_name_already_taken" = "Dette navnet er allerede tatt"; +"bookmarks_error_message_list_name_already_taken" = "Vennligst velg et annet navn"; + "bookmarks_error_title_list_name_too_long" = "Dette navnet er for langt"; +"please_wait" = "Vennligst vent…"; + +"phone_number" = "Telefonnummer"; + "profile" = "OpenStreetMap profil"; "bookmarks_detect_title" = "Nye filer oppdaget"; @@ -928,23 +1157,37 @@ "bookmarks_restore_title" = "Gjenopprett denne versjonen?"; +"common_check_internet_connection_dialog_title" = "Ingen internettforbindelse"; + "error_system_message" = "En ukjent feil oppstod"; "restore" = "Restaurere"; -"privacy_policy" = "Personvernpolitikk"; +"subtittle_opt_out" = "Tracking settings"; -"terms_of_use" = "Bruksbetingelser"; +"crash_reports" = "Crash report"; -"button_layer_traffic" = "Trafikk"; +"crash_reports_description" = "We may use your data to improve Organic Maps experience. Changes will take effect after you restart the app."; -"button_layer_subway" = "T-bane"; +"privacy_policy" = "Privacy policy"; -"layers_title" = "Kartlag"; +"terms_of_use" = "Terms of use"; -"subway_data_unavailable" = "T-banekart er utilgjengelig"; +"button_layer_traffic" = "Traffic"; -"title_error_downloading_bookmarks" = "Det oppsto en feil"; +"button_layer_subway" = "Subway"; + +"layers_title" = "Map layers"; + +"subway_data_unavailable" = "Subway map is unavailable"; + +"bookmarks_empty_list_title" = "This list is empty"; + +"bookmarks_empty_list_message" = "To add a bookmark, tap a place on the map and then tap the star icon"; + +"category_desc_more" = "…more"; + +"title_error_downloading_bookmarks" = "An error occurred"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Skjul fra kart"; +"public_access" = "Offentlig tilgang"; + +"limited_access" = "Begrenset adgang"; + "bookmark_list_description_hint" = "Lag en beskrivelse (text or html)"; +"not_shared" = "Privat"; + "tags_loading_error_subtitle" = "Det oppsto en feil under lasting av emneknagger, prøv igjen"; "download_button" = "Last ned"; @@ -972,6 +1221,9 @@ "place_description_title" = "Plasser beskrivelse"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Nedlast kart"; + "speedcams_notice_message" = "Auto - Advarsel om fartskamera hvis det er fare for å overskride fartsgrensen\nAlltid - Advar alltid om farskameraer\nAldri - Advar aldri om fartskameraer"; "power_managment_title" = "Strømsparemodus"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maksimum strømsparing"; +"enable_logging_warning_message" = "Alternativet slår på logging for diagnostiske formål. Det kan være nyttig for våre supportpersonale som feilsøker problemer med appen. Aktiver dette alternativet bare på forespørsel fra Organic Maps-brukerstøtte."; + +"access_rules_author_only" = "Redigering på nett"; + "driving_options_title" = "Kjørealternativer"; "driving_options_subheader" = "Unngå ved hver rute"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Sortere…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Sortere merker"; + /* iOS */ "sort_default" = "Sortere som standard"; @@ -1086,6 +1345,18 @@ "sort_date" = "Sortere etter dato"; +/* Android */ +"by_default" = "Som standard"; + +/* Android */ +"by_type" = "Etter type"; + +/* Android */ +"by_distance" = "Etter avstand"; + +/* Android */ +"by_date" = "Etter dato"; + "week_ago_sorttype" = "For en uke siden"; "month_ago_sorttype" = "For en måned siden"; @@ -1132,6 +1403,8 @@ "religious_places" = "Hellige steder"; +"select_list" = "Velge liste"; + "transit_not_found" = "T-bane navigasjon er ikke tilgjengelig i denne regionen ennå"; "dialog_pedestrian_route_is_long_header" = "T-bane rute ikke funnet"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Vanskelighet"; +"elevation_profile_distance" = "Avstand:"; + "elevation_profile_time" = "I rute"; "isolines_toast_zooms_1_10" = "Forstørr kartet for å se høydekurver"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Nedlasting"; +"key_information_title" = "Nøkkelinformasjon"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "La skjermen sove"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Når den er aktivert, får skjermen lov til å sove etter en periode med inaktivitet."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Oppdater dine nedlastede kart"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Medisinsk laboratorium"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Busstopp"; "type.highway.construction" = "Veikonstruksjon"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Gate"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Fotoboks"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Gate"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Sti"; - -"type.area_highway.living_street" = "Gate"; - -"type.area_highway.motorway" = "Gate"; - -"type.area_highway.path" = "Sti"; - -"type.area_highway.pedestrian" = "Gate"; - -"type.area_highway.primary" = "Gate"; - -"type.area_highway.residential" = "Gate"; - -"type.area_highway.secondary" = "Gate"; - -"type.area_highway.service" = "Gate"; - -"type.area_highway.tertiary" = "Gate"; - -"type.area_highway.steps" = "Sti"; - -"type.area_highway.track" = "Gate"; - -"type.area_highway.trunk" = "Gate"; - -"type.area_highway.unclassified" = "Gate"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Arkeologisk område"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Vannpark"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Hovedstad"; -"type.place.city.capital.10" = "By"; +"type.place.city.capital.10" = "Hovedstad"; -"type.place.city.capital.11" = "By"; +"type.place.city.capital.11" = "Hovedstad"; "type.place.city.capital.2" = "Hovedstad"; -"type.place.city.capital.3" = "By"; +"type.place.city.capital.3" = "Hovedstad"; -"type.place.city.capital.4" = "By"; +"type.place.city.capital.4" = "Hovedstad"; -"type.place.city.capital.5" = "By"; +"type.place.city.capital.5" = "Hovedstad"; -"type.place.city.capital.6" = "By"; +"type.place.city.capital.6" = "Hovedstad"; -"type.place.city.capital.7" = "By"; +"type.place.city.capital.7" = "Hovedstad"; -"type.place.city.capital.8" = "By"; +"type.place.city.capital.8" = "Hovedstad"; -"type.place.city.capital.9" = "By"; +"type.place.city.capital.9" = "Hovedstad"; "type.place.continent" = "Kontinent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Bygning"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.stringsdict index 3dde3e68f7..a777be4385 100644 --- a/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/nb.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -52,7 +52,22 @@ NSStringFormatValueTypeKey d other - %d sted + %d objects + + + + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d places @@ -67,7 +82,7 @@ NSStringFormatValueTypeKey d other - %d stier + %d tracks diff --git a/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.strings index a2d422ddd3..f80032160e 100644 --- a/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Terug"; + /* Button text (should be short) */ "cancel" = "Annuleren"; @@ -17,6 +20,9 @@ "download_maps" = "Download kaarten"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Downloaden is mislukt. Tik om het opnieuw te proberen."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Downloaden…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Kaarten"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Mijlen"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Zoeken"; +/* Search box placeholder text */ +"search_map" = "Op de kaart zoeken"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Ja"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "U heeft momenteel alle locatieservices voor dit apparaat of deze app uitgeschakeld. Schakel ze in bij Instellingen"; + /* View and button titles for accessibility */ "zoom_to_country" = "Op de kaart tonen"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Downloaden is mislukt"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Opnieuw proberen"; + "about_menu_title" = "Over Organic Maps"; +"connection_settings" = "Verbindingsinstellingen"; + "close" = "Sluiten"; +"unsupported_phone" = "Een hardware geaccellereerde OpenGL is nodig. Jammer genoeg wordt uw apparaat niet ondersteund."; + "download" = "Download"; +"disconnect_usb_cable" = "Verwijder de USB kabel of plaats een geheugenkaart om Organic Maps te gebruiken"; + +"not_enough_free_space_on_sdcard" = "Maak eerst ruimte vrij op de SD-kaart/USB-opslag om de app te gebruiken"; + +"not_enough_memory" = "Niet genoeg geheugen om de app te starten"; + +"download_resources" = "Voordat u start, laten we de algemene wereldkaart naar uw apparaat downloaden.\nDeze neemt %@ in beslag."; + +"download_resources_continue" = "Ga naar de kaart"; + +"downloading_country_can_proceed" = "%@ aan het downloaden. U kunt nu\ndoorgaan naar de kaart."; + +"download_country_ask" = "%@ downloaden?"; + +"update_country_ask" = "%@ updaten?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pauzeren"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Doorgaan"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ download is mislukt"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Voeg nieuwe groep toe"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Mijn plaatsen"; +/* Add bookmark dialog - bookmark name */ +"name" = "Naam"; + /* Editor title above street and house number */ "address" = "Adres"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Groep"; + /* Settings button in system menu */ "settings" = "Instellingen"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Kaarten opslaan in"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Selecteer de plaats waar kaarten naar gedownload zouden moeten worden"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Kaarten verplaatsen?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Dit kan enkele minuten duren.\nEven geduld…"; + /* Measurement units title in settings activity */ "measurement_units" = "Afstandseenheid"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Kies tussen mijlen en kilometers"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Waar iets gaan eten"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Kruidenierswinkels"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transport"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Benzine"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parkeerplaats"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Winkelen"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Bezienswaardigheden"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Amusement"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Geldautomaat"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Nachtleven"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Gezinsvakantie"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Apotheek"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Ziekenhuis"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toilet"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Post"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Politie"; +/* Notes field in Bookmarks view */ +"description" = "Notities"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Bladwijzers van Organic Maps met u gedeeld"; + "share_bookmarks_email_body" = "Hallo!\n\nBijgesloten zijn mijn bladwijzers uit de Organic Maps app. Open ze als je Organic Maps geïnstalleerd hebt. Of, als je dat niet hebt, download de app voor je iOS- of Android-apparaat door deze link te volgen: https://omaps.app/get?kmz\n\nGeniet van het reizen met Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Je locatie is nog niet vastgesteld"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Sorry, instellingen voor kaartopslag zijn momenteel uitgeschakeld."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Het downloaden van het land is nu aan de gang."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hey, kijk naar mijn huidige locatie op Organic Maps! %1$@ of %2$@ Heeft u geen offline-kaarten? Download ze hier: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hey, kijk naar mijn pin op Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hey, kijk naar mijn huidige locatie op Organic Maps!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hoi,\n\nMomenteel ben ik hier: %1$@. Klik op deze %2$@ link of deze %3$@ link om de plaats op de kaart te zien.\n\nBedankt."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Delen"; /* Share by email button text, also used in editor. */ "email" = "E-mail"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Naar het klembord gekopieerd: %1$@"; + /* place preview title */ "info" = "Info"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Gegevensversie: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Weet u zeker dat u wilt doorgaan?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Tracks"; @@ -195,10 +283,18 @@ "share_my_location" = "Deel mijn locatie"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Algemene instellingen"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Informatie"; + "prefs_group_route" = "Navigatie"; "pref_zoom_title" = "Zoomknoppen"; +"pref_zoom_summary" = "Weergave op het scherm"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Nachtmodus"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Gesproken taal"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Niet beschikbaar"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Andere"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Hulp"; +/* Button in the main Help dialog */ +"faq" = "Vragen en antwoorden"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Hoe ons te steunen?"; + /* Button in the main Help dialog */ "copyright" = "Auteursrechten"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Update alles"; +/* Cancel all button text */ +"downloader_cancel_all" = "Alles annuleren"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Gedownload"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Kaart verwijderen"; +/* Item in context menu. */ +"downloader_update_map" = "Kaart bijwerken"; + +/* Preference text */ +"pref_use_google_play" = "Gebruik de diensten van Google Play om uw huidige locatie te bepalen"; + /* Text for rating dialog */ "rating_just_rated" = "Ik heb je app zojuist gewaardeerd"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Voor het creëren van een route is het nodig dat alle kaarten van uw locatie naar uw bestemming gedownload en bijgewerkt zijn."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Niet genoeg ruimte"; + /* bookmark button text */ "bookmark" = "markeren"; +/* location service disabled */ +"enable_location_services" = "Schakel Locatie Services in"; + "save" = "Opslaan"; +"edit_description_hint" = "Uw omschrijvingen (tekst of html)"; + "create" = "aanmaken"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Route vinden mislukt"; +"dialog_routing_cant_build_route" = "Route samenstellen mislukt."; + "dialog_routing_change_start_or_end" = "Kies een ander startpunt of andere bestemming."; "dialog_routing_change_start" = "Ander startpunt kiezen"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Om te beginnen met zoeken en om routebeschrijvingen te kunnen maken, moet u de kaart downloaden. U heeft vervolgens geen internetverbinding meer nodig."; + +"search_select_map" = "Selecteer de kaart"; + /* «Show» context menu */ "show" = "Tonen"; @@ -521,6 +655,9 @@ "clear_search" = "Zoekgeschiedenis wissen"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Uw locatie"; "p2p_start" = "Beginnen"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Wilt u dat wij een route plannen vanaf uw huidige locatie?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Volgende"; + "editor_time_add" = "Schema toevoegen"; "editor_time_delete" = "Schema verwijderen"; @@ -556,14 +696,28 @@ "editor_example_values" = "Voorbeeldwaarden"; +"editor_correct_mistake" = "Fout corrigeren"; + "editor_add_select_location" = "Locatie"; "editor_done_dialog_1" = "Je hebt de wereldkaart gewijzigd. Verberg dit niet! Vertel het je vrienden en bewerk het samen."; "share_with_friends" = "Deel met je vrienden"; +"editor_report_problem_desription_1" = "Beschrijf het probleem gedetailleerd, zodat de OpenStreetMap-community de fout kan oplossen."; + +"editor_report_problem_desription_2" = "Of doe het zelf op https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Verzenden"; +"editor_report_problem_title" = "Probleem"; + +"editor_report_problem_no_place_title" = "De plaats bestaat niet"; + +"editor_report_problem_under_construction_title" = "Gesloten voor onderhoud"; + +"editor_report_problem_duplicate_place_title" = "Dubbele plaats"; + "autodownload" = "Automatische download"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Openingsuren toevoegen"; +"edit_opening_hours" = "Openingsuren bewerken"; + "no_osm_account" = "Geen account bij OpenStreetMap?"; "register_at_openstreetmap" = "Registeren"; @@ -592,6 +748,8 @@ "login" = "Log in"; +"password" = "Wachtwoord"; + "forgot_password" = "Wachtwoord vergeten?"; "osm_account" = "OSM-account"; @@ -609,6 +767,8 @@ "add_language" = "Een taal toevoegen"; +"street" = "Straat"; + /* Editable House Number text field (in address block). */ "house_number" = "Huisnummer"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Een straat toevoegen"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Een taal kiezen"; "choose_street" = "Een straat kiezen"; @@ -632,12 +795,16 @@ "phone" = "Telefoonnummer"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Opgelet"; "downloader_delete_map_dialog" = "Alle wijzigingen aan de kaart zullen samen met de kaart worden verwijderd."; "downloader_update_maps" = "Kaarten updaten"; +"downloader_mwm_migration_dialog" = "Om een route te creëren, moet je alle kaarten updaten en dan de route opnieuw plannen."; + "downloader_search_field_hint" = "Vind de kaart"; "migration_download_error_dialog" = "Downloadfout"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Verwijder overbodige gegevens"; +"editor_login_error_dialog" = "Inlogfout."; + "editor_profile_changes" = "Gecontroleerde wijzigingen"; "editor_focus_map_on_location" = "Trek aan de kaart om de juiste locatie van het object te selecteren."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Categorie"; +"detailed_problem_description" = "Gedetailleerde probleemomschrijving"; + +"editor_report_problem_other_title" = "Een ander probleem"; + +"placepage_add_business_button" = "Een organisatie toevoegen"; + "whatsnew_editor_message_1" = "Voeg nieuwe plaatsen toe aan de kaart en bewerk de bestaande rechtstreeks vanuit de app."; "dialog_incorrect_feature_position" = "Locatie wijzigen"; @@ -710,6 +885,8 @@ "editor_operator" = "Uitvoerder"; +"downloader_my_maps_title" = "Mijn kaarten"; + "downloader_no_downloaded_maps_title" = "U hebt geen kaarten gedownload"; "downloader_no_downloaded_maps_message" = "Download kaarten om de locatie te zoeken en offline te navigeren."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "u"; + +"minute" = "min"; + "placepage_place_description" = "Beschrijving"; "placepage_more_button" = "Meer"; +"placepage_more_reviews_button" = "Meer reacties"; + "book_button" = "Boeken"; "placepage_call_button" = "Bellen"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Locatie bestaat niet"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…meer"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Voer een geldig emailadres in"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Updaten"; "placepage_add_place_button" = "Een plek toevoegen aan de kaart"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Weigeren"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Lijst"; "mobile_data_dialog" = "Mobiel internet gebruiken om gedetailleerde informatie weer te geven?"; @@ -848,12 +1044,16 @@ "big_font" = "Lettergrootte op de kaart vergroten"; +"traffic_update_app" = "Gelieve Organic Maps bij te werken"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Om de verkeersgegevens weer te geven, moet de applicatie bijgewerkt worden."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Verkeersgegevens zijn niet beschikbaar"; +"enable_logging" = "Logboekregistratie inschakelen"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Algemene Feedback"; @@ -861,14 +1061,24 @@ "off" = "Uit"; +"prefs_languages_information" = "We gebruiken het TTS-systeem voor gesproken instructies. Vele Android toestellen gebruiken Google TTS, u kunt het downloaden of bijwerken in Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Voor sommige talen dient u een andere spraaksynthese software of een aanvullende taalpakket te installeren van de app store (Google Play Market, Samsung Apps).\nOpen de instellingen van uw toestel → Taal en invoer → Spraak → Uitvoer voor tekst-naar-spraak.\nHier kunt u instellingen voor spraaksynthese beheren (bijvoorbeeld taalpakket downloaden voor offline gebruik) en een andere tekst-naar-spraak engine selecteren."; + +"prefs_languages_information_off_link" = "Gelieve deze handleiding te lezen voor meer informatie."; + "transliteration_title" = "Transliteratie in het Latijn"; +"learn_more" = "Meer informatie"; + "core_exit" = "Verlaten"; "routing_add_start_point" = "Voeg beginpunt toe om een route te plannen"; "routing_add_finish_point" = "Voeg eindpunt toe om een route te plannen"; +"button_exit" = "Verlaten"; + "planning_route_manage_route" = "Route beheren"; "button_plan" = "Plannen"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Oeps, er is een fout opgetreden. Probeer opnieuw aan te melden."; +"dialog_error_storage_title" = "Probleem met opslagtoegang"; + +"dialog_error_storage_message" = "Externe opslag is niet beschikbaar, wellicht is de SD-kaart verwijderd, beschadigd of is het bestandssysteem alleen-lezen. Gelieve het te controleren en ons te contacteren via support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Slechte opslag emuleren"; + "core_entrance" = "Ingang"; "error_enter_correct_name" = "Voer een juiste naam in"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Nieuwe lijst maken"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Scherm Verbergen"; "downloader_percent" = "%s (%s van %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Een lege lijst kan niet gedeeld worden"; +"bookmarks_error_title_empty_list_name" = "De naam kan niet leeg zijn"; + "bookmarks_error_message_empty_list_name" = "Voer de lijstnaam in"; +"bookmarks_new_list_hint" = "Nieuwe lijst"; + "bookmarks_error_title_list_name_already_taken" = "Deze naam is al in gebruik"; +"bookmarks_error_message_list_name_already_taken" = "Kies alstublieft een andere naam"; + "bookmarks_error_title_list_name_too_long" = "Deze naam is te lang"; +"please_wait" = "Even geduld aub…"; + +"phone_number" = "Telefoonnummer"; + "profile" = "OpenStreetMap-profiel"; "bookmarks_detect_title" = "Nieuwe bestanden gedetecteerd"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Deze versie herstellen?"; +"common_check_internet_connection_dialog_title" = "Geen internet verbinding"; + "error_system_message" = "Er is een onbekende fout opgetreden"; "restore" = "Herstellen"; +"subtittle_opt_out" = "Tracking-instellingen"; + +"crash_reports" = "Crash rapport"; + +"crash_reports_description" = "Wij kunnen uw gegevens gebruiken om Organic Maps te verbeteren. Wijzigingen treden in werking na het opnieuw opstarten van de app."; + "privacy_policy" = "Privacy beleid"; "terms_of_use" = "Gebruiksvoorwaarden"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Metrokaart is niet beschikbaar"; +"bookmarks_empty_list_title" = "Deze lijst is leeg"; + +"bookmarks_empty_list_message" = "Om een bladwijzer toe te voegen, tikt u op een plaats op de kaart en vervolgens op het sterpictogram"; + +"category_desc_more" = "…meer"; + "title_error_downloading_bookmarks" = "Er is een fout opgetreden"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Van de kaart verbergen"; +"public_access" = "Publiek toegang"; + +"limited_access" = "Beperkte toegang"; + "bookmark_list_description_hint" = "Maak een beschrijving aan (tekst of html)"; +"not_shared" = "Privé"; + "tags_loading_error_subtitle" = "Er is een fout opgetreden tijdens het laden van tags, probeer het opnieuw"; "download_button" = "Downloaden"; @@ -972,6 +1221,9 @@ "place_description_title" = "Plaats Beschrijving"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Kaart downloader"; + "speedcams_notice_message" = "Auto - Waarschuw voor speedcams als er een risico bestaat dat de snelheidslimiet wordt overschreden\nAltijd - Waarschuw altijd voor flitspalen\nNooit - Waarschuw nooit over flitspalen"; "power_managment_title" = "Energiebesparende modus"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maximale energiebesparing"; +"enable_logging_warning_message" = "Deze optie is ingeschakeld voor logboekregistraties voor diagnostische doeleinden. Het helpt bij het identificeren van problemen met de applicatie. Schakel de optie alleen in op verzoek van Organic Maps-ondersteuning."; + +"access_rules_author_only" = "Wordt online bewerkt"; + "driving_options_title" = "Omweginstellingen"; "driving_options_subheader" = "Vermijden op elke route"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Sorteer…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Bladwijzers sorteren"; + /* iOS */ "sort_default" = "Standaard sorteren"; @@ -1086,6 +1345,18 @@ "sort_date" = "Sorteer op datum"; +/* Android */ +"by_default" = "Standaard"; + +/* Android */ +"by_type" = "Op type"; + +/* Android */ +"by_distance" = "Op afstand"; + +/* Android */ +"by_date" = "Op datum"; + "week_ago_sorttype" = "Een week geleden"; "month_ago_sorttype" = "Een maand geleden"; @@ -1132,6 +1403,8 @@ "religious_places" = "Religieuze plaatsen"; +"select_list" = "Lijst kiezen"; + "transit_not_found" = "Metro-navigatie is nog niet beschikbaar in deze regio"; "dialog_pedestrian_route_is_long_header" = "Metroroute niet gevonden"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Moeilijkheid"; +"elevation_profile_distance" = "Afst.:"; + "elevation_profile_time" = "Op weg"; "isolines_toast_zooms_1_10" = "Zoom in om isolijnen te bekijken"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Downloaden"; +"key_information_title" = "Belangrijke informatie"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Laat het scherm slapen"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Indien ingeschakeld, mag het scherm slapen na een periode van inactiviteit."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Werk uw gedownloade kaarten bij"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Medisch laboratorium"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Bushalte"; "type.highway.construction" = "Baan in aanbouw"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1828,7 +2113,7 @@ "type.highway.path.permissive" = "Pad"; -"type.highway.path.tunnel" = "Pad"; +"type.highway.path.tunnel" = "Tunnel"; "type.highway.pedestrian" = "Straat"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Straat"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Flitspaal"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Straat"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Pad"; - -"type.area_highway.living_street" = "Straat"; - -"type.area_highway.motorway" = "Straat"; - -"type.area_highway.path" = "Pad"; - -"type.area_highway.pedestrian" = "Straat"; - -"type.area_highway.primary" = "Straat"; - -"type.area_highway.residential" = "Straat"; - -"type.area_highway.secondary" = "Straat"; - -"type.area_highway.service" = "Straat"; - -"type.area_highway.tertiary" = "Straat"; - -"type.area_highway.steps" = "Pad"; - -"type.area_highway.track" = "Straat"; - -"type.area_highway.trunk" = "Straat"; - -"type.area_highway.unclassified" = "Straat"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Archeologische site"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Waterpark"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Hoofdstad"; -"type.place.city.capital.10" = "Stad"; +"type.place.city.capital.10" = "Hoofdstad"; -"type.place.city.capital.11" = "Stad"; +"type.place.city.capital.11" = "Hoofdstad"; "type.place.city.capital.2" = "Hoofdstad"; -"type.place.city.capital.3" = "Stad"; +"type.place.city.capital.3" = "Hoofdstad"; -"type.place.city.capital.4" = "Stad"; +"type.place.city.capital.4" = "Hoofdstad"; -"type.place.city.capital.5" = "Stad"; +"type.place.city.capital.5" = "Hoofdstad"; -"type.place.city.capital.6" = "Stad"; +"type.place.city.capital.6" = "Hoofdstad"; -"type.place.city.capital.7" = "Stad"; +"type.place.city.capital.7" = "Hoofdstad"; -"type.place.city.capital.8" = "Stad"; +"type.place.city.capital.8" = "Hoofdstad"; -"type.place.city.capital.9" = "Stad"; +"type.place.city.capital.9" = "Hoofdstad"; "type.place.continent" = "Continent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Gebouw"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.stringsdict index 52a643e06b..b047d583d4 100644 --- a/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/nl.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -56,6 +56,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d plaatsen + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.strings index 08ecea6576..5730abbf9a 100644 --- a/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Wróć"; + /* Button text (should be short) */ "cancel" = "Anuluj"; @@ -17,6 +20,9 @@ "download_maps" = "Pobierz mapy"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Nie udało się pobrać. Proszę nacisnąć, aby spróbować ponownie."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Pobieranie…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Mapy"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Mile"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Wyszukaj"; +/* Search box placeholder text */ +"search_map" = "Wyszukaj mapy"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Tak"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Usługi lokalizacji są aktualnie wyłączone dla tego urządzenia lub aplikacji. Proszę włączyć je w ustawieniach."; + /* View and button titles for accessibility */ "zoom_to_country" = "Wyświetl na mapie"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Nie udało się pobrać"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Spróbuj ponownie"; + "about_menu_title" = "O aplikacji Organic Maps"; +"connection_settings" = "Ustawienia połączenia"; + "close" = "Zamknij"; +"unsupported_phone" = "Wymagana jest sprzętowa akceleracja OpenGL. Aktualne urządzenie nie jest obsługiwane."; + "download" = "Pobierz"; +"disconnect_usb_cable" = "Proszę odłączyć kabel USB albo włożyć kartę pamięci, aby korzystać z Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Proszę zwolnić trochę pamięci na karcie SD/pamięci USB, aby korzystać z aplikacji"; + +"not_enough_memory" = "Za mało pamięci, aby uruchomić aplikację"; + +"download_resources" = "Przed rozpoczęciem prosimy o pobranie ogólnej mapy świata na urządzenie.\nWymaga to %@ danych."; + +"download_resources_continue" = "Przejdź do mapy"; + +"downloading_country_can_proceed" = "Pobieranie %@. Można teraz\nprzejść do mapy."; + +"download_country_ask" = "Pobrać %@?"; + +"update_country_ask" = "Uaktualnić %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Wstrzymaj"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Kontynuuj"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "Nie udało się pobrać %@"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Dodaj nowy zestaw"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Moje miejsca"; +/* Add bookmark dialog - bookmark name */ +"name" = "Nazwa"; + /* Editor title above street and house number */ "address" = "Adres"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Zestaw"; + /* Settings button in system menu */ "settings" = "Ustawienia"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Zapisz mapy do"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Określa położenie przechowywania pobranych map"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Przenieść mapy?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "To może zająć kilka minut.\nProszę czekać…"; + /* Measurement units title in settings activity */ "measurement_units" = "Jednostki miary"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Wybiera pomiędzy milami, a kilometrami"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Gdzie zjeść"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Produkty"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transport"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Stacja benzynowa"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parking"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Shopping"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Atrakcje turystyczne"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Rozrywka"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Bankomat"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Życie nocne"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Wypoczynek z dziećmi"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Apteka"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Szpital"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toaleta"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Poczta"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Policja"; +/* Notes field in Bookmarks view */ +"description" = "Notatki"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Udostępnione zakładki z Organic Maps"; + "share_bookmarks_email_body" = "Cześć!\n\nZałączam moje zakładki z aplikacji Organic Maps. Proszę otwórz je jeżeli masz zaintalowane Organic Maps. Lub, jeżeli nie masz, pobierz aplikację na swoje urządzenie iOS/Android za pomocą tego linka: https://omaps.app/get?kmz\n\nMiłego podróżowania z Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Nie określono jeszcze aktualnego położenia"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Przepraszamy, ustawienia pamięci mapy są aktualnie wyłączone."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Trwa pobieranie mapy kraju."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Zobacz gdzie jestem. Link %1$@ lub %2$@"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Obejrzyj mój znacznik na mapie w Organic Maps"; /* Subject for emailed position */ "my_position_share_email_subject" = "Zobacz moją aktualną lokalizację na mapie przy użyciu Organic Maps"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Cześć,\n\nJestem teraz tutaj: %1$@. Naciśnij na ten link %2$@ lub ten %3$@, aby zobaczyć to miejsce na mapie.\n\nDziękuję."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Udostępnij"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Skopiowano do schowka: %1$@"; + /* place preview title */ "info" = "Informacje"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Wersja danych: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Kontynuować?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Trasy"; @@ -195,10 +283,18 @@ "share_my_location" = "Udostępnij aktualne położenie"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Ustawienia ogólne"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Informacje"; + "prefs_group_route" = "Nawigacja"; "pref_zoom_title" = "Przyciski przybliżania"; +"pref_zoom_summary" = "Wyświetla na ekranie"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Tryb nocny"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Język komunikatów"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Niedostępne"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Inny"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Pomoc"; +/* Button in the main Help dialog */ +"faq" = "Pytania i odpowiedzi"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Jak nas wspierać?"; + /* Button in the main Help dialog */ "copyright" = "Prawa autorskie"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Aktualizuj wszystkie"; +/* Cancel all button text */ +"downloader_cancel_all" = "Anuluj wszystko"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Pobrane"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Usuń mapę"; +/* Item in context menu. */ +"downloader_update_map" = "Aktualizuj mapę"; + +/* Preference text */ +"pref_use_google_play" = "Używa usług Google Play do ustalenia aktualnego położenia"; + /* Text for rating dialog */ "rating_just_rated" = "Właśnie oceniłem Waszą aplikację"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Tworzenie tras wymaga pobrania i zaktualizowania wszystkich map od Twojej lokalizacji do celu podróży."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Brak wolnego miejsca"; + /* bookmark button text */ "bookmark" = "zakładka"; +/* location service disabled */ +"enable_location_services" = "Proszę włączyć usługi lokalizacji"; + "save" = "Zapisz"; +"edit_description_hint" = "Twoje opisy (tekst lub html)"; + "create" = "utwórz"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Nie można zlokalizować trasy"; +"dialog_routing_cant_build_route" = "Nie można wyznaczyć trasy."; + "dialog_routing_change_start_or_end" = "Zmień punkt początkowy lub docelowy."; "dialog_routing_change_start" = "Zmień punkt początkowy"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Aby rozpocząć wyszukiwanie i tworzenie tras, pobierz mapę, a nie będzie ci już potrzebne połączenie z Internetem."; + +"search_select_map" = "Wybierz mapę"; + /* «Show» context menu */ "show" = "Pokaż"; @@ -521,6 +655,9 @@ "clear_search" = "Wyczyść historię wyszukiwania"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Twoja lokalizacja"; "p2p_start" = "Start"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Czy chcesz, byśmy zaplanowali trasę z Twojej bieżącej lokalizacji?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Dalej"; + "editor_time_add" = "Dodaj harmonogram"; "editor_time_delete" = "Usuń harmonogram"; @@ -556,14 +696,28 @@ "editor_example_values" = "Przykładowe wartości"; +"editor_correct_mistake" = "Popraw błąd"; + "editor_add_select_location" = "Lokalizacja"; "editor_done_dialog_1" = "Dokonałeś zmian na mapie świata. Nie kryj się z tym! Powiadom znajomych i edytujcie mapę razem."; "share_with_friends" = "Udostępnij znajomym"; +"editor_report_problem_desription_1" = "Prosimy o szczegółowe opisanie problemu, aby użytkownicy OpenStreetMap mogli naprawić błąd."; + +"editor_report_problem_desription_2" = "Albo zrób to sam na https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Wyślij"; +"editor_report_problem_title" = "Problem"; + +"editor_report_problem_no_place_title" = "To miejsce nie istnieje"; + +"editor_report_problem_under_construction_title" = "Zamknięte z powodu prac konserwacyjnych"; + +"editor_report_problem_duplicate_place_title" = "Powielone miejsce"; + "autodownload" = "Automatyczne pobieranie"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Dodaj godziny otwarcia"; +"edit_opening_hours" = "Edytuj godziny otwarcia"; + "no_osm_account" = "Nie masz konta w OpenStreetMap?"; "register_at_openstreetmap" = "Zarejestruj się"; @@ -592,6 +748,8 @@ "login" = "Zaloguj się"; +"password" = "Hasło"; + "forgot_password" = "Nie pamiętasz hasła?"; "osm_account" = "Konto OSM"; @@ -609,6 +767,8 @@ "add_language" = "Dodaj język"; +"street" = "Ulica"; + /* Editable House Number text field (in address block). */ "house_number" = "Numer domu"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Dodaj ulicę"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Wybierz język"; "choose_street" = "Wybierz ulicę"; @@ -632,12 +795,16 @@ "phone" = "Telefon"; +"editor_add_phone" = "Dodaj numer telefonu"; + "please_note" = "Uwaga!"; "downloader_delete_map_dialog" = "Wszystkie zmiany dotyczące mapy zostaną usunięte wraz z nią."; "downloader_update_maps" = "Aktualizuj mapy"; +"downloader_mwm_migration_dialog" = "Aby utworzyć trasę, należy zaktualizować wszystkie mapy, a następnie ponownie zaplanować trasę."; + "downloader_search_field_hint" = "Znajdź mapę"; "migration_download_error_dialog" = "Błąd pobierania"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Usuń niepotrzebne dane"; +"editor_login_error_dialog" = "Błąd logowania."; + "editor_profile_changes" = "Zmiany zweryfikowane"; "editor_focus_map_on_location" = "Przeciągnij mapę, aby wybrać poprawną lokalizację obiektu."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategoria"; +"detailed_problem_description" = "Szczegółowy opis problemu"; + +"editor_report_problem_other_title" = "Inny problem"; + +"placepage_add_business_button" = "Dodaj organizację"; + "whatsnew_editor_message_1" = "Dodawaj nowe miejsca do mapy i edytuj już istniejące bezpośrednio z poziomu aplikacji."; "dialog_incorrect_feature_position" = "Zmień lokalizację"; @@ -710,6 +885,8 @@ "editor_operator" = "Operator"; +"downloader_my_maps_title" = "Moje mapy"; + "downloader_no_downloaded_maps_title" = "Nie pobrano żadnych map"; "downloader_no_downloaded_maps_message" = "Aby znajdować miejsca i nawigować bez połączenia z internetem, musisz pobrać mapy."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "godz"; + +"minute" = "min"; + "placepage_place_description" = "Opis"; "placepage_more_button" = "Więcej"; +"placepage_more_reviews_button" = "Więcej opinii"; + "book_button" = "Zarezerwuj"; "placepage_call_button" = "Zadzwoń"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Takie miejsce nie istnieje"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…więcej"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Wpisz prawidłowy email"; +"error_enter_correct_facebook_page" = "Wprowadź poprawny link, nazwę konta lub nazwę strony na Facebooku"; + +"error_enter_correct_instagram_page" = "Wprowadź poprawny link lub nazwę konta na Instagramie"; + +"error_enter_correct_twitter_page" = "Wprowadź poprawny adres lub nazwę konta na Twitterze"; + +"error_enter_correct_vk_page" = "Wprowadź poprawny adres lub nazwę konta na VK"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Uaktualnić"; "placepage_add_place_button" = "Dodaj miejsce do mapy"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Odrzuć"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Lista"; "mobile_data_dialog" = "Wykorzystać internet mobilny, aby wyświetlić dane szczegółowe?"; @@ -848,12 +1044,16 @@ "big_font" = "Powiększ rozmiar czcionki na mapie"; +"traffic_update_app" = "Zaktualizuj Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Aby wyświetlić dane o ruchu, należy zaktualizować aplikację."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Dane o ruchu są niedostępne"; +"enable_logging" = "Włącz logowanie"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Ogólne uwagi"; @@ -861,14 +1061,24 @@ "off" = "Wył."; +"prefs_languages_information" = "Stosujemy system TTS dla komend głosowych. Stosuje go wiele urządzeń z systemem Android, można go pobrać lub zaktualizować z Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "W przypadku niektórych języków wymagana będzie instalacja innego syntezatora lub pakietu językowego ze strony aplikacji (Google Play Market, Samsung Apps). Otwórz ustawienia urządzenia → Język i klawiatura → Mowa → Przetwarzanie tekstu na mowę.\nMożesz w tym miejscu zarządzać ustawieniami syntezy mowy (np. pobrać pakiet językowy do stosowania offline) i wybrać inny silnik przetwarzania tekstu na mowę."; + +"prefs_languages_information_off_link" = "Aby uzyskać więcej informacji, sprawdź ten poradnik."; + "transliteration_title" = "Transkrypcja na alfabet łaciński"; +"learn_more" = "Dowiedz się więcej"; + "core_exit" = "Wyjdź"; "routing_add_start_point" = "Aby zaplanować trasę, dodaj punkt początkowy"; "routing_add_finish_point" = "Aby zaplanować trasę, dodaj punkt końcowy"; +"button_exit" = "Wyjdź"; + "planning_route_manage_route" = "Zarządzaj trasą"; "button_plan" = "Zaplanuj"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Ups, nastąpił błąd. Spróbuj zalogować się ponownie."; +"dialog_error_storage_title" = "Problem z dostępem do pamięci masowej"; + +"dialog_error_storage_message" = "Zewnętrzny nośnik pamięci masowej jest niedostępny. Prawdopodobnie usunięto lub uszkodzono kartę SD bądź jej system plików służy tylko do odczytu. Zweryfikuj to i skontaktuj się z nami pod adresem support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emuluj wadliwą pamięć masową"; + "core_entrance" = "Wejście"; "error_enter_correct_name" = "Wprowadź poprawną nazwę"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Utwórz nową listę"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import zakładek"; + "downloader_hide_screen" = "Ukryj ekran"; "downloader_percent" = "%s (%s z %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Nie można udostępnić pustej listy"; +"bookmarks_error_title_empty_list_name" = "Nazwa nie może być pusta"; + "bookmarks_error_message_empty_list_name" = "Wprowadź nazwę listy"; +"bookmarks_new_list_hint" = "Nowa lista"; + "bookmarks_error_title_list_name_already_taken" = "Ta nazwa jest już zajęta"; +"bookmarks_error_message_list_name_already_taken" = "Wybierz inną nazwę"; + "bookmarks_error_title_list_name_too_long" = "Ta nazwa jest za długa"; +"please_wait" = "Proszę czekać…"; + +"phone_number" = "Numer telefonu"; + "profile" = "Profil OpenStreetMap"; "bookmarks_detect_title" = "Wykryto nowe pliki"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Przywróć tę wersję?"; +"common_check_internet_connection_dialog_title" = "Brak połączenia z internetem"; + "error_system_message" = "Wystąpił nieznany błąd"; "restore" = "Przywracać"; +"subtittle_opt_out" = "Ustawienia śledzenia"; + +"crash_reports" = "Raport o błędzie"; + +"crash_reports_description" = "Możemy używać Twoich danych do usprawnienia działania Organic Maps. Zmiany zostaną zastosowane po ponownym uruchomieniu aplikacji."; + "privacy_policy" = "Polityka prywatności"; "terms_of_use" = "Warunki użytkowania"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Mapa metra jest niedostępna"; +"bookmarks_empty_list_title" = "Lista jest pusta"; + +"bookmarks_empty_list_message" = "Aby dodać zakładkę, dotknij miejsca na mapie, a następnie dotknij ikony gwiazdy."; + +"category_desc_more" = "…więcej"; + "title_error_downloading_bookmarks" = "Wystąpił błąd"; "popular_place" = "Popularne"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Ukryj mapy"; +"public_access" = "Dostęp publiczny"; + +"limited_access" = "Dostęp prywatny"; + "bookmark_list_description_hint" = "Dodaj opis (tekst lub html)"; +"not_shared" = "Osobisty"; + "tags_loading_error_subtitle" = "Wystąpił błąd podczas pobierania tagów, spróbuj ponownie"; "download_button" = "Pobierz"; @@ -972,6 +1221,9 @@ "place_description_title" = "Opis miejsca"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Pobieranie map"; + "speedcams_notice_message" = "Auto – Ostrzegać o kamerach, jeśli istnieje ryzyko przekroczenia ograniczenia prędkości\nZawsze – Zawsze ostrzegaj o kamerach\nNigdy – Nigdy nie ostrzegaj o kamerach"; "power_managment_title" = "Tryb oszczędzania energii"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maksymalna oszczędność energii"; +"enable_logging_warning_message" = "Ta opcja zostaje włączona do logowania działań w celach diagnostycznych. Pomaga to zespołowi zidentyfikować problemy z aplikacją. Włączaj opcję tylko na żądanie wsparcia technicznego Organic Maps."; + +"access_rules_author_only" = "Edytowane online"; + "driving_options_title" = "Ustawienia objazdu"; "driving_options_subheader" = "Unikaj na każdej trasie"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Sortuj…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Sortuj znaczniki"; + /* iOS */ "sort_default" = "Sortuj domyślnie"; @@ -1086,6 +1345,18 @@ "sort_date" = "Sortuj wg daty"; +/* Android */ +"by_default" = "Domyślnie"; + +/* Android */ +"by_type" = "Wg rodzaju"; + +/* Android */ +"by_distance" = "Wg odległości"; + +/* Android */ +"by_date" = "Wg daty"; + "week_ago_sorttype" = "Tydzień wstecz"; "month_ago_sorttype" = "Miesiąc wstecz"; @@ -1132,6 +1403,8 @@ "religious_places" = "Święte miejsca"; +"select_list" = "Wybierz listę"; + "transit_not_found" = "Nawigacja metrem nie jest jeszcze tutaj dostępna"; "dialog_pedestrian_route_is_long_header" = "Nie znaleziono trasy metra"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Trudność"; +"elevation_profile_distance" = "Odległ.:"; + "elevation_profile_time" = "Trasa:"; "isolines_toast_zooms_1_10" = "Powiększ mapę, aby zobaczyć izolinie"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Pobieranie"; +"key_information_title" = "Kluczowe informacje"; + +"download_map_title" = "Pobierz mapę świata"; + +"connection_failure" = "Błąd połączenia"; + +"disconnect_usb_cable_title" = "Odłącz kabel USB"; + +"enable_screen_sleep" = "Pozwól ekranowi spać"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Po włączeniu ekran będzie mógł spać po okresie bezczynności."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Zaktualizuj pobrane mapy"; @@ -1735,9 +2023,6 @@ "type.healthcare.laboratory" = "Laboratorium Medyczne"; - -/********** Types: Roads **********/ - "type.highway" = "Droga"; "type.highway.bridleway" = "Droga dla koni"; @@ -1788,7 +2073,7 @@ "type.highway.living_street" = "Ulica w strefie zamieszkania"; -"type.highway.living_street.bridge" = "Ulica w strefie zamieszkania"; +"type.highway.living_street.bridge" = "Ulica"; "type.highway.living_street.tunnel" = "Tunel ulicy"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Tunel drogowy"; -"type.area_highway.cycleway" = "Droga rowerowa"; - -"type.area_highway.footway" = "Chodnik"; - -"type.area_highway.living_street" = "Ulica w strefie zamieszkania"; - -"type.area_highway.motorway" = "Ulica"; - -"type.area_highway.path" = "Ścieżka"; - -"type.area_highway.pedestrian" = "Pasaż pieszy"; - -"type.area_highway.primary" = "Ulica"; - -"type.area_highway.residential" = "Ulica"; - -"type.area_highway.secondary" = "Ulica"; - -"type.area_highway.service" = "Ulica"; - -"type.area_highway.tertiary" = "Ulica"; - -"type.area_highway.steps" = "Schody"; - -"type.area_highway.track" = "Ulica"; - -"type.area_highway.trunk" = "Ulica"; - -"type.area_highway.unclassified" = "Ulica"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historyczne"; "type.historic.archaeological_site" = "Odkrywka archeologiczna"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Park wodny"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Falochron"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Stolica"; -"type.place.city.capital.10" = "Miasto"; +"type.place.city.capital.10" = "Stolica"; -"type.place.city.capital.11" = "Miasto"; +"type.place.city.capital.11" = "Stolica"; "type.place.city.capital.2" = "Stolica"; -"type.place.city.capital.3" = "Miasto"; +"type.place.city.capital.3" = "Stolica"; -"type.place.city.capital.4" = "Miasto"; +"type.place.city.capital.4" = "Stolica"; -"type.place.city.capital.5" = "Miasto"; +"type.place.city.capital.5" = "Stolica"; -"type.place.city.capital.6" = "Miasto"; +"type.place.city.capital.6" = "Stolica"; -"type.place.city.capital.7" = "Miasto"; +"type.place.city.capital.7" = "Stolica"; -"type.place.city.capital.8" = "Miasto"; +"type.place.city.capital.8" = "Stolica"; -"type.place.city.capital.9" = "Miasto"; +"type.place.city.capital.9" = "Stolica"; "type.place.continent" = "Kontynent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Część budynku"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.stringsdict index 2a8dd4ab92..8e9ecc5926 100644 --- a/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/pl.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -58,6 +58,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d miejsc + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.strings index 980a3118dc..4f3704985d 100644 --- a/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Voltar"; + /* Button text (should be short) */ "cancel" = "Cancelar"; @@ -17,6 +20,9 @@ "download_maps" = "Baixar mapas"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "O baixar falhou, toque para tentar de novo."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Baixando…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Mapas"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Milhas"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Buscar"; +/* Search box placeholder text */ +"search_map" = "Procurar mapa"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Sim"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Atualmente todos os Serviços de Localização para este dispositivo ou aplicação estão desativados. Por favor ative-os em Configurações."; + /* View and button titles for accessibility */ "zoom_to_country" = "Mostrar no mapa"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "O download falhou"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Tentar novamente"; + "about_menu_title" = "Sobre o Organic Maps"; +"connection_settings" = "Configurações de conexão"; + "close" = "Fechar"; +"unsupported_phone" = "É necessário OpenGL acelerado por hardware. Infelizmente o seu dispositivo não é compatível."; + "download" = "Baixar"; +"disconnect_usb_cable" = "Por favor desligue o cabo USB ou introduza um cartão de memória para utilizar Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Por favor libere primeiro algum espaço no cartão SD/armazenamento USB para utilizar o app"; + +"not_enough_memory" = "Não há memória suficiente para executar o app"; + +"download_resources" = "Antes de começar, vamos baixar um mapa mundial geral para o seu dispositivo.\n%@ de memória serão utilizados."; + +"download_resources_continue" = "Ir para o mapa"; + +"downloading_country_can_proceed" = "Baixando %@. Você pode\ncontinuar para o mapa agora."; + +"download_country_ask" = "Baixar %@?"; + +"update_country_ask" = "Atualizar %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pausas"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Continuar"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "O download de %@ falhou"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Adicionar novo conjunto"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Meus Locais"; +/* Add bookmark dialog - bookmark name */ +"name" = "Nome"; + /* Editor title above street and house number */ "address" = "Endereço"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Conjunto"; + /* Settings button in system menu */ "settings" = "Configurações"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Salvar mapas para"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Selecione o local para onde os mapas devem ser baixados"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Mover mapas?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Isto pode demorar alguns minutos.\nPor favor aguarde…"; + /* Measurement units title in settings activity */ "measurement_units" = "Unidades de medida"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Escolha entre milhas e quilômetros"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Onde comer"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Mercados"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transporte"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Combustível"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Estacionamento"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Compras"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Atrações"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Entretenimento"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Caixa eletrônico"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Vida Noturna"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Feriados em família"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Banco"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Farmácia"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Hospital"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Banheiros"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Correios"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Polícia"; +/* Notes field in Bookmarks view */ +"description" = "Notas"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Favoritos do Organic Maps foram compartilhados com você"; + "share_bookmarks_email_body" = "Olá!\n\nSegue em anexo meus favoritos do app Organic Maps. Por favor os abra se você tiver o Organic Maps instalado. Caso não tenha, baixe o app para o seu dispositivo iOS ou Android com o link https://omaps.app/get?kmz\n\nDisfrute viajar com o Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "A sua localização ainda não foi determinada"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Lamentamos, as configurações do Map Storage estão atualmente desativadas."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "O download do país está atualmente em progresso."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Veja onde estou agora. Abra o link: %1$@ ou %2$@ Não tem um aplicativo de mapa offline? Baixe aqui: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Veja o meu marcador no mapa do Organic Maps."; /* Subject for emailed position */ "my_position_share_email_subject" = "Veja a minha localização atual no mapa Organic Maps!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Olá,\n\nEstou aqui agora: %1$@. Clique neste link %2$@ ou neste %3$@ para ver o local no mapa.\n\nObrigado."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Compartilhar"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Copiado para a área de transferência: %1$@"; + /* place preview title */ "info" = "Info"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Versão dos dados: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Tem certeza que deseja continuar?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Percursos"; @@ -195,10 +283,18 @@ "share_my_location" = "Compartilhar a minha localização"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Configurações gerais"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Informação"; + "prefs_group_route" = "Navegação"; "pref_zoom_title" = "Botões de zoom"; +"pref_zoom_summary" = "Mostrar na tela"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Modo noturno"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Idioma da voz"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Não disponível"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Outro"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Ajuda"; +/* Button in the main Help dialog */ +"faq" = "Perguntas e respostas"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "How to support us?"; + /* Button in the main Help dialog */ "copyright" = "Direitos autorais"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Atualizar tudo"; +/* Cancel all button text */ +"downloader_cancel_all" = "Cancelar tudo"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Baixado"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Apagar mapa"; +/* Item in context menu. */ +"downloader_update_map" = "Atualizar mapa"; + +/* Preference text */ +"pref_use_google_play" = "Usar Serviços do Google Play para determinar a sua localização atual"; + /* Text for rating dialog */ "rating_just_rated" = "Acabei de avaliar o seu app"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "É necessário baixar e atualizar todos os mapas entre a sua localização e o destino para criar uma rota."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Espaço insuficiente"; + /* bookmark button text */ "bookmark" = "favorito"; +/* location service disabled */ +"enable_location_services" = "Por favor, ative os Serviços de Localização"; + "save" = "Salvar"; +"edit_description_hint" = "Suas descrições (texto ou html)"; + "create" = "criar"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Não foi possível encontrar uma rota"; +"dialog_routing_cant_build_route" = "Não foi possível gerar uma rota."; + "dialog_routing_change_start_or_end" = "Ajuste o ponto de partida ou o ponto de chegada."; "dialog_routing_change_start" = "Ajuste o ponto de partida"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Para começar a pesquisar e criar rotas, por favor, baixe o mapa. Assim, você não precisará mais de uma conexão com a internet."; + +"search_select_map" = "Selecionar Mapa"; + /* «Show» context menu */ "show" = "Mostrar"; @@ -521,6 +655,9 @@ "clear_search" = "Limpar histórico de pesquisa"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipédia"; + "p2p_your_location" = "Localização atual"; "p2p_start" = "Iniciar"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Deseja planejar uma rota a partir da sua localização atual?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Próxima"; + "editor_time_add" = "Adicionar horário"; "editor_time_delete" = "Apagar Horário"; @@ -556,14 +696,28 @@ "editor_example_values" = "Valores de exemplo"; +"editor_correct_mistake" = "Corrigir erro"; + "editor_add_select_location" = "Local"; "editor_done_dialog_1" = "Você modificou o mapa-múndi. Não esconda isto! Diga aos seus amigos e editem-no juntos."; "share_with_friends" = "Compartilhar com amigos"; +"editor_report_problem_desription_1" = "Por favor, descreva o problema em detalhes para que a comunidade OpenStreeMap possa corrigir o erro."; + +"editor_report_problem_desription_2" = "Ou faça-o você mesmo em https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Enviar"; +"editor_report_problem_title" = "Problema"; + +"editor_report_problem_no_place_title" = "O lugar não existe"; + +"editor_report_problem_under_construction_title" = "Fechado para manutenção"; + +"editor_report_problem_duplicate_place_title" = "Lugar duplicado"; + "autodownload" = "Download automático"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Adicionar horário de funcionamento"; +"edit_opening_hours" = "Editar horário de funcionamento"; + "no_osm_account" = "Sem conta no OpenStreetMap?"; "register_at_openstreetmap" = "Cadastrar-se"; @@ -592,6 +748,8 @@ "login" = "Login"; +"password" = "Senha"; + "forgot_password" = "Esqueceu sua senha?"; "osm_account" = "Conta OSM"; @@ -609,6 +767,8 @@ "add_language" = "Adicionar um idioma"; +"street" = "Rua"; + /* Editable House Number text field (in address block). */ "house_number" = "N.º do endereço"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Adicionar uma rua"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Escolher um idioma"; "choose_street" = "Escolher uma rua"; @@ -632,12 +795,16 @@ "phone" = "Telefone"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Aviso"; "downloader_delete_map_dialog" = "Todas as alterações ao mapa serão eliminadas juntamente com o mapa."; "downloader_update_maps" = "Atualizar mapas"; +"downloader_mwm_migration_dialog" = "Para criar um itinerário é necessário atualizar todos os mapas e, em seguida, planejá-lo novamente."; + "downloader_search_field_hint" = "Encontrar o mapa"; "migration_download_error_dialog" = "Erro no download"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Por favor, remova os dados desnecessários"; +"editor_login_error_dialog" = "Erro no login."; + "editor_profile_changes" = "Alterações verificadas"; "editor_focus_map_on_location" = "Mova o mapa para selecionar o lugar correto do objeto."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Categoria"; +"detailed_problem_description" = "Descrição detalhada do problema"; + +"editor_report_problem_other_title" = "Um problema diferente"; + +"placepage_add_business_button" = "Adicionar uma empresa"; + "whatsnew_editor_message_1" = "Adicione novos lugares ao mapa e edite os já existentes diretamente a partir do app."; "dialog_incorrect_feature_position" = "Mudar local"; @@ -710,6 +885,8 @@ "editor_operator" = "Operador"; +"downloader_my_maps_title" = "Meus mapas"; + "downloader_no_downloaded_maps_title" = "Você não fez o download de nenhum mapa"; "downloader_no_downloaded_maps_message" = "Baixe mapas para pesquisar locais e usar navegação offline."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Descrição"; "placepage_more_button" = "Mais"; +"placepage_more_reviews_button" = "Mais avaliações"; + "book_button" = "Reservar"; "placepage_call_button" = "Ligar"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "O lugar não existe"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…mais"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Preencha com um endereço válido de email"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Atualizar"; "placepage_add_place_button" = "Adicionar um local ao mapa"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Declinar"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Lista"; "mobile_data_dialog" = "Utilizar a internet móvel para mostrar informações detalhadas?"; @@ -848,12 +1044,16 @@ "big_font" = "Aumentar tamanho da fonte no mapa"; +"traffic_update_app" = "Atualize o Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Para mostrar os dados de tráfego, a aplicação deve ser atualizada."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Não existem dados de tráfego"; +"enable_logging" = "Ativar o histórico"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Opinão geral"; @@ -861,14 +1061,24 @@ "off" = "Deslig."; +"prefs_languages_information" = "Utilizamos o sistema TTS para instruções de voz. Muitos dispositivos Android usam o Google TTS, pode transferir ou atualizá-lo a partir do Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "For some languages, you will need to install a speech synthesizer or an additional language pack from the app store (Google Play Market, Samsung Apps).\nOpen your device's settings → Language and input → Speech → Text to speech output.\nHere you can manage settings for speech synthesis (for example, download language pack for offline use) and select another text-to-speech engine."; + +"prefs_languages_information_off_link" = "Para obter mais informações, consulte este guia."; + "transliteration_title" = "Transliteração para alfabeto latino"; +"learn_more" = "Saber mais"; + "core_exit" = "Sair"; "routing_add_start_point" = "Adicionar ponto de partida para planejar uma rota"; "routing_add_finish_point" = "Adicionar final da viagem para planejar uma rota"; +"button_exit" = "Sair"; + "planning_route_manage_route" = "Gerir rota"; "button_plan" = "Planejar"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Ups, ocorreu um erro. Tente iniciar sessão novamente."; +"dialog_error_storage_title" = "Problema de acesso ao armazenamento"; + +"dialog_error_storage_message" = "O armazenamento externo não está disponível, é provável que o cartão SD tenha sido removido, danificado ou o sistema de arquivo seja apenas para leitura. Verifique e entre em contato conosco em support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emular memória ruim"; + "core_entrance" = "Entrada"; "error_enter_correct_name" = "Por favor, digite um nome correto"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Criar nova lista"; +/* Bookmark categories screen */ +"bookmarks_import" = "Importar favoritos"; + "downloader_hide_screen" = "Ocultar tela"; "downloader_percent" = "%s (%s de %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Impossível compartilhar uma lista vazia"; +"bookmarks_error_title_empty_list_name" = "O nome não podia estar vazio"; + "bookmarks_error_message_empty_list_name" = "Por favor insira o nome da lista"; +"bookmarks_new_list_hint" = "Nova lista"; + "bookmarks_error_title_list_name_already_taken" = "Esse nome já está sendo usado"; +"bookmarks_error_message_list_name_already_taken" = "Por favor, escolha outro nome"; + "bookmarks_error_title_list_name_too_long" = "Este nome é muito longo"; +"please_wait" = "Espere, por favor�"; + +"phone_number" = "Número de telefone"; + "profile" = "Perfil do OpenStreetMap"; "bookmarks_detect_title" = "Novos arquivos detectados"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Restaurar esta versão?"; +"common_check_internet_connection_dialog_title" = "Sem conexão com a Internet"; + "error_system_message" = "Ocorreu um erro desconhecido"; "restore" = "Restaurar"; +"subtittle_opt_out" = "Configurações de rastreamento"; + +"crash_reports" = "Relatório de erros"; + +"crash_reports_description" = "Nós podemor utilizar seus dados para melhorar a experiência Organic Maps As mudanças terão efeitos após reiniciar o app."; + "privacy_policy" = "Política de privacidade"; "terms_of_use" = "Termos de uso"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Mapa de metrô está indisponível"; +"bookmarks_empty_list_title" = "Esta lista está vazia"; + +"bookmarks_empty_list_message" = "Para adicionar um favorito, toque no mapa e então toque no ícone de estrela"; + +"category_desc_more" = "…mais"; + "title_error_downloading_bookmarks" = "Um erro ocorreu"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Esconder do mapa"; +"public_access" = "Acesso público"; + +"limited_access" = "Acesso limitado"; + "bookmark_list_description_hint" = "Digite uma descrição (texto ou html)"; +"not_shared" = "Privado"; + "tags_loading_error_subtitle" = "Um erro ocorreu enquanto carregava as etiquetas, por favor, tente novamente"; "download_button" = "Baixar"; @@ -972,6 +1221,9 @@ "place_description_title" = "Descrição do lugar"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Downloader do mapa"; + "speedcams_notice_message" = "Automático - Avisar sobre radar se houver risco de ultrapassar o limite de velocidade\nSempre - Sempre avisar sobre radares\nNunca - Nunca avisar sobre radares"; "power_managment_title" = "Modo de economia de energia"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Máxima economia de energia"; +"enable_logging_warning_message" = "A opção ativa para realizar diagnósticos. Pode ser útil para nossa equipe de suporte que estão solucionando problemas com o aplicativo. Ative esta opção apenas ao ser solicitado pelo suporte do Organic Maps."; + +"access_rules_author_only" = "Edição online"; + "driving_options_title" = "Opções de direção"; "driving_options_subheader" = "Evitar em todas as rotas"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Ordenar…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Ordenar favoritos"; + /* iOS */ "sort_default" = "Ordenar por padrão"; @@ -1086,6 +1345,18 @@ "sort_date" = "Ordenar por data"; +/* Android */ +"by_default" = "Por padrão"; + +/* Android */ +"by_type" = "Por tipo"; + +/* Android */ +"by_distance" = "Por distância"; + +/* Android */ +"by_date" = "Por data"; + "week_ago_sorttype" = "Uma semana atrás"; "month_ago_sorttype" = "Um mês atrás"; @@ -1132,6 +1403,8 @@ "religious_places" = "Lugares religiosos"; +"select_list" = "Escolher a lista"; + "transit_not_found" = "A navegação por metrô nesta região ainda não está disponível"; "dialog_pedestrian_route_is_long_header" = "Rota por metrô não encontrada"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Dificuldade"; +"elevation_profile_distance" = "Dist.:"; + "elevation_profile_time" = "Tempo:"; "isolines_toast_zooms_1_10" = "Use o zoom para explorar as isolinhas"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Baixando"; +"key_information_title" = "Informação importante"; + +"download_map_title" = "Baixar mapa mundial"; + +"connection_failure" = "Falha na coneção"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Permitir que a tela hiberne"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Quando ativada, a tela poderá hibernar após um período de inatividade."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Atualize os mapas no seu dispositivo"; @@ -1227,7 +1515,7 @@ "type.aeroway.taxiway" = "Pista de rolagem"; -"type.aeroway.terminal" = "Aerogare de passageiros"; +"type.aeroway.terminal" = "Terminal"; "type.amenity" = "Amenidades"; @@ -1629,7 +1917,7 @@ "type.cuisine.heuriger" = "Heuriger"; -"type.cuisine.hotdog" = "Cachorro-quente"; +"type.cuisine.hotdog" = "Hotdog"; "type.cuisine.hungarian" = "Cozinha húngara"; @@ -1735,9 +2023,6 @@ "type.healthcare.laboratory" = "Laboratório médico"; - -/********** Types: Roads **********/ - "type.highway" = "Rodovia"; "type.highway.bridleway" = "Caminho para cavaleiros"; @@ -1800,11 +2085,11 @@ "type.highway.motorway_junction" = "Saída de rodovia"; -"type.highway.motorway_link" = "Rodovia"; +"type.highway.motorway_link" = "Estrada"; -"type.highway.motorway_link.bridge" = "Rodovia"; +"type.highway.motorway_link.bridge" = "Estrada"; -"type.highway.motorway_link.tunnel" = "Rodovia"; +"type.highway.motorway_link.tunnel" = "Estrada"; "type.highway.path" = "Caminho"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Estrada sem classificação"; -"type.area_highway.cycleway" = "Ciclovia"; - -"type.area_highway.footway" = "Caminho pedonal"; - -"type.area_highway.living_street" = "Zona de coexistência"; - -"type.area_highway.motorway" = "Rodovia"; - -"type.area_highway.path" = "Caminho"; - -"type.area_highway.pedestrian" = "Rua pedonal"; - -"type.area_highway.primary" = "Estrada"; - -"type.area_highway.residential" = "Rua residencial"; - -"type.area_highway.secondary" = "Estrada"; - -"type.area_highway.service" = "Estrada de acesso ou serviço"; - -"type.area_highway.tertiary" = "Estrada"; - -"type.area_highway.steps" = "Escadas"; - -"type.area_highway.track" = "Pista para desportos não motorizados"; - -"type.area_highway.trunk" = "Via expressa"; - -"type.area_highway.unclassified" = "Estrada sem classificação"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Histórico"; "type.historic.archaeological_site" = "Sítio arqueológico"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Parque aquático"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Construção humana"; "type.man_made.breakwater" = "Molhe"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capital"; -"type.place.city.capital.10" = "Cidade"; +"type.place.city.capital.10" = "Capital"; -"type.place.city.capital.11" = "Cidade"; +"type.place.city.capital.11" = "Capital"; "type.place.city.capital.2" = "Capital"; -"type.place.city.capital.3" = "Cidade"; +"type.place.city.capital.3" = "Capital"; -"type.place.city.capital.4" = "Cidade"; +"type.place.city.capital.4" = "Capital"; -"type.place.city.capital.5" = "Cidade"; +"type.place.city.capital.5" = "Capital"; -"type.place.city.capital.6" = "Cidade"; +"type.place.city.capital.6" = "Capital"; -"type.place.city.capital.7" = "Cidade"; +"type.place.city.capital.7" = "Capital"; -"type.place.city.capital.8" = "Cidade"; +"type.place.city.capital.8" = "Capital"; -"type.place.city.capital.9" = "Cidade"; +"type.place.city.capital.9" = "Capital"; "type.place.continent" = "Continente"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "Pista para trenós"; "type.building_part" = "Parte de edifício"; + +"type.area_highway.cycleway" = "Ciclovia"; + +"type.area_highway.footway" = "Caminho pedonal"; + +"type.area_highway.living_street" = "Zona de coexistência"; + +"type.area_highway.motorway" = "Rodovia"; + +"type.area_highway.path" = "Caminho"; + +"type.area_highway.pedestrian" = "Rua pedonal"; + +"type.area_highway.primary" = "Estrada"; + +"type.area_highway.residential" = "Rua residencial"; + +"type.area_highway.secondary" = "Estrada"; + +"type.area_highway.service" = "Estrada de acesso ou serviço"; + +"type.area_highway.tertiary" = "Estrada"; + +"type.area_highway.steps" = "Escadas"; + +"type.area_highway.track" = "Pista para desportos não motorizados"; + +"type.area_highway.trunk" = "Via expressa"; + +"type.area_highway.unclassified" = "Estrada sem classificação"; diff --git a/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.stringsdict index 6dfbd5c77d..7c10d73934 100644 --- a/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/pt-BR.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -60,6 +60,23 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + one + %d lugar + other + %d lugares + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.strings index 564ce8a2f5..a54fb83f51 100644 --- a/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Voltar"; + /* Button text (should be short) */ "cancel" = "Cancelar"; @@ -17,6 +20,9 @@ "download_maps" = "Descarregar mapas"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "O descarregamento falhou, toque novamente para tentar de novo."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "A descarregar…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Mapas"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Milhas"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Pesquisar"; +/* Search box placeholder text */ +"search_map" = "Pesquisar mapa"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Sim"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Atualmente tem todos os serviços de localização para este dispositivo ou aplicação desativados. Por favor ative-os nas definições do sistema."; + /* View and button titles for accessibility */ "zoom_to_country" = "Mostrar no mapa"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "O descarregamento falhou"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Tentar novamente"; + "about_menu_title" = "Sobre o Organic Maps"; +"connection_settings" = "Definições de ligação"; + "close" = "Fechar"; +"unsupported_phone" = "É necessário a acelaração OpenGL por hardware. Infelizmente o seu dispositivo não é compatível."; + "download" = "Descarregar"; +"disconnect_usb_cable" = "Por favor desligue o cabo USB ou introduza um cartão de memória para utilizar o Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Por favor liberte primeiro algum espaço no cartão SD ou armazenamento USB para utilizar a aplicação"; + +"not_enough_memory" = "Não há memória suficiente para executar a aplicação"; + +"download_resources" = "Antes de começar, é recomendável descarregar o mapa mundial geral para o seu dispositivo.\nÉ necessário %@ de espaço disponível."; + +"download_resources_continue" = "Ir ao mapa"; + +"downloading_country_can_proceed" = "A descarregar %@. Agora pode\nver o mapa."; + +"download_country_ask" = "Descarregar %@?"; + +"update_country_ask" = "Atualizar %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pausar"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Continuar"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "O descarregamento de %@ falhou"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Adicionar conjunto novo"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Os meus locais"; +/* Add bookmark dialog - bookmark name */ +"name" = "Nome"; + /* Editor title above street and house number */ "address" = "Endereço"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Conjunto"; + /* Settings button in system menu */ "settings" = "Configurações"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Guardar mapas em"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Selecione o local onde os mapas devem ser descarregados"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Mover mapas?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Isto pode demorar alguns minutos.\nPor favor aguarde…"; + /* Measurement units title in settings activity */ "measurement_units" = "Unidades de medida"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Escolha entre milhas e quilómetros"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Onde comer"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Lojas alimentares"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transporte"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Combustível"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Estacionamento"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Compras"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Atrações turísticas"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Entretenimento"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Multibanco"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Vida noturna"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Passeios com crianças"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Banco"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Farmácia"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Hospital"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Casas de banho"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Correios"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Polícia"; +/* Notes field in Bookmarks view */ +"description" = "Notas"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Os favoritos do Organic Maps foram partilhados consigo"; + "share_bookmarks_email_body" = "Olá!\n\nSegue em anexo os meus favoritos da aplicação Organic Maps. Por favor abra-os se tiver o Organic Maps instalado. Caso não tenha, descarregue a aplicação para o seu dispositivo iOS ou Android com a hiperligação https://omaps.app/get?kmz\n\nDivirta-se a viajar com o Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "A sua localização ainda não foi determinada"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Lamentamos, as definições do armazenamento do mapa estão atualmente desativadas."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "O descarregamento do país está a ser feito neste momento."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Veja onde estou agora. Abra a hiperligação: %1$@ ou %2$@ Não tem um mapa offline instalado? Descarregue em https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Veja o meu marcador no mapa do Organic Maps."; /* Subject for emailed position */ "my_position_share_email_subject" = "Veja a minha localização atual no mapa Organic Maps!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Olá,\n\nEstou neste momento aqui: %1$@. Clique nesta ligação %2$@ ou nesta %3$@ para ver o local no mapa.\n\nObrigado."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Partilhar"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Copiado para a área de transferência: %1$@"; + /* place preview title */ "info" = "Informação"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Versão dos dados: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Quer mesmo continuar?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Percursos"; @@ -195,10 +283,18 @@ "share_my_location" = "Partilhar a minha localização"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Configurações gerais"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Informação"; + "prefs_group_route" = "Navegação"; "pref_zoom_title" = "Botões de ampliação"; +"pref_zoom_summary" = "Mostrar no ecrã"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Modo noturno"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Idioma da voz"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Não disponível"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Outro"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Ajuda"; +/* Button in the main Help dialog */ +"faq" = "Perguntas e respostas"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Como nos apoiar?"; + /* Button in the main Help dialog */ "copyright" = "Direitos de autor"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Atualizar tudo"; +/* Cancel all button text */ +"downloader_cancel_all" = "Cancelar tudo"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Descarregado"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Eliminar mapa"; +/* Item in context menu. */ +"downloader_update_map" = "Atualizar mapa"; + +/* Preference text */ +"pref_use_google_play" = "Use os Serviços Google Play para determinar a sua localização atual"; + /* Text for rating dialog */ "rating_just_rated" = "Acabei de avaliar a sua aplicação"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "É necessário descarregar e atualizar todos os mapas entre a sua localização e o destino para criar uma rota."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Espaço insuficiente"; + /* bookmark button text */ "bookmark" = "favorito"; +/* location service disabled */ +"enable_location_services" = "Por favor ative os serviços de localização"; + "save" = "Guardar"; +"edit_description_hint" = "As suas descrições (texto ou html)"; + "create" = "criar"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Não foi possível encontrar uma rota"; +"dialog_routing_cant_build_route" = "Não foi possível criar uma rota."; + "dialog_routing_change_start_or_end" = "Ajuste o ponto de partida ou o ponto de chegada."; "dialog_routing_change_start" = "Ajuste o ponto de partida"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Para começar a pesquisar e criar rotas, por favor, descarregue o mapa. Desta forma não irá precisra mais de uma ligação à Internet."; + +"search_select_map" = "Selecionar mapa"; + /* «Show» context menu */ "show" = "Mostrar"; @@ -521,6 +655,9 @@ "clear_search" = "Limpar histórico de pesquisas"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipédia"; + "p2p_your_location" = "Localização atual"; "p2p_start" = "Iniciar"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Quer planear uma rota a partir da sua localização atual?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Próxima"; + "editor_time_add" = "Adicionar horário"; "editor_time_delete" = "Eliminar horário"; @@ -556,14 +696,28 @@ "editor_example_values" = "Valores de exemplo"; +"editor_correct_mistake" = "Corrigir erro"; + "editor_add_select_location" = "Local"; "editor_done_dialog_1" = "Alterou o mapa mundial. Não mantenha as alterações para si mesmo! Diga aos seus amigos e editem-no juntos."; "share_with_friends" = "Partilhar com amigos"; +"editor_report_problem_desription_1" = "Por favor, descreva o problema ao pormenor para que a comunidade OpenStreeMap possa corrigir o erro."; + +"editor_report_problem_desription_2" = "Ou faça-o em https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Enviar"; +"editor_report_problem_title" = "Problema"; + +"editor_report_problem_no_place_title" = "O lugar não existe"; + +"editor_report_problem_under_construction_title" = "Encerrado para manutenção"; + +"editor_report_problem_duplicate_place_title" = "Lugar em duplicado"; + "autodownload" = "Descarregamento automático"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Adicionar horário de funcionamento"; +"edit_opening_hours" = "Editar horário de funcionamento"; + "no_osm_account" = "Não tem uma conta no OpenStreetMap?"; "register_at_openstreetmap" = "Crie uma conta no OSM"; @@ -592,6 +748,8 @@ "login" = "Iniciar sessão"; +"password" = "Palavra-chave"; + "forgot_password" = "Esqueceu-se da palavra-chave?"; "osm_account" = "Conta OSM"; @@ -609,6 +767,8 @@ "add_language" = "Adicionar um idioma"; +"street" = "Rua"; + /* Editable House Number text field (in address block). */ "house_number" = "Nº de porta"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Adicionar uma rua"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Escolher um idioma"; "choose_street" = "Escolher uma rua"; @@ -632,12 +795,16 @@ "phone" = "Telefone"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Aviso"; "downloader_delete_map_dialog" = "Todas as alterações ao mapa serão eliminadas juntamente com o mapa."; "downloader_update_maps" = "Atualizar mapas"; +"downloader_mwm_migration_dialog" = "Para criar um itinerário é necessário atualizar todos os mapas e, em seguida, planeá-lo novamente."; + "downloader_search_field_hint" = "Encontrar o mapa"; "migration_download_error_dialog" = "Erro de descarregamento"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Por favor, remova os dados desnecessários"; +"editor_login_error_dialog" = "Erro de início de sessão."; + "editor_profile_changes" = "Alterações verificadas"; "editor_focus_map_on_location" = "Mova o mapa para selecionar o lugar correto do objeto."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Categoria"; +"detailed_problem_description" = "Descrição detalhada do problema"; + +"editor_report_problem_other_title" = "Um problema diferente"; + +"placepage_add_business_button" = "Adicionar uma organização"; + "whatsnew_editor_message_1" = "Adicione novos lugares ao mapa e edite os já existentes diretamente a partir da aplicação."; "dialog_incorrect_feature_position" = "Mudar local"; @@ -710,6 +885,8 @@ "editor_operator" = "Operador"; +"downloader_my_maps_title" = "Os meus mapas"; + "downloader_no_downloaded_maps_title" = "Não descarregou quaisquer mapas"; "downloader_no_downloaded_maps_message" = "Descarregar mapas para encontrar a localização e navegar offline."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Descrição"; "placepage_more_button" = "Mais"; +"placepage_more_reviews_button" = "Mais comentários"; + "book_button" = "Reservas"; "placepage_call_button" = "Telefonar"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "O local não existe"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…mais"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Preencha com um endereço válido de email"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Atualizar"; "placepage_add_place_button" = "Adicionar um local ao mapa"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Recusar"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Lista"; "mobile_data_dialog" = "Utilizar os dados móveis para mostrar informações detalhadas?"; @@ -848,12 +1044,16 @@ "big_font" = "Aumentar tamanho da fonte no mapa"; +"traffic_update_app" = "Atualize o Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Para mostrar os dados de tráfego, a aplicação tem de ser atualizada."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Os dados de tráfego não estão disponíveis"; +"enable_logging" = "Ativar o histórico"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Opinão geral"; @@ -861,14 +1061,24 @@ "off" = "Deslig."; +"prefs_languages_information" = "Utilizamos o sistema TTS para as instruções de voz. Muitos dispositivos Android usam o Google TTS, pode transferir ou atualizá-lo a partir do Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Para alguns idiomas, precisará de instalar outro sintetizador de voz ou um pacote de idiomas adicional a partir da loja de aplicações (Google Play Market, Samsung Apps). Abra as Configurações do seu dispositivo → Idioma e entrada → Voz → Saída de texto para voz. Aqui pode gerir as configurações de síntese de voz (por exemplo, transferir um pacote de idioma para poder utilizá-lo sem estar ligado à Internet) ou selecionar outro motor de texto para voz."; + +"prefs_languages_information_off_link" = "Para obter mais informações, consulte este guia."; + "transliteration_title" = "Transliteração para o latim"; +"learn_more" = "Saber mais"; + "core_exit" = "Sair"; "routing_add_start_point" = "Adicionar ponto de partida para planear uma rota"; "routing_add_finish_point" = "Adicionar final da viagem para planear uma rota"; +"button_exit" = "Sair"; + "planning_route_manage_route" = "Gerir rota"; "button_plan" = "Planear"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Ups, ocorreu um erro. Tente iniciar sessão novamente."; +"dialog_error_storage_title" = "Problema de acesso ao armazenamento"; + +"dialog_error_storage_message" = "O armazenamento externo não está disponível. Provavelmente porque o cartão SD foi removido, danificado ou o sistema de ficheiros é apenas para leitura. Verifique e contacte-nos através do email support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emular o armazenamento defeituoso"; + "core_entrance" = "Entrada"; "error_enter_correct_name" = "Introduza um nome correto"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Criar nova lista"; +/* Bookmark categories screen */ +"bookmarks_import" = "Importar favoritos"; + "downloader_hide_screen" = "Ocultar ecrã"; "downloader_percent" = "%s (%s de %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Não é possível partilhar uma lista vazia"; +"bookmarks_error_title_empty_list_name" = "O nome não pode estar em branco"; + "bookmarks_error_message_empty_list_name" = "Por favor introduza o nome da lista"; +"bookmarks_new_list_hint" = "Nova lista"; + "bookmarks_error_title_list_name_already_taken" = "Este nome já está a ser utilizado"; +"bookmarks_error_message_list_name_already_taken" = "Por favor escolha outro nome"; + "bookmarks_error_title_list_name_too_long" = "Este nome é muito longo"; +"please_wait" = "Por favor aguarde�"; + +"phone_number" = "Número de telefone"; + "profile" = "Perfil no OpenStreetMap"; "bookmarks_detect_title" = "Foram detetados novos ficheiros"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Restaurar esta versão?"; +"common_check_internet_connection_dialog_title" = "Sem ligação à Internet"; + "error_system_message" = "Surgiu um erro desconhecido"; "restore" = "Restaurar"; +"subtittle_opt_out" = "Configurações de rastreamento"; + +"crash_reports" = "Relatório de erros"; + +"crash_reports_description" = "Podemos utilizar os seus dados para melhorar a experiência no Organic Maps. As alterações entrarão em vigor quando reiniciar a aplicação."; + "privacy_policy" = "Política de privacidade"; "terms_of_use" = "Termos de utilização"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "O mapa de metropolitano não está disponível"; +"bookmarks_empty_list_title" = "Esta lista está vazia"; + +"bookmarks_empty_list_message" = "Para adicionar um favorito, toque num lugar do mapa e em seguida toque no ícone da estrela"; + +"category_desc_more" = "…mais"; + "title_error_downloading_bookmarks" = "Surgiu um erro"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Remover do mapa"; +"public_access" = "Acesso público"; + +"limited_access" = "Acesso limitado"; + "bookmark_list_description_hint" = "Introduza uma descrição (texto ou html)"; +"not_shared" = "Privado"; + "tags_loading_error_subtitle" = "Surgiu um erro ao carregar as etiquetas, por favor tente novamente"; "download_button" = "Descarregar"; @@ -972,6 +1221,9 @@ "place_description_title" = "Descrição do local"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Descarregador de mapas"; + "speedcams_notice_message" = "Automático - avisa sobre os radares de velocidade se houver risco de exceder o limite de velocidade\nSempre - avisa sempre sobre os radares\nNunca - nunca avisar sobre os radares"; "power_managment_title" = "Modo de economia de energia"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Máxima economia de energia"; +"enable_logging_warning_message" = "Esta opção ativa o registo das ações para diagnóstico. Pode ser útil para os programadores descobrirem o problema na aplicação. Ative esta opção apenas a pedido dos programadores do Organic Maps."; + +"access_rules_author_only" = "Edição online"; + "driving_options_title" = "Configurações de direção"; "driving_options_subheader" = "Evitar em todos os percursos"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Ordenar…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Ordenar favoritos"; + /* iOS */ "sort_default" = "Ordenação predefinida"; @@ -1086,6 +1345,18 @@ "sort_date" = "Ordenar por data"; +/* Android */ +"by_default" = "Predefinido"; + +/* Android */ +"by_type" = "Por tipo"; + +/* Android */ +"by_distance" = "Por distância"; + +/* Android */ +"by_date" = "Por data"; + "week_ago_sorttype" = "Uma semana atrás"; "month_ago_sorttype" = "Um mês atrás"; @@ -1132,6 +1403,8 @@ "religious_places" = "Lugares religiosos"; +"select_list" = "Selecionar lista"; + "transit_not_found" = "A navegação de metropolitano ainda não está disponível nesta região"; "dialog_pedestrian_route_is_long_header" = "Não foi encontrada nenhuma rota de metropolitano"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Dificuldade"; +"elevation_profile_distance" = "Distância:"; + "elevation_profile_time" = "Tempo:"; "isolines_toast_zooms_1_10" = "Amplie o mapa para ver as curvas de nível"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "A descarregar"; +"key_information_title" = "Informação importante"; + +"download_map_title" = "Descarregar o mapa mundial"; + +"connection_failure" = "Falha na coneção"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Permitir que o ecrã desligue"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Quando ativado, o ecrá poderá desligar-se após um período de inatividade."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Atualize os seus mapas descarregados"; @@ -1735,9 +2023,6 @@ "type.healthcare.laboratory" = "Laboratório médico"; - -/********** Types: Roads **********/ - "type.highway" = "Rodovia"; "type.highway.bridleway" = "Caminho para cavaleiros"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Estrada sem classificação"; -"type.area_highway.cycleway" = "Ciclovia"; - -"type.area_highway.footway" = "Caminho pedonal"; - -"type.area_highway.living_street" = "Zona de coexistência"; - -"type.area_highway.motorway" = "Autoestrada"; - -"type.area_highway.path" = "Caminho"; - -"type.area_highway.pedestrian" = "Rua pedonal"; - -"type.area_highway.primary" = "Estrada primária"; - -"type.area_highway.residential" = "Rua residencial"; - -"type.area_highway.secondary" = "Estrada secundária"; - -"type.area_highway.service" = "Estrada de acesso ou serviço"; - -"type.area_highway.tertiary" = "Estrada terciária"; - -"type.area_highway.steps" = "Escadas"; - -"type.area_highway.track" = "Pista para desportos não motorizados"; - -"type.area_highway.trunk" = "Via rápida"; - -"type.area_highway.unclassified" = "Estrada sem classificação"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Histórico"; "type.historic.archaeological_site" = "Sítio arqueológico"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Parque aquático"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Construção humana"; "type.man_made.breakwater" = "Molhe"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capital"; -"type.place.city.capital.10" = "Cidade"; +"type.place.city.capital.10" = "Capital"; -"type.place.city.capital.11" = "Cidade"; +"type.place.city.capital.11" = "Capital"; "type.place.city.capital.2" = "Capital"; -"type.place.city.capital.3" = "Cidade"; +"type.place.city.capital.3" = "Capital"; -"type.place.city.capital.4" = "Cidade"; +"type.place.city.capital.4" = "Capital de região autónoma"; -"type.place.city.capital.5" = "Cidade"; +"type.place.city.capital.5" = "Capital"; -"type.place.city.capital.6" = "Cidade"; +"type.place.city.capital.6" = "Sede de distrito"; -"type.place.city.capital.7" = "Cidade"; +"type.place.city.capital.7" = "Sede de município"; -"type.place.city.capital.8" = "Cidade"; +"type.place.city.capital.8" = "Sede de freguesia"; -"type.place.city.capital.9" = "Cidade"; +"type.place.city.capital.9" = "Capital"; "type.place.continent" = "Continente"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "Pista para trenós"; "type.building_part" = "Parte de edifício"; + +"type.area_highway.cycleway" = "Ciclovia"; + +"type.area_highway.footway" = "Caminho pedonal"; + +"type.area_highway.living_street" = "Zona de coexistência"; + +"type.area_highway.motorway" = "Autoestrada"; + +"type.area_highway.path" = "Caminho"; + +"type.area_highway.pedestrian" = "Rua pedonal"; + +"type.area_highway.primary" = "Estrada primária"; + +"type.area_highway.residential" = "Rua residencial"; + +"type.area_highway.secondary" = "Estrada secundária"; + +"type.area_highway.service" = "Estrada de acesso ou serviço"; + +"type.area_highway.tertiary" = "Estrada terciária"; + +"type.area_highway.steps" = "Escadas"; + +"type.area_highway.track" = "Pista para desportos não motorizados"; + +"type.area_highway.trunk" = "Via rápida"; + +"type.area_highway.unclassified" = "Estrada sem classificação"; diff --git a/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.stringsdict index a10b4e5250..245128d436 100644 --- a/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/pt.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -60,6 +60,23 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + one + %d lugar + other + %d lugares + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.strings index 1bc8c0d4b4..88e831e843 100644 --- a/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Înapoi"; + /* Button text (should be short) */ "cancel" = "Renunță"; @@ -17,6 +20,9 @@ "download_maps" = "Descarcă hărți"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Descărcarea a eșuat. Apasă pentru a încerca din nou."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Se descarcă…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Hărţi"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Mile"; @@ -36,14 +47,20 @@ "core_my_position" = "Poziția mea"; /* Update maps later/Buy pro version later button text */ -"later" = "Mai tîrziu"; +"later" = "Mai târziu"; /* View and button titles for accessibility */ "search" = "Caută"; +/* Search box placeholder text */ +"search_map" = "Caută pe hartă"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Da"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "În prezent, toate serviciile de localizare pentru acest aparat sau aplicație sînt dezactivate. Te rugăm să le activezi în Setări."; + /* View and button titles for accessibility */ "zoom_to_country" = "Arată pe hartă"; @@ -53,130 +70,198 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Descărcarea nu a reușit"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Încearcă din nou"; + "about_menu_title" = "Despre Organic Maps"; +"connection_settings" = "Opțiuni de conectare"; + "close" = "Închide"; +"unsupported_phone" = "Este necesară accelerarea hardware OpenGL. Din păcate, aparatul tău nu este compatibil."; + "download" = "Descarcă"; +"disconnect_usb_cable" = "Deconectează cablul USB sau introdu cartela de memorie pentru a utiliza Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Eliberează spațiu pe cartela SD/memoria USB pentru a putea utiliza aplicația"; + +"not_enough_memory" = "Memorie insuficientă pentru a porni aplicația"; + +"download_resources" = "Înainte de a începe, trebuie descărcată harta generală a lumii în aparatul tău.\nAre nevoie de %@ de date."; + +"download_resources_continue" = "Du-te la hartă"; + +"downloading_country_can_proceed" = "Se descarcă %@. Poți\ntrece la hartă."; + +"download_country_ask" = "Descarci %@?"; + +"update_country_ask" = "Actualizezi %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pauză"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Continuă"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "Descărcarea %@ nu a reușit"; + /* "Add new bookmark list" dialog title */ -"add_new_set" = "Adaugă o listă nouă"; +"add_new_set" = "Adăugare la „Marcaje”"; /* Bookmark Color dialog title */ -"bookmark_color" = "Culoare Loc preferat"; +"bookmark_color" = "Culoare marcaj"; /* Add Bookmark list dialog - hint when the list name is empty */ -"bookmark_set_name" = "Dă un nume listei"; +"bookmark_set_name" = "Nume set marcaje"; /* "Bookmark Lists" dialog title */ -"bookmark_sets" = "Liste cu locuri preferate"; +"bookmark_sets" = "Seturi marcaje"; /* "Bookmarks" dialog title */ -"bookmarks" = "Locuri preferate"; +"bookmarks" = "Marcaje"; /* Default bookmark list name */ "core_my_places" = "Locurile mele"; +/* Add bookmark dialog - bookmark name */ +"name" = "Nume"; + /* Editor title above street and house number */ -"address" = "Adresa"; +"address" = "Adresă"; + +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Set"; /* Settings button in system menu */ -"settings" = "Preferințe"; +"settings" = "Setări"; + +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Salvare hărți în"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Selectați locul în care doriți să fie descărcate hărțile."; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Mutare hărți?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Aceasta poate dura câteva minute.\nVă rugăm să așteptați…"; /* Measurement units title in settings activity */ "measurement_units" = "Unități de măsură"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Alegeți între mile și kilometri"; -/********** Search categories **********/ +/* Search category for cafes, bars, restaurants */ +"eat" = "Unde să mănânci"; -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ -"eat" = "Unde să mănînci"; +/* Search category for grocery stores */ +"food" = "Produse"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ -"food" = "Alimentare"; - -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transport"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ -"fuel" = "Benzinărie"; +/* Search category */ +"fuel" = "Benzină"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parcare"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ -"shopping" = "Magazine"; +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ +"shopping" = "Cumpărături"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Obiective turistice"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Divertisment"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Bancomat"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ -"nightlife" = "Viață nocturnă"; +/* Search category for nightclubs/bars */ +"nightlife" = "Viața nocturnă"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ -"children" = "Timp liber"; +/* Search category for water park/disneyland/playground/toys store */ +"children" = "Odihnă cu copii"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bancă"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Farmacie"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Spital"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toaletă"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Poştă"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ -"police" = "Poliția"; +/* Search category */ +"police" = "Poliție"; -"share_bookmarks_email_body" = "Bună!\n\nȚi-am atașat locurile mele preferate din aplicația Organic Maps. Deschide-le dacă ai instalat Organic Maps. Dacă nu, descarcă aplicația pentru iOS sau Android de aici: https://organicmaps.app/"; +/* Notes field in Bookmarks view */ +"description" = "Note"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Marcaje Organic Maps partajate"; + +"share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ -"load_kmz_title" = "Se încarcă locurile preferate"; +"load_kmz_title" = "Se încarcă marcajele"; /* Kmz file successful loading */ -"load_kmz_successful" = "Locuri preferate încărcate cu succes! Le poți găsi pe hartă sau în „Gestionare Locuri preferate”."; +"load_kmz_successful" = "Marcaje încărcate cu succes! Le puteți găsi pe hartă sau pe ecranul „Gestionare marcaje”."; /* Kml file loading failed */ -"load_kmz_failed" = "Încărcarea locurilor preferate a eșuat. Fișierul poate fi defect."; +"load_kmz_failed" = "Încărcarea marcajelor a eșuat. Fișierul poate fi corupt sau defect."; /* resource for context menu */ "edit" = "Modifică"; /* Warning message when doing search around current position */ -"unknown_current_position" = "Poziția ta nu a fost stabilită încă"; +"unknown_current_position" = "Poziția ta nu a fost stabilită încă."; + +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Ne pare rău. Setările pentru stocarea hărților sunt dezactivate în acest moment."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Descărcarea hărților pentru țara dorită este în curs."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hei, îmi poți vedea poziția actuală pe Organic Maps! %1$@ sau %2$@ Nu ai hărțile offline? Descarcă de aici: https://omaps.app/get"; /* Subject for emailed bookmark */ -"bookmark_share_email_subject" = "Poți vedea locul meu preferat pe harta Organic Maps!"; +"bookmark_share_email_subject" = "Hei, poți vedea care este poziția mea pe harta Organic Maps!"; /* Subject for emailed position */ -"my_position_share_email_subject" = "Poți vedea poziția mea pe harta Organic Maps!"; +"my_position_share_email_subject" = "Hei, îmi poți vedea poziția actuală pe harta Organic Maps!"; + +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Bună,\n\nAcum sunt aici: %1$@. Apasă pe adresa %2$@ sau pe %3$@ pentru a vedea locul pe hartă.\n\nMulțumesc."; /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ -"share" = "Trimite"; +"share" = "Partajare"; /* Share by email button text, also used in editor. */ "email" = "E-mail"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Copiat în clipboard: %1$@"; + /* place preview title */ -"info" = "Info"; +"info" = "Informații"; /* Used for bookmark editing */ "done" = "Gata"; @@ -185,20 +270,31 @@ "version" = "Versiune: %@"; /* Data version in «About» screen */ -"data_version" = "Versiune: %d"; +"data_version" = "Data version: %d"; + +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Sunteți sigur că doriți să continuați?"; /* Title for tracks category in bookmarks manager */ -"tracks_title" = "Trasee"; +"tracks_title" = "Rute"; /* Length of track in cell that describes route */ "length" = "Lungime"; -"share_my_location" = "Trimite poziția mea"; +"share_my_location" = "Partajează-mi poziția"; -"prefs_group_route" = "Navigare"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + +"prefs_group_route" = "Navigație"; "pref_zoom_title" = "Butoane zoom"; +"pref_zoom_summary" = "Afișare pe ecran"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Mod nocturn"; @@ -212,7 +308,7 @@ "pref_map_style_auto" = "Automat"; /* Settings «Map» category: «Perspective view» title */ -"pref_map_3d_title" = "Vedere în perspectivă"; +"pref_map_3d_title" = "Vizualizare în perspectivă"; /* Settings «Map» category: «3D buildings» title */ "pref_map_3d_buildings_title" = "Clădiri 3D"; @@ -223,11 +319,14 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Limba ghidului vocal"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Nu există"; + /* Title for "Other" section in TTS settings. */ -"pref_tts_other_section_title" = "Altceva"; +"pref_tts_other_section_title" = "Alta"; /* Settings «Map» category: «Record track» title */ -"pref_track_record_title" = "Traseu recent"; +"pref_track_record_title" = "Rute recente"; "pref_map_auto_zoom" = "Zoom automat"; @@ -243,11 +342,11 @@ "duration_1_day" = "1 zi"; -"recent_track_help_text" = "Permite înregistrarea traseului parcurs pentru o anumită perioadă de timp și să îl vezi pe hartă. Reține: activarea acestei funcții crește consumul bateriei. Traseul va fi eliminat automat de pe hartă după expirarea intervalului de timp."; +"recent_track_help_text" = "Vă permite să înregistrați traseul parcurs pentru o anumită perioadă și să îl vedeți pe hartă. Rețineți: activarea acestei funcții crește consumul bateriei. Traseul va fi eliminat automat de pe hartă după expirarea intervalului de timp."; "placepage_distance" = "Distanță"; -"search_show_on_map" = "Vezi pe hartă"; +"search_show_on_map" = "Vizualizare pe hartă"; /* Text in menu */ "website" = "Sit web"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -274,11 +379,17 @@ "feedback" = "Părere"; /* Text in menu */ -"rate_the_app" = "Evaluează aplicația"; +"rate_the_app" = "Votați-ne aplicația"; /* Text in menu */ "help" = "Ajutor"; +/* Button in the main Help dialog */ +"faq" = "Intrebari si raspunsuri"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Cum să ne sprijiniți?"; + /* Button in the main Help dialog */ "copyright" = "Drepturi de autor"; @@ -286,82 +397,99 @@ "report_a_bug" = "Raportează o eroare"; /* Alert text */ -"email_error_body" = "Nu a fost stabilită aplicația de e-mail. Stabilește-o sau utilizează alt mod de a ne contacta la %@."; +"email_error_body" = "Nu a fost stabilit programul de e-mail. Stabilește-l sau utilizează un alt mod de a ne contacta la %@."; /* Alert title */ -"email_error_title" = "Eroare trimitere e-mail"; +"email_error_title" = "Eroare trimitere e-mail."; /* Settings item title */ "pref_calibration_title" = "Calibrare busolă"; /* Search category */ -"wifi" = "Wi-Fi"; +"wifi" = "WiFi"; /* Update all button text */ "downloader_update_all_button" = "Actualizează tot"; +/* Cancel all button text */ +"downloader_cancel_all" = "Anulează tot"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Descărcate"; /* Downloaded maps category */ -"downloader_available_maps" = "Disponibilă"; +"downloader_available_maps" = "Disponibil"; /* Country queued for download */ -"downloader_queued" = "În așteptare"; +"downloader_queued" = "În lista de așteptare"; -"downloader_near_me_subtitle" = "Lîngă mine"; +"downloader_near_me_subtitle" = "Aproape de mine"; "downloader_status_maps" = "Hărți"; -"downloader_download_all_button" = "Descarcă tot"; +"downloader_download_all_button" = "Descărcați toate"; -"downloader_downloading" = "Se descarcă:"; +"downloader_downloading" = "Descărcare:"; -"downloader_search_results" = "Găsite"; +"downloader_search_results" = "S-au găsit"; /* Status of outdated country in the list */ -"downloader_status_outdated" = "Actualizează"; +"downloader_status_outdated" = "Actualizare"; /* Status of failed country in the list */ "downloader_status_failed" = "Eșuată"; /* Displayed in a dialog that appears when a user tries to delete a map while the app is in the follow route mode */ -"downloader_delete_map_while_routing_dialog" = "Pentru a șterge harta, oprește navigarea."; +"downloader_delete_map_while_routing_dialog" = "Pentru a șterge harta, vă rugăm să opriți navigarea."; /* PointsInDifferentMWM */ -"routing_failed_cross_mwm_building" = "Se pot crea numai trasee cuprinse în întregime în cadrul unei hărți a unei singure regiuni."; +"routing_failed_cross_mwm_building" = "Pot fi create doar rutele ce se află în întregime într-o singură hartă."; /* Context menu item for downloader. */ -"downloader_download_map" = "Descarcă harta"; +"downloader_download_map" = "Descărcați harta"; /* Item status in downloader. */ -"downloader_retry" = "Mai încearcă"; +"downloader_retry" = "Repetare"; /* Item in context menu. */ -"downloader_delete_map" = "Șterge harta"; +"downloader_delete_map" = "Ștergere hartă"; + +/* Item in context menu. */ +"downloader_update_map" = "Actualizare hartă"; + +/* Preference text */ +"pref_use_google_play" = "Utilizați serviciile Google Play, pentru a vă obține poziția actuală."; /* Text for rating dialog */ -"rating_just_rated" = "Tocmai v-am evaluat aplicația"; +"rating_just_rated" = "Tocmai ți-am votat aplicația"; /* Text for rating dialog */ -"rating_thanks" = "Mulțumim!"; +"rating_thanks" = "Îți mulțumim!"; /* Text for rating dialog */ -"rating_share_ideas" = "Comunică-ne ideile tale și problemele aplicației, pentru a o putea îmbunătăți pentru tine."; +"rating_share_ideas" = "Comunică-ne ideile tale și problemele aplicației, astfel încât să o putem îmbunătăți pentru tine."; /* Text for rating dialog */ -"rating_send_feedback" = "Trimite părerea"; +"rating_send_feedback" = "Trimitere feedback"; /* Text for routing error dialog */ -"routing_download_maps_along" = "Descarcă hărțile de pe traseu"; +"routing_download_maps_along" = "Descarcă hărțile adiacente rutei"; /* Text for routing error dialog */ -"routing_requires_all_map" = "Crearea unui traseu necesită ca toate hărțile de la poziția ta pînă la destinație să fie descărcate și actualizate."; +"routing_requires_all_map" = "Crearea unui traseu necesită ca toate hărțile de la locația dvs. până la destinație să fie descărcate și actualizate."; + +/* Text for routing error dialog */ +"routing_not_enough_space" = "Nu există spațiu suficient"; /* bookmark button text */ -"bookmark" = "preferat"; +"bookmark" = "marcaj"; -"save" = "Salvează"; +/* location service disabled */ +"enable_location_services" = "Vă rugăm să activați serviciile de localizare"; + +"save" = "Salvare"; + +"edit_description_hint" = "Your descriptions (text or html)"; "create" = "creează"; @@ -378,7 +506,7 @@ "green" = "Verde"; /* purple color */ -"purple" = "Violet"; +"purple" = "Purpuriu"; /* orange color */ "orange" = "Portocaliu"; @@ -390,19 +518,19 @@ "pink" = "Roz"; /* deep purple color */ -"deep_purple" = "Violet închis"; +"deep_purple" = "Purpuriu închis"; /* light blue color */ "light_blue" = "Albastru deschis"; /* cyan color */ -"cyan" = "Turcoaz"; +"cyan" = "Albastru-verziu"; /* teal color */ "teal" = "Smarald"; /* lime color */ -"lime" = "Verde aprins"; +"lime" = "Var"; /* deep orange color */ "deep_orange" = "Portocaliu închis"; @@ -419,150 +547,176 @@ /********** Routing dialogs strings **********/ -"dialog_routing_disclaimer_title" = "Cînd parcurgi traseul, ai în vedere următoarele:"; +"dialog_routing_disclaimer_title" = "Când urmaţi traseul, aveţi în vedere următoarele:"; -"dialog_routing_disclaimer_priority" = "— Condiţiile de drum, legile şi semnele rutiere sînt mai importante decît indicațiile navigatorului;"; +"dialog_routing_disclaimer_priority" = "— Condiţiile de drum, legile şi semnele rutiere sunt mai prioritare decât sfaturile de navigaţie;"; "dialog_routing_disclaimer_precision" = "— Harta poate să conţină greşeli şi traseul sugerat poate să nu fie cel mai bun pentru a ajunge la destinaţie;"; "dialog_routing_disclaimer_recommendations" = "— Traseele sugerate au numai rol de recomandări;"; -"dialog_routing_disclaimer_borders" = "— Ai grijă în zonele de graniță: traseele create de aplicația noastră ar putea, ocazional, să treacă granița prin locuri nepermise;"; +"dialog_routing_disclaimer_borders" = "— Aveți grijă în zonele de graniță: rutele create de aplicația noastră ar putea, ocazional, să treacă granița prin locuri nepermise;"; -"dialog_routing_disclaimer_beware" = "Fii vigilent şi condu în siguranţă!"; +"dialog_routing_disclaimer_beware" = "Rămâneţi vigilenţi şi conduceţi în siguranţă!"; -"dialog_routing_check_gps" = "Verifică semnalul GPS"; +"dialog_routing_check_gps" = "Verificaţi semnalul GPS"; -"dialog_routing_error_location_not_found" = "Crearea traseului a eşuat. Coordonatele GPS actuale nu au putut fi identificate."; +"dialog_routing_error_location_not_found" = "Crearea traseului a eşuat. Coordonatele GPS curente nu au putut fi identificate."; -"dialog_routing_location_turn_wifi" = "Verifică semnalul GPS. Pentru a îmbunătăţi precizia localizării, activează Wi-Fi."; +"dialog_routing_location_turn_wifi" = "Verificaţi semnalul GPS. Pentru a îmbunătăţi precizia localizării, activaţi Wi-Fi."; -"dialog_routing_location_turn_on" = "Activează serviciile de localizare"; +"dialog_routing_location_turn_on" = "Activaţi serviciile de localizare"; -"dialog_routing_location_unknown_turn_on" = "Localizarea coordonatelor GPS curente a eşuat. Pentru a calcula traseul, activează serviciile de localizare."; +"dialog_routing_location_unknown_turn_on" = "Localizarea coordonatelor GPS curente a eşuat. Pentru a calcula traseul, activaţi serviciile de localizare."; -"dialog_routing_download_files" = "Descarcă fişierele necesare"; +"dialog_routing_download_files" = "Descărcaţi fişierele necesare"; -"dialog_routing_download_and_update_all" = "Pentru calcularea traseului, descarcă şi actualizează toate hărţile şi informaţiile de stabilire a traseului pentru calea estimată."; +"dialog_routing_download_and_update_all" = "Pentru calcularea traseului, descărcaţi şi actualizaţi toate hărţile şi informaţiile de stabilire a traseului pentru calea estimată."; "dialog_routing_unable_locate_route" = "Localizarea traseului a eşuat"; -"dialog_routing_change_start_or_end" = "Schimbă punctul de plecare sau destinaţia."; +"dialog_routing_cant_build_route" = "Crearea traseului a eşuat."; -"dialog_routing_change_start" = "Schimbă punctul de plecare"; +"dialog_routing_change_start_or_end" = "Ajustaţi punctul iniţial sau destinaţia."; -"dialog_routing_start_not_determined" = "Traseul nu a fost creat. Localizarea punctului de plecare a eşuat."; +"dialog_routing_change_start" = "Ajustaţi punctul iniţial"; -"dialog_routing_select_closer_start" = "Alege un punct de plecare mai aproape de un drum."; +"dialog_routing_start_not_determined" = "Traseul nu a fost creat. Localizarea punctului iniţial a eşuat."; -"dialog_routing_change_end" = "Schimbă destinaţia"; +"dialog_routing_select_closer_start" = "Setaţi punctul iniţial mai aproape de un drum."; + +"dialog_routing_change_end" = "Ajustaţi destinaţia finală"; "dialog_routing_end_not_determined" = "Traseul nu a fost creat. Localizarea destinaţiei a eşuat."; -"dialog_routing_select_closer_end" = "Alege un punct de destinaţie mai aproape de un drum."; +"dialog_routing_select_closer_end" = "Setaţi un punct de destinaţie mai aproape de un drum."; "dialog_routing_change_intermediate" = "Punctul intermediar nu poate fi localizat."; -"dialog_routing_intermediate_not_determined" = "Schimbă punctul intermediar."; +"dialog_routing_intermediate_not_determined" = "Ajustați punctul intermediar."; -"dialog_routing_system_error" = "Eroare de sistem"; +"dialog_routing_system_error" = "Eroare sistem"; "dialog_routing_application_error" = "Crearea traseului a eşuat din cauza unei erori a aplicaţiei."; -"dialog_routing_try_again" = "Încearcă din nou"; +"dialog_routing_try_again" = "Încercaţi din nou"; "not_now" = "Nu acum"; -"dialog_routing_download_and_build_cross_route" = "Vrei să descarci harta şi să creezi un traseu mai bun care include mai multe hărți?"; +"dialog_routing_download_and_build_cross_route" = "Doriţi să descărcaţi harta şi să creaţi un traseu mai direct care include mai mult decât o hartă?"; -"dialog_routing_download_cross_route" = "Descarcă hărți suplimentare pentru a crea un traseu mai bun care să traverseze limitele acestei hărți."; +"dialog_routing_download_cross_route" = "Pentru a crea un traseu mai adecvat care trece de limita acestei hărţi, descărcaţi harta."; /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Pentru a putea începe căutarea și crearea unor rute, vă rugăm să descărcați harta, iar apoi nu veți mai avea nevoie de conexiune la internet."; + +"search_select_map" = "Selectați harta"; + /* «Show» context menu */ -"show" = "Arată"; +"show" = "Afișare"; /* «Hide» context menu */ -"hide" = "Ascunde"; +"hide" = "Ascundere"; /* Failed planning route message in navigation view */ -"routing_planning_error" = "Planificarea traseului a eșuat"; +"routing_planning_error" = "Planificarea rutei a eșuat"; /* Arrive routing message in navigation view */ -"routing_arrive" = "Sosire la %s"; +"routing_arrive" = "Sosire: %s"; /* Text for routing::RouterResultCode::FileTooOld dialog. */ -"dialog_routing_download_and_update_maps" = "Pentru a crea un traseu,descarcă și actualizează toate hărțile de pe parcursul traseului."; +"dialog_routing_download_and_update_maps" = "Pentru a crea o rută, vă rugăm să descărcați și să actualizați toate hărțile de pe parcursul rutei."; -"rate_alert_title" = "Îți place aplicația?"; +"rate_alert_title" = "Vă place aplicația?"; -"rate_alert_default_message" = "Îți mulțumim că folosești Organic Maps. Te rugăm să evaluezi aplicația. Comentariul tău ne ajută să devenim mai buni."; +"rate_alert_default_message" = "Vă mulțumim că folosiți Organic Maps. Vă rugăm să dați o notă aplicației. Comentariile dvs. ne ajută să devenim mai buni."; -"rate_alert_five_star_message" = "Ura! Și noi te iubim!"; +"rate_alert_five_star_message" = "Ura! Și noi vă iubim!"; -"rate_alert_four_star_message" = "Mulțumim, vom face tot ce ne stă în putință!"; +"rate_alert_four_star_message" = "Vă mulțumim, vom face tot ce ne stă în putință!"; -"rate_alert_less_than_four_star_message" = "Ai vreo idee prin care putem să îmbunătățim aplicația?"; +"rate_alert_less_than_four_star_message" = "Aveți vreo idee prin care putem să îmbunătățim aplicația?"; "categories" = "Categorii"; -"history" = "Cronologia"; +"history" = "Istoric"; "closed" = "Închis"; -"search_not_found" = "Nu s-a găsit nimic."; +"search_not_found" = "Ne pare rău, nu s-au găsit rezultate."; -"search_not_found_query" = "Caută altfel."; +"search_not_found_query" = "Vă rugăm să încercați altă căutare."; -"search_history_title" = "Cronologia căutărilor"; +"search_history_title" = "Istoricul căutărilor"; -"search_history_text" = "Arată căutările recente."; +"search_history_text" = "Accesare rapidă a căutărilor recente."; -"clear_search" = "Șterge cronologia căutărilor"; +"clear_search" = "Ștergere istoric de căutare"; -"p2p_your_location" = "Poziția ta"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; -"p2p_start" = "Pornește"; +"p2p_your_location" = "Locația dvs."; -"p2p_from_here" = "De la"; +"p2p_start" = "Start"; -"p2p_to_here" = "La"; +"p2p_from_here" = "Din"; -"p2p_only_from_current" = "Navigația este disponibilă doar avînd ca punct de plecare poziția ta actuală."; +"p2p_to_here" = "Ruta la"; -"p2p_reroute_from_current" = "Vrei să planificăm un traseu din poziția ta actuală?"; +"p2p_only_from_current" = "Navigația este disponibilă doar având ca punct de pornire locațiacctuală."; -"editor_time_add" = "Adaugă planificare"; +"p2p_reroute_from_current" = "Doriți să vă planificăm o rută având ca punct de pornire locația actuală?"; -"editor_time_delete" = "Elimină planificarea"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Următoarea"; + +"editor_time_add" = "Adăugare planificare"; + +"editor_time_delete" = "Eliminare planificare"; /* Text for allday switch. */ -"editor_time_allday" = "Toată ziua (24 ore)"; +"editor_time_allday" = "Toată ziua (non-stop)"; -"editor_time_open" = "Deschis"; +"editor_time_open" = "Deschidere"; -"editor_time_close" = "Închis"; +"editor_time_close" = "Închidere"; -"editor_time_add_closed" = "Adaugă ore de închidere"; +"editor_time_add_closed" = "Adăugare oră de închidere"; -"editor_time_title" = "Ore de deschidere"; +"editor_time_title" = "Program"; "editor_time_advanced" = "Mod Avansat"; "editor_time_simple" = "Mod Simplu"; -"editor_hours_closed" = "Ore de închidere"; +"editor_hours_closed" = "Ora închiderii"; -"editor_example_values" = "Exemple"; +"editor_example_values" = "Exemple de valori"; -"editor_add_select_location" = "Poziția"; +"editor_correct_mistake" = "Corectare greșeală"; -"editor_done_dialog_1" = "Ai modificat harta lumii. Nu ascunde acest lucru! Spune-le prietenilor și modificați-o împreună."; +"editor_add_select_location" = "Locație"; -"share_with_friends" = "Trimite prietenilor"; +"editor_done_dialog_1" = "Ați modificat harta lumii. Nu ascundeți acest lucru! Spuneți-le prietenilor dvs. și modificați-o împreună."; -"editor_report_problem_send_button" = "Trimite"; +"share_with_friends" = "Partajează cu prietenii"; + +"editor_report_problem_desription_1" = "Vă rugăm să descrieți problema în detaliu, astfel încât comunitatea OpenStreeMap să poată remedia eroarea."; + +"editor_report_problem_desription_2" = "Sau faceți-o pe https://www.openstreetmap.org/"; + +"editor_report_problem_send_button" = "Trimiteți"; + +"editor_report_problem_title" = "Problemă"; + +"editor_report_problem_no_place_title" = "Această locație nu există"; + +"editor_report_problem_under_construction_title" = "Închis pentru întreținere"; + +"editor_report_problem_duplicate_place_title" = "Locație dublată"; "autodownload" = "Descărcare automată"; @@ -572,7 +726,7 @@ /* Place Page opening hours text */ "daily" = "Zilnic"; -"twentyfour_seven" = "24/7"; +"twentyfour_seven" = "Zi și noapte"; "day_off_today" = "Astăzi închis"; @@ -580,164 +734,187 @@ "today" = "Azi"; -"add_opening_hours" = "Adaugă ore de funcționare"; +"add_opening_hours" = "Adăugare ore de funcționare"; -"no_osm_account" = "Nu ai un cont OpenStreetMap?"; +"edit_opening_hours" = "Editare ore de funcționare"; -"register_at_openstreetmap" = "Înscrie-te"; +"no_osm_account" = "Nu aveți un cont în OpenStreetMap?"; -"password_8_chars_min" = "Parola (minim 8 caractere)"; +"register_at_openstreetmap" = "Înregistrați-vă"; + +"password_8_chars_min" = "Parolă (minim 8 caractere)"; "invalid_username_or_password" = "Nume de utilizator sau parolă incorecte."; "login" = "Autentificare"; -"forgot_password" = "Ai uitat parola?"; +"password" = "Parolă"; + +"forgot_password" = "Ați uitat parola?"; "osm_account" = "Cont OSM"; -"logout" = "Deconectare"; +"logout" = "Ieșire"; /* Information text: "Last upload 11.01.2016" */ "last_upload" = "Ultima încărcare"; -"thank_you" = "Mulțumesc"; +"thank_you" = "Vă mulțumim"; -"edit_place" = "Modifică locul"; +"edit_place" = "Editați loc"; -"place_name" = "Numele locului"; +"place_name" = "Denumire loc"; -"add_language" = "Adaugă o limbă"; +"add_language" = "Adăugare limbă"; + +"street" = "Stradă"; /* Editable House Number text field (in address block). */ -"house_number" = "Număr"; +"house_number" = "Număr casă"; "details" = "Detalii"; /* Text field to enter non-existing street name, below list of known streets around */ -"add_street" = "Adaugă o stradă"; +"add_street" = "Adăugare stradă"; -"choose_language" = "Alege o limbă"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; -"choose_street" = "Alege o stradă"; +"choose_language" = "Alegeți o limbă"; -"postal_code" = "Cod poștal"; +"choose_street" = "Alegeți o stradă"; + +"postal_code" = "Cod postal"; "cuisine" = "Bucătărie"; -"select_cuisine" = "Alege bucătăria"; +"select_cuisine" = "Selectați tipul de bucătărie"; /* login text field */ -"email_or_username" = "E-mail sau nume de utilizator"; +"email_or_username" = "Adresa de email sau numele de utilizator"; "phone" = "Telefon"; -"please_note" = "Reține"; +"editor_add_phone" = "Add Phone"; -"downloader_delete_map_dialog" = "Toate modificările aduse hărții vor fi șterse împreună cu harta."; +"please_note" = "Actualizați hărțile"; -"downloader_update_maps" = "Actualizează hărțile"; +"downloader_delete_map_dialog" = "Pentru a crea un traseu, trebuie să actualizați toate hărțile, iar apoi să planificați traseul încă o dată."; -"downloader_search_field_hint" = "Caută harta"; +"downloader_update_maps" = "Actualizați hărțile"; + +"downloader_mwm_migration_dialog" = "Pentru a crea un traseu, trebuie să actualizați toate hărțile, iar apoi să planificați traseul încă o dată."; + +"downloader_search_field_hint" = "Găsiți harta"; "migration_download_error_dialog" = "Eroare de descărcare"; -"common_check_internet_connection_dialog" = "Verifică dacă aparatul tău este conectat la internet."; +"common_check_internet_connection_dialog" = "Vă rugăm să vă verificați setările și să vă asigurați că dispozitivul dvs. este conectat la Internet."; "downloader_no_space_title" = "Spațiu insuficient"; -"downloader_no_space_message" = "Șterge datele care nu sînt necesare"; +"downloader_no_space_message" = "Vă rugăm să ștergeți datele care nu sunt necesare"; + +"editor_login_error_dialog" = "Eroare de conectare."; "editor_profile_changes" = "Modificări confirmate"; -"editor_focus_map_on_location" = "Trage de hartă pentru a alege poziția corectă a obiectului."; +"editor_focus_map_on_location" = "Trageți de hartă pentru a selecta locația corectă a obiectului."; -"editor_add_select_category" = "Alege categoria"; +"editor_add_select_category" = "Selectați categoria"; "editor_add_select_category_popular_subtitle" = "Popular"; "editor_add_select_category_all_subtitle" = "Toate categoriile"; -"editor_edit_place_title" = "Modifică"; +"editor_edit_place_title" = "Editare"; -"editor_add_place_title" = "Adaugă"; +"editor_add_place_title" = "Adăugare"; -"editor_edit_place_name_hint" = "Numele locului"; +"editor_edit_place_name_hint" = "Denumirea locației"; "editor_edit_place_category_title" = "Categorie"; -"whatsnew_editor_message_1" = "Adaugă locuri noi pe hartă și modifică-le pe cele existente direct din aplicație."; +"detailed_problem_description" = "Descrierea detaliată a problemei"; -"dialog_incorrect_feature_position" = "Schimbă poziția"; +"editor_report_problem_other_title" = "O problemă diferită"; -"message_invalid_feature_position" = "Niciun obiect nu poate fi poziționat aici"; +"placepage_add_business_button" = "Adăugare organizație"; -"login_to_make_edits_visible" = "Autentifică-te pentru ca modificările pe care le-ai făcut să poată fi văzute și de alți utilizatori."; +"whatsnew_editor_message_1" = "Adăugați locuri noi pe hartă și modificați-le pe cele existente direct din aplicație."; + +"dialog_incorrect_feature_position" = "Schimbare locație"; + +"message_invalid_feature_position" = "În acest loc nu poate fi localizat un obiect"; + +"login_to_make_edits_visible" = "Autentificați-vă pentru ca modificările pe care le-ați efectuat să poată fi văzute și de alți utilizatori."; /* Error dialog no space */ -"migration_no_space_message" = "Ai nevoie de mai mult spațiu pentru a descărca. Trebuie să ștergi toate datele inutile."; +"migration_no_space_message" = "Aveți nevoie de mai mult spațiu ca să descărcați. Vă rugăm să ștergeți toate informațiile inutile."; "editor_sharing_title" = "Am îmbunătățit hărțile Organic Maps"; /* Downloaded 10 **of** 20 <- it is that "of" */ "downloader_of" = "%1$d din %2$d"; -"download_over_mobile_header" = "Vrei să descarci prin rețeaua de telefonie mobilă?"; +"download_over_mobile_header" = "Descărcați utilizând o conexiune prin rețeaua de telefonie mobilă?"; -"download_over_mobile_message" = "Aceasta poate fi destul de costisitoare în cazul unor abonamente sau în roaming."; +"download_over_mobile_message" = "Aceasta poate fi destul de costisitoare în cazul unor abonamente sau dacă sunteți pe roaming."; -"error_enter_correct_house_number" = "Introdu un număr corect"; +"error_enter_correct_house_number" = "Introduceți numărul corect al casei"; -"editor_storey_number" = "Număr de etaje (maximum %d)"; +"editor_storey_number" = "Număr de etaje (max %d)"; /* Error message in Editor when a user tries to set the number of floors for a building higher than 25 */ -"error_enter_correct_storey_number" = "Numărul de etaje nu trebuie să depășească 25"; +"error_enter_correct_storey_number" = "Editare clădire cu maximum 25 de etaje"; "editor_zip_code" = "Cod poștal"; -"error_enter_correct_zip_code" = "Introdu codul poștal corect"; +"error_enter_correct_zip_code" = "Introduceți codul poștal corect"; /* Place Page title for long tap */ "core_placepage_unknown_place" = "Loc necunoscut"; -"editor_other_info" = "Trimite un mesaj către OSM"; +"editor_other_info" = "Trimite o notă editorilor OSM"; "editor_detailed_description_hint" = "Comentariu detaliat"; -"editor_detailed_description" = "Modificările aduse hărții, sugerate de tine, vor fi trimise comunității OpenStreetMap. Descrie orice detalii suplimentare care nu pot fi modificate în Organic Maps."; +"editor_detailed_description" = "Modificările sugerate vor trimise către comunitatea OpenStreetMap. Descrieți detalii ce nu pot fi adăugate în be the details which cannot be edited in Organic Maps."; "editor_more_about_osm" = "Mai multe despre OpenStreetMap"; -"editor_operator" = "Proprietar"; +"editor_operator" = "Operator"; -"downloader_no_downloaded_maps_title" = "Nu ai descărcat nicio hartă"; +"downloader_my_maps_title" = "Hărțile mele"; -"downloader_no_downloaded_maps_message" = "Descarcă hărți pentru a căuta un loc și a naviga fără conectare la internet."; +"downloader_no_downloaded_maps_title" = "Nu ați descărcat nicio hartă"; + +"downloader_no_downloaded_maps_message" = "Descărcați hărți pt. a găsi locația și navigați offline."; /* Error title that appears after certain time without location. */ -"current_location_unknown_title" = "Continui cu detectarea poziției tale actuale?"; +"current_location_unknown_title" = "Continuați cu detectarea locației dvs. curente?"; /* Error that appears after certain time without location. */ -"current_location_unknown_message" = "Poziția actuală este necunoscută. Poate te afli într-o clădire sau un tunel."; +"current_location_unknown_message" = "Locația curentă este necunoscută. Poate vă aflați într-o clădire sau un tunel."; -"current_location_unknown_continue_button" = "Continuă"; +"current_location_unknown_continue_button" = "Continuare"; -"current_location_unknown_stop_button" = "Oprește"; +"current_location_unknown_stop_button" = "Oprire"; -"current_location_unknown_error_title" = "Poziția actuală este necunoscută."; +"current_location_unknown_error_title" = "Locația curentă este necunoscută."; -"current_location_unknown_error_message" = "S-a produs o eroare la căutarea poziției tale. Verifică dacă aparatul funcționează corect și încearcă din nou."; +"current_location_unknown_error_message" = "S-a produs o eroare la căutarea locației. Verificați dacă dispozitivul funcționează corect și încercați din nou."; -"location_services_disabled_header" = "Serviciile de localizare sînt dezactivate"; +"location_services_disabled_header" = "Geolocalizarea este dezactivată"; -"location_services_disabled_message" = "Activează accesul la geolocalizare din reglările aparatului"; +"location_services_disabled_message" = "Activaţi accesul la geolocalizare din setările dispozitivului"; -"location_services_disabled_1" = "1. Deschide reglările"; +"location_services_disabled_1" = "1. Deschideți setările"; -"location_services_disabled_2" = "2. Apasă pe Localizare"; +"location_services_disabled_2" = "2. Apăsați pe Localizare"; /* iOS Dialog for the case when the location permission is not granted */ -"location_services_disabled_3" = "3. Alege „În timp ce folosești aplicația”"; +"location_services_disabled_3" = "3. Selectați în timp ce folosiți aplicația"; "meter" = "m"; @@ -751,137 +928,176 @@ "miles_per_hour" = "mph"; +"hour" = "o"; + +"minute" = "min"; + "placepage_place_description" = "Descriere"; -"placepage_more_button" = "Mai mult"; +"placepage_more_button" = "Mai multe"; + +"placepage_more_reviews_button" = "Mai multe recenzii"; "book_button" = "Rezervare"; -"placepage_call_button" = "Apelează"; +"placepage_call_button" = "Apel"; -"placepage_edit_bookmark_button" = "Modifică locul preferat"; +"placepage_edit_bookmark_button" = "Editare marcaj"; -"placepage_bookmark_name_hint" = "Numele locului preferat"; +"placepage_bookmark_name_hint" = "Nume marcaj"; -"placepage_personal_notes_hint" = "Însemnări personale"; +"placepage_personal_notes_hint" = "Note personale"; -"placepage_delete_bookmark_button" = "Șterge locul preferat"; +"placepage_delete_bookmark_button" = "Ștergere marcaj"; "editor_edits_sent_message" = "Modificările sugerate au fost trimise"; "editor_comment_hint" = "Comentariu…"; -"editor_reset_edits_message" = "Ștergi toate modificările locale?"; +"editor_reset_edits_message" = "Resetați toate modificările locale?"; -"editor_reset_edits_button" = "Șterge"; +"editor_reset_edits_button" = "Resetare"; -"editor_remove_place_message" = "Elimini locul adăugat?"; +"editor_remove_place_message" = "Eliminați locul adăugat?"; -"editor_remove_place_button" = "Elimină"; +"editor_remove_place_button" = "Eliminare"; "editor_place_doesnt_exist" = "Locul nu există"; -"text_more_button" = "…mai mult"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + +"text_more_button" = "…mai multe"; /* Phone number error message */ -"error_enter_correct_phone" = "Introdu un număr de telefon corect"; +"error_enter_correct_phone" = "Introduceți numărul de telefon corect"; -"error_enter_correct_web" = "Introdu o adresă web corectă"; +"error_enter_correct_web" = "Introduceți o adresă web validă"; -"error_enter_correct_email" = "Introdu un e-mail valabil"; +"error_enter_correct_email" = "Introduceți o adresă de email validă"; -"refresh" = "Actualizează"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; -"placepage_add_place_button" = "Adaugă un loc pe hartă"; +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + +"refresh" = "Actualizați"; + +"placepage_add_place_button" = "Adăugați un loc pe hartă"; /* Displayed when saving some edits to the map to warn against publishing personal data */ -"editor_share_to_all_dialog_title" = "Vrei să-l trimiți tuturor utilizatorilor?"; +"editor_share_to_all_dialog_title" = "Doriți să îl trimiteți tuturor utilizatorilor?"; /* iOS Dialog before publishing the modifications to the public map. */ -"editor_share_to_all_dialog_message_1" = "Asigură-te că nu ai introdus niciun fel de date personale."; +"editor_share_to_all_dialog_message_1" = "Asigurați-vă că nu ați introdus niciun fel de date personale."; -"editor_share_to_all_dialog_message_2" = "Vom verifica modificările. Dacă vor apărea întrebări, te vom contacta prin e-mail."; +"editor_share_to_all_dialog_message_2" = "Vom verifica modificările. Dacă vor apărea întrebări, vă vom contacta prin email."; -"navigation_stop_button" = "oprește"; +"navigation_stop_button" = "stop"; /* iOS dialog for the case when recent track recording is on and the app comes back from background */ -"recent_track_background_dialog_title" = "Dezactivezi înregistrarea celui mai recent traseu efectuat?"; +"recent_track_background_dialog_title" = "Dezactivați înregistrarea celui mai recent traseu urmat?"; -"off_recent_track_background_button" = "Dezactivează"; +"off_recent_track_background_button" = "Dezactivare"; /* For sharing via SMS and so on */ -"sharing_call_action_look" = "Verifică"; +"sharing_call_action_look" = "Aruncați o privire"; -"recent_track_background_dialog_message" = "Organic Maps folosește poziția ta geografică pentru a înregistra cel mai recent traseu urmat."; +"recent_track_background_dialog_message" = "Organic Maps folosește în fundal geo-locația pentru a înregistra cel mai recent traseu urmat."; /* Text under the version number in the Help dialog. */ -"about_description" = "Organic Maps este o aplicație gratuită și cod sursă public care permite descărcarea hărților și navigare fără internet. Fără reclame. Fără urmărire. Dacă vezi o eroare pe hartă, te rugăm să o corectezi în OpenStreetMap. Proiectul este creat de entuziaști în timpul nostru liber, așa că avem nevoie de părerea și sprijinul tău."; +"about_description" = "Organic Maps este o aplicație gratuită și open source pentru hărți offline. Fără reclame. Fără urmărire. Dacă vedeți o eroare pe hartă, remediați-o în OpenStreetMap. Proiectul este creat de entuziaști în timpul nostru liber, așa că avem nevoie de feedback-ul și asistența dvs.."; -"general_settings" = "Opțiuni generale"; +"general_settings" = "Setări generale"; /* For the first routing */ -"accept" = "Acceptă"; +"accept" = "Acceptați"; /* For the first routing */ -"decline" = "Refuză"; +"decline" = "Refuzați"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Listă"; -"mobile_data_dialog" = "Folosești internetul mobil pentru a vedea informaţii detaliate?"; +"mobile_data_dialog" = "Folosiți internetul mobil pentru a afişa informaţii detaliate?"; -"mobile_data_option_always" = "Folosește mereu"; +"mobile_data_option_always" = "Folosiți întotdeauna"; "mobile_data_option_today" = "Doar astăzi"; -"mobile_data_option_not_today" = "Nu folosi astăzi"; +"mobile_data_option_not_today" = "Nu folosiți astăzi"; "mobile_data" = "Internet mobil"; "mobile_data_description" = "Internetul mobil este necesar pentru afişarea de informaţii detaliate despre locuri, precum fotografii, preţuri şi recenzii."; -"mobile_data_option_never" = "Nu utiliza niciodată"; +"mobile_data_option_never" = "Nu utilizați niciodată"; -"mobile_data_option_ask" = "Întreabă mereu"; +"mobile_data_option_ask" = "Întrebați întotdeauna"; "traffic_update_maps_text" = "Pentru a afişa datele privind traficul, hărțile trebuie actualizate."; -"big_font" = "Mărește literele pe hartă"; +"big_font" = "Măriți dimensiunea fontului pe hartă"; + +"traffic_update_app" = "Vă rugăm să actualizaţi Organic Maps"; /* "traffic" as in road congestion */ "traffic_update_app_message" = "Pentru a afişa datele privind traficul, aplicația trebuie actualizată."; /* "traffic" as in "road congestion" */ -"traffic_data_unavailable" = "Datele privind traficul nu sînt disponibile"; +"traffic_data_unavailable" = "Datele privind traficul nu sunt disponibile"; + +"enable_logging" = "Activare jurnalizare"; /* Settings: "Send general feedback" button */ -"feedback_general" = "Părere generală"; +"feedback_general" = "Feedback general"; -"on" = "Pornit"; +"on" = "Activat"; -"off" = "Oprit"; +"off" = "Dezactivat"; -"transliteration_title" = "Transcrie în alfabet latin"; +"prefs_languages_information" = "Pentru instrucțiuni vocale utilizăm sistemul TTS. Multe dispozitive cu Android folosesc Google TTS. Puteți descărca sau actualiza aplicația din Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Pentru unele limbi trebuie să instalați alt sintetizator de voce sau un pachet lingvistic suplimentar din Magazinul de aplicații (Google Play Market, Samsung Apps).\nDeschideți setările aplicației → Limbă și introducere → Voce → Conversie text în voce.\nAici puteți administra setările pentru sintetizatoarele vocale (de exemplu, descărcați pachetul lingvistic pentru utilizare offline) și selectați alt motor de conversie din text în voce."; + +"prefs_languages_information_off_link" = "Consultați acest ghid pentru informații suplimentare."; + +"transliteration_title" = "Transcriere în alfabet latin"; + +"learn_more" = "Mai multe"; "core_exit" = "Ieșire"; -"routing_add_start_point" = "Adaugă un punct de plecare pentru a planifica un traseu"; +"routing_add_start_point" = "Adăugați punctul de plecare pentru a planifica un traseu"; -"routing_add_finish_point" = "Adaugă un punct de sosire pentru a planifica un traseu"; +"routing_add_finish_point" = "Adăugați punctul de sosire pentru a planifica un traseu"; -"planning_route_manage_route" = "Gestionare traseu"; +"button_exit" = "Ieșire"; -"button_plan" = "Planifică"; +"planning_route_manage_route" = "Administrare traseu"; -"placepage_remove_stop" = "Elimină"; +"button_plan" = "Planificare"; -"planning_route_remove_title" = "Trage aici pentru a elimina"; +"placepage_remove_stop" = "Eliminare"; -"placepage_add_stop" = "Adaugă oprire"; +"planning_route_remove_title" = "Trageți aici pentru a elimina"; -"start_from_my_position" = "Pornește de la"; +"placepage_add_stop" = "Adăugare oprire"; -"profile_authorization_error" = "A apărut o eroare. Încearcă să te conectezi din nou."; +"start_from_my_position" = "Începând de la"; + +"profile_authorization_error" = "Ups, a survenit o eroare. Încercați să vă conectați din nou."; + +"dialog_error_storage_title" = "Problemă de accesare spațiu de stocare"; + +"dialog_error_storage_message" = "Spațiul de stocare extern nu este disponibil. Probabil cardul SD nu este introdus, este deteriorat sau sistemul de fișiere este read-only. Verifică și contactează-ne la support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emulare stocare eronată"; "core_entrance" = "Intrare"; @@ -890,53 +1106,74 @@ "bookmark_lists" = "Liste"; /* Do not display all bookmark lists on the map */ -"bookmark_lists_hide_all" = "Ascunde tot"; +"bookmark_lists_hide_all" = "Ascundere toate"; -"bookmark_lists_show_all" = "Arată tot"; +"bookmark_lists_show_all" = "Afișare toate"; -"bookmarks_create_new_group" = "Creează o listă nouă"; +"bookmarks_create_new_group" = "Creați o listă nouă"; -"downloader_hide_screen" = "Ascunde pagina"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + +"downloader_hide_screen" = "Ascundere ecran"; "downloader_percent" = "%s (%s din %s)"; -"downloader_process" = "Se descarcă %s…"; +"downloader_process" = "Descărcare %s…"; -"downloader_applying" = "Se aplică %s…"; +"downloader_applying" = "Aplicare %s…"; -"bookmarks_error_message_share_general" = "Imposibil de trimis din cauza unei erori a aplicației"; +"bookmarks_error_message_share_general" = "Imposibil de distribuit din cauza unei erori a aplicației"; -"bookmarks_error_title_share_empty" = "Eroare la trimitere"; +"bookmarks_error_title_share_empty" = "Eroare la distribuire"; -"bookmarks_error_message_share_empty" = "Nu se poate trimite o listă goală"; +"bookmarks_error_message_share_empty" = "Nu se poate distribui o listă goală"; -"bookmarks_error_message_empty_list_name" = "Introdu numele listei"; +"bookmarks_error_title_empty_list_name" = "Numele nu poate fi gol"; -"bookmarks_error_title_list_name_already_taken" = "Acest nume este deja ales"; +"bookmarks_error_message_empty_list_name" = "Introduceți numele listei"; -"bookmarks_error_title_list_name_too_long" = "Acest nume e prea lung"; +"bookmarks_new_list_hint" = "Lista nouă"; + +"bookmarks_error_title_list_name_already_taken" = "Acest nume este deja luat"; + +"bookmarks_error_message_list_name_already_taken" = "Alegeți un alt nume"; + +"bookmarks_error_title_list_name_too_long" = "Acest nume este prea lung"; + +"please_wait" = "Te rog asteapta…"; + +"phone_number" = "Numar de telefon"; "profile" = "Profil OpenStreetMap"; "bookmarks_detect_title" = "Au fost detectate fișiere noi"; -"button_convert" = "Convertește"; +"button_convert" = "Convertit"; "bookmarks_convert_error_title" = "Eroare"; "bookmarks_convert_error_message" = "Unele fișiere nu au fost convertite."; -"bookmarks_restore_title" = "Restabilești această versiune?"; +"bookmarks_restore_title" = "Restabiliți această versiune?"; -"error_system_message" = "A apărut o eroare necunoscută"; +"common_check_internet_connection_dialog_title" = "Fără conexiune internet"; -"restore" = "Restabilește"; +"error_system_message" = "O eroare necunoscută s-a întamplat"; -"privacy_policy" = "Confidențialitate"; +"restore" = "Restabili"; + +"subtittle_opt_out" = "Setări de servire"; + +"crash_reports" = "Rapoarte de eroare"; + +"crash_reports_description" = "Putem folosi datele dvs. pentru a dezvolta și de a îmbunătăți Organic Maps. Modificările vor intra în vigoare după repornirea aplicației."; + +"privacy_policy" = "Politica de confidențialitate"; "terms_of_use" = "Termeni de utilizare"; -"button_layer_traffic" = "Trafic"; +"button_layer_traffic" = "Dopuri"; "button_layer_subway" = "Metrou"; @@ -944,25 +1181,37 @@ "subway_data_unavailable" = "Harta de metrou nu este disponibilă"; +"bookmarks_empty_list_title" = "Lista este goală"; + +"bookmarks_empty_list_message" = "Pentru a adăuga un nou tag, faceți clic pe pictograma stea în fișa de obiect"; + +"category_desc_more" = "…mai mult"; + "title_error_downloading_bookmarks" = "A apărut o eroare"; -"popular_place" = "Populare"; +"popular_place" = "Popular"; -"export_file" = "Exportă fișierul"; +"export_file" = "Exportați fișierul"; -"list_settings" = "Opțiunile listei"; +"list_settings" = "Elaborarea listei"; -"delete_list" = "Șterge lista"; +"delete_list" = "Ștergerea listei"; -"hide_from_map" = "Ascunde de pe hartă"; +"hide_from_map" = "Ascundeți de pe hartă"; -"bookmark_list_description_hint" = "Adaugă o descriere (text sau html)"; +"public_access" = "Acces public"; -"tags_loading_error_subtitle" = "A apărut o eroare la încărcarea etichetelor, încearcă din nou"; +"limited_access" = "Acces privat"; -"download_button" = "Descarcă"; +"bookmark_list_description_hint" = "Adăugați o descriere (text sau html)"; -"speedcams_alert_title" = "Radare"; +"not_shared" = "Personal"; + +"tags_loading_error_subtitle" = "În timpul încărcării tag-urilor s-a produs o eroare, vă rugăm să încercați încă odată"; + +"download_button" = "Descărcați"; + +"speedcams_alert_title" = "Camere de supraveghere video a vitezei"; "speedcam_option_auto" = "Auto"; @@ -972,137 +1221,159 @@ "place_description_title" = "Descrierea locului"; -"speedcams_notice_message" = "Auto - Avertizează cu privire la radare dacă există riscul depășirii limitei de viteză\nMereu - Avertizează mereu cu privire la radare\nNiciodată - Nu avertiza niciodată cu privire la radare"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Încărcarea hărților"; -"power_managment_title" = "Economisire a energiei"; +"speedcams_notice_message" = "Auto - De avertizat despre camerele video de înregistrare a vitezei, dacă există riscul depășirii limitei de viteză\nMereu - De avertizat întotdeauna despre camerele video\nNiciodată - De nu avertizat niciodată despre camerele video"; -"power_managment_description" = "Dacă este pornit modul de economisire a energiei, aplicația va deconecta caracteristicile care consumă multă energie în funcție de nivelul de încărcare a bateriei"; +"power_managment_title" = "Modul de economisire a energiei"; + +"power_managment_description" = "Dacă este pornit modul de economisire a energiei, aplicația va deconecta funcțiile care consumă multă energie în dependență de încărcarea bateriei telefonice"; "power_managment_setting_never" = "Niciodată"; -"power_managment_setting_auto" = "Automat"; +"power_managment_setting_auto" = "Auto"; "power_managment_setting_manual_max" = "Economisire maximă a energiei"; -"driving_options_title" = "Opțiuni de ocolire"; +"enable_logging_warning_message" = "Aceasta opțiune se pornește pentru logarea acțiunii în scopul diagnosticării. Aceasta va ajuta echipei să găsească problemele legate de aplicație. Conectați opțiunea numai la solicitarea serviciului de suport Organic Maps."; + +"access_rules_author_only" = "Se editează online"; + +"driving_options_title" = "Setarea ocolirii"; "driving_options_subheader" = "De evitat pe orice traseu"; "avoid_tolls" = "Drumuri cu plată"; -"avoid_unpaved" = "Drum neasfaltat"; +"avoid_unpaved" = "Drum de țară"; "avoid_ferry" = "Trecere cu bac"; -"avoid_motorways" = "Autostrăzi"; +"avoid_motorways" = "Magistrale"; -"unable_to_calc_alert_title" = "Imposibil de creat un traseu"; +"unable_to_calc_alert_title" = "Imposibil de elaborat un traseu"; -"unable_to_calc_alert_subtitle" = "Din păcate, nu reușim să elaborăm un traseu cu opțiunile alese. Modifică-le și încearcă din nou."; +"unable_to_calc_alert_subtitle" = "Din păcate, nu reușim să elaborăm un traseu cu opțiunile alese. Modificați setările și încercați încă o dată"; -"define_to_avoid_btn" = "Stabilește drumurile de evitat"; +"define_to_avoid_btn" = "Setați căile de ocolire"; -"change_driving_options_btn" = "Opțiuni de ocolire activate"; +"change_driving_options_btn" = "Setarea ocolirii este activată"; "toll_road" = "Drum cu plată"; -"unpaved_road" = "Drum neasfaltat"; +"unpaved_road" = "Drum de țară"; "ferry_crossing" = "Trecere cu bac"; -"avoid_toll_roads_placepage" = "Evită drumurile cu plată"; +"avoid_toll_roads_placepage" = "De evitat drumurile cu plată"; -"avoid_unpaved_roads_placepage" = "Evită drumurile neasfaltate"; +"avoid_unpaved_roads_placepage" = "De evitat drumurile de țară"; -"avoid_ferry_crossing_placepage" = "Evită trecerile cu bac"; +"avoid_ferry_crossing_placepage" = "De evitat trecerile cu bac"; -"trip_start" = "Să mergem"; +"trip_start" = "Mergem"; -"pick_destination" = "Destinație"; +"pick_destination" = "Scop"; -"follow_my_position" = "Centrează"; +"follow_my_position" = "Centrați"; "search_results" = "Rezultatul căutării"; "then_turn" = "După"; -"redirect_route_alert" = "Vrei să refaci traseul?"; +"redirect_route_alert" = "Doriți să refaceți traseul?"; "redirect_route_yes" = "Da"; "redirect_route_no" = "Nu"; -"trip_finished" = "Ai ajuns!"; +"trip_finished" = "Ați sosit!"; -"keyboard_availability_alert" = "Tastatura nu este accesibilă în timpul deplasării"; +"keyboard_availability_alert" = "Tastiera nu este accesibilă în timpul deplasării"; -"dialog_routing_change_start_carplay" = "Imposibil de alcătuit traseul de la locul în care te afli"; +"dialog_routing_change_start_carplay" = "Este imposibil de elabora traseul de la punctul de aflare"; -"dialog_routing_change_end_carplay" = "Imposibil de alcătuit traseul către destinația aleasă. Alege altă destinație."; +"dialog_routing_change_end_carplay" = "Este imposibil de elaborat traseu până la punctul de sosire. Selectați altul"; -"dialog_routing_check_gps_carplay" = "Nu este semnal GPS. Mergi la loc deschis."; +"dialog_routing_check_gps_carplay" = "Nu este semnal GPS. Mergeți la loc deschis"; -"dialog_routing_unable_locate_route_carplay" = "Imposibil de alcătuit un traseu. Alege alte puncte ale traseului"; +"dialog_routing_unable_locate_route_carplay" = "Este imposibil de elaborat un traseu. Selectați alte puncte ale traseului"; -"dialog_routing_download_files_carplay" = "Pentru a crea un traseu, descarcă hărțile lipsă în aparatul tău"; +"dialog_routing_download_files_carplay" = "Pentru noi trasee, încărcați hărțile lipsa pe dispozitivul dvs."; -"dialog_routing_system_error_carplay" = "Eroare. Repornește aplicația."; +"dialog_routing_system_error_carplay" = "Eroare. Restartați aplicația"; -"dialog_routing_rebuild_from_current_location_carplay" = "Traseul va fi refăcut de la locul în care te afli"; +"dialog_routing_rebuild_from_current_location_carplay" = "Traseul se va reface de la locul actual al aflării dvs"; -"dialog_routing_rebuild_for_vehicle_carplay" = "Traseul va fi înlocuit cu unul pentru autovehicule"; +"dialog_routing_rebuild_for_vehicle_carplay" = "Traseul va fi modificat cu unul automobilistic"; -"ok" = "Bine"; +"ok" = "Ok"; -"avoid_unpaved_carplay_1" = "Fără neasfaltate"; +"avoid_unpaved_carplay_1" = "Fără neasfal"; -"avoid_unpaved_carplay_2" = "Fără neasfaltate"; +"avoid_unpaved_carplay_2" = "Fără neasfaltat"; "avoid_ferry_carplay_1" = "Fără bacuri"; "avoid_ferry_carplay_2" = "Fără bacuri"; -"avoid_tolls_carplay_1" = "Drum gratis"; +"avoid_tolls_carplay_1" = "Gratis"; -"avoid_tolls_carplay_2" = "Drum gratis"; +"avoid_tolls_carplay_2" = "Gratis"; -"speedcams_alert_title_carplay_1" = "Radare"; +"speedcams_alert_title_carplay_1" = "Cameră video"; -"speedcams_alert_title_carplay_2" = "Info radare"; +"speedcams_alert_title_carplay_2" = "Info camere"; -"download_map_carplay" = "Descarcă hărțile în aplicația Organic Maps din aparatul tău"; +"download_map_carplay" = "Vă rugăm să descărcați hărțile în aplicația Organic Maps de pe dispozitivul dvs."; "carplay_roundabout_exit" = "%s ieșire"; /* max. 10 symbols, both iOS and Android */ -"sort" = "Sortare…"; +"sort" = "Sortați…"; + +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Sortați inscripțiile"; /* iOS */ -"sort_default" = "Aranjare prestabilită"; +"sort_default" = "Sortați la modul implicit"; -"sort_type" = "Aranjare după tip"; +"sort_type" = "Sortați după dip"; -"sort_distance" = "Aranjare după distanță"; +"sort_distance" = "Sortați după distanță"; -"sort_date" = "Aranjare după dată"; +"sort_date" = "Sortați după dată"; -"week_ago_sorttype" = "Acum o săptămînă"; +/* Android */ +"by_default" = "Mod implicit"; -"month_ago_sorttype" = "Acum o lună"; +/* Android */ +"by_type" = "După tip"; -"moremonth_ago_sorttype" = "Acum mai mult de o lună"; +/* Android */ +"by_distance" = "După distanță"; -"moreyear_ago_sorttype" = "Cu peste un an în urmă"; +/* Android */ +"by_date" = "După dată"; -"near_me_sorttype" = "Lîngă mine"; +"week_ago_sorttype" = "O săptămână în urmă"; + +"month_ago_sorttype" = "O lună în urmă"; + +"moremonth_ago_sorttype" = "Mai mult de o lună în urmă"; + +"moreyear_ago_sorttype" = "Mai mult de un an în urmă"; + +"near_me_sorttype" = "Alături de mine"; "others_sorttype" = "Altele"; -"food_places" = "Mîncare"; +"food_places" = "Mâncare"; -"tourist_places" = "Obiective turistice"; +"tourist_places" = "Locuri faimoase"; -"museums" = "Muzee"; +"museums" = "Muzeu"; "parks" = "Parcuri"; @@ -1126,23 +1397,25 @@ "water" = "Apă"; -"medicine" = "Farmacii"; +"medicine" = "Medicină"; -"search_in_the_list" = "Caută în listă"; +"search_in_the_list" = "Căutați în listă"; "religious_places" = "Locuri sfinte"; +"select_list" = "Alegeți lista"; + "transit_not_found" = "Navigarea pentru metrou nu este încă disponibilă în această regiune"; -"dialog_pedestrian_route_is_long_header" = "Traseul metroului nu a fost găsit"; +"dialog_pedestrian_route_is_long_header" = "Ruta metroului nu a fost găsită"; -"dialog_pedestrian_route_is_long_message" = "Alege un punct de plecare sau de sosire mai aproape de o stație de metrou"; +"dialog_pedestrian_route_is_long_message" = "Selectați punctul de început sau de sfârșit al rutei mai aproape de stația de metrou"; "button_layer_isolines" = "Înălțimi"; -"isolines_activation_error_dialog" = "Pentru a activa și utiliza stratul topografic actualizează sau descarcă harta zonei"; +"isolines_activation_error_dialog" = "Pentru a utiliza liniile de înălțimi, actualizați sau descărcați harta zonei dorite"; -"isolines_location_error_dialog" = "Stratul topografic nu este încă disponibil în această zonă"; +"isolines_location_error_dialog" = "Liniile de înălțimi pană ce nu sunt disponibile în această regiune"; "elevation_profile_diff_level" = "Nivel de dificultate"; @@ -1154,45 +1427,60 @@ "elevation_profile_ascent" = "Urcare"; -"elevation_profile_descent" = "Coborîre"; +"elevation_profile_descent" = "Coborâre"; -"elevation_profile_minaltitude" = "Înălțime minimă"; +"elevation_profile_minaltitude" = "Înălțime min."; -"elevation_profile_maxaltitude" = "Înălțime maximă"; +"elevation_profile_maxaltitude" = "Înălțime max."; "elevation_profile_difficulty" = "Dificultate"; +"elevation_profile_distance" = "Dist.:"; + "elevation_profile_time" = "Timp:"; -"isolines_toast_zooms_1_10" = "Mărește harta pentru a vedea contururile"; +"isolines_toast_zooms_1_10" = "Măriți harta pentru a vedea contururile"; -"downloader_updating_ios" = "Se actualizează"; +"downloader_updating_ios" = "Actualizare"; -"downloader_loading_ios" = "Se descarcă"; +"downloader_loading_ios" = "Încărcare"; + +"key_information_title" = "Informații importante"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Permiteți ecranului să doarmă"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Când este activat, ecranul va fi lăsat să doarmă după o perioadă de inactivitate."; /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Actualizează hărțile descărcate"; /* Autoupdate dialog on start */ -"whats_new_auto_update_message" = "Actualizarea hărților menține actualizate informațiile despre obiecte"; +"whats_new_auto_update_message" = "Actualizarea hărților vă ajută să păstrați actualizate informațiile despre obiecte"; /* Autoupdate dialog on start */ -"whats_new_auto_update_button_size" = "Actualizează (%s)"; +"whats_new_auto_update_button_size" = "Actualizare (%s)"; /* Autoupdate dialog on start */ -"whats_new_auto_update_button_later" = "Actualizează manual mai tîrziu"; +"whats_new_auto_update_button_later" = "Actualizare manuală mai târziu"; /* Delete track button on track edit screen */ -"placepage_delete_track_button" = "Elimină traseul"; +"placepage_delete_track_button" = "Delete Track"; /* Placeholder for track name input on track edit screen */ -"placepage_track_name_hint" = "Numele traseului"; +"placepage_track_name_hint" = "Track Name"; /* move track or bookmark from the list button text */ -"move" = "Mută"; +"move" = "Move"; /* edit track screen title */ -"track_title" = "Traseu"; +"track_title" = "Rută"; /********** Types **********/ @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Laborator medical"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Stație de autobuz"; "type.highway.construction" = "Drum în construcție"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Stradă"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Detector de viteză"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Stradă"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Cale"; - -"type.area_highway.living_street" = "Stradă"; - -"type.area_highway.motorway" = "Stradă"; - -"type.area_highway.path" = "Cale"; - -"type.area_highway.pedestrian" = "Stradă"; - -"type.area_highway.primary" = "Stradă"; - -"type.area_highway.residential" = "Stradă"; - -"type.area_highway.secondary" = "Stradă"; - -"type.area_highway.service" = "Stradă"; - -"type.area_highway.tertiary" = "Stradă"; - -"type.area_highway.steps" = "Cale"; - -"type.area_highway.track" = "Stradă"; - -"type.area_highway.trunk" = "Stradă"; - -"type.area_highway.unclassified" = "Stradă"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Sit arheologic"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Parc acvatic"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Capitală"; -"type.place.city.capital.10" = "Municipiu"; +"type.place.city.capital.10" = "Capitală"; -"type.place.city.capital.11" = "Municipiu"; +"type.place.city.capital.11" = "Capitală"; "type.place.city.capital.2" = "Capitală"; -"type.place.city.capital.3" = "Municipiu"; +"type.place.city.capital.3" = "Capitală"; -"type.place.city.capital.4" = "Municipiu"; +"type.place.city.capital.4" = "Capitală"; -"type.place.city.capital.5" = "Municipiu"; +"type.place.city.capital.5" = "Capitală"; -"type.place.city.capital.6" = "Municipiu"; +"type.place.city.capital.6" = "Capitală"; -"type.place.city.capital.7" = "Municipiu"; +"type.place.city.capital.7" = "Capitală"; -"type.place.city.capital.8" = "Municipiu"; +"type.place.city.capital.8" = "Capitală"; -"type.place.city.capital.9" = "Municipiu"; +"type.place.city.capital.9" = "Capitală"; "type.place.continent" = "Continent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Clădire"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.stringsdict index b268ea8ac7..69d55b21f4 100644 --- a/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/ro.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -19,10 +19,8 @@ NSStringPluralRuleType NSStringFormatValueTypeKey d - one - %d preferat other - %d preferate + %d semne de carte @@ -37,9 +35,9 @@ NSStringFormatValueTypeKey d one - A fost găsit %d fișier. Îl vei vedea după conversiune. + %d fișier a fost găsit. Veți vedea după conversie. other - Au fost găsite %d fișiere. Le vei vedea după conversiune. + Au fost găsite %d fișiere. Veți vedea după convertire. @@ -53,10 +51,23 @@ NSStringPluralRuleType NSStringFormatValueTypeKey d - one - %d obiect other - %d obiecte + %d localitate + + + + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d localităti @@ -70,10 +81,8 @@ NSStringPluralRuleType NSStringFormatValueTypeKey d - one - %d traseu other - %d trasee + %d bande diff --git a/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.strings index 4a0e01b898..24897e91b3 100644 --- a/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Назад"; + /* Button text (should be short) */ "cancel" = "Отмена"; @@ -17,6 +20,9 @@ "download_maps" = "Загрузить карты"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Ошибка загрузки. Нажмите, чтобы повторить попытку"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Загружается…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Карты"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "МБ"; + +"gb" = "ГБ"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Мили"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Поиск"; +/* Search box placeholder text */ +"search_map" = "Поиск на карте"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Да"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Геолокация выключена в настройках устройства. Пожалуйста, включите её для удобного использования программы."; + /* View and button titles for accessibility */ "zoom_to_country" = "Показать на карте"; @@ -53,26 +70,55 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Ошибка загрузки"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Попробуйте еще раз"; + "about_menu_title" = "О программе"; +"connection_settings" = "Настройки подключения"; + "close" = "Закрыть"; +"unsupported_phone" = "Для работы приложения необходим аппаратно ускоренный OpenGL. К сожалению, ваше устройство не поддерживается."; + "download" = "Загрузить"; +"disconnect_usb_cable" = "Отключите USB кабель или вставьте SD-карту"; + +"not_enough_free_space_on_sdcard" = "Недостаточно свободного места на SD карте/в памяти устройства для использования программы"; + +"not_enough_memory" = "Недостаточно памяти для запуска программы"; + +"download_resources" = "Перед началом работы разрешите нам загрузить общую карту мира на ваше устройство.\nЭто потребует %@ данных."; + +"download_resources_continue" = "Перейти на карту"; + +"downloading_country_can_proceed" = "Пока загружается %@,\nвы можете пользоваться картой."; + +"download_country_ask" = "Загрузить %@?"; + +"update_country_ask" = "Обновить %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Приостановить"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Продолжить"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "Не удалось загрузить %@"; + /* "Add new bookmark list" dialog title */ -"add_new_set" = "Добавить список"; +"add_new_set" = "Добавить группу"; /* Bookmark Color dialog title */ "bookmark_color" = "Цвет метки"; /* Add Bookmark list dialog - hint when the list name is empty */ -"bookmark_set_name" = "Название списка меток"; +"bookmark_set_name" = "Название группы"; /* "Bookmark Lists" dialog title */ -"bookmark_sets" = "Списки меток"; +"bookmark_sets" = "Группы меток"; /* "Bookmarks" dialog title */ "bookmarks" = "Метки"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Мои Метки"; +/* Add bookmark dialog - bookmark name */ +"name" = "Название"; + /* Editor title above street and house number */ "address" = "Адрес"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Группа"; + /* Settings button in system menu */ "settings" = "Настройки"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Сохранять карты в"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Выберите место, где будут храниться загруженные карты"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Переместить карты?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Это может занять несколько минут.\nПожалуйста, подождите…"; + /* Measurement units title in settings activity */ "measurement_units" = "Единицы измерения"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Использовать километры или мили"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Где поесть"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Продукты"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Транспорт"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Заправка"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Парковка"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Шоппинг"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Гостиница"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Достопримечательность"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Развлечения"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Банкомат"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Ночная жизнь"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Отдых с детьми"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Банк"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Аптека"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Больница"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Туалет"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Почта"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Полиция"; +/* Notes field in Bookmarks view */ +"description" = "Примечание"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "С вами поделились метками Organic Maps"; + "share_bookmarks_email_body" = "Здравствуйте!\n\nВ прикрепленном файле мои метки из офлайновых карт Organic Maps. Для того чтобы открыть этот файл, вам потребуется приложение Organic Maps, которое можно установить по ссылке: https://omaps.app/get?kmz\n\nСпасибо!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Ваше местоположение еще не определено"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Извините, настройки места хранения карт сейчас недоступны."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Идет процесс загрузки карт."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Смотри где я сейчас. Жми %1$@ или %2$@"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Смотри мою метку на карте Organic Maps"; /* Subject for emailed position */ "my_position_share_email_subject" = "Посмотри на карте Organic Maps, где я сейчас нахожусь"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Привет!\n\nЯ сейчас здесь: %1$@. Чтобы увидеть это место на карте Organic Maps, открой эту ссылку %2$@ или эту %3$@\n\nСпасибо."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Поделиться"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Скопировано в буфер обмена: %1$@"; + /* place preview title */ "info" = "Информация"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Версия данных: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Вы уверены, что хотите продолжить?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Треки"; @@ -195,10 +283,18 @@ "share_my_location" = "Поделиться местоположением"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Общие настройки"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Информация"; + "prefs_group_route" = "Навигация"; "pref_zoom_title" = "Кнопки масштаба"; +"pref_zoom_summary" = "Показать на карте"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Ночной режим"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Язык подсказок"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Не доступны"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Другой"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Справка"; +/* Button in the main Help dialog */ +"faq" = "Вопросы и ответы"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Как наc поддержать?"; + /* Button in the main Help dialog */ "copyright" = "Копирайт"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Обновить все"; +/* Cancel all button text */ +"downloader_cancel_all" = "Отменить все"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Загруженные"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Удалить карту"; +/* Item in context menu. */ +"downloader_update_map" = "Обновить карту"; + +/* Preference text */ +"pref_use_google_play" = "Использовать Google Play Services для определения позиции"; + /* Text for rating dialog */ "rating_just_rated" = "Я только что оценил Organic Maps"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Для создания маршрута необходимо загрузить и обновить все карты на пути следования."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Недостаточно места"; + /* bookmark button text */ "bookmark" = "метка"; +/* location service disabled */ +"enable_location_services" = "Пожалуйста, включите геолокацию"; + "save" = "Сохранить"; +"edit_description_hint" = "Ваше описание (текст или html)"; + "create" = "создать"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Маршрут не найден"; +"dialog_routing_cant_build_route" = "Не получилось построить маршрут."; + "dialog_routing_change_start_or_end" = "Пожалуйста, измените начальную или конечную точку маршрута."; "dialog_routing_change_start" = "Измените начальную точку маршрута"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Для поиска мест и построения маршрутов скачайте карту, и интернет вам больше не понадобится."; + +"search_select_map" = "Выбрать карту"; + /* «Show» context menu */ "show" = "Показать"; @@ -521,6 +655,9 @@ "clear_search" = "Очистить историю поиска"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Ваше местоположение"; "p2p_start" = "Начать"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Хотите перестроить маршрут от вашего местоположения?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Далее"; + "editor_time_add" = "Добавить расписание"; "editor_time_delete" = "Удалить расписание"; @@ -556,14 +696,28 @@ "editor_example_values" = "Примеры значений"; +"editor_correct_mistake" = "Исправьте ошибку"; + "editor_add_select_location" = "Местоположение"; "editor_done_dialog_1" = "Вы изменили карту мира. Не скрывайте это, расскажите друзьям и редактируйте вместе."; "share_with_friends" = "Поделиться с друзьями"; +"editor_report_problem_desription_1" = "Пожалуйста, напишите подробно о проблеме, чтобы сообщество OpenStreetMap исправило ошибку."; + +"editor_report_problem_desription_2" = "Или сделайте это самостоятельно на сайте https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Отправить"; +"editor_report_problem_title" = "Проблема"; + +"editor_report_problem_no_place_title" = "Места не существует"; + +"editor_report_problem_under_construction_title" = "Закрыто на ремонт"; + +"editor_report_problem_duplicate_place_title" = "Повторяющееся место"; + "autodownload" = "Автоматическая загрузка"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Добавить время работы"; +"edit_opening_hours" = "Редактировать время работы"; + "no_osm_account" = "Не зарегистрированы в OpenStreetMap?"; "register_at_openstreetmap" = "Зарегистрироваться"; @@ -592,6 +748,8 @@ "login" = "Войти"; +"password" = "Пароль"; + "forgot_password" = "Забыли пароль?"; "osm_account" = "OSM Аккаунт"; @@ -609,6 +767,8 @@ "add_language" = "Добавить язык"; +"street" = "Улица"; + /* Editable House Number text field (in address block). */ "house_number" = "Номер дома"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Добавить улицу"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Введите название улицы"; + "choose_language" = "Выбрать язык"; "choose_street" = "Выбрать улицу"; @@ -632,12 +795,16 @@ "phone" = "Телефон"; +"editor_add_phone" = "Добавить телефон"; + "please_note" = "Обратите внимание"; "downloader_delete_map_dialog" = "Вместе с картой удалятся и внесенные вами правки на этой карте."; "downloader_update_maps" = "Обновите карты"; +"downloader_mwm_migration_dialog" = "Для построения маршрутов необходимо обновить все карты и построить маршрут заново."; + "downloader_search_field_hint" = "Найти карту"; "migration_download_error_dialog" = "Ошибка загрузки"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Удалите ненужные данные"; +"editor_login_error_dialog" = "Произошла ошибка при авторизации."; + "editor_profile_changes" = "Учтённые правки"; "editor_focus_map_on_location" = "Потяните карту, чтобы выбрать правильное местоположение объекта."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Категория"; +"detailed_problem_description" = "Подробное описание проблемы"; + +"editor_report_problem_other_title" = "Другая проблема"; + +"placepage_add_business_button" = "Добавить организацию"; + "whatsnew_editor_message_1" = "Добавляйте новые объекты и редактируйте старые прямо из приложения."; "dialog_incorrect_feature_position" = "Измените местоположение"; @@ -710,6 +885,8 @@ "editor_operator" = "Владелец"; +"downloader_my_maps_title" = "Мои карты"; + "downloader_no_downloaded_maps_title" = "У вас нет загруженных карт"; "downloader_no_downloaded_maps_message" = "Загрузите необходимые карты, чтобы находить места и пользоваться навигацией без интернета."; @@ -751,10 +928,16 @@ "miles_per_hour" = "ми/ч"; +"hour" = "ч"; + +"minute" = "мин"; + "placepage_place_description" = "Описание"; "placepage_more_button" = "Ещё"; +"placepage_more_reviews_button" = "Ещё отзывы"; + "book_button" = "Забронировать"; "placepage_call_button" = "Позвонить"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Места не существует"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Пожалуйста, укажите причину удаления"; + "text_more_button" = "…ещё"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Введите корректный email"; +"error_enter_correct_facebook_page" = "Введите корректный веб-адрес Facebook страницы или имя пользователя"; + +"error_enter_correct_instagram_page" = "Введите корректный веб-адрес Instagram страницы или имя пользователя"; + +"error_enter_correct_twitter_page" = "Введите корректный веб-адрес Twitter страницы или имя пользователя"; + +"error_enter_correct_vk_page" = "Введите корректный веб-адрес VK страницы или имя пользователя"; + +"error_enter_correct_line_page" = "Введите корректный веб-адрес LINE страницы или LINE ID"; + "refresh" = "Обновить"; "placepage_add_place_button" = "Добавить место на карту"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Отклонить"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Список"; "mobile_data_dialog" = "Загружать дополнительную информацию через мобильный интернет?"; @@ -848,12 +1044,16 @@ "big_font" = "Увеличить шрифт на карте"; +"traffic_update_app" = "Обновите Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Для отображения пробок необходимо обновить приложение."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Данные о пробках недоступны"; +"enable_logging" = "Включить запись логов"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Отправить отзыв"; @@ -861,14 +1061,24 @@ "off" = "Выкл."; +"prefs_languages_information" = "Подсказки озвучиваются системным синтезатором речи (TTS). На многих устройствах используется Google TTS, его можно загрузить или обновить в Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Для некоторых языков, возможно, необходимо установить дополнительный синтезатор речи (TTS) из магазина приложений (Google Play Market, Samsung Apps).\nЧтобы настроить синтезатор речи, перейдите в Настройки → Язык и ввод → Синтез речи.\nЗдесь можно установить дополнительные языковые пакеты или выбрать синтезатор речи."; + +"prefs_languages_information_off_link" = "Более подробная информация — в этом руководстве."; + "transliteration_title" = "Латинская транслитерация"; +"learn_more" = "Узнать больше"; + "core_exit" = "Выход"; "routing_add_start_point" = "Добавьте стартовую точку, чтобы построить маршрут"; "routing_add_finish_point" = "Добавьте конечную точку, чтобы построить маршрут"; +"button_exit" = "Выход"; + "planning_route_manage_route" = "Изменить маршрут"; "button_plan" = "Построить"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Упс, произошла ошибка. Попробуйте авторизоваться повторно."; +"dialog_error_storage_title" = "Проблема с доступом к хранилищу"; + +"dialog_error_storage_message" = "Внешняя память устройства недоступна, возможно SD карта была удалена, повреждена или файловая система доступна только для чтения. Проверьте это и свяжитесь, пожалуйста, с нами support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Эмуляция ошибки с внешней памятью"; + "core_entrance" = "Вход"; "error_enter_correct_name" = "Пожалуйста, введите название правильно"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Создать новый список"; +/* Bookmark categories screen */ +"bookmarks_import" = "Импортировать метки"; + "downloader_hide_screen" = "Скрыть"; "downloader_percent" = "%s (%s из %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Нельзя делиться пустыми списками"; +"bookmarks_error_title_empty_list_name" = "Имя списка не может быть пустым"; + "bookmarks_error_message_empty_list_name" = "Введите имя списка, пожалуйста"; +"bookmarks_new_list_hint" = "Новый список"; + "bookmarks_error_title_list_name_already_taken" = "Такое имя уже занято"; +"bookmarks_error_message_list_name_already_taken" = "Выберите, пожалуйста, другое имя"; + "bookmarks_error_title_list_name_too_long" = "Слишком длинное название"; +"please_wait" = "Пожалуйста, подождите…"; + +"phone_number" = "Номер телефона"; + "profile" = "Профиль OpenStreetMap"; "bookmarks_detect_title" = "Обнаружены новые файлы"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Восстановить эту версию?"; +"common_check_internet_connection_dialog_title" = "Нет интернет соединения"; + "error_system_message" = "Произошла неизвестная ошибка"; "restore" = "Восстановить"; +"subtittle_opt_out" = "Настройки сопровождения"; + +"crash_reports" = "Отчеты об ошибках"; + +"crash_reports_description" = "Мы можем использовать ваши данные, чтобы развивать и улучшать Organic Maps. Изменения вступят в силу после перезапуска приложения."; + "privacy_policy" = "Политика конфиденциальности"; "terms_of_use" = "Условия использования"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Карта метро недоступна"; +"bookmarks_empty_list_title" = "Список пустой"; + +"bookmarks_empty_list_message" = "Чтобы добавить новую метку, нажмите на значок звездочки в карточке объекта"; + +"category_desc_more" = "…еще"; + "title_error_downloading_bookmarks" = "Произошла ошибка"; "popular_place" = "Популярно"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Скрыть с карты"; +"public_access" = "Публичный доступ"; + +"limited_access" = "Ограниченный доступ"; + "bookmark_list_description_hint" = "Добавьте описание (текст или html)"; +"not_shared" = "Личный"; + "tags_loading_error_subtitle" = "Во время загрузки тегов произошла ошибка, пожалуйста, попробуйте еще раз"; "download_button" = "Скачать"; @@ -972,6 +1221,9 @@ "place_description_title" = "Описание места"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Загрузка карт"; + "speedcams_notice_message" = "Авто - Предупреждать о камерах скорости, если есть риск превышения скоростного лимита\nВсегда - Всегда предупреждать о камерах\nНикогда - Никогда не предупреждать о камерах"; "power_managment_title" = "Режим энергосбережения"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Максимальное энергосбережение"; +"enable_logging_warning_message" = "Данная настройка включается для записи действий в целях диагностики, чтобы помочь нашей команде выявить проблемы с приложением. Временно включайте эту настройку только для отправки детальной информации о найденной вами проблеме в приложении."; + +"access_rules_author_only" = "Редактируется онлайн"; + "driving_options_title" = "Настройки объезда"; "driving_options_subheader" = "Избегать в каждом маршруте"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Сортировать…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Сортировать метки"; + /* iOS */ "sort_default" = "Сортировать по умолчанию"; @@ -1086,6 +1345,18 @@ "sort_date" = "Сортировать по дате"; +/* Android */ +"by_default" = "По умолчанию"; + +/* Android */ +"by_type" = "По типу"; + +/* Android */ +"by_distance" = "По расстоянию"; + +/* Android */ +"by_date" = "По дате"; + "week_ago_sorttype" = "Неделю назад"; "month_ago_sorttype" = "Месяц назад"; @@ -1132,6 +1403,8 @@ "religious_places" = "Святые места"; +"select_list" = "Выбрать список"; + "transit_not_found" = "Навигация на метро ещё недоступна в данном регионе"; "dialog_pedestrian_route_is_long_header" = "Маршрут метро не найден"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Сложность"; +"elevation_profile_distance" = "Расст.:"; + "elevation_profile_time" = "В пути:"; "isolines_toast_zooms_1_10" = "Увеличьте карту, чтобы увидеть изолинии"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Загрузка"; +"key_information_title" = "Ключевая информация"; + +"download_map_title" = "Скачать карту мира"; + +"connection_failure" = "Ошибка подключения"; + +"disconnect_usb_cable_title" = "Отсоедините USB кабель"; + +"enable_screen_sleep" = "Разрешить экрану спать"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "При включении экран может переходить в спящий режим после периода бездействия."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Обновите ваши загруженные карты"; @@ -1735,18 +2023,15 @@ "type.healthcare.laboratory" = "Медицинская лаборатория"; - -/********** Types: Roads **********/ - "type.highway" = "Дорога"; -"type.highway.bridleway" = "Конная дорожка"; +"type.highway.bridleway" = "Дорога для всадников"; -"type.highway.bridleway.bridge" = "Конная дорожка"; +"type.highway.bridleway.bridge" = "Дорога для всадников"; -"type.highway.bridleway.permissive" = "Конная дорожка"; +"type.highway.bridleway.permissive" = "Дорога для всадников"; -"type.highway.bridleway.tunnel" = "Конная дорожка"; +"type.highway.bridleway.tunnel" = "Дорога для всадников"; "type.highway.bus_stop" = "Остановка"; @@ -1764,21 +2049,21 @@ "type.highway.footway" = "Пешеходная дорожка"; -"type.highway.footway.alpine_hiking" = "Тропа"; +"type.highway.footway.alpine_hiking" = "Пешеходная дорожка"; -"type.highway.footway.area" = "Пешеходная зона"; +"type.highway.footway.area" = "Пешеходная дорожка"; "type.highway.footway.bridge" = "Пешеходная дорожка"; -"type.highway.footway.demanding_alpine_hiking" = "Тропа"; +"type.highway.footway.demanding_alpine_hiking" = "Пешеходная дорожка"; -"type.highway.footway.demanding_mountain_hiking" = "Тропа"; +"type.highway.footway.demanding_mountain_hiking" = "Пешеходная дорожка"; -"type.highway.footway.difficult_alpine_hiking" = "Тропа"; +"type.highway.footway.difficult_alpine_hiking" = "Пешеходная дорожка"; -"type.highway.footway.hiking" = "Тропа"; +"type.highway.footway.hiking" = "Пешеходная дорожка"; -"type.highway.footway.mountain_hiking" = "Тропа"; +"type.highway.footway.mountain_hiking" = "Пешеходная дорожка"; "type.highway.footway.permissive" = "Пешеходная дорожка"; @@ -1786,69 +2071,69 @@ "type.highway.ford" = "Брод"; -"type.highway.living_street" = "Жилая зона"; +"type.highway.living_street" = "Улица"; -"type.highway.living_street.bridge" = "Жилая зона"; +"type.highway.living_street.bridge" = "Улица"; -"type.highway.living_street.tunnel" = "Жилая зона"; +"type.highway.living_street.tunnel" = "Улица"; -"type.highway.motorway" = "Автомагистраль"; +"type.highway.motorway" = "Улица"; -"type.highway.motorway.bridge" = "Автомагистраль"; +"type.highway.motorway.bridge" = "Улица"; -"type.highway.motorway.tunnel" = "Автомагистраль"; +"type.highway.motorway.tunnel" = "Улица"; "type.highway.motorway_junction" = "Съезд"; -"type.highway.motorway_link" = "Съезд с автомагистрали"; +"type.highway.motorway_link" = "Улица"; -"type.highway.motorway_link.bridge" = "Съезд с автомагистрали"; +"type.highway.motorway_link.bridge" = "Улица"; -"type.highway.motorway_link.tunnel" = "Съезд с автомагистрали"; +"type.highway.motorway_link.tunnel" = "Улица"; -"type.highway.path" = "Тропа"; +"type.highway.path" = "Дорожка"; -"type.highway.path.alpine_hiking" = "Тропа"; +"type.highway.path.alpine_hiking" = "Дорожка"; -"type.highway.path.bicycle" = "Велопешеходная дорожка"; +"type.highway.path.bicycle" = "Дорожка"; -"type.highway.path.bridge" = "Тропа"; +"type.highway.path.bridge" = "Дорожка"; -"type.highway.path.demanding_alpine_hiking" = "Тропа"; +"type.highway.path.demanding_alpine_hiking" = "Дорожка"; -"type.highway.path.demanding_mountain_hiking" = "Тропа"; +"type.highway.path.demanding_mountain_hiking" = "Дорожка"; -"type.highway.path.difficult_alpine_hiking" = "Тропа"; +"type.highway.path.difficult_alpine_hiking" = "Дорожка"; -"type.highway.path.hiking" = "Тропа"; +"type.highway.path.hiking" = "Дорожка"; -"type.highway.path.horse" = "Конная тропа"; +"type.highway.path.horse" = "Дорожка"; -"type.highway.path.mountain_hiking" = "Тропа"; +"type.highway.path.mountain_hiking" = "Дорожка"; -"type.highway.path.permissive" = "Тропа"; +"type.highway.path.permissive" = "Дорожка"; -"type.highway.path.tunnel" = "Тропа"; +"type.highway.path.tunnel" = "Дорожка"; -"type.highway.pedestrian" = "Пешеходная улица"; +"type.highway.pedestrian" = "Улица"; -"type.highway.pedestrian.area" = "Пешеходная зона"; +"type.highway.pedestrian.area" = "Улица"; -"type.highway.pedestrian.bridge" = "Пешеходная улица"; +"type.highway.pedestrian.bridge" = "Улица"; -"type.highway.pedestrian.tunnel" = "Пешеходная улица"; +"type.highway.pedestrian.tunnel" = "Улица"; -"type.highway.primary" = "Шоссе"; +"type.highway.primary" = "Улица"; -"type.highway.primary.bridge" = "Шоссе"; +"type.highway.primary.bridge" = "Улица"; -"type.highway.primary.tunnel" = "Шоссе"; +"type.highway.primary.tunnel" = "Улица"; -"type.highway.primary_link" = "Съезд с шоссе"; +"type.highway.primary_link" = "Улица"; -"type.highway.primary_link.bridge" = "Съезд с шоссе"; +"type.highway.primary_link.bridge" = "Улица"; -"type.highway.primary_link.tunnel" = "Съезд с шоссе"; +"type.highway.primary_link.tunnel" = "Улица"; "type.highway.raceway" = "Гоночный трек"; @@ -1860,141 +2145,108 @@ "type.highway.residential.tunnel" = "Улица"; -"type.highway.rest_area" = "Зона отдыха"; +"type.highway.rest_area" = "Зона отдыха на трассе"; -"type.highway.road" = "Дорога"; +"type.highway.road" = "Улица"; -"type.highway.road.bridge" = "Дорога"; +"type.highway.road.bridge" = "Улица"; -"type.highway.road.tunnel" = "Дорога"; +"type.highway.road.tunnel" = "Улица"; -"type.highway.secondary" = "Автодорога"; +"type.highway.secondary" = "Улица"; -"type.highway.secondary.bridge" = "Автодорога"; +"type.highway.secondary.bridge" = "Улица"; -"type.highway.secondary.tunnel" = "Автодорога"; +"type.highway.secondary.tunnel" = "Улица"; -"type.highway.secondary_link" = "Съезд с автодороги"; +"type.highway.secondary_link" = "Улица"; -"type.highway.secondary_link.bridge" = "Съезд с автодороги"; +"type.highway.secondary_link.bridge" = "Улица"; -"type.highway.secondary_link.tunnel" = "Съезд с автодороги"; +"type.highway.secondary_link.tunnel" = "Улица"; -"type.highway.service" = "Проезд"; +"type.highway.service" = "Улица"; -"type.highway.service.area" = "Проезд"; +"type.highway.service.area" = "Улица"; -"type.highway.service.bridge" = "Проезд"; +"type.highway.service.bridge" = "Улица"; -"type.highway.service.driveway" = "Подъезд"; +"type.highway.service.driveway" = "Улица"; -"type.highway.service.parking_aisle" = "Парковочный проезд"; +"type.highway.service.parking_aisle" = "Улица"; -"type.highway.service.tunnel" = "Проезд"; +"type.highway.service.tunnel" = "Улица"; -"type.highway.services" = "Зона обслуживания"; +"type.highway.services" = "СТО"; "type.highway.speed_camera" = "Камера скорости"; -"type.highway.steps" = "Лестница"; +"type.highway.steps" = "Дорожка"; -"type.highway.steps.bridge" = "Лестница"; +"type.highway.steps.bridge" = "Дорожка"; -"type.highway.steps.tunnel" = "Лестница"; +"type.highway.steps.tunnel" = "Дорожка"; -"type.highway.tertiary" = "Дорога"; +"type.highway.tertiary" = "Улица"; -"type.highway.tertiary.bridge" = "Дорога"; +"type.highway.tertiary.bridge" = "Улица"; -"type.highway.tertiary.tunnel" = "Дорога"; +"type.highway.tertiary.tunnel" = "Улица"; -"type.highway.tertiary_link" = "Съезд с дороги"; +"type.highway.tertiary_link" = "Улица"; -"type.highway.tertiary_link.bridge" = "Съезд с дороги"; +"type.highway.tertiary_link.bridge" = "Улица"; -"type.highway.tertiary_link.tunnel" = "Съезд с дороги"; +"type.highway.tertiary_link.tunnel" = "Улица"; -"type.highway.track" = "Грунтовка"; +"type.highway.track" = "Улица"; -"type.highway.track.area" = "Грунтовка"; +"type.highway.track.area" = "Улица"; -"type.highway.track.bridge" = "Грунтовка"; +"type.highway.track.bridge" = "Улица"; -"type.highway.track.grade1" = "Грунтовка"; +"type.highway.track.grade1" = "Улица"; -"type.highway.track.grade2" = "Грунтовка"; +"type.highway.track.grade2" = "Улица"; -"type.highway.track.grade3" = "Грунтовка"; +"type.highway.track.grade3" = "Улица"; -"type.highway.track.grade4" = "Грунтовка"; +"type.highway.track.grade4" = "Улица"; -"type.highway.track.grade5" = "Грунтовка"; +"type.highway.track.grade5" = "Улица"; -"type.highway.track.no.access" = "Грунтовка"; +"type.highway.track.no.access" = "Улица"; -"type.highway.track.permissive" = "Грунтовка"; +"type.highway.track.permissive" = "Улица"; -"type.highway.track.tunnel" = "Грунтовка"; +"type.highway.track.tunnel" = "Улица"; "type.highway.traffic_signals" = "Светофор"; -"type.highway.trunk" = "Трасса"; +"type.highway.trunk" = "Улица"; -"type.highway.trunk.bridge" = "Трасса"; +"type.highway.trunk.bridge" = "Улица"; -"type.highway.trunk.tunnel" = "Трасса"; +"type.highway.trunk.tunnel" = "Улица"; -"type.highway.trunk_link" = "Съезд с трассы"; +"type.highway.trunk_link" = "Улица"; -"type.highway.trunk_link.bridge" = "Съезд с трассы"; +"type.highway.trunk_link.bridge" = "Улица"; -"type.highway.trunk_link.tunnel" = "Съезд с трассы"; +"type.highway.trunk_link.tunnel" = "Улица"; -"type.highway.unclassified" = "Небольшая дорога"; +"type.highway.unclassified" = "Улица"; -"type.highway.unclassified.area" = "Небольшая дорога"; +"type.highway.unclassified.area" = "Улица"; -"type.highway.unclassified.bridge" = "Небольшая дорога"; +"type.highway.unclassified.bridge" = "Улица"; -"type.highway.unclassified.tunnel" = "Небольшая дорога"; - -"type.area_highway.cycleway" = "Велодорожка"; - -"type.area_highway.footway" = "Пешеходная дорожка"; - -"type.area_highway.living_street" = "Жилая зона"; - -"type.area_highway.motorway" = "Автомагистраль"; - -"type.area_highway.path" = "Тропа"; - -"type.area_highway.pedestrian" = "Пешеходная улица"; - -"type.area_highway.primary" = "Шоссе"; - -"type.area_highway.residential" = "Улица"; - -"type.area_highway.secondary" = "Автодорога"; - -"type.area_highway.service" = "Проезд"; - -"type.area_highway.tertiary" = "Дорога"; - -"type.area_highway.steps" = "Лестница"; - -"type.area_highway.track" = "Грунтовка"; - -"type.area_highway.trunk" = "Трасса"; - -"type.area_highway.unclassified" = "Небольшая дорога"; +"type.highway.unclassified.tunnel" = "Улица"; "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Исторический объект"; "type.historic.archaeological_site" = "Археологический памятник"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Аквапарк"; -"type.leisure.beach_resort" = "Пляжный курорт"; - "type.man_made" = "Искусственное сооружение"; "type.man_made.breakwater" = "Волнорез"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Столица"; -"type.place.city.capital.10" = "Город"; +"type.place.city.capital.10" = "Столица"; -"type.place.city.capital.11" = "Город"; +"type.place.city.capital.11" = "Столица"; "type.place.city.capital.2" = "Столица"; -"type.place.city.capital.3" = "Город"; +"type.place.city.capital.3" = "Столица"; -"type.place.city.capital.4" = "Город"; +"type.place.city.capital.4" = "Столица"; -"type.place.city.capital.5" = "Город"; +"type.place.city.capital.5" = "Столица"; -"type.place.city.capital.6" = "Город"; +"type.place.city.capital.6" = "Столица"; -"type.place.city.capital.7" = "Город"; +"type.place.city.capital.7" = "Столица"; -"type.place.city.capital.8" = "Город"; +"type.place.city.capital.8" = "Столица"; -"type.place.city.capital.9" = "Город"; +"type.place.city.capital.9" = "Столица"; "type.place.continent" = "Континент"; @@ -2407,7 +2657,7 @@ "type.power" = "Энергетика"; -"type.power.generator" = "Генератор"; +"type.power.generator" = "Генератор энергии"; "type.power.line" = "Линия электропередач"; @@ -2841,7 +3091,7 @@ "type.waterway.canal.tunnel" = "Канал"; -"type.waterway.dam" = "Дамба"; +"type.waterway.dam" = "Плотина"; "type.waterway.ditch" = "Канава"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "Трасса для саней"; "type.building_part" = "Здание"; + +"type.area_highway.cycleway" = "Велодорожка"; + +"type.area_highway.footway" = "Дорожка"; + +"type.area_highway.living_street" = "Улица"; + +"type.area_highway.motorway" = "Автомагистраль"; + +"type.area_highway.path" = "Дорожка"; + +"type.area_highway.pedestrian" = "Улица"; + +"type.area_highway.primary" = "Улица"; + +"type.area_highway.residential" = "Улица"; + +"type.area_highway.secondary" = "Улица"; + +"type.area_highway.service" = "Улица"; + +"type.area_highway.tertiary" = "Улица"; + +"type.area_highway.steps" = "Лестница"; + +"type.area_highway.track" = "Грунтовая дорога"; + +"type.area_highway.trunk" = "Автомобильная трасса"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.stringsdict index a7381831bb..95488f6d94 100644 --- a/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/ru.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -39,11 +39,11 @@ NSStringFormatValueTypeKey d few - %d файла были найдены. Вы увидите их после конвертации. + %d файла были найдены. Вы увидете их после конвертации. one - %d файл был найден. Вы увидите его после конвертации. + %d файл был найден. Вы увидете его после конвертации. other - %d файлов было найдено. Вы увидите их после конвертации. + %d файлов было найдено. Вы увидете их после конвертации. @@ -63,6 +63,29 @@ %d объект other %d объектов + two + %d объекта + + + + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + few + %d места + one + %d место + other + %d мест + two + %d места @@ -82,6 +105,8 @@ %d трек other %d треков + two + %d трека diff --git a/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.strings index d2d7909e1a..dff2059582 100644 --- a/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Späť"; + /* Button text (should be short) */ "cancel" = "Zrušiť"; @@ -17,6 +20,9 @@ "download_maps" = "Stiahnuť mapy"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Sťahovanie zlyhalo, skúste to znova."; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Sťahovanie…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Mapy"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Míle"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Hľadať"; +/* Search box placeholder text */ +"search_map" = "Prehľadať mapu"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Áno"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Aktuálne máte všetky možnosti pre určovanie polohy vypnuté. Prosím, povoľte ich v Nastaveniach."; + /* View and button titles for accessibility */ "zoom_to_country" = "Ukázať na mape"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Sťahovanie zlyhalo"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Skúsiť znova"; + "about_menu_title" = "O aplikácii Organic Maps"; +"connection_settings" = "Nastavenie pripojenia"; + "close" = "Zavrieť"; +"unsupported_phone" = "Je vyžadovaná hardwarová akcelerácia OpenGL. Bohužial, vaše zariadenie nie je podporované."; + "download" = "Stiahnuť"; +"disconnect_usb_cable" = "Prosím, odpojte USB kábel alebo vložte pamäťovú kartu pre použitie s Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Prosím, uvoľnite najprv miesto na SD karte/USB úložisku"; + +"not_enough_memory" = "Nedostatok pamäti k spusteniu aplikácie"; + +"download_resources" = "Skôr ako začnete, bude treba stiahnuť základnú mapu sveta.\nZaberie to %@."; + +"download_resources_continue" = "Prejsť na mapu"; + +"downloading_country_can_proceed" = "Sťahovanie %@. Teraz môžete\nprejsť na mapu."; + +"download_country_ask" = "Stiahnuť %@?"; + +"update_country_ask" = "Aktualizovať %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pauza"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Pokračovať"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "Sťahovanie zlyhalo: %@"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Pridať novú skupinu záložiek"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Moje miesta"; +/* Add bookmark dialog - bookmark name */ +"name" = "Názov"; + /* Editor title above street and house number */ "address" = "Adresa"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Skupina"; + /* Settings button in system menu */ "settings" = "Nastavenia"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Uložiť mapy do"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Vyberte miesto, kam by mali byť mapy sťahované"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Presunúť mapy?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Táto akcia môže trvať niekoľko minút.\nProsím čakajte…"; + /* Measurement units title in settings activity */ "measurement_units" = "Meracie jednotky"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Vyberte si míle alebo kilometre"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Kde sa najesť"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Potraviny"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Doprava"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Čerpacia stanica"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parkovisko"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Nakupovanie"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Pamätihodnosť"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Zábava"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Bankomat"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Nočný život"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Rodinná dovolenka"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Banka"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Lekáreň"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Nemocnica"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Záchody"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Pošta"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Polícia"; +/* Notes field in Bookmarks view */ +"description" = "Poznámky"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Zdielané záložky Organic Maps"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Vaša poloha zatiaľ nebola určená"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Prepáčte, nastavenie uloženia máp je dočasne nedostupné."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Práve prebieha sťahovanie krajiny."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Pozri kde som. Otvor odkaz: %1$@ alebo %2$@"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Pozri na moju značku na mape Organic Maps"; /* Subject for emailed position */ "my_position_share_email_subject" = "Pozrite si moju aktuálnu polohu na mape Organic Maps"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Ahoj,\n\nPráve som tu: %1$@. Stlačte jeden z týchto odkazov %2$@, %3$@ a uvidíte toto miesto na mape.\n\nVďaka"; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Zdielať"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Skopírované do schránky: %1$@"; + /* place preview title */ "info" = "Viacej informácií"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Naozaj chcete pokračovať?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Stopy"; @@ -195,10 +283,18 @@ "share_my_location" = "Zdielať moje umiestnenie"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigácia"; "pref_zoom_title" = "Tlačítka priblíženia/oddialenia"; +"pref_zoom_summary" = "Zobraziť na obrazovke"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Nočný režim"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Nastavenia jazyka povelov"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Nie je k dispozícii"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Iný"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Nápoveda"; +/* Button in the main Help dialog */ +"faq" = "Otázky a odpovede"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Ako nás podporiť?"; + /* Button in the main Help dialog */ "copyright" = "Autorské práva"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Aktualizovať všetko"; +/* Cancel all button text */ +"downloader_cancel_all" = "Zrušiť všetko"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Stiahnuté"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Zmazať mapu"; +/* Item in context menu. */ +"downloader_update_map" = "Aktualizovať mapu"; + +/* Preference text */ +"pref_use_google_play" = "Pomocou Google Play služieb získajte svoju aktuálnu polohu"; + /* Text for rating dialog */ "rating_just_rated" = "Práve som hodnotil vašu aplikáciu"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "In order to create a route, we need to download and update all the maps from your location to your destination."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Nedostatok miesta"; + /* bookmark button text */ "bookmark" = "záložka"; +/* location service disabled */ +"enable_location_services" = "Prosím, povoľte Služby určovania polohy"; + "save" = "Uložiť"; +"edit_description_hint" = "Váš popis (text alebo html)"; + "create" = "vytvoriť"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Trasa sa nedá lokalizovať"; +"dialog_routing_cant_build_route" = "Trasa sa nedá vytvoriť."; + "dialog_routing_change_start_or_end" = "Prosím, upravte váš východiskový bod alebo cieľové miesto."; "dialog_routing_change_start" = "Nastavte východiskový bod"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Stiahnutím mapy už nebudete potrebovať pripojenie k internetu a môžete si začať vyhľadávať a vytvárať trasy."; + +"search_select_map" = "Vybrať mapu"; + /* «Show» context menu */ "show" = "Ukázať"; @@ -521,6 +655,9 @@ "clear_search" = "Vymazať históriu vyhľadávania"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Vaša poloha"; "p2p_start" = "Štart"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Doriți să vă planificăm o rută având ca punct de pornire locația actuală?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Nasledujúca"; + "editor_time_add" = "Pridať rozvrh"; "editor_time_delete" = "Zmazať rozvrh"; @@ -556,14 +696,28 @@ "editor_example_values" = "Príklady hodnôt"; +"editor_correct_mistake" = "Opraviť chybu"; + "editor_add_select_location" = "Poloha"; "editor_done_dialog_1" = "Zmenili ste mapu sveta. Nemusíte to skrývať! Povedzte o tom svojim priateľom a začnite ju spolu upravovať."; "share_with_friends" = "Zdieľaj s priateľmi"; +"editor_report_problem_desription_1" = "Prosím, pridajte detailný popis problému, aby mohla komunita OpenStreetMap opraviť danú chybu."; + +"editor_report_problem_desription_2" = "K oprave môžete prispieť aj vy na stránke https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Odoslať"; +"editor_report_problem_title" = "Problém"; + +"editor_report_problem_no_place_title" = "Dané miesto neexistuje"; + +"editor_report_problem_under_construction_title" = "Zatvorené kvôli prebiehajúcej údržbe"; + +"editor_report_problem_duplicate_place_title" = "Duplicitné miesto"; + "autodownload" = "Automaticky stiahnuť"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Pridať otváracie hodiny"; +"edit_opening_hours" = "Upraviť otváracie hodiny"; + "no_osm_account" = "Nemáte účet v OpenStreetMap?"; "register_at_openstreetmap" = "Zaregistrovať sa"; @@ -592,6 +748,8 @@ "login" = "Prihlásiť sa"; +"password" = "Heslo"; + "forgot_password" = "Zabudli ste heslo?"; "osm_account" = "OSM účet"; @@ -609,6 +767,8 @@ "add_language" = "Pridať jazyk"; +"street" = "Ulica"; + /* Editable House Number text field (in address block). */ "house_number" = "Číslo domu"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Pridať ulicu"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Vybrať jazyk"; "choose_street" = "Vybrať ulicu"; @@ -632,12 +795,16 @@ "phone" = "Telefón"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Upozorňujeme vás, že"; "downloader_delete_map_dialog" = "Všetky zmeny týkajúce sa mapy budú vymazané spolu s mapou."; "downloader_update_maps" = "Aktualizovať mapy"; +"downloader_mwm_migration_dialog" = "Ak chcete vytvoriť cestu, musíte najskôr aktualizovať všetky mapy a potom odznova naplánovať trasu."; + "downloader_search_field_hint" = "Nájsť mapu"; "migration_download_error_dialog" = "Chyba pri sťahovaní"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Prosím, odstráňte prebytočné dáta"; +"editor_login_error_dialog" = "Pri prihlasovaní sa vyskytla chyba."; + "editor_profile_changes" = "Overené zmeny"; "editor_focus_map_on_location" = "Ak chcete nastaviť správnu polohu objektu, posuňte mapu."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategória"; +"detailed_problem_description" = "Podrobný popis problému"; + +"editor_report_problem_other_title" = "Iný problém"; + +"placepage_add_business_button" = "Pridať organizáciu"; + "whatsnew_editor_message_1" = "Na mapu môžete pridávať nové miesta a upravovať tie, ktoré sú už pridané."; "dialog_incorrect_feature_position" = "Zmeniť polohu"; @@ -710,6 +885,8 @@ "editor_operator" = "Prevádzkovateľ"; +"downloader_my_maps_title" = "Moje mapy"; + "downloader_no_downloaded_maps_title" = "Neprevzali ste žiadne mapy"; "downloader_no_downloaded_maps_message" = "Prevziať mapy na nájdenie pozície a navigovanie off-line."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "hod"; + +"minute" = "min"; + "placepage_place_description" = "Popis"; "placepage_more_button" = "Viac"; +"placepage_more_reviews_button" = "Ďalšie recenzie"; + "book_button" = "Rezervovať"; "placepage_call_button" = "Zavolať"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Miesto neexistuje"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…viac"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Zadajte platný email"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Aktualizovať"; "placepage_add_place_button" = "Pridať miesto na mape"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Odmietnuť"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Zoznam"; "mobile_data_dialog" = "Použiť mobilný internet na zobrazenie podrobnejších informácií?"; @@ -848,12 +1044,16 @@ "big_font" = "Zväčšiť veľkosť písma na mape"; +"traffic_update_app" = "Aktualizujte si aplikáciu Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Ak chcete zobraziť dopravné informácie, musíte si aktualizovať aplikáciu."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Dopravné informácie nie sú k dispozícii"; +"enable_logging" = "Zapnúť zaznamenávanie"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Všeobecné pripomienky"; @@ -861,14 +1061,24 @@ "off" = "Vyp."; +"prefs_languages_information" = "Na hlasové pokyny používame systém TTS. Mnohé zariadenia s Adroidom používajú Google TTS, ktorý si môžete stiahnuť alebo aktualizovať z obchodu Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Pre niektoré jazyky bude potrebné nainštalovať syntetizátor reči alebo balík doplnkového jazyka z obchodu s aplikáciami (Google Play, Samsung Apps). Otvorte nastavenia zariadenia → Jazyk a vstup → Reč → Prevod textu na reč. Tu môžete spravovať nastavenia pre syntézu reči (napríklad stiahnuť jazykový balík pre použitie v režime offline) a vybrať iný jazyk."; + +"prefs_languages_information_off_link" = "Viac informácií nájdete v tomto návode."; + "transliteration_title" = "Prepis do latinčiny"; +"learn_more" = "Zistiť viac"; + "core_exit" = "Ukončiť"; "routing_add_start_point" = "Pridaním počiatočného bodu začnite plánovať trasu"; "routing_add_finish_point" = "Pridaním cieľového bodu naplánujete trasu"; +"button_exit" = "Ukončiť"; + "planning_route_manage_route" = "Spravovať trasu"; "button_plan" = "Naplánovať"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Ups, vyskytla sa chyba. Skúste sa prihlásiť znova."; +"dialog_error_storage_title" = "Problém s prístupom k úložisku"; + +"dialog_error_storage_message" = "Externý úložný priestor nie je dostupný, pravdepodobne je vytiahnutá alebo poškodená SD karta alebo je systém súborov určený iba na čítanie. Skontrolujte to, prosím, a kontaktujte nás na support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Imitovať poškodené úložisko"; + "core_entrance" = "Vchod | vjazd"; "error_enter_correct_name" = "Prosím, zadajte správne meno"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Vytvoriť nový zoznam"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Skryť obrazovku"; "downloader_percent" = "%s (%s z %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Prázdny zoznam nie je možné zdieľať"; +"bookmarks_error_title_empty_list_name" = "Názov nemôže byť prázdny"; + "bookmarks_error_message_empty_list_name" = "Zadajte názov zoznamu"; +"bookmarks_new_list_hint" = "Nový zoznam"; + "bookmarks_error_title_list_name_already_taken" = "Tento názov už bol prijatý"; +"bookmarks_error_message_list_name_already_taken" = "Vyberte iné meno"; + "bookmarks_error_title_list_name_too_long" = "Tento názov je príliš dlhý"; +"please_wait" = "Prosím čakajte…"; + +"phone_number" = "Telefónne číslo"; + "profile" = "Profil OpenStreetMap"; "bookmarks_detect_title" = "Zistené nové súbory"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Obnoviť túto verziu?"; +"common_check_internet_connection_dialog_title" = "Žiadne internetové pripojenie"; + "error_system_message" = "Vyskytla sa neznáma chyba"; "restore" = "Obnoviť"; +"subtittle_opt_out" = "Nastavenie sledovania"; + +"crash_reports" = "Hlásenie chýb"; + +"crash_reports_description" = "Vaše údaje môžeme použiť na zlepšenie skúseností s programom Organic Maps. Zmeny sa prejavia po reštartovaní aplikácie."; + "privacy_policy" = "Zásady ochrany osobných údajov"; "terms_of_use" = "Podmienky používania"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Mapa metra nie je dostupná"; +"bookmarks_empty_list_title" = "Tento zoznam je prázdny"; + +"bookmarks_empty_list_message" = "Pre pridanie záložky kliknite na miesto na mape a potom na ikonu hviezdy"; + +"category_desc_more" = "…viac"; + "title_error_downloading_bookmarks" = "Vyskytla sa chyba"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Skryť z mapy"; +"public_access" = "Verejný prístup"; + +"limited_access" = "Obmedzený prístup"; + "bookmark_list_description_hint" = "Zadajte popis (text alebo html)"; +"not_shared" = "Súkromné"; + "tags_loading_error_subtitle" = "Počas načítavania značiek sa vyskytla chyba, skúste to znova"; "download_button" = "Stiahnuť"; @@ -972,6 +1221,9 @@ "place_description_title" = "Popis miesta"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Sťahovač máp"; + "speedcams_notice_message" = "Automaticky - Upozornenie na rýchlostné kamery, ak existuje riziko prekročenia rýchlostného limitu\nVždy - Vždy upozorniť na rýchlostné kamery\nNikdy - Nikdy neupozorňovať na rýchlostné kamery"; "power_managment_title" = "Úsporný režim"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maximálna úspora batérie"; +"enable_logging_warning_message" = "Táto možnosť zapína zaznamenávanie na diagnostické účely. Môže to byť užitočné pre našu technickú podporu, ktorá rieši problémy s aplikáciou. Povoliť túto možnosť iba na požiadanie podpory Organic Maps."; + +"access_rules_author_only" = "Online úprava"; + "driving_options_title" = "Možnosti jazdy"; "driving_options_subheader" = "Vyhnúť sa na každej trase"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Zoradiť…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Zoradiť záložky"; + /* iOS */ "sort_default" = "Zoradiť Predvolené"; @@ -1086,6 +1345,18 @@ "sort_date" = "Zoradiť podľa dátumu"; +/* Android */ +"by_default" = "Podľa predvoleného"; + +/* Android */ +"by_type" = "Podľa typu"; + +/* Android */ +"by_distance" = "Podľa vzdialenosti"; + +/* Android */ +"by_date" = "Podľa dátumu"; + "week_ago_sorttype" = "Pred týždňom"; "month_ago_sorttype" = "Pred mesiacom"; @@ -1132,6 +1403,8 @@ "religious_places" = "Náboženské miesta"; +"select_list" = "Vybrať zoznam"; + "transit_not_found" = "Navigácia metra v tejto oblasti ešte nie je k dispozícii"; "dialog_pedestrian_route_is_long_header" = "Trasa metra sa nenašla"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Obtiažnosť"; +"elevation_profile_distance" = "Vzdial.:"; + "elevation_profile_time" = "Čas:"; "isolines_toast_zooms_1_10" = "Priblížením preskúmajte izočiary"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Sťahovanie"; +"key_information_title" = "Kľúčová informácia"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Nechajte obrazovku spať"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Ak je táto možnosť povolená, obrazovka bude môcť po určitej dobe nečinnosti spať."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Aktualizujte svoje stiahnuté mapy"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Lekárske laboratórium"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Autobusová zastávka"; "type.highway.construction" = "Cesta vo výstavbe"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Ulica"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Rýchlostná kamera"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Ulica"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Cesta"; - -"type.area_highway.living_street" = "Ulica"; - -"type.area_highway.motorway" = "Ulica"; - -"type.area_highway.path" = "Cesta"; - -"type.area_highway.pedestrian" = "Ulica"; - -"type.area_highway.primary" = "Ulica"; - -"type.area_highway.residential" = "Ulica"; - -"type.area_highway.secondary" = "Ulica"; - -"type.area_highway.service" = "Ulica"; - -"type.area_highway.tertiary" = "Ulica"; - -"type.area_highway.steps" = "Cesta"; - -"type.area_highway.track" = "Ulica"; - -"type.area_highway.trunk" = "Ulica"; - -"type.area_highway.unclassified" = "Ulica"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Vykopávky"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Vodný park"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Hlavné mesto"; -"type.place.city.capital.10" = "Mesto"; +"type.place.city.capital.10" = "Hlavné mesto"; -"type.place.city.capital.11" = "Mesto"; +"type.place.city.capital.11" = "Hlavné mesto"; "type.place.city.capital.2" = "Hlavné mesto"; -"type.place.city.capital.3" = "Mesto"; +"type.place.city.capital.3" = "Hlavné mesto"; -"type.place.city.capital.4" = "Mesto"; +"type.place.city.capital.4" = "Hlavné mesto"; -"type.place.city.capital.5" = "Mesto"; +"type.place.city.capital.5" = "Hlavné mesto"; -"type.place.city.capital.6" = "Mesto"; +"type.place.city.capital.6" = "Hlavné mesto"; -"type.place.city.capital.7" = "Mesto"; +"type.place.city.capital.7" = "Hlavné mesto"; -"type.place.city.capital.8" = "Mesto"; +"type.place.city.capital.8" = "Hlavné mesto"; -"type.place.city.capital.9" = "Mesto"; +"type.place.city.capital.9" = "Hlavné mesto"; "type.place.continent" = "Kontinent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Budova"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.stringsdict index bc0ced1b9f..34ea98aa0e 100644 --- a/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/sk.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -58,6 +58,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d miesta + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.strings index a0650ec9cd..1415a27851 100644 --- a/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Tillbaka"; + /* Button text (should be short) */ "cancel" = "Avbryt"; @@ -17,6 +20,9 @@ "download_maps" = "Ladda ner kartor"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Nedladdningen misslyckades, tryck för att försöka igen"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Laddar ner…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Kartor"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Mil"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Sök"; +/* Search box placeholder text */ +"search_map" = "Sök karta"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Ja"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Du har inaktiverat alla platstjänster för denna enhet eller program. Vänligen aktivera dem i Inställningar."; + /* View and button titles for accessibility */ "zoom_to_country" = "Visa på kartan"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Downloading har misslyckats"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Försök igen"; + "about_menu_title" = "Om Organic Maps"; +"connection_settings" = "Anslutningsinställningar"; + "close" = "Stäng"; +"unsupported_phone" = "Hårdvaruaccelererad OpenGL krävs. Din enhet stöds tyvärr inte."; + "download" = "Ladda ner"; +"disconnect_usb_cable" = "Vänligen koppla ifrån USB-kabeln eller sätt in ett minneskort för att använda Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Vänligen frigör utrymme på SD-kortet/USB-lagringen först för att använda denna app."; + +"not_enough_memory" = "Inte tillräckligt med utrymme för att starta appen"; + +"download_resources" = "Innan du startar, låt oss ladda ner den generella världskartan på din enhet.\nDen behöver %@ data."; + +"download_resources_continue" = "Gå till karta"; + +"downloading_country_can_proceed" = "Laddar ner %@. Du kan nu\n fortsätta till kartan."; + +"download_country_ask" = "Ladda ner %@?"; + +"update_country_ask" = "Uppdatera %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Pausa"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Fortsätt"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ nedladdning misslyckades"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Lägg till ny samling"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Mina Platser"; +/* Add bookmark dialog - bookmark name */ +"name" = "Namn"; + /* Editor title above street and house number */ "address" = "Adress"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Samling"; + /* Settings button in system menu */ "settings" = "Inställningar"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Spara kartor i"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Välj en plats dit kartor ska laddas ner"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Flytta kartor?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Detta kan ta flera minuter.\nVänligen vänta…"; + /* Measurement units title in settings activity */ "measurement_units" = "Längdenheter"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Välj mellan mil och kilometer"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Var att äta"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Produkter"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Transport"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Bensin"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Parkering"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Shopping"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Hotell"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Sevärdheter"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Underhållning"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Bankomat"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Nattliv"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Semester med barn"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Bank"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Apotek"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Sjukhus"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Toalett"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Post"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Polis"; +/* Notes field in Bookmarks view */ +"description" = "Anteckningar"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Organic Maps bokmärken har delats med dig"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Din position har inte bestämts ännu"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Ledsen, Kartlagring är inaktiverat i inställningar"; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Nedladdning av landet är startat nu."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hej, kolla på min nuvarande position på Organic Maps! %1$@ eller %2$@ Har du inte offline-kartor? Ladda ner här: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hej, kolla på min pin på Organic Maps kartan"; /* Subject for emailed position */ "my_position_share_email_subject" = "Hej, kolla på min nuvarande position på Organic Maps kartan!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Hej,\n\nJag är här nu: %1$@. Klicka på denna länk %2$@ eller denna %3$@ för att se platsen på kartan.\n\nTack."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Dela"; /* Share by email button text, also used in editor. */ "email" = "E-post"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Kopierat till urklippsbordet: %1$@"; + /* place preview title */ "info" = "Info"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Är du säker på att du vill fortsätta?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Rutter"; @@ -195,10 +283,18 @@ "share_my_location" = "Dela Min Plats"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Navigering"; "pref_zoom_title" = "Zoom-knappar"; +"pref_zoom_summary" = "Visa på skärmen"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Nattläge"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Röstspråk"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Inte tillgängligt"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Övrigt"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Hjälp"; +/* Button in the main Help dialog */ +"faq" = "Frågor och svar"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Hur stöder vi oss?"; + /* Button in the main Help dialog */ "copyright" = "Copyright"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Uppdatera alla"; +/* Cancel all button text */ +"downloader_cancel_all" = "Avbryt alla"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Nedladdade"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Radera karta"; +/* Item in context menu. */ +"downloader_update_map" = "Uppdatera karta"; + +/* Preference text */ +"pref_use_google_play" = "Använd Google Play Services för att bestämma din aktuella position"; + /* Text for rating dialog */ "rating_just_rated" = "Jag har precis betygsatt er app"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Att kunna skapa en navigeringsväg kräver att alla kartorna från din plats till din destination är nerladdade och uppdaterade."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "För lite utrymme kvar"; + /* bookmark button text */ "bookmark" = "bokmärke"; +/* location service disabled */ +"enable_location_services" = "Vänligen aktivera platstjänster"; + "save" = "Spara"; +"edit_description_hint" = "Dina beskrivningar (text eller html)"; + "create" = "skapa"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Kan inte lokalisera väg"; +"dialog_routing_cant_build_route" = "Kan inte skapa väg."; + "dialog_routing_change_start_or_end" = "Justera din startpunkt eller din destination."; "dialog_routing_change_start" = "Justera startpunkt"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "För att börja söka och skapa rutter, ladda ner kartan, och du behöver inte Internet-anslutning längre."; + +"search_select_map" = "Välj kartan"; + /* «Show» context menu */ "show" = "Visa"; @@ -521,6 +655,9 @@ "clear_search" = "Rensa sökhistorik"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Din plats"; "p2p_start" = "Start"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Vill du att vi planerar en färdväg från din nuvarande plats?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Nästa"; + "editor_time_add" = "Lägg till schema"; "editor_time_delete" = "Ta bort schema"; @@ -556,14 +696,28 @@ "editor_example_values" = "Exempelvärden"; +"editor_correct_mistake" = "Korrigera fel"; + "editor_add_select_location" = "Plats"; "editor_done_dialog_1" = "Du har ändrat världskartan. Dölj inte detta! Berätta för dina vänner och redigera den tillsammans."; "share_with_friends" = "Dela med vänner"; +"editor_report_problem_desription_1" = "Beskriv problemet i detalj så att OpenStreeMaps community kan lösa felet."; + +"editor_report_problem_desription_2" = "Eller gör det själv på https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Skicka"; +"editor_report_problem_title" = "Problem"; + +"editor_report_problem_no_place_title" = "Platsen existerar inte"; + +"editor_report_problem_under_construction_title" = "Stängd för underhåll"; + +"editor_report_problem_duplicate_place_title" = "Duplicerad plats"; + "autodownload" = "Automatisk nedladdning"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Lägg till öppettider"; +"edit_opening_hours" = "Redigera öppettider"; + "no_osm_account" = "Inget konto hos OpenStreetMap?"; "register_at_openstreetmap" = "Registrera"; @@ -592,6 +748,8 @@ "login" = "Logga in"; +"password" = "Lösenord"; + "forgot_password" = "Glömt lösenord?"; "osm_account" = "OSM-konto"; @@ -609,6 +767,8 @@ "add_language" = "Lägg till ett språk"; +"street" = "Gata"; + /* Editable House Number text field (in address block). */ "house_number" = "Ett husnummer"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Lägg till en gata"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Välj ett språk"; "choose_street" = "Välj en gata"; @@ -632,12 +795,16 @@ "phone" = "Telefon"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Observera"; "downloader_delete_map_dialog" = "Alla kartändringar kommer att raderas tillsammans med kartan."; "downloader_update_maps" = "Uppdatera kartor"; +"downloader_mwm_migration_dialog" = "För att skapa en rutt måste du uppdatera alla kartor och sedan planera rutten igen."; + "downloader_search_field_hint" = "Hitta kartan"; "migration_download_error_dialog" = "Nedladdningsfel"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Ta bort onödig data"; +"editor_login_error_dialog" = "Inloggningsfel."; + "editor_profile_changes" = "Verifierade ändringar"; "editor_focus_map_on_location" = "Dra på kartan för att välja objektets rätta plats."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategori"; +"detailed_problem_description" = "Detaljerad beskrivning av ett problem"; + +"editor_report_problem_other_title" = "Ett annat problem"; + +"placepage_add_business_button" = "Lägg till organisation"; + "whatsnew_editor_message_1" = "Lägg till nya platser till kartan och redigera de befintliga direkt från appen."; "dialog_incorrect_feature_position" = "Ändra placering"; @@ -710,6 +885,8 @@ "editor_operator" = "Användare"; +"downloader_my_maps_title" = "Mina kartor"; + "downloader_no_downloaded_maps_title" = "Du har inte laddat ner några kartor"; "downloader_no_downloaded_maps_message" = "Ladda ner kartor för att hitta platsen och navigera offline."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "h"; + +"minute" = "min"; + "placepage_place_description" = "Beskrivning"; "placepage_more_button" = "Mer"; +"placepage_more_reviews_button" = "Fler recensioner"; + "book_button" = "Boka"; "placepage_call_button" = "Ring"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Platsen finns inte"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…mer"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Ange en giltig e-postadress"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Uppdatera"; "placepage_add_place_button" = "Lägg till en plats på kartan"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Neka"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Lista"; "mobile_data_dialog" = "Använd mobilt nätverk för att visa detaljerad information?"; @@ -848,12 +1044,16 @@ "big_font" = "Öka teckenstorlek på kartan"; +"traffic_update_app" = "Uppdatera Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Applikationen måste uppdateras för att trafikdata ska kunna visas."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Trafikdata är inte tillgänglig"; +"enable_logging" = "Aktivera loggning"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Allmän feedback"; @@ -861,14 +1061,24 @@ "off" = "Av"; +"prefs_languages_information" = "Vi använder TTS-system för röstinstruktioner. Flera Android-enheter använder Google TTS. Du kan ladda ned eller uppdatera det på Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "För vissa språk måste du installera en annan talsyntes eller ett annat språkpaket från appbutiken (Google Play Market, Samsung-appar).\nÖppna inställningarna på enheten → Språk och inmatning → Tal → Text till tal-uppspelning.\nHär kan du hantera inställningarna för talsyntes (till exempel, ladda ned språkpaket för användning offline) och välja en annan text till tal-motor."; + +"prefs_languages_information_off_link" = "Kolla in den här guiden för mer information."; + "transliteration_title" = "Transkribering till latin"; +"learn_more" = "Läs mer"; + "core_exit" = "Avsluta"; "routing_add_start_point" = "Lägg till startpunkt för att planera en rutt"; "routing_add_finish_point" = "Lägg till slutpunkt för att planera en rutt"; +"button_exit" = "Avsluta"; + "planning_route_manage_route" = "Hantera rutt"; "button_plan" = "Planera"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Hoppsan, ett fel har inträffat. Försök att logga in igen."; +"dialog_error_storage_title" = "Lagringsåtkomstproblem"; + +"dialog_error_storage_message" = "Extern lagring är inte tillgänglig. SD-kortet är borttaget, skadat eller så är filsystemet är skrivskyddat. Kontrollera det och kontakta oss på support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Emulera dålig lagring"; + "core_entrance" = "Ingång"; "error_enter_correct_name" = "Ange ett korrekt namn"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Skapa ny lista"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Dölj skärm"; "downloader_percent" = "%s (%s av %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Kan inte dela en tom lista"; +"bookmarks_error_title_empty_list_name" = "Namnet kunde inte vara tomt"; + "bookmarks_error_message_empty_list_name" = "Vänligen ange listnamnet"; +"bookmarks_new_list_hint" = "Ny lista"; + "bookmarks_error_title_list_name_already_taken" = "Det här namnet är redan taget"; +"bookmarks_error_message_list_name_already_taken" = "Vänligen välj ett annat namn"; + "bookmarks_error_title_list_name_too_long" = "Det här namnet är för långt"; +"please_wait" = "Vänligen vänta…"; + +"phone_number" = "Telefonnummer"; + "profile" = "OpenStreetMap profil"; "bookmarks_detect_title" = "Nya filer upptäcktes"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Återställ den här versionen?"; +"common_check_internet_connection_dialog_title" = "Ingen internetanslutning"; + "error_system_message" = "Ett okänt fel uppstod"; "restore" = "Återställa"; +"subtittle_opt_out" = "Spårningsinställningar"; + +"crash_reports" = "Olycksrapport"; + +"crash_reports_description" = "Vi kan komma att använda din data för att förbättra Organic Maps upplevelsen. Ändringarna kommer träda i kraft när du startar om appen."; + "privacy_policy" = "Integritetspolicy"; "terms_of_use" = "Allmänna villkor"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Kartor över tunnelbana är otillgänglig"; +"bookmarks_empty_list_title" = "Listan är tom"; + +"bookmarks_empty_list_message" = "För att lägga till bokmärken, tryck på kartan och sedan på stjärnikonen"; + +"category_desc_more" = "…mer"; + "title_error_downloading_bookmarks" = "Ett fel har uppstått"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Dölj från kort"; +"public_access" = "Allmänhetens åtkomst"; + +"limited_access" = "Privat åtkomst"; + "bookmark_list_description_hint" = "Lägg till en beskrivning (text eller html)"; +"not_shared" = "Personlig"; + "tags_loading_error_subtitle" = "Ett fel uppstod när du laddar taggarna, försök igen"; "download_button" = "Nedladdning"; @@ -972,6 +1221,9 @@ "place_description_title" = "Beskrivning av platsen"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Kartladdning"; + "speedcams_notice_message" = "Auto - Varna om fartkameror om det finns risk att överskrida hastighetsgränsen\nAlltid - Varna alltid om kameror\nAldrig - Varna aldrig om kameror"; "power_managment_title" = "Energisparläge"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maximal energibesparing"; +"enable_logging_warning_message" = "Denna funktion aktiveras för loggning av åtgärder för diagnostiska ändamål. Detta hjälper laget att identifiera problem med applikationen. Slå på funktionen endast på begäran av Organic Maps supporttjänst."; + +"access_rules_author_only" = "Redigeras online"; + "driving_options_title" = "Omvägsinställningar"; "driving_options_subheader" = "Undvik på varje rutten"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Sortera…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Sortera bokmärken"; + /* iOS */ "sort_default" = "Sortera som standard"; @@ -1086,6 +1345,18 @@ "sort_date" = "Sortera efter datum"; +/* Android */ +"by_default" = "Som standard"; + +/* Android */ +"by_type" = "Efter typ"; + +/* Android */ +"by_distance" = "Efter avstånd"; + +/* Android */ +"by_date" = "Efter datum"; + "week_ago_sorttype" = "För en vecka sedan"; "month_ago_sorttype" = "För en månad sedan"; @@ -1132,6 +1403,8 @@ "religious_places" = "Heliga platser"; +"select_list" = "Välja lista"; + "transit_not_found" = "Metro-navigering är ännu inte tillgänglig i denna region"; "dialog_pedestrian_route_is_long_header" = "Metro rutt hittades inte"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Komplexitet"; +"elevation_profile_distance" = "Avst.:"; + "elevation_profile_time" = "Tid:"; "isolines_toast_zooms_1_10" = "Förstora kartan för att se isolinjer"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Nedladdning"; +"key_information_title" = "Nyckelinformation"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Låt skärmen sova"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "När den är aktiverad får skärmen sova efter en period av inaktivitet."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Uppdatera dina nedladdade kartor"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Medicinskt laboratorium"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Busshållplats"; "type.highway.construction" = "Väg under uppförande"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Gata"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Hastighetskamera"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Gata"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Gångväg"; - -"type.area_highway.living_street" = "Gata"; - -"type.area_highway.motorway" = "Gata"; - -"type.area_highway.path" = "Gångväg"; - -"type.area_highway.pedestrian" = "Gata"; - -"type.area_highway.primary" = "Gata"; - -"type.area_highway.residential" = "Gata"; - -"type.area_highway.secondary" = "Gata"; - -"type.area_highway.service" = "Gata"; - -"type.area_highway.tertiary" = "Gata"; - -"type.area_highway.steps" = "Gångväg"; - -"type.area_highway.track" = "Gata"; - -"type.area_highway.trunk" = "Gata"; - -"type.area_highway.unclassified" = "Gata"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Arkeologisk plats"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Äventyrspark"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Huvudstad"; -"type.place.city.capital.10" = "Stad"; +"type.place.city.capital.10" = "Huvudstad"; -"type.place.city.capital.11" = "Stad"; +"type.place.city.capital.11" = "Huvudstad"; "type.place.city.capital.2" = "Huvudstad"; -"type.place.city.capital.3" = "Stad"; +"type.place.city.capital.3" = "Huvudstad"; -"type.place.city.capital.4" = "Stad"; +"type.place.city.capital.4" = "Huvudstad"; -"type.place.city.capital.5" = "Stad"; +"type.place.city.capital.5" = "Huvudstad"; -"type.place.city.capital.6" = "Stad"; +"type.place.city.capital.6" = "Huvudstad"; -"type.place.city.capital.7" = "Stad"; +"type.place.city.capital.7" = "Huvudstad"; -"type.place.city.capital.8" = "Stad"; +"type.place.city.capital.8" = "Huvudstad"; -"type.place.city.capital.9" = "Stad"; +"type.place.city.capital.9" = "Huvudstad"; "type.place.continent" = "Kontinent"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Byggnad"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.stringsdict index 60f8250c9d..10cdb43836 100644 --- a/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/sv.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -56,6 +56,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d platser + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/sw.lproj/InfoPlist.strings b/iphone/Maps/LocalizedStrings/sw.lproj/InfoPlist.strings deleted file mode 100644 index 204301f29f..0000000000 --- a/iphone/Maps/LocalizedStrings/sw.lproj/InfoPlist.strings +++ /dev/null @@ -1,25 +0,0 @@ -/** - * Apple Strings File - * Generated by Twine 1.1.1 - * Language: sw - */ - -/********** 3d touch strings **********/ - -/* Used in home screen quick actions. */ -"search" = "Search"; - -/* Used in home screen quick actions. */ -"bookmarks" = "Bookmarks"; - -/* Used in home screen quick actions. */ -"route" = "Route"; - - -/********** gps strings **********/ - -/* Needed to explain why we always require access to GPS coordinates, and not only when the app is active. */ -"NSLocationAlwaysUsageDescription" = "Detecting location in the background is necessary to fully enjoy the functionality of the app. It is used for navigation and saving your recently traveled track."; - -/* Needed to explain why we require access to GPS coordinates when the app is active. */ -"NSLocationWhenInUseUsageDescription" = "Determining your location is necessary for navigation and for saving your recently traveled track."; diff --git a/iphone/Maps/LocalizedStrings/sw.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/sw.lproj/Localizable.strings deleted file mode 100644 index f7ee0bc649..0000000000 --- a/iphone/Maps/LocalizedStrings/sw.lproj/Localizable.strings +++ /dev/null @@ -1,2918 +0,0 @@ -/** - * Apple Strings File - * Generated by Twine 1.1.1 - * Language: sw - */ - -/********** Strings **********/ - -/* Button text (should be short) */ -"cancel" = "Cancel"; - -/* Button which interrupts country download */ -"cancel_download" = "Cancel Download"; - -/* Button which deletes downloaded country */ -"delete" = "Delete"; - -"download_maps" = "Download Maps"; - -/* Settings/Downloader - info for country which started downloading */ -"downloading" = "Downloading…"; - -/* Choose measurement on first launch alert - choose metric system button */ -"kilometres" = "Kilometers"; - -/* Leave Review dialog - Review button */ -"leave_a_review" = "Leave a Review"; - -/* View and button titles for accessibility */ -"maps" = "Maps"; - -/* Choose measurement on first launch alert - choose imperial system button */ -"miles" = "Miles"; - -/* View and button titles for accessibility */ -"core_my_position" = "My Position"; - -/* Update maps later/Buy pro version later button text */ -"later" = "Later"; - -/* View and button titles for accessibility */ -"search" = "Search"; - -/* Settings/Downloader - 3G download warning dialog confirm button */ -"use_cellular_data" = "Yes"; - -/* View and button titles for accessibility */ -"zoom_to_country" = "Show on the map"; - -/* Button text for the button at the center of the screen when the country is not downloaded and the size should not be shown */ -"country_status_download_without_size" = "Download Map"; - -/* Message to display at the center of the screen when the country download has failed */ -"country_status_download_failed" = "Download has failed"; - -"about_menu_title" = "About Organic Maps"; - -"close" = "Close"; - -"download" = "Download"; - -/* REMOVE THIS STRING AFTER REFACTORING */ -"continue_download" = "Continue"; - -/* "Add new bookmark list" dialog title */ -"add_new_set" = "Add New List"; - -/* Bookmark Color dialog title */ -"bookmark_color" = "Bookmark Color"; - -/* Add Bookmark list dialog - hint when the list name is empty */ -"bookmark_set_name" = "Bookmark List Name"; - -/* "Bookmark Lists" dialog title */ -"bookmark_sets" = "Bookmark Lists"; - -/* "Bookmarks" dialog title */ -"bookmarks" = "Bookmarks"; - -/* Default bookmark list name */ -"core_my_places" = "My Places"; - -/* Editor title above street and house number */ -"address" = "Address"; - -/* Settings button in system menu */ -"settings" = "Settings"; - -/* Measurement units title in settings activity */ -"measurement_units" = "Measurement units"; - - -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ -"eat" = "Sehemu ya kula"; - -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ -"food" = "Migahawani"; - -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ -"transport" = "Transport"; - -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ -"fuel" = "Gas"; - -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ -"parking" = "Parking"; - -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ -"shopping" = "Manunuzi"; - -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ -"hotel" = "Hotel"; - -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ -"tourism" = "Sights"; - -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ -"entertainment" = "Entertainment"; - -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ -"atm" = "ATM"; - -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ -"nightlife" = "Shughuli za usiku"; - -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ -"children" = "Mapumziko ya familia"; - -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ -"bank" = "Bank"; - -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ -"pharmacy" = "Pharmacy"; - -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ -"hospital" = "Hospitali"; - -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ -"toilet" = "Toilet"; - -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ -"post" = "Post"; - -/* Search category for police; any changes should be duplicated in categories.txt @police! */ -"police" = "Police"; - -"share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; - -/* message title of loading file */ -"load_kmz_title" = "Loading Bookmarks"; - -/* Kmz file successful loading */ -"load_kmz_successful" = "Bookmarks loaded successfully! You can find them on the map or on the Bookmarks Manager screen."; - -/* Kml file loading failed */ -"load_kmz_failed" = "Bookmarks upload failed. The file may be corrupted or defective."; - -/* resource for context menu */ -"edit" = "Edit"; - -/* Warning message when doing search around current position */ -"unknown_current_position" = "Your location hasn't been determined yet"; - -/* Subject for emailed bookmark */ -"bookmark_share_email_subject" = "Hey, check out my pin in Organic Maps!"; - -/* Subject for emailed position */ -"my_position_share_email_subject" = "Hey, check out my current location on the Organic Maps map!"; - -/* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ -"share" = "Share"; - -/* Share by email button text, also used in editor. */ -"email" = "Email"; - -/* place preview title */ -"info" = "Info"; - -/* Used for bookmark editing */ -"done" = "Done"; - -/* Prints version number in About dialog */ -"version" = "Version: %@"; - -/* Data version in «About» screen */ -"data_version" = "Data version: %d"; - -/* Title for tracks category in bookmarks manager */ -"tracks_title" = "Tracks"; - -/* Length of track in cell that describes route */ -"length" = "Length"; - -"share_my_location" = "Share My Location"; - -"prefs_group_route" = "Navigation"; - -"pref_zoom_title" = "Zoom buttons"; - -/* Settings «Map» category: «Night style» title */ -"pref_map_style_title" = "Night Mode"; - -/* «Map style» entry value */ -"pref_map_style_default" = "Off"; - -/* «Map style» entry value */ -"pref_map_style_night" = "On"; - -/* «Map style» entry value */ -"pref_map_style_auto" = "Auto"; - -/* Settings «Map» category: «Perspective view» title */ -"pref_map_3d_title" = "Perspective view"; - -/* Settings «Map» category: «3D buildings» title */ -"pref_map_3d_buildings_title" = "3D buildings"; - -/* Settings «Route» category: «Tts enabled» title */ -"pref_tts_enable_title" = "Voice Instructions"; - -/* Settings «Route» category: «Tts language» title */ -"pref_tts_language_title" = "Voice Language"; - -/* Title for "Other" section in TTS settings. */ -"pref_tts_other_section_title" = "Other"; - -/* Settings «Map» category: «Record track» title */ -"pref_track_record_title" = "Recent track"; - -"pref_map_auto_zoom" = "Auto zoom"; - -"duration_disabled" = "Off"; - -"duration_1_hour" = "1 hour"; - -"duration_2_hours" = "2 hours"; - -"duration_6_hours" = "6 hours"; - -"duration_12_hours" = "12 hours"; - -"duration_1_day" = "1 day"; - -"recent_track_help_text" = "Inakuwezesha kurekodi njia uliyosafiria kwa kipindi fulani na uione kwenye ramani. Tafadhali kumbuka: ukiwezesha utendaji huu betri itatumika zaidi. Njia hiyo itaondolewa kiotomatiki kwenye ramani baada ya mpishano wa muda kuisha."; - -"placepage_distance" = "Distance"; - -"search_show_on_map" = "View on map"; - -/* Text in menu */ -"website" = "Website"; - -/* Text in menu */ -"github" = "GitHub"; - -/* Text in menu */ -"telegram" = "Telegram"; - -/* Text in menu */ -"facebook" = "Facebook"; - -/* Text in menu */ -"twitter" = "Twitter"; - -/* Text in menu */ -"instagram" = "Instagram"; - -/* Text in menu */ -"openstreetmap" = "OpenStreetMap"; - -/* Settings: Send feedback button and dialog title */ -"feedback" = "Feedback"; - -/* Text in menu */ -"rate_the_app" = "Rate the app"; - -/* Text in menu */ -"help" = "Help"; - -/* Button in the main Help dialog */ -"copyright" = "Copyright"; - -/* Text in menu + Button in the main Help dialog */ -"report_a_bug" = "Report a bug"; - -/* Alert text */ -"email_error_body" = "The email client has not been set up. Please configure it or use any other way to contact us at %@"; - -/* Alert title */ -"email_error_title" = "Mail sending error"; - -/* Settings item title */ -"pref_calibration_title" = "Compass calibration"; - -/* Search category */ -"wifi" = "WiFi"; - -/* Update all button text */ -"downloader_update_all_button" = "Update All"; - -/* Downloaded maps category */ -"downloader_downloaded_subtitle" = "Downloaded"; - -/* Downloaded maps category */ -"downloader_available_maps" = "Available"; - -/* Country queued for download */ -"downloader_queued" = "Queued"; - -"downloader_near_me_subtitle" = "Near me"; - -"downloader_status_maps" = "Maps"; - -"downloader_download_all_button" = "Download All"; - -"downloader_downloading" = "Downloading:"; - -"downloader_search_results" = "Found"; - -/* Status of outdated country in the list */ -"downloader_status_outdated" = "Update"; - -/* Status of failed country in the list */ -"downloader_status_failed" = "Failed"; - -/* Displayed in a dialog that appears when a user tries to delete a map while the app is in the follow route mode */ -"downloader_delete_map_while_routing_dialog" = "To delete map, please stop navigation."; - -/* PointsInDifferentMWM */ -"routing_failed_cross_mwm_building" = "Routes can only be created that are fully contained within a map of a single region."; - -/* Context menu item for downloader. */ -"downloader_download_map" = "Download map"; - -/* Item status in downloader. */ -"downloader_retry" = "Retry"; - -/* Item in context menu. */ -"downloader_delete_map" = "Delete Map"; - -/* Text for rating dialog */ -"rating_just_rated" = "I’ve just rated your app"; - -/* Text for rating dialog */ -"rating_thanks" = "Thank you!"; - -/* Text for rating dialog */ -"rating_share_ideas" = "Share any ideas or issues so we can improve the app for you."; - -/* Text for rating dialog */ -"rating_send_feedback" = "Send feedback"; - -/* Text for routing error dialog */ -"routing_download_maps_along" = "Download all of the maps along your route"; - -/* Text for routing error dialog */ -"routing_requires_all_map" = "In order to create a route, we need to download and update all the maps from your location to your destination."; - -/* bookmark button text */ -"bookmark" = "bookmark"; - -"save" = "Save"; - -"create" = "create"; - -/* red color */ -"red" = "Red"; - -/* yellow color */ -"yellow" = "Yellow"; - -/* blue color */ -"blue" = "Blue"; - -/* green color */ -"green" = "Green"; - -/* purple color */ -"purple" = "Purple"; - -/* orange color */ -"orange" = "Orange"; - -/* brown color */ -"brown" = "Brown"; - -/* pink color */ -"pink" = "Pink"; - -/* deep purple color */ -"deep_purple" = "Zambarau Iliyoiva"; - -/* light blue color */ -"light_blue" = "Buluu Hafifu"; - -/* cyan color */ -"cyan" = "Siani"; - -/* teal color */ -"teal" = "Teal"; - -/* lime color */ -"lime" = "Chokaa"; - -/* deep orange color */ -"deep_orange" = "Chungwa Iliyokoza"; - -/* gray color */ -"gray" = "Kijivu"; - -/* blue gray color */ -"blue_gray" = "Kijivu Buluu"; - -/* Wi-Fi available */ -"WiFi_available" = "Yes"; - - -/********** Routing dialogs strings **********/ - -"dialog_routing_disclaimer_title" = "When following the route, please keep in mind:"; - -"dialog_routing_disclaimer_priority" = "— Road conditions, traffic laws, and road signs always take priority over the navigation hints;"; - -"dialog_routing_disclaimer_precision" = "— The map might be inaccurate, and the suggested route might not always be the most optimal way to reach the destination;"; - -"dialog_routing_disclaimer_recommendations" = "— Suggested routes should only be understood as recommendations;"; - -"dialog_routing_disclaimer_borders" = "— Exercise caution with routes in border zones: the routes created by our app may sometimes cross country borders in unauthorized places."; - -"dialog_routing_disclaimer_beware" = "Please stay alert and safe on the roads!"; - -"dialog_routing_check_gps" = "Check GPS signal"; - -"dialog_routing_error_location_not_found" = "Unable to create route. Current GPS coordinates could not be identified."; - -"dialog_routing_location_turn_wifi" = "Please check your GPS signal. Enabling Wi-Fi will improve your location accuracy."; - -"dialog_routing_location_turn_on" = "Enable location services"; - -"dialog_routing_location_unknown_turn_on" = "Unable to locate current GPS coordinates. Enable location services to calculate route."; - -"dialog_routing_download_files" = "Download required files"; - -"dialog_routing_download_and_update_all" = "Download and update all map and routing information along the projected path to calculate route."; - -"dialog_routing_unable_locate_route" = "Unable to locate route"; - -"dialog_routing_change_start_or_end" = "Please adjust your starting point or your destination."; - -"dialog_routing_change_start" = "Adjust starting point"; - -"dialog_routing_start_not_determined" = "Route was not created. Unable to locate starting point."; - -"dialog_routing_select_closer_start" = "Please select a starting point closer to a road."; - -"dialog_routing_change_end" = "Adjust destination"; - -"dialog_routing_end_not_determined" = "Route was not created. Unable to locate the destination."; - -"dialog_routing_select_closer_end" = "Please select a destination point located closer to a road."; - -"dialog_routing_change_intermediate" = "Imeshindwa kupata eneo la kati."; - -"dialog_routing_intermediate_not_determined" = "Tafadhali badilisha eneo lako la kati."; - -"dialog_routing_system_error" = "System error"; - -"dialog_routing_application_error" = "Unable to create route due to an application error."; - -"dialog_routing_try_again" = "Please try again"; - -"not_now" = "Not Now"; - -"dialog_routing_download_and_build_cross_route" = "Would you like to download the map and create a more optimal route spanning more than one map?"; - -"dialog_routing_download_cross_route" = "Download additional maps to create a better route that crosses the boundaries of this map."; - - -/********** Strings for downloading map from search **********/ - -/* «Show» context menu */ -"show" = "Show"; - -/* «Hide» context menu */ -"hide" = "Hide"; - -/* Failed planning route message in navigation view */ -"routing_planning_error" = "Route Planning Failed"; - -/* Arrive routing message in navigation view */ -"routing_arrive" = "Arrival at %s"; - -/* Text for routing::RouterResultCode::FileTooOld dialog. */ -"dialog_routing_download_and_update_maps" = "Download and update all map along the projected path to calculate route."; - -"rate_alert_title" = "Like the app?"; - -"rate_alert_default_message" = "Thank you for using Organic Maps. Please rate the app. Your feedback helps us improve our product."; - -"rate_alert_five_star_message" = "Hooray! We love you, too!"; - -"rate_alert_four_star_message" = "Thank you, we will do our best!"; - -"rate_alert_less_than_four_star_message" = "Any idea how we can make it better?"; - -"categories" = "Categories"; - -"history" = "History"; - -"closed" = "Closed"; - -"search_not_found" = "Oops, no results found."; - -"search_not_found_query" = "Try changing your search criteria."; - -"search_history_title" = "Search History"; - -"search_history_text" = "View recent searches."; - -"clear_search" = "Clear Search History"; - -"p2p_your_location" = "Your Location"; - -"p2p_start" = "Start"; - -"p2p_from_here" = "Route from"; - -"p2p_to_here" = "Route to"; - -"p2p_only_from_current" = "Navigation is available only from your current location."; - -"p2p_reroute_from_current" = "Do you want us to plan a route from your current location?"; - -"editor_time_add" = "Add Schedule"; - -"editor_time_delete" = "Delete Schedule"; - -/* Text for allday switch. */ -"editor_time_allday" = "All Day (24 hours)"; - -"editor_time_open" = "Open"; - -"editor_time_close" = "Closed"; - -"editor_time_add_closed" = "Add Non-Business Hours"; - -"editor_time_title" = "Business Hours"; - -"editor_time_advanced" = "Advanced Mode"; - -"editor_time_simple" = "Simple Mode"; - -"editor_hours_closed" = "Non-Business Hours"; - -"editor_example_values" = "Example Values"; - -"editor_add_select_location" = "Location"; - -"editor_done_dialog_1" = "You’ve changed the world map. Do not keep it to yourself! Tell your friends, and edit it together."; - -"share_with_friends" = "Share with friends"; - -"editor_report_problem_send_button" = "Send"; - -"autodownload" = "Auto-download"; - -/* Place Page opening hours text */ -"closed_now" = "Closed now"; - -/* Place Page opening hours text */ -"daily" = "Daily"; - -"twentyfour_seven" = "24/7"; - -"day_off_today" = "Closed today"; - -"day_off" = "Closed"; - -"today" = "Today"; - -"add_opening_hours" = "Add opening hours"; - -"no_osm_account" = "Don't have an OpenStreetMap account?"; - -"register_at_openstreetmap" = "Register at OSM"; - -"password_8_chars_min" = "Password (8 characters minimum)"; - -"invalid_username_or_password" = "Invalid username or password."; - -"login" = "Log In"; - -"forgot_password" = "Forgot your password?"; - -"osm_account" = "OSM Account"; - -"logout" = "Log Out"; - -/* Information text: "Last upload 11.01.2016" */ -"last_upload" = "Last upload"; - -"thank_you" = "Thank You"; - -"edit_place" = "Edit Place"; - -"place_name" = "Place Name"; - -"add_language" = "Add a language"; - -/* Editable House Number text field (in address block). */ -"house_number" = "Building number"; - -"details" = "Details"; - -/* Text field to enter non-existing street name, below list of known streets around */ -"add_street" = "Add a street"; - -"choose_language" = "Choose a language"; - -"choose_street" = "Choose a street"; - -"postal_code" = "Postal Code"; - -"cuisine" = "Cuisine"; - -"select_cuisine" = "Select cuisine"; - -/* login text field */ -"email_or_username" = "Email or username"; - -"phone" = "Phone"; - -"please_note" = "Please note"; - -"downloader_delete_map_dialog" = "All of your map edits will be deleted together with the map."; - -"downloader_update_maps" = "Update Maps"; - -"downloader_search_field_hint" = "Find map"; - -"migration_download_error_dialog" = "Download error"; - -"common_check_internet_connection_dialog" = "Please check your settings and make sure your device is connected to the Internet."; - -"downloader_no_space_title" = "Not enough space"; - -"downloader_no_space_message" = "Please delete any unnecessary data"; - -"editor_profile_changes" = "Verified Changes"; - -"editor_focus_map_on_location" = "Drag the map to select the correct location of the object."; - -"editor_add_select_category" = "Select category"; - -"editor_add_select_category_popular_subtitle" = "Popular"; - -"editor_add_select_category_all_subtitle" = "All Categories"; - -"editor_edit_place_title" = "Editing"; - -"editor_add_place_title" = "Adding"; - -"editor_edit_place_name_hint" = "Name of the place"; - -"editor_edit_place_category_title" = "Category"; - -"whatsnew_editor_message_1" = "Add new places to the map, and edit existing ones directly from the app."; - -"dialog_incorrect_feature_position" = "Change location"; - -"message_invalid_feature_position" = "No object can be located here"; - -"login_to_make_edits_visible" = "Log in so other users can see the changes that you have made"; - -/* Error dialog no space */ -"migration_no_space_message" = "To download, you need more space. Please delete any unnecessary data."; - -"editor_sharing_title" = "I improved the Organic Maps maps"; - -/* Downloaded 10 **of** 20 <- it is that "of" */ -"downloader_of" = "%1$d of %2$d"; - -"download_over_mobile_header" = "Download over a cellular network connection?"; - -"download_over_mobile_message" = "This could be considerably expensive with some plans or if roaming."; - -"error_enter_correct_house_number" = "Enter a valid building number"; - -"editor_storey_number" = "Number of floors (maximum of %d)"; - -/* Error message in Editor when a user tries to set the number of floors for a building higher than 25 */ -"error_enter_correct_storey_number" = "The number of floors must non exceed 25"; - -"editor_zip_code" = "ZIP Code"; - -"error_enter_correct_zip_code" = "Enter a valid ZIP code"; - -/* Place Page title for long tap */ -"core_placepage_unknown_place" = "Unknown Place"; - -"editor_other_info" = "Tuma ujumbe kwenye vihariri vya OSM"; - -"editor_detailed_description_hint" = "Detailed comment"; - -"editor_detailed_description" = "Your suggested map changes will be sent to the OpenStreetMap community. Describe any additional details that cannot be edited in Organic Maps."; - -"editor_more_about_osm" = "More about OpenStreetMap"; - -"editor_operator" = "Owner"; - -"downloader_no_downloaded_maps_title" = "You haven't downloaded any maps"; - -"downloader_no_downloaded_maps_message" = "Download maps to search for a location and use navigation offline."; - -/* Error title that appears after certain time without location. */ -"current_location_unknown_title" = "Continue detecting your current location?"; - -/* Error that appears after certain time without location. */ -"current_location_unknown_message" = "Current location is unknown. Maybe you are in a building or in a tunnel."; - -"current_location_unknown_continue_button" = "Continue"; - -"current_location_unknown_stop_button" = "Stop"; - -"current_location_unknown_error_title" = "Current location is unknown."; - -"current_location_unknown_error_message" = "An error occurred while searching for your location. Check that your device is working properly and try again later."; - -"location_services_disabled_header" = "Location services are disabled"; - -"location_services_disabled_message" = "Enable access to geolocation in the device settings"; - -"location_services_disabled_1" = "1. Open Settings"; - -"location_services_disabled_2" = "2. Tap Location"; - -/* iOS Dialog for the case when the location permission is not granted */ -"location_services_disabled_3" = "3. Select While Using the App"; - -"meter" = "m"; - -"kilometer" = "km"; - -"kilometers_per_hour" = "km/h"; - -"mile" = "mi"; - -"foot" = "ft"; - -"miles_per_hour" = "mph"; - -"placepage_place_description" = "Description"; - -"placepage_more_button" = "More"; - -"book_button" = "Book"; - -"placepage_call_button" = "Call"; - -"placepage_edit_bookmark_button" = "Edit Bookmark"; - -"placepage_bookmark_name_hint" = "Bookmark Name"; - -"placepage_personal_notes_hint" = "Personal notes"; - -"placepage_delete_bookmark_button" = "Delete Bookmark"; - -"editor_edits_sent_message" = "Your suggested changes have been sent"; - -"editor_comment_hint" = "Comment…"; - -"editor_reset_edits_message" = "Discard all local changes?"; - -"editor_reset_edits_button" = "Discard"; - -"editor_remove_place_message" = "Delete added place?"; - -"editor_remove_place_button" = "Delete"; - -"editor_place_doesnt_exist" = "Place does not exist"; - -"text_more_button" = "…more"; - -/* Phone number error message */ -"error_enter_correct_phone" = "Enter a valid phone number"; - -"error_enter_correct_web" = "Enter a valid web address"; - -"error_enter_correct_email" = "Enter a valid email"; - -"refresh" = "Update"; - -"placepage_add_place_button" = "Add a place to the map"; - -/* Displayed when saving some edits to the map to warn against publishing personal data */ -"editor_share_to_all_dialog_title" = "Do you want to send it to all users?"; - -/* iOS Dialog before publishing the modifications to the public map. */ -"editor_share_to_all_dialog_message_1" = "Make sure you did not enter any personal data."; - -"editor_share_to_all_dialog_message_2" = "We will check the changes. If we have any questions we will contact you via email."; - -"navigation_stop_button" = "stop"; - -/* iOS dialog for the case when recent track recording is on and the app comes back from background */ -"recent_track_background_dialog_title" = "Disable recording of your recently traveled route?"; - -"off_recent_track_background_button" = "Disable"; - -/* For sharing via SMS and so on */ -"sharing_call_action_look" = "Check out"; - -"recent_track_background_dialog_message" = "Organic Maps uses your geoposition in the background for recording your recently traveled route."; - -/* Text under the version number in the Help dialog. */ -"about_description" = "Organic Maps ni programu huria na ya chanzo huria ya ramani za nje ya mtandao. Hakuna matangazo. Hakuna ufuatiliaji. Ukiona hitilafu kwenye ramani, tafadhali irekebishe katika OpenStreetMap. Mradi huu umeundwa na wapendaji katika wakati wetu wa bure, kwa hivyo tunahitaji maoni na usaidizi wako."; - -"general_settings" = "General settings"; - -/* For the first routing */ -"accept" = "Accept"; - -/* For the first routing */ -"decline" = "Decline"; - -/* A noun - a button name used to show search results in list form */ -"search_in_table" = "List"; - -"mobile_data_dialog" = "Use mobile internet to show detailed information?"; - -"mobile_data_option_always" = "Use Always"; - -"mobile_data_option_today" = "Only Today"; - -"mobile_data_option_not_today" = "Do not Use Today"; - -"mobile_data" = "Mobile Internet"; - -"mobile_data_description" = "Mobile internet is required for displaying detailed information about places, such as photographs, prices and reviews."; - -"mobile_data_option_never" = "Never Use"; - -"mobile_data_option_ask" = "Always Ask"; - -"traffic_update_maps_text" = "To display traffic data, maps must be updated."; - -"big_font" = "Increase font size on the map"; - -/* "traffic" as in road congestion */ -"traffic_update_app_message" = "To display traffic data, the application must be updated."; - -/* "traffic" as in "road congestion" */ -"traffic_data_unavailable" = "Traffic data is not available"; - -/* Settings: "Send general feedback" button */ -"feedback_general" = "Maoni Jumla"; - -"on" = "Washa"; - -"off" = "Zima"; - -"transliteration_title" = "Tafsiri kwa lugha ya Kilatini"; - -"core_exit" = "Toka"; - -"routing_add_start_point" = "Ongeza eneo la kuanzia ili kupanga njia ya kufuata"; - -"routing_add_finish_point" = "Ongeza eneo la kumalizia ili kupanga njia ya kufuata"; - -"planning_route_manage_route" = "Dhibiti njia ya kufuata"; - -"button_plan" = "Panga"; - -"placepage_remove_stop" = "Ondoa"; - -"planning_route_remove_title" = "Vuta hapa ili kuondoa"; - -"placepage_add_stop" = "Ongeza eneo la kusimama"; - -"start_from_my_position" = "Anzia"; - -"profile_authorization_error" = "Lo, kumekuwa na hitilafu. Jaribu tena kuingia ndani."; - -"core_entrance" = "Kiingilio"; - -"error_enter_correct_name" = "Tafadhali, weka jina sahihi"; - -"bookmark_lists" = "Orodha"; - -/* Do not display all bookmark lists on the map */ -"bookmark_lists_hide_all" = "Ficha zote"; - -"bookmark_lists_show_all" = "Onyesha zote"; - -"bookmarks_create_new_group" = "Unda orodha mpya"; - -"downloader_hide_screen" = "Ficha skrini"; - -"downloader_percent" = "%s (%s kati ya %s)"; - -"downloader_process" = "Inapakua %s…"; - -"downloader_applying" = "Inatekeleza %s…"; - -"bookmarks_error_message_share_general" = "Haiwezekani kushiriki kutokana na hitilafu ya programu"; - -"bookmarks_error_title_share_empty" = "Hitilafu ya kushiriki"; - -"bookmarks_error_message_share_empty" = "Haiwezekani kushiriki orodha tupu"; - -"bookmarks_error_message_empty_list_name" = "Tafadhali ingiza jina la orodha"; - -"bookmarks_error_title_list_name_already_taken" = "Jina hili tayari limechukuliwa"; - -"bookmarks_error_title_list_name_too_long" = "Jina hili ni muda mrefu sana"; - -"profile" = "OpenStreetMap profile"; - -"bookmarks_detect_title" = "Faili mpya zimegunduliwa"; - -"button_convert" = "Badilisha"; - -"bookmarks_convert_error_title" = "Hitilafu"; - -"bookmarks_convert_error_message" = "Baadhi ya faili hazibadilishwa."; - -"bookmarks_restore_title" = "Rejesha toleo hili?"; - -"error_system_message" = "Hitilafu isiyojulikana ilitokea"; - -"restore" = "Rejesha"; - -"privacy_policy" = "Sera ya faragha"; - -"terms_of_use" = "Masharti ya matumizi"; - -"button_layer_traffic" = "Trafiki"; - -"button_layer_subway" = "Njia ya chini"; - -"layers_title" = "Tabaka za ramani"; - -"subway_data_unavailable" = "Ramani ya njia ya chini haipatikani"; - -"title_error_downloading_bookmarks" = "Kosa limetokea"; - -"popular_place" = "Popular"; - -"export_file" = "Tuma faili"; - -"list_settings" = "Mipangilio ya Orodhesha"; - -"delete_list" = "Futa Orodha"; - -"hide_from_map" = "Ficha kwenye ramani"; - -"bookmark_list_description_hint" = "Andika maelezo (maneno au html)"; - -"tags_loading_error_subtitle" = "Kosa limetokea wakati wa kupakua vibandiko, tafadhali jaribu tena"; - -"download_button" = "Pakua"; - -"speedcams_alert_title" = "Kamera za mwendo-kasi"; - -"speedcam_option_auto" = "Auto"; - -"speedcam_option_always" = "Mara kwa Mara"; - -"speedcam_option_never" = "Kamwe"; - -"place_description_title" = "Maelezo ya Eneo"; - -"speedcams_notice_message" = "Auto - Onyo la kuhusu kamera ya mwendo-kasi iwapo kuna hatari yoyote ya kuzidi ukomo wa mwendo-kasi\nMara kwa Mara - Daima onya kuhusu kamera za mwendo-kasi\nKamwe - Kamwe usionye kuhusu kamera za mwendo-kasi"; - -"power_managment_title" = "Mtindo wa kuokoa nishati"; - -"power_managment_description" = "Pindi mtindo wa kiotomatiki unapochaguliwa programu tumizi inaanza kuzima sifa za kumaliza betri kulingana na kiwango cha chaji cha sasa cha betri"; - -"power_managment_setting_never" = "Kamwe"; - -"power_managment_setting_auto" = "Kiotomatiki"; - -"power_managment_setting_manual_max" = "Upeo wa kuhifadhi nishati"; - -"driving_options_title" = "Machaguo ya njia"; - -"driving_options_subheader" = "Epuka kwenye kila njia"; - -"avoid_tolls" = "Barabara za kulipia"; - -"avoid_unpaved" = "Barabara za vumbi"; - -"avoid_ferry" = "Vivuko cha feri"; - -"avoid_motorways" = "Barabara za mwendo kasi"; - -"unable_to_calc_alert_title" = "Haiwezi kukokotoa njia"; - -"unable_to_calc_alert_subtitle" = "Bahati mbaya hatukuweza kupata njia labda kwa sababu ya machaguo msingi. Tafadhali badili mipangilio na jaribu tena"; - -"define_to_avoid_btn" = "Fafanua njia za kuziepuka"; - -"change_driving_options_btn" = "Machaguo ya njia yamewezeshwa"; - -"toll_road" = "Barabara ya kulipia"; - -"unpaved_road" = "Barabara ya vumbi"; - -"ferry_crossing" = "Kivuko cha feri"; - -"avoid_toll_roads_placepage" = "Epuka barabara za kulipia"; - -"avoid_unpaved_roads_placepage" = "Epuka barabara za vumbi"; - -"avoid_ferry_crossing_placepage" = "Epuka vivuko vya feri"; - -"trip_start" = "Twende zetu"; - -"pick_destination" = "Mahali"; - -"follow_my_position" = "Weka kati tena"; - -"search_results" = "Matokeo ya utafutaji"; - -"then_turn" = "Kisha"; - -"redirect_route_alert" = "Je, unataka kuunda upya njia?"; - -"redirect_route_yes" = "Ndio"; - -"redirect_route_no" = "Hapana"; - -"trip_finished" = "Umefika!"; - -"keyboard_availability_alert" = "Mbao-bonye haipatikani wakati wa kuendesha gari"; - -"dialog_routing_change_start_carplay" = "Haiwezi kuunda njia kutokea kwenye eneo lako la sasa"; - -"dialog_routing_change_end_carplay" = "Haiwezi kuunda njia kwenda uendako. Tafadhali chagua sehemu nyingine"; - -"dialog_routing_check_gps_carplay" = "Hakuna ishara ya GPS. Tafadhali sogea katika eneo jingine la wazi"; - -"dialog_routing_unable_locate_route_carplay" = "Haiwezi kuunda njia. Tafadhali taja kituo kingine cha njia"; - -"dialog_routing_download_files_carplay" = "Kuunda njia, pakua ramani zilizokosekana kwenye kifaa chako"; - -"dialog_routing_system_error_carplay" = "Hitilafu imetokea. Tafadhali iwashe tena programu"; - -"dialog_routing_rebuild_from_current_location_carplay" = "Njia itaundwa upya kutokea kwenye sehemu yako la sasa"; - -"dialog_routing_rebuild_for_vehicle_carplay" = "Njia itaboreshwa kuwa ya gari"; - -"ok" = "Sawa"; - -"avoid_unpaved_carplay_1" = "Hamna za vum"; - -"avoid_unpaved_carplay_2" = "Epuka za vumbi"; - -"avoid_ferry_carplay_1" = "Hamna feri"; - -"avoid_ferry_carplay_2" = "Epuka feri"; - -"avoid_tolls_carplay_1" = "Hamna za ada"; - -"avoid_tolls_carplay_2" = "Epuka njia-kodi"; - -"speedcams_alert_title_carplay_1" = "Kam za kasi"; - -"speedcams_alert_title_carplay_2" = "Onyo la kasi"; - -"download_map_carplay" = "Tafadhali pakua ramani katika programu tumizi ya Organic Maps kwenye kifaa chako"; - -"carplay_roundabout_exit" = "Kutoka kwa %s"; - -/* max. 10 symbols, both iOS and Android */ -"sort" = "Ainisha…"; - -/* iOS */ -"sort_default" = "Ainisha kwa chaguo-msingi"; - -"sort_type" = "Ainisha kwa aina"; - -"sort_distance" = "Ainisha kwa umbali"; - -"sort_date" = "Ainisha kwa tarehe"; - -"week_ago_sorttype" = "Wiki moja iliyopita"; - -"month_ago_sorttype" = "Mwezi mmoja uliopita"; - -"moremonth_ago_sorttype" = "Zaidi ya mwezi mmoja uliopita"; - -"moreyear_ago_sorttype" = "Zaidi ya mwaka mmoja uliopita"; - -"near_me_sorttype" = "Karibu yangu"; - -"others_sorttype" = "Nyingine"; - -"food_places" = "Chakula"; - -"tourist_places" = "Vivutio"; - -"museums" = "Makumbusho"; - -"parks" = "Hifadhi"; - -"swim_places" = "Kuogelea"; - -"mountains" = "Milima"; - -"animals" = "Wanyama"; - -"hotels" = "Hoteli"; - -"buildings" = "Majengo"; - -"money" = "Fedha"; - -"shops" = "Maduka"; - -"parkings" = "Maegesho"; - -"fuel_places" = "Kituo cha gesi"; - -"water" = "Maji"; - -"medicine" = "Dawa"; - -"search_in_the_list" = "Tafuta kwenye orodha"; - -"religious_places" = "Sehemu za ibada"; - -"transit_not_found" = "Uabiri wa njia ya chini kwa chini katika mkoa huu haupatikani bado"; - -"dialog_pedestrian_route_is_long_header" = "Njia ya chini kwa chini haipatikani"; - -"dialog_pedestrian_route_is_long_message" = "Chagua nyota au alama ya mwisho karibu ya kituo cha njia ya chini kwa chini"; - -"button_layer_isolines" = "Topografia"; - -"isolines_activation_error_dialog" = "Kuamilisha na kutumia tabaka la nchi tafadhali sasisha au pakua ramani ya eneo hilo"; - -"isolines_location_error_dialog" = "Tabaka la sura ya nchi bado haipatikani katika eneo hili"; - -"elevation_profile_diff_level" = "Usawa mgumu"; - -"elevation_profile_diff_level_easy" = "Rahisi"; - -"elevation_profile_diff_level_moderate" = "Wastani"; - -"elevation_profile_diff_level_hard" = "Ngumu"; - -"elevation_profile_ascent" = "Upandaji"; - -"elevation_profile_descent" = "Ushukaji"; - -"elevation_profile_minaltitude" = "Mwinuko wa chini kabisa"; - -"elevation_profile_maxaltitude" = "Mwinuko wa juu kabisa"; - -"elevation_profile_difficulty" = "Ugumu"; - -"elevation_profile_time" = "Muda:"; - -"isolines_toast_zooms_1_10" = "Vuta karibu kutalii mistari ya kontua"; - -"downloader_updating_ios" = "Inasasisha"; - -"downloader_loading_ios" = "Inapakua"; - -/* Autoupdate dialog on start */ -"whats_new_auto_update_title" = "Sasisha ramani zako ulizopakua"; - -/* Autoupdate dialog on start */ -"whats_new_auto_update_message" = "Kusasisha ramani kunaweka taarifa kuhusu vipengee ikiwa ya hivi sasa zaidi"; - -/* Autoupdate dialog on start */ -"whats_new_auto_update_button_size" = "Sasisha (%s)"; - -/* Autoupdate dialog on start */ -"whats_new_auto_update_button_later" = "Sasisha mwenyewe baadaye"; - -/* Delete track button on track edit screen */ -"placepage_delete_track_button" = "Delete Track"; - -/* Placeholder for track name input on track edit screen */ -"placepage_track_name_hint" = "Track Name"; - -/* move track or bookmark from the list button text */ -"move" = "Move"; - -/* edit track screen title */ -"track_title" = "Track"; - - -/********** Types **********/ - -"type.aerialway" = "Aerialway"; - -"type.aerialway.cable_car" = "Aerialway"; - -"type.aerialway.chair_lift" = "Aerialway"; - -"type.aerialway.drag_lift" = "Aerialway"; - -"type.aerialway.gondola" = "Aerialway"; - -"type.aerialway.mixed_lift" = "Aerialway"; - -"type.aerialway.station" = "Aerialway Station"; - -"type.aeroway" = "Aeroway"; - -"type.aeroway.aerodrome" = "Airport"; - -"type.aeroway.aerodrome.international" = "Airport"; - -"type.aeroway.apron" = "aeroway-apron"; - -"type.aeroway.gate" = "Gate"; - -"type.aeroway.helipad" = "Helipad"; - -"type.aeroway.runway" = "aeroway-runway"; - -"type.aeroway.taxiway" = "aeroway-taxiway"; - -"type.aeroway.terminal" = "Terminal"; - -"type.amenity" = "Kistawishi"; - -"type.amenity.arts_centre" = "Kituo cha sanaa"; - -"type.amenity.atm" = "ATM"; - -"type.amenity.bank" = "Bank"; - -"type.amenity.bar" = "Bar"; - -"type.amenity.bbq" = "Picnic Site"; - -"type.amenity.bench" = "Bench"; - -"type.amenity.bicycle_parking" = "Bicycle Parking"; - -"type.amenity.bicycle_rental" = "Bicycle Rental"; - -"type.amenity.biergarten" = "Biergarten"; - -"type.amenity.brothel" = "Brothel"; - -"type.amenity.bureau_de_change" = "Currency Exchange"; - -"type.amenity.bus_station" = "Bus Station"; - -"type.amenity.cafe" = "Cafe"; - -"type.amenity.car_rental" = "Car Rental"; - -"type.amenity.car_sharing" = "Car Sharing"; - -"type.amenity.car_wash" = "Car Wash"; - -"type.amenity.casino" = "Casino"; - -"type.amenity.charging_station" = "Charging Station"; - -"type.amenity.childcare" = "Nursery"; - -"type.amenity.cinema" = "Cinema"; - -"type.amenity.clinic" = "Clinic"; - -"type.amenity.college" = "College"; - -"type.amenity.community_centre" = "Community Centre"; - -"type.amenity.courthouse" = "Courthouse"; - -"type.amenity.dentist" = "Dentist"; - -"type.amenity.doctors" = "Doctor"; - -"type.amenity.drinking_water" = "Drinking Water"; - -"type.amenity.driving_school" = "Driving School"; - -"type.office.diplomatic" = "Embassy"; - -"type.amenity.fast_food" = "Fast Food"; - -"type.amenity.ferry_terminal" = "Ferry"; - -"type.amenity.fire_station" = "Fire Station"; - -"type.amenity.food_court" = "Food Court"; - -"type.amenity.fountain" = "Fountain"; - -"type.amenity.fuel" = "Gas Station"; - -"type.amenity.grave_yard" = "Graveyard"; - -"type.amenity.grave_yard.christian" = "Graveyard"; - -"type.amenity.hospital" = "Hospital"; - -"type.amenity.hunting_stand" = "Hunting Stand"; - -"type.amenity.ice_cream" = "Ice Cream Stand"; - -"type.amenity.internet_cafe" = "Internet Cafe"; - -"type.amenity.kindergarten" = "Kindergarten"; - -"type.amenity.library" = "Library"; - -"type.amenity.marketplace" = "Marketplace"; - -"type.amenity.motorcycle_parking" = "Motorcycle Parking"; - -"type.amenity.nightclub" = "Nightclub"; - -"type.amenity.nursing_home" = "Nursing Home"; - -"type.amenity.parking" = "Parking"; - -"type.amenity.parking.fee" = "Parking"; - -"type.amenity.parking.multi.storey" = "Parking"; - -"type.amenity.parking.no.access" = "Parking"; - -"type.amenity.parking.park_and_ride" = "Parking"; - -"type.amenity.parking.permissive" = "Parking"; - -"type.amenity.parking.private" = "Parking"; - -"type.amenity.parking.underground" = "Parking"; - -"type.amenity.parking_space" = "Sehemu ya maegesho"; - -"type.amenity.parking_space.permissive" = "Sehemu ya maegesho"; - -"type.amenity.parking_space.private" = "Sehemu ya maegesho"; - -"type.amenity.parking_space.underground" = "Sehemu ya maegesho"; - -"type.amenity.payment_terminal" = "Payment Terminal"; - -"type.amenity.pharmacy" = "Pharmacy"; - -"type.amenity.place_of_worship" = "Place of Worship"; - -"type.amenity.place_of_worship.buddhist" = "Temple"; - -"type.amenity.place_of_worship.christian" = "Church"; - -"type.amenity.place_of_worship.hindu" = "Temple"; - -"type.amenity.place_of_worship.jewish" = "Synagogue"; - -"type.amenity.place_of_worship.muslim" = "Mosque"; - -"type.amenity.place_of_worship.shinto" = "Shrine"; - -"type.amenity.place_of_worship.taoist" = "Temple"; - -"type.amenity.police" = "Police"; - -"type.amenity.post_box" = "Postbox"; - -"type.amenity.post_office" = "Ofisi ya posta"; - -"type.amenity.prison" = "Prison"; - -"type.amenity.pub" = "Pub"; - -"type.amenity.public_bookcase" = "Book Exchange"; - -"type.amenity.recycling" = "Recycling Center"; - -"type.amenity.recycling_container" = "Recycling Container"; - -"type.recycling.toxic" = "Toxic Waste"; - -"type.recycling.clothes" = "Old Clothes"; - -"type.recycling.glass_bottles" = "Glass Bottles"; - -"type.recycling.paper" = "Paper Waste"; - -"type.recycling.plastic" = "Plastic Waste"; - -"type.recycling.plastic_bottles" = "Plastic Bottles"; - -"type.recycling.scrap_metal" = "Scrap Metal"; - -"type.recycling.small_appliances" = "Electronic Waste"; - -"type.amenity.restaurant" = "Restaurant"; - -"type.amenity.school" = "School"; - -"type.amenity.shelter" = "Shelter"; - -"type.amenity.shower" = "Shower"; - -"type.amenity.taxi" = "Taxi"; - -"type.amenity.telephone" = "Phone"; - -"type.amenity.theatre" = "Theatre"; - -"type.amenity.toilets" = "Toilet"; - -"type.amenity.townhall" = "Town Hall"; - -"type.amenity.university" = "University"; - -"type.amenity.vending_machine" = "Vending Machine"; - -"type.amenity.vending_machine.cigarettes" = "Cigarette Dispenser"; - -"type.amenity.vending_machine.drinks" = "Drink Dispenser"; - -"type.amenity.vending_machine.parking_tickets" = "Parking Tickets"; - -"type.amenity.vending_machine.public_transport_tickets" = "Mashine ya kuuzia tiketi za usafiri wa umma"; - -"type.amenity.veterinary" = "Veterinary Doctor"; - -"type.amenity.waste_basket" = "Trash Bin"; - -"type.amenity.waste_disposal" = "Dumpster"; - -"type.amenity.water_point" = "Water Point"; - -"type.barrier" = "Barrier"; - -"type.barrier.block" = "Block"; - -"type.barrier.bollard" = "Pillar"; - -"type.barrier.border_control" = "Border Control"; - -"type.barrier.chain" = "Chain"; - -"type.barrier.city_wall" = "City Wall"; - -"type.barrier.cycle_barrier" = "Cycle Barrier"; - -"type.barrier.entrance" = "Entrance"; - -"type.barrier.fence" = "Fence"; - -"type.barrier.gate" = "Gate"; - -"type.barrier.hedge" = "Hedge"; - -"type.barrier.lift_gate" = "Lift Gate"; - -"type.barrier.retaining_wall" = "Retaining Wall"; - -"type.barrier.stile" = "Stile"; - -"type.barrier.swing_gate" = "Swing Gate"; - -"type.barrier.toll_booth" = "Toll Booth"; - -"type.barrier.wall" = "Wall"; - -"type.boundary" = "Boundary"; - -"type.boundary.administrative" = "boundary-administrative"; - -"type.boundary.administrative.10" = "boundary-administrative-10"; - -"type.boundary.administrative.11" = "boundary-administrative-11"; - -"type.boundary.administrative.2" = "boundary-administrative-2"; - -"type.boundary.administrative.3" = "boundary-administrative-3"; - -"type.boundary.administrative.4" = "boundary-administrative-4"; - -"type.boundary.administrative.4.state" = "boundary-administrative-4-state"; - -"type.boundary.administrative.5" = "boundary-administrative-5"; - -"type.boundary.administrative.6" = "boundary-administrative-6"; - -"type.boundary.administrative.7" = "boundary-administrative-7"; - -"type.boundary.administrative.8" = "boundary-administrative-8"; - -"type.boundary.administrative.9" = "boundary-administrative-9"; - -"type.boundary.administrative.city" = "boundary-administrative-city"; - -"type.boundary.administrative.country" = "boundary-administrative-country"; - -"type.boundary.administrative.county" = "boundary-administrative-county"; - -"type.boundary.administrative.municipality" = "boundary-administrative-municipality"; - -"type.boundary.administrative.nation" = "boundary-administrative-nation"; - -"type.boundary.administrative.region" = "boundary-administrative-region"; - -"type.boundary.administrative.state" = "boundary-administrative-state"; - -"type.boundary.administrative.suburb" = "boundary-administrative-suburb"; - -"type.boundary.national_park" = "Hifadhi ya taifa"; - -"type.building" = "Building"; - -"type.building.address" = "Building"; - -"type.building.garage" = "Garage"; - -"type.building.has_parts" = "Building"; - -"type.building.train_station" = "Train Station"; - -"type.building.warehouse" = "Warehouse"; - -"type.craft" = "Craft"; - -"type.craft.brewery" = "Craft Brewery"; - -"type.craft.carpenter" = "Carpenter"; - -"type.craft.electrician" = "Electrician"; - -"type.craft.gardener" = "Gardener"; - -"type.craft.hvac" = "Hvac"; - -"type.craft.metal_construction" = "Metal Worker"; - -"type.craft.painter" = "Painter"; - -"type.craft.photographer" = "Photographer"; - -"type.craft.plumber" = "Plumber"; - -"type.craft.shoemaker" = "Shoe Repair"; - -"type.craft.tailor" = "Tailor"; - -"type.cuisine.african" = "African"; - -"type.cuisine.american" = "American"; - -"type.cuisine.arab" = "Arab"; - -"type.cuisine.argentinian" = "Argentinian"; - -"type.cuisine.asian" = "Asian"; - -"type.cuisine.austrian" = "Austrian"; - -"type.cuisine.bagel" = "Bagel"; - -"type.cuisine.balkan" = "Balkan"; - -"type.cuisine.barbecue" = "Barbecue"; - -"type.cuisine.bavarian" = "Bavarian"; - -"type.cuisine.beef_bowl" = "Beef Bowl"; - -"type.cuisine.brazilian" = "Brazilian"; - -"type.cuisine.breakfast" = "Breakfast"; - -"type.cuisine.burger" = "Burger"; - -"type.cuisine.buschenschank" = "Buschenschank"; - -"type.cuisine.cake" = "Cake"; - -"type.cuisine.caribbean" = "Caribbean"; - -"type.cuisine.chicken" = "Chicken"; - -"type.cuisine.chinese" = "Chinese"; - -"type.cuisine.coffee_shop" = "Kahawa"; - -"type.cuisine.crepe" = "Crepe"; - -"type.cuisine.croatian" = "Croatian"; - -"type.cuisine.curry" = "Curry"; - -"type.cuisine.deli" = "Deli"; - -"type.cuisine.diner" = "Diner"; - -"type.cuisine.donut" = "Donut"; - -"type.cuisine.ethiopian" = "Ethiopian"; - -"type.cuisine.filipino" = "Filipino"; - -"type.cuisine.fine_dining" = "Fine Dining"; - -"type.cuisine.fish" = "Fish"; - -"type.cuisine.fish_and_chips" = "Fish and Chips"; - -"type.cuisine.french" = "French"; - -"type.cuisine.friture" = "Friture"; - -"type.cuisine.georgian" = "Georgian"; - -"type.cuisine.german" = "German"; - -"type.cuisine.greek" = "Greek"; - -"type.cuisine.grill" = "Grill"; - -"type.cuisine.heuriger" = "Heuriger"; - -"type.cuisine.hotdog" = "Hotdog"; - -"type.cuisine.hungarian" = "Hungarian"; - -"type.cuisine.ice_cream" = "Ice Cream"; - -"type.cuisine.indian" = "Indian"; - -"type.cuisine.indonesian" = "Indonesian"; - -"type.cuisine.international" = "International"; - -"type.cuisine.irish" = "Irish"; - -"type.cuisine.italian" = "Italian"; - -"type.cuisine.italian_pizza" = "Italian, Pizza"; - -"type.cuisine.japanese" = "Japanese"; - -"type.cuisine.kebab" = "Kebab"; - -"type.cuisine.korean" = "Korean"; - -"type.cuisine.lao" = "Lao"; - -"type.cuisine.lebanese" = "Lebanese"; - -"type.cuisine.local" = "Local"; - -"type.cuisine.malagasy" = "Malagasy"; - -"type.cuisine.malaysian" = "Malaysian"; - -"type.cuisine.mediterranean" = "Mediterranean"; - -"type.cuisine.mexican" = "Mexican"; - -"type.cuisine.moroccan" = "Moroccan"; - -"type.cuisine.noodles" = "Noodles"; - -"type.cuisine.oriental" = "Far Eastern"; - -"type.cuisine.pancake" = "Pancake"; - -"type.cuisine.pasta" = "Pasta"; - -"type.cuisine.persian" = "Persian"; - -"type.cuisine.peruvian" = "Peruvian"; - -"type.cuisine.pizza" = "Pizza"; - -"type.cuisine.polish" = "Polish"; - -"type.cuisine.portuguese" = "Portuguese"; - -"type.cuisine.ramen" = "Ramen"; - -"type.cuisine.regional" = "Regional"; - -"type.cuisine.russian" = "Russian"; - -"type.cuisine.sandwich" = "Sandwich"; - -"type.cuisine.sausage" = "Sausage"; - -"type.cuisine.savory_pancakes" = "Savory Pancakes"; - -"type.cuisine.seafood" = "Seafood"; - -"type.cuisine.soba" = "Soba"; - -"type.cuisine.spanish" = "Spanish"; - -"type.cuisine.steak_house" = "Steak House"; - -"type.cuisine.sushi" = "Sushi"; - -"type.cuisine.tapas" = "Tapas"; - -"type.cuisine.tea" = "Tea"; - -"type.cuisine.thai" = "Thai"; - -"type.cuisine.turkish" = "Turkish"; - -"type.cuisine.vegan" = "Vegan"; - -"type.cuisine.vegetarian" = "Vegetarian"; - -"type.cuisine.vietnamese" = "Vietnamese"; - -"type.emergency" = "Emergency"; - -"type.emergency.defibrillator" = "Defibrillator"; - -"type.emergency.fire_hydrant" = "Fire Hydrant"; - -"type.emergency.phone" = "Emergency Phone"; - -"type.entrance" = "Entrance"; - -"type.healthcare.laboratory" = "Maabara ya Matibabu"; - - -/********** Types: Roads **********/ - -"type.highway" = "Highway"; - -"type.highway.bridleway" = "Bridle Path"; - -"type.highway.bridleway.bridge" = "Bridle Path"; - -"type.highway.bridleway.permissive" = "Bridle Path"; - -"type.highway.bridleway.tunnel" = "Bridle Path"; - -"type.highway.bus_stop" = "Bus Stop"; - -"type.highway.construction" = "Barabara inatengenezwa"; - -"type.highway.cycleway" = "Cycle Path"; - -"type.highway.cycleway.bridge" = "Cycle Path"; - -"type.highway.cycleway.permissive" = "Cycle Path"; - -"type.highway.cycleway.tunnel" = "Cycle Path"; - -"type.highway.elevator" = "Elevator"; - -"type.highway.footway" = "Foot Path"; - -"type.highway.footway.alpine_hiking" = "Path"; - -"type.highway.footway.area" = "Foot Path"; - -"type.highway.footway.bridge" = "Foot Path"; - -"type.highway.footway.demanding_alpine_hiking" = "Path"; - -"type.highway.footway.demanding_mountain_hiking" = "Path"; - -"type.highway.footway.difficult_alpine_hiking" = "Path"; - -"type.highway.footway.hiking" = "Path"; - -"type.highway.footway.mountain_hiking" = "Path"; - -"type.highway.footway.permissive" = "Foot Path"; - -"type.highway.footway.tunnel" = "Foot Path"; - -"type.highway.ford" = "Ford"; - -"type.highway.living_street" = "Living Street"; - -"type.highway.living_street.bridge" = "Living Street"; - -"type.highway.living_street.tunnel" = "Living Street"; - -"type.highway.motorway" = "Motorway"; - -"type.highway.motorway.bridge" = "Motorway"; - -"type.highway.motorway.tunnel" = "Motorway"; - -"type.highway.motorway_junction" = "Road Exit"; - -"type.highway.motorway_link" = "Motorway"; - -"type.highway.motorway_link.bridge" = "Motorway"; - -"type.highway.motorway_link.tunnel" = "Motorway"; - -"type.highway.path" = "Path"; - -"type.highway.path.alpine_hiking" = "Path"; - -"type.highway.path.bicycle" = "Path"; - -"type.highway.path.bridge" = "Path"; - -"type.highway.path.demanding_alpine_hiking" = "Path"; - -"type.highway.path.demanding_mountain_hiking" = "Path"; - -"type.highway.path.difficult_alpine_hiking" = "Path"; - -"type.highway.path.hiking" = "Path"; - -"type.highway.path.horse" = "Path"; - -"type.highway.path.mountain_hiking" = "Path"; - -"type.highway.path.permissive" = "Path"; - -"type.highway.path.tunnel" = "Path"; - -"type.highway.pedestrian" = "Pedestrian Street"; - -"type.highway.pedestrian.area" = "Pedestrian Street"; - -"type.highway.pedestrian.bridge" = "Pedestrian Street"; - -"type.highway.pedestrian.tunnel" = "Pedestrian Street"; - -"type.highway.primary" = "Primary Road"; - -"type.highway.primary.bridge" = "Primary Road"; - -"type.highway.primary.tunnel" = "Primary Road"; - -"type.highway.primary_link" = "Primary Road"; - -"type.highway.primary_link.bridge" = "Primary Road"; - -"type.highway.primary_link.tunnel" = "Primary Road"; - -"type.highway.raceway" = "Racetrack"; - -"type.highway.residential" = "Street"; - -"type.highway.residential.area" = "Street"; - -"type.highway.residential.bridge" = "Street"; - -"type.highway.residential.tunnel" = "Street"; - -"type.highway.rest_area" = "Rest Area"; - -"type.highway.road" = "Road"; - -"type.highway.road.bridge" = "Road"; - -"type.highway.road.tunnel" = "Road"; - -"type.highway.secondary" = "Secondary Road"; - -"type.highway.secondary.bridge" = "Secondary Road"; - -"type.highway.secondary.tunnel" = "Secondary Road"; - -"type.highway.secondary_link" = "Secondary Road"; - -"type.highway.secondary_link.bridge" = "Secondary Road"; - -"type.highway.secondary_link.tunnel" = "Secondary Road"; - -"type.highway.service" = "Service Road"; - -"type.highway.service.area" = "Service Road"; - -"type.highway.service.bridge" = "Service Road"; - -"type.highway.service.driveway" = "Service Road"; - -"type.highway.service.parking_aisle" = "Service Road"; - -"type.highway.service.tunnel" = "Service Road"; - -"type.highway.services" = "Service Area"; - -"type.highway.speed_camera" = "Speed Camera"; - -"type.highway.steps" = "Stairs"; - -"type.highway.steps.bridge" = "Stairs"; - -"type.highway.steps.tunnel" = "Stairs"; - -"type.highway.tertiary" = "Tertiary Road"; - -"type.highway.tertiary.bridge" = "Tertiary Road"; - -"type.highway.tertiary.tunnel" = "Tertiary Road"; - -"type.highway.tertiary_link" = "Tertiary Road"; - -"type.highway.tertiary_link.bridge" = "Tertiary Road"; - -"type.highway.tertiary_link.tunnel" = "Tertiary Road"; - -"type.highway.track" = "Track"; - -"type.highway.track.area" = "Track"; - -"type.highway.track.bridge" = "Track"; - -"type.highway.track.grade1" = "Track"; - -"type.highway.track.grade2" = "Track"; - -"type.highway.track.grade3" = "Track"; - -"type.highway.track.grade4" = "Track"; - -"type.highway.track.grade5" = "Track"; - -"type.highway.track.no.access" = "Track"; - -"type.highway.track.permissive" = "Track"; - -"type.highway.track.tunnel" = "Track"; - -"type.highway.traffic_signals" = "Traffic Lights"; - -"type.highway.trunk" = "National Highway"; - -"type.highway.trunk.bridge" = "National Highway"; - -"type.highway.trunk.tunnel" = "National Highway"; - -"type.highway.trunk_link" = "National Highway"; - -"type.highway.trunk_link.bridge" = "National Highway"; - -"type.highway.trunk_link.tunnel" = "National Highway"; - -"type.highway.unclassified" = "Minor Road"; - -"type.highway.unclassified.area" = "Minor Road"; - -"type.highway.unclassified.bridge" = "Minor Road"; - -"type.highway.unclassified.tunnel" = "Minor Road"; - -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Foot Path"; - -"type.area_highway.living_street" = "Living Street"; - -"type.area_highway.motorway" = "Motorway"; - -"type.area_highway.path" = "Path"; - -"type.area_highway.pedestrian" = "Pedestrian Street"; - -"type.area_highway.primary" = "Primary Road"; - -"type.area_highway.residential" = "Street"; - -"type.area_highway.secondary" = "Secondary Road"; - -"type.area_highway.service" = "Service Road"; - -"type.area_highway.tertiary" = "Tertiary Road"; - -"type.area_highway.steps" = "Stairs"; - -"type.area_highway.track" = "Track"; - -"type.area_highway.trunk" = "National Highway"; - -"type.area_highway.unclassified" = "Minor Road"; - -"type.highway.world_level" = "highway-world_level"; - -"type.highway.world_towns_level" = "highway-world_towns_level"; - - -/********** Types: Historic **********/ - -"type.historic" = "Historic"; - -"type.historic.archaeological_site" = "Archaeological Site"; - -"type.historic.battlefield" = "Battlefield"; - -"type.historic.boundary_stone" = "Boundary Stone"; - -"type.historic.castle" = "Castle"; - -"type.historic.castle.defensive" = "Castle"; - -"type.historic.castle.stately" = "Castle"; - -"type.historic.citywalls" = "City Wall"; - -"type.historic.fort" = "Fort"; - -"type.historic.memorial" = "Memorial"; - -"type.historic.memorial.plaque" = "Commemorative plaque"; - -"type.historic.memorial.sculpture" = "Sculpture"; - -"type.historic.memorial.statue" = "Statue"; - -"type.historic.monument" = "Monument"; - -"type.historic.ruins" = "Ruins"; - -"type.historic.ship" = "Ship"; - -"type.historic.tomb" = "Tomb"; - -"type.historic.wayside_cross" = "Christian Cross"; - -"type.historic.wayside_shrine" = "Shrine"; - -"type.hwtag" = "hwtag"; - -"type.hwtag.bidir_bicycle" = "hwtag-bidir_bicycle"; - -"type.hwtag.onedir_bicycle" = "hwtag-onedir_bicycle"; - -"type.hwtag.lit" = "hwtag-lit"; - -"type.hwtag.nobicycle" = "hwtag-nobicycle"; - -"type.hwtag.nocar" = "hwtag-nocar"; - -"type.hwtag.nofoot" = "hwtag-nofoot"; - -"type.hwtag.oneway" = "hwtag-oneway"; - -"type.hwtag.private" = "hwtag-private"; - -"type.hwtag.toll" = "hwtag-toll"; - -"type.hwtag.yesbicycle" = "hwtag-yesbicycle"; - -"type.hwtag.yescar" = "hwtag-yescar"; - -"type.hwtag.yesfoot" = "hwtag-yesfoot"; - -"type.internet_access" = "Internet"; - -"type.internet_access.wlan" = "Internet"; - -"type.junction" = "Junction"; - -"type.junction.roundabout" = "Roundabout"; - -"type.landuse" = "Landuse"; - -"type.landuse.allotments" = "Allotments"; - -"type.landuse.basin" = "Bonde la Maji"; - -"type.landuse.brownfield" = "Brownfield"; - -"type.landuse.cemetery" = "Graveyard"; - -"type.landuse.cemetery.christian" = "Christian Graveyard"; - -"type.landuse.churchyard" = "Sehemu ya kanisa"; - -"type.landuse.commercial" = "Commercial Area"; - -"type.landuse.construction" = "Construction"; - -"type.landuse.farm" = "Farm"; - -"type.landuse.farmland" = "Shamba"; - -"type.landuse.farmyard" = "Farmyard"; - -"type.landuse.field" = "Field"; - -"type.landuse.forest" = "Forest"; - -"type.landuse.forest.coniferous" = "Coniferous Forest"; - -"type.landuse.forest.deciduous" = "Deciduous Forest"; - -"type.landuse.forest.mixed" = "Mixed Forest"; - -"type.landuse.garages" = "Garages"; - -"type.landuse.grass" = "Bustani"; - -"type.landuse.greenfield" = "Greenfield"; - -"type.landuse.greenhouse_horticulture" = "Greenhouse"; - -"type.landuse.industrial" = "Industrial Land"; - -"type.landuse.landfill" = "Shamba la Taka"; - -"type.landuse.meadow" = "Meadow"; - -"type.landuse.military" = "Military Area"; - -"type.landuse.orchard" = "Orchard"; - -"type.landuse.quarry" = "Quarry"; - -"type.landuse.railway" = "Eneo la njia ya reli"; - -"type.landuse.recreation_ground" = "Recreation Ground"; - -"type.landuse.reservoir" = "Water"; - -"type.landuse.residential" = "Residential Land"; - -"type.landuse.retail" = "Retail Land"; - -"type.landuse.salt_pond" = "Pond"; - -"type.landuse.village_green" = "Land"; - -"type.landuse.vineyard" = "Vineyard"; - -"type.leisure" = "Leisure"; - -"type.leisure.common" = "leisure-common"; - -"type.leisure.dog_park" = "Eneo la mbwa"; - -"type.leisure.fitness_centre" = "Fitness Centre"; - -"type.leisure.fitness_station" = "Fitness Station"; - -"type.leisure.garden" = "Garden"; - -"type.leisure.golf_course" = "Golf Course"; - -"type.leisure.ice_rink" = "Ice Rink"; - -"type.leisure.landscape_reserve" = "Landscape Reserve"; - -"type.leisure.marina" = "Marina"; - -"type.leisure.nature_reserve" = "Hifadhi"; - -"type.leisure.park" = "Hifadhi"; - -"type.leisure.park.no.access" = "Hifadhi"; - -"type.leisure.park.permissive" = "Hifadhi"; - -"type.leisure.park.private" = "Hifadhi"; - -"type.leisure.picnic_table" = "Jedwali la Picnic"; - -"type.leisure.pitch" = "Sports Ground"; - -"type.leisure.playground" = "Playground"; - -"type.leisure.recreation_ground" = "Recreation Ground"; - -"type.leisure.sauna" = "Chumba cha mvuke"; - -"type.leisure.slipway" = "Slipway"; - -"type.leisure.sports_centre" = "Sports Center"; - -"type.leisure.sports_centre.climbing" = "Climbing Centre"; - -"type.leisure.sports_centre.shooting" = "Shooting Range"; - -"type.leisure.sports_centre.swimming" = "Swimming Centre"; - -"type.leisure.sports_centre.yoga" = "Yoga Studio"; - -"type.leisure.stadium" = "Stadium"; - -"type.leisure.swimming_pool" = "Swimming Pool"; - -"type.leisure.track" = "Track"; - -"type.leisure.water_park" = "Water Park"; - -"type.leisure.beach_resort" = "Beach Resort"; - -"type.man_made" = "Man Made"; - -"type.man_made.breakwater" = "Breakwater"; - -"type.man_made.cairn" = "Cairn"; - -"type.man_made.chimney" = "Factory Chimney"; - -"type.man_made.cutline" = "Cutline"; - -"type.man_made.lighthouse" = "Lighthouse"; - -"type.man_made.pier" = "Pier"; - -"type.man_made.pipeline" = "Pipeline"; - -"type.man_made.pipeline.overground" = "Overground Pipeline"; - -"type.man_made.silo" = "Silo"; - -"type.man_made.storage_tank" = "Storage Tank"; - -"type.man_made.surveillance" = "Surveillance Camera"; - -"type.man_made.tower" = "Tower"; - -"type.man_made.wastewater_plant" = "Wastewater Plant"; - -"type.man_made.water_tap" = "Water Tap"; - -"type.man_made.water_tower" = "Water Tower"; - -"type.man_made.water_well" = "Water Well"; - -"type.man_made.windmill" = "Windmill"; - -"type.man_made.works" = "Industrial Works"; - -"type.mapswithme" = "mapswithme"; - -"type.mapswithme.grid" = "mapswithme-grid"; - -"type.military" = "Military"; - -"type.military.bunker" = "Bunker"; - -"type.mountain_pass" = "Mountain Pass"; - -"type.natural" = "Natural"; - -"type.natural.bare_rock" = "Bare Rock"; - -"type.natural.bay" = "Bay"; - -"type.natural.beach" = "Beach"; - -"type.natural.beach.sand" = "Sandy Beach"; - -"type.natural.beach.gravel" = "Gravel Beach"; - -"type.natural.cape" = "Rasi"; - -"type.natural.cave_entrance" = "Cave"; - -"type.natural.cliff" = "Cliff"; - -"type.natural.coastline" = "Coastline"; - -"type.natural.geyser" = "Chemchem ya maji moto"; - -"type.natural.glacier" = "Mto barafu"; - -"type.natural.grassland" = "Shamba"; - -"type.natural.heath" = "Heath"; - -"type.natural.hot_spring" = "Hot Spring"; - -"type.natural.water.lake" = "Lake"; - -"type.natural.water.pond" = "Pond"; - -"type.natural.water.reservoir" = "Hifadhi"; - -"type.natural.water.basin" = "Bonde la Maji"; - -"type.natural.water.river" = "River"; - -"type.natural.land" = "Land"; - -"type.natural.meadow" = "Meadow"; - -"type.natural.orchard" = "Orchard"; - -"type.natural.peak" = "Peak"; - -"type.natural.saddle" = "Mountain Saddle"; - -"type.natural.rock" = "Rock"; - -"type.natural.scrub" = "Eneo la Vichaka"; - -"type.natural.spring" = "Spring"; - -"type.natural.strait" = "Mlango Bahari"; - -"type.natural.tree" = "Tree"; - -"type.natural.tree_row" = "Tree Row"; - -"type.natural.vineyard" = "Vineyard"; - -"type.natural.volcano" = "Volcano"; - -"type.natural.water" = "Waterbody"; - -"type.natural.wetland" = "Maeneo yenye majimaji"; - -"type.natural.wetland.bog" = "Wetland"; - -"type.natural.wetland.marsh" = "Wetland"; - -"type.noexit" = "noexit"; - -"type.noexit.motor_vehicle" = "noexit-motor_vehicle"; - -"type.office" = "Office"; - -"type.office.company" = "Company Office"; - -"type.office.estate_agent" = "Estate Agent"; - -"type.office.government" = "Government Office"; - -"type.office.insurance" = "Insurance Office"; - -"type.office.lawyer" = "Lawyer"; - -"type.office.ngo" = "NGO Office"; - -"type.office.telecommunication" = "Mobile Operator"; - -"type.place" = "place"; - -"type.place.city" = "City"; - -"type.place.city.capital" = "Capital"; - -"type.place.city.capital.10" = "City"; - -"type.place.city.capital.11" = "City"; - -"type.place.city.capital.2" = "Capital"; - -"type.place.city.capital.3" = "City"; - -"type.place.city.capital.4" = "City"; - -"type.place.city.capital.5" = "City"; - -"type.place.city.capital.6" = "City"; - -"type.place.city.capital.7" = "City"; - -"type.place.city.capital.8" = "City"; - -"type.place.city.capital.9" = "City"; - -"type.place.continent" = "Continent"; - -"type.place.country" = "Country"; - -"type.place.county" = "County"; - -"type.place.farm" = "Farm"; - -"type.place.hamlet" = "Hamlet"; - -"type.place.island" = "Island"; - -"type.place.islet" = "Island"; - -"type.place.isolated_dwelling" = "Dwelling"; - -"type.place.locality" = "Locality"; - -"type.place.neighbourhood" = "Neighbourhood"; - -"type.place.ocean" = "Ocean"; - -"type.place.region" = "Region"; - -"type.place.sea" = "Sea"; - -"type.place.square" = "Square"; - -"type.place.state" = "State"; - -"type.place.state.USA" = "State"; - -"type.place.suburb" = "Suburb"; - -"type.place.town" = "Town"; - -"type.place.village" = "Village"; - -"type.power" = "Power"; - -"type.power.generator" = "Generator"; - -"type.power.line" = "Power Line"; - -"type.power.line.underground" = "Underground Power Line"; - -"type.power.minor_line" = "Minor Power Line"; - -"type.power.pole" = "Power Tower"; - -"type.power.station" = "Power Station"; - -"type.power.substation" = "Substation"; - -"type.power.tower" = "Power Tower"; - -"type.psurface" = "psurface"; - -"type.psurface.paved_bad" = "psurface-paved_bad"; - -"type.psurface.paved_good" = "psurface-paved_good"; - -"type.psurface.unpaved_bad" = "psurface-unpaved_bad"; - -"type.psurface.unpaved_good" = "psurface-unpaved_good"; - -"type.public_transport" = "Public Transport"; - -"type.public_transport.platform" = "Platform"; - -"type.railway" = "Railway"; - -"type.railway.abandoned" = "Abandoned railway"; - -"type.railway.abandoned.bridge" = "Abandoned railway"; - -"type.railway.abandoned.tunnel" = "Abandoned Railway"; - -"type.railway.construction" = "Railway's Construction"; - -"type.railway.crossing" = "Railway Crossing"; - -"type.railway.disused" = "Disused railway"; - -"type.railway.funicular" = "Funicular"; - -"type.railway.funicular.bridge" = "Funicular"; - -"type.railway.funicular.tunnel" = "Funicular"; - -"type.railway.halt" = "Train Station"; - -"type.railway.level_crossing" = "Tambuka Reli"; - -"type.railway.light_rail" = "Light Rail"; - -"type.railway.light_rail.bridge" = "Light Rail"; - -"type.railway.light_rail.tunnel" = "Light Rail"; - -"type.railway.monorail" = "Mfumo wa reli moja"; - -"type.railway.monorail.bridge" = "Monorail"; - -"type.railway.monorail.tunnel" = "Monorail"; - -"type.railway.narrow_gauge" = "Narrow Gauge Rail"; - -"type.railway.narrow_gauge.bridge" = "Narrow Gauge Rail"; - -"type.railway.narrow_gauge.tunnel" = "Narrow Gauge Rail"; - -"type.railway.platform" = "Platform"; - -"type.railway.preserved" = "Preserved Rail"; - -"type.railway.preserved.bridge" = "Preserved Rail"; - -"type.railway.preserved.tunnel" = "Preserved Rail"; - -"type.railway.rail" = "Njia ya Reli"; - -"type.railway.rail.bridge" = "Railway"; - -"type.railway.rail.motor_vehicle" = "Railway"; - -"type.railway.rail.tunnel" = "Railway"; - -"type.railway.razed" = "Razed Rail"; - -"type.railway.siding" = "Siding Rail"; - -"type.railway.siding.bridge" = "Siding Rail"; - -"type.railway.siding.tunnel" = "Siding Rail"; - -"type.railway.spur" = "Spur Rail"; - -"type.railway.spur.bridge" = "Spur Rail"; - -"type.railway.spur.tunnel" = "Spur Rail"; - -"type.railway.station" = "Train Station"; - -"type.railway.station.light_rail" = "Train Station"; - -"type.railway.station.monorail" = "Train Station"; - -"type.railway.station.subway" = "Subway"; - -"type.railway.station.subway.barcelona" = "Subway"; - -"type.railway.station.subway.berlin" = "Subway"; - -"type.railway.station.subway.kiev" = "Subway"; - -"type.railway.station.subway.london" = "Subway"; - -"type.railway.station.subway.madrid" = "Subway"; - -"type.railway.station.subway.minsk" = "Subway"; - -"type.railway.station.subway.moscow" = "Subway"; - -"type.railway.station.subway.newyork" = "Subway"; - -"type.railway.station.subway.paris" = "Subway"; - -"type.railway.station.subway.roma" = "Subway"; - -"type.railway.station.subway.spb" = "Subway"; - -"type.railway.subway" = "Subway Line"; - -"type.railway.subway.bridge" = "Subway Line"; - -"type.railway.subway.tunnel" = "Subway Line"; - -"type.railway.subway_entrance" = "Lango la kuingilia stesheni ya reli"; - -"type.railway.subway_entrance.barcelona" = "Subway"; - -"type.railway.subway_entrance.berlin" = "Subway"; - -"type.railway.subway_entrance.kiev" = "Subway"; - -"type.railway.subway_entrance.london" = "Subway"; - -"type.railway.subway_entrance.madrid" = "Subway"; - -"type.railway.subway_entrance.minsk" = "Subway"; - -"type.railway.subway_entrance.moscow" = "Subway"; - -"type.railway.subway_entrance.newyork" = "Subway"; - -"type.railway.subway_entrance.paris" = "Subway"; - -"type.railway.subway_entrance.roma" = "Subway"; - -"type.railway.subway_entrance.spb" = "Subway"; - -"type.railway.tram" = "Tram Line"; - -"type.railway.tram.bridge" = "Tram Line"; - -"type.railway.tram.tunnel" = "Tram Line"; - -"type.railway.tram_stop" = "Tram Stop"; - -"type.railway.yard" = "Railway Yard"; - -"type.railway.yard.bridge" = "Railway Yard"; - -"type.railway.yard.tunnel" = "Railway Yard"; - -"type.route" = "route"; - -"type.route.ferry" = "Ferry"; - -"type.route.shuttle_train" = "Shuttle Train"; - -"type.shop" = "Shop"; - -"type.shop.alcohol" = "Liquor Store"; - -"type.shop.bakery" = "Bakery"; - -"type.shop.beauty" = "Beauty Shop"; - -"type.shop.beverages" = "Beverages"; - -"type.shop.bicycle" = "Bicycle Shop"; - -"type.shop.bookmaker" = "Bookmaker"; - -"type.shop.books" = "Bookstore"; - -"type.shop.butcher" = "Butcher’s"; - -"type.shop.car" = "Car Shop"; - -"type.shop.car_parts" = "Car Parts"; - -"type.shop.car_repair" = "Car Repair Shop"; - -"type.shop.car_repair.tyres" = "Tyre Repair"; - -"type.shop.chemist" = "Chemist Shop"; - -"type.shop.chocolate" = "Shop"; - -"type.shop.clothes" = "Clothes Shop"; - -"type.shop.coffee" = "Shop"; - -"type.shop.computer" = "Computer Store"; - -"type.shop.confectionery" = "Sweets"; - -"type.shop.convenience" = "Convenience Store"; - -"type.shop.copyshop" = "Copy Shop"; - -"type.shop.cosmetics" = "Beauty Care"; - -"type.shop.department_store" = "Department Store"; - -"type.shop.doityourself" = "Hardware Store"; - -"type.shop.dry_cleaning" = "Dry Cleaning"; - -"type.shop.electronics" = "Electronics"; - -"type.shop.erotic" = "Erotic Shop"; - -"type.shop.fabric" = "Shop"; - -"type.shop.florist" = "Florist’s"; - -"type.shop.funeral_directors" = "Funeral Directors"; - -"type.shop.furniture" = "Furniture Store"; - -"type.shop.garden_centre" = "Garden Store"; - -"type.shop.gift" = "Gift Shop"; - -"type.shop.greengrocer" = "Greengrocer's"; - -"type.shop.hairdresser" = "Hairdresser"; - -"type.shop.hardware" = "Hardware Store"; - -"type.shop.jewelry" = "Jewelry"; - -"type.shop.kiosk" = "Kiosk"; - -"type.shop.laundry" = "Laundry"; - -"type.shop.mall" = "Mall"; - -"type.shop.massage" = "Massage Salon"; - -"type.shop.mobile_phone" = "Cell Phones"; - -"type.shop.money_lender" = "Shop"; - -"type.shop.motorcycle" = "Motorcycle Shop"; - -"type.shop.music" = "Shop"; - -"type.shop.musical_instrument" = "Shop"; - -"type.shop.newsagent" = "Newspaper Stand"; - -"type.shop.optician" = "Optician’s"; - -"type.shop.outdoor" = "Outdoor Equipment"; - -"type.shop.pawnbroker" = "Pawnbroker"; - -"type.shop.pet" = "Petshop"; - -"type.shop.photo" = "Photo Shop"; - -"type.shop.seafood" = "Seafood Shop"; - -"type.shop.shoes" = "Shoe Store"; - -"type.shop.sports" = "Sports Goods"; - -"type.shop.stationery" = "Stationery Shop"; - -"type.shop.supermarket" = "Supermarket"; - -"type.shop.tattoo" = "Tattoo Parlour"; - -"type.shop.tea" = "Shop"; - -"type.shop.ticket" = "Ticket Shop"; - -"type.shop.toys" = "Toy Store"; - -"type.shop.travel_agency" = "Travel Agency"; - -"type.shop.tyres" = "Tyre Shop"; - -"type.shop.variety_store" = "Variety Store"; - -"type.shop.video" = "Duka la Video"; - -"type.shop.video_games" = "Duka la Video za Michezo"; - -"type.shop.wine" = "Wine Shop"; - -"type.sport" = "sport"; - -"type.sport.american_football" = "American Football"; - -"type.sport.archery" = "Archery"; - -"type.sport.athletics" = "Riadha"; - -"type.sport.australian_football" = "Rugby"; - -"type.sport.baseball" = "Baseball"; - -"type.sport.basketball" = "Mpira wa kikapu"; - -"type.sport.bowls" = "Bowls"; - -"type.sport.cricket" = "Cricket"; - -"type.sport.curling" = "Сurling"; - -"type.sport.diving" = "Diving"; - -"type.sport.equestrian" = "Michezo ya Farasi"; - -"type.sport.golf" = "Golf"; - -"type.sport.gymnastics" = "Gymnastics"; - -"type.sport.handball" = "Handball"; - -"type.sport.multi" = "Various Sport"; - -"type.sport.scuba_diving" = "Scuba Diving"; - -"type.sport.shooting" = "Shooting"; - -"type.sport.skiing" = "Skiing"; - -"type.sport.soccer" = "Soccer (Football)"; - -"type.sport.swimming" = "Swimming"; - -"type.sport.tennis" = "Wanja wa tenisi"; - -"type.tourism" = "Tourism"; - -"type.tourism.alpine_hut" = "Mountains Lodging"; - -"type.tourism.apartment" = "Apartments"; - -"type.tourism.artwork" = "Artwork"; - -"type.tourism.artwork.architecture" = "Artwork"; - -"type.tourism.artwork.painting" = "Artwork"; - -"type.tourism.artwork.sculpture" = "Artwork"; - -"type.tourism.artwork.statue" = "Artwork"; - -"type.tourism.attraction" = "Attraction"; - -"type.tourism.attraction.animal" = "Attraction"; - -"type.tourism.attraction.specified" = "Attraction"; - -"type.tourism.camp_site" = "Camping"; - -"type.tourism.caravan_site" = "Caravan Site"; - -"type.tourism.chalet" = "Chalet"; - -"type.tourism.gallery" = "Gallery"; - -"type.tourism.guest_house" = "Guest House"; - -"type.tourism.hostel" = "Hostel"; - -"type.tourism.hotel" = "Hotel"; - -"type.tourism.information" = "Tourist Information"; - -"type.tourism.information.board" = "Information Board"; - -"type.tourism.information.guidepost" = "Tourist Information"; - -"type.tourism.information.map" = "Tourist Map"; - -"type.tourism.information.office" = "Tourist Office"; - -"type.tourism.motel" = "Motel"; - -"type.tourism.museum" = "Museum"; - -"type.tourism.picnic_site" = "Picnic Site"; - -"type.tourism.resort" = "Resort"; - -"type.tourism.theme_park" = "Theme Park"; - -"type.tourism.viewpoint" = "Viewpoint"; - -"type.tourism.wilderness_hut" = "Wilderness Hut"; - -"type.tourism.zoo" = "Zoo"; - -"type.traffic_calming" = "Traffic Calming"; - -"type.traffic_calming.bump" = "Traffic Bump"; - -"type.traffic_calming.hump" = "Traffic Hump"; - -"type.waterway" = "Waterway"; - -"type.waterway.canal" = "Canal"; - -"type.waterway.canal.tunnel" = "Canal"; - -"type.waterway.dam" = "Dam"; - -"type.waterway.ditch" = "Ditch"; - -"type.waterway.ditch.tunnel" = "Ditch"; - -"type.waterway.dock" = "Waterway Dock"; - -"type.waterway.drain" = "Drain"; - -"type.waterway.drain.tunnel" = "Drain"; - -"type.waterway.lock" = "Waterway Lock"; - -"type.waterway.lock_gate" = "Lock Gate"; - -"type.waterway.river" = "River"; - -"type.waterway.river.tunnel" = "River"; - -"type.waterway.riverbank" = "River"; - -"type.waterway.stream" = "River"; - -"type.waterway.stream.ephemeral" = "River"; - -"type.waterway.stream.intermittent" = "River"; - -"type.waterway.stream.tunnel" = "River"; - -"type.waterway.waterfall" = "Waterfall"; - -"type.waterway.weir" = "Weir"; - -"type.wheelchair" = "Wheelchair"; - -"type.wheelchair.limited" = "Viti vya magurudumu vinaruhusiwa vichache"; - -"type.wheelchair.no" = "Viti vya magurudumu haviruhusiwi"; - -"type.wheelchair.yes" = "Viti vya magurudumu vinaruhusiwa kabisa"; - -"type.piste_lift" = "piste:lift"; - -"type.piste_lift.j.bar" = "piste:lift-j-bar"; - -"type.piste_lift.magic_carpet" = "piste:lift-magic_carpet"; - -"type.piste_lift.platter" = "piste:lift-platter"; - -"type.piste_lift.rope_tow" = "piste:lift-rope_tow"; - -"type.piste_lift.t.bar" = "piste:lift-t-bar"; - -"type.piste_type" = "piste:type"; - -"type.piste_type.downhill" = "piste:type-downhill"; - -"type.piste_type.downhill.advanced" = "piste:type-downhill-advanced"; - -"type.piste_type.downhill.easy" = "piste:type-downhill-easy"; - -"type.piste_type.downhill.expert" = "piste:type-downhill-expert"; - -"type.piste_type.downhill.freeride" = "piste:type-downhill-freeride"; - -"type.piste_type.downhill.intermediate" = "piste:type-downhill-intermediate"; - -"type.piste_type.downhill.novice" = "piste:type-downhill-novice"; - -"type.piste_type.nordic" = "piste:type-nordic"; - -"type.piste_type.sled" = "piste:type-sled"; - -"type.building_part" = "Building"; diff --git a/iphone/Maps/LocalizedStrings/sw.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/sw.lproj/Localizable.stringsdict deleted file mode 100644 index 75d68a1ca9..0000000000 --- a/iphone/Maps/LocalizedStrings/sw.lproj/Localizable.stringsdict +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - bookmarks_places - - NSStringLocalizedFormatKey - %#@value@ - value - - NSStringFormatSpecTypeKey - NSStringPluralRuleType - NSStringFormatValueTypeKey - d - other - Alamisho %d - - - - bookmarks_detect_message - - NSStringLocalizedFormatKey - %#@value@ - value - - NSStringFormatSpecTypeKey - NSStringPluralRuleType - NSStringFormatValueTypeKey - d - one - Faili %d ilipatikana. Utaiona baada ya uongofu. - other - Files %d zimepatikana. Utawaona baada ya uongofu. - - - - objects - - NSStringLocalizedFormatKey - %#@value@ - value - - NSStringFormatSpecTypeKey - NSStringPluralRuleType - NSStringFormatValueTypeKey - d - other - Eneo %d - - - - tracks - - NSStringLocalizedFormatKey - %#@value@ - value - - NSStringFormatSpecTypeKey - NSStringPluralRuleType - NSStringFormatValueTypeKey - d - other - Njia %d - - - - \ No newline at end of file diff --git a/iphone/Maps/LocalizedStrings/th.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/th.lproj/Localizable.strings index 4b8ad5443c..7f0efcb03b 100644 --- a/iphone/Maps/LocalizedStrings/th.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/th.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "กลับ"; + /* Button text (should be short) */ "cancel" = "ยกเลิก"; @@ -17,6 +20,9 @@ "download_maps" = "ดาวน์โหลดแผนที่"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "การดาวน์โหลดล้มเหลว แตะอีกครั้งเพื่อลองใหม่"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "กำลังดาวน์โหลด…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "แผนที่"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "ไมล์"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "ค้นหา"; +/* Search box placeholder text */ +"search_map" = "ค้นหาแผนที่"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "ใช่"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "ในปัจจุบันนี้มีการปิดการใช้งานการบริการตำแหน่งที่ตั้งสำหรับอุปกรณ์หรือแอปพลิเคชันนี้ โปรดเปิดใช้งานในการตั้งค่า"; + /* View and button titles for accessibility */ "zoom_to_country" = "แสดงบนแผนที่"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "การดาวน์โหลดล้มเหลว"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "ลองอีกครั้ง"; + "about_menu_title" = "เกี่ยวกับ Organic Maps"; +"connection_settings" = "การตั้งค่าการเชื่อมต่อ"; + "close" = "ปิด"; +"unsupported_phone" = "จำเป็นต้องใช้ฮาร์ดแวร์ที่เพิ่มความเร็ว OpenGL โชคไม่ดีที่อุปกรณ์ของคุณไม่รองรับ"; + "download" = "ดาวน์โหลด"; +"disconnect_usb_cable" = "โปรดยกเลิกการเชื่อมต่อสาย USB หรือใส่การ์ดหน่วยความจำเพื่อใช้ Organic Maps"; + +"not_enough_free_space_on_sdcard" = "โปรดเพิ่มพื้นที่บางส่วนบนการ์ด SD /พื้นที่จัดเก็บ USB ก่อนเพื่อใช้แอป"; + +"not_enough_memory" = "มีหน่วยความจำไม่เพียงพอสำหรับการเปิดแอป"; + +"download_resources" = "ก่อนที่คุณจะเริ่มต้น โปรดให้เราดาวน์โหลดแผนที่โลกลงในอุปกรณ์ของคุณ\nจำเป็นต้องใช้ %@ ของข้อมูล"; + +"download_resources_continue" = "ไปยังแผนที่"; + +"downloading_country_can_proceed" = "กำลังดาวน์โหลด %@ ตอนนี้คุณสามารถ\nดำเนินการต่อไปยังแผนที่"; + +"download_country_ask" = "ดาวน์โหลด %@?"; + +"update_country_ask" = "อัปเดต %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "หยุดชั่วคราว"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "ดำเนินการต่อ"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "การดาวน์โหลด %@ ล้มเหลว"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "เพิ่มชุดใหม่"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "สถานที่ของฉัน"; +/* Add bookmark dialog - bookmark name */ +"name" = "ชื่อ"; + /* Editor title above street and house number */ "address" = "ที่อยู่"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "ชุด"; + /* Settings button in system menu */ "settings" = "การตั้งค่า"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "บันทึกแผนที่ไปยัง"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "เลือกสถานที่ที่ต้องการดาวน์โหลดใช้แผนที่"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "ลบแผนที่?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "นี่อาจจะใช้เวลาสองสามนาที\nโปรดรอ…"; + /* Measurement units title in settings activity */ "measurement_units" = "หน่วยการวัด"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "เลือกระหว่างไมล์และกิโลเมตร"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "กินร้านไหนดี"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "ซื้อของกินของใช้"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "การขนส่ง"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "ก๊าซ"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "ที่จอดรถ"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "ช็อปปิง"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "โรงแรม"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "สถานที่ท่องเที่ยว"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "แหล่งบันเทิง"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "เอทีเอ็ม"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "ไนท์ไลฟ์"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "วันหยุดสำหรับครอบครัว"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "ธนาคาร"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "ร้านขายยา"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "คลินิก"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "ห้องน้ำ"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "ไปรษณีย์"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "ตำรวจ"; +/* Notes field in Bookmarks view */ +"description" = "บันทึก"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "แชร์บุ๊กมาร์กของ Organic Maps แล้ว"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "ตำแหน่งที่ตั้งของคุณยังไม่ได้รับการกำหนด"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "ขออภัย ไม่มีการเปิดใช้งานการตั้งค่าพื้นที่จัดเก็บแผนที่ในปัจจุบัน"; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "กำลังดำเนินการดาวน์โหลดประเทศในตอนนี้"; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "เฮ้อ ตรวจสอบตำแหน่งที่ตั้งปัจจุบันของฉันที่ Organic Maps! %1$@ หรือ %2$@ ไม่มีการติดตั้งแผนที่แบบออฟไลน์? ดาวน์โหลดที่นี่: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "เฮ้ ตรวจสอบหมุดของฉันที่ แผนที่ Organic Maps!"; /* Subject for emailed position */ "my_position_share_email_subject" = "นี่ มาดูตำแหน่งปัจจุบันของฉันที่แผนที่ Organic Maps สิ!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "หวัดดี\n\nฉันอยู่ที่นี่ตอนนี้: %1$@. คลิกลิงก์นี้ %2$@ หรือลิงก์นี้ %3$@ เพื่อดูสถานที่บนแผนที่\n\nขอบคุณ"; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "แชร์"; /* Share by email button text, also used in editor. */ "email" = "อีเมล"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "คัดลอกไปยังคลิปบอร์ด: %1$@"; + /* place preview title */ "info" = "ข้อมูล"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "คุณแน่ใจหรือไม่ว่าคุณต้องการดำเนินการต่อ?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "การติดตาม"; @@ -195,10 +283,18 @@ "share_my_location" = "แชร์ตำแหน่งที่ตั้งของฉัน"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "การนำทาง"; "pref_zoom_title" = "ปุ่มซูม"; +"pref_zoom_summary" = "แสดงบนหน้าจอ"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "โหมดกลางคืน"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "ภาษาสำหรับเสียง"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "ไม่สามารถใช้ได้"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "อื่น ๆ"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "ความช่วยเหลือ"; +/* Button in the main Help dialog */ +"faq" = "คำถามและคำตอบ"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "วิธีการสนับสนุนเรา"; + /* Button in the main Help dialog */ "copyright" = "ลิขสิทธิ์"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "อัปเดตทั้งหมด"; +/* Cancel all button text */ +"downloader_cancel_all" = "ยกเลิกทั้งหมด"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "ดาวน์โหลดแล้ว"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "ลบแผนที่"; +/* Item in context menu. */ +"downloader_update_map" = "อัปเดตแผนที่"; + +/* Preference text */ +"pref_use_google_play" = "ใช้บริการ Google Play เพื่อรับตำแหน่งปัจจุบันของคุณ"; + /* Text for rating dialog */ "rating_just_rated" = "ฉันเพิ่งให้คะแนนแอปของคุณ"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "การสร้างเส้นทางจำเป็นต้องใช้แผนที่จากสถานที่ตั้งของคุณไปยังปลายทางที่มีการดาวน์โหลดและอัปเดต"; +/* Text for routing error dialog */ +"routing_not_enough_space" = "มีพื้นที่ไม่เพียงพอ"; + /* bookmark button text */ "bookmark" = "บุ๊กมาร์ก"; +/* location service disabled */ +"enable_location_services" = "โปรดเปิดการใช้งานการบริการตำแหน่งที่ตั้ง"; + "save" = "บันทึก"; +"edit_description_hint" = "คำอธิบายของคุณ (ข้อความหรือ html)"; + "create" = "สร้าง"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "ไม่สามารถหาเส้นทางได้"; +"dialog_routing_cant_build_route" = "ไม่สามารถสร้างเส้นทางได้"; + "dialog_routing_change_start_or_end" = "กรุณาปรับจุดเริ่มต้นหรือที่หมายของคุณ"; "dialog_routing_change_start" = "ปรับจุดเริ่มต้น"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "เพื่อเริ่มต้นการค้นหาและสร้างเส้นทาง โปรดดาวน์โหลดแผนที่ และคุณจะไม่จำเป็นต้องทำการเชื่อมต่ออินเทอร์เน็ตอีกต่อไป"; + +"search_select_map" = "เลือกแผนที่"; + /* «Show» context menu */ "show" = "แสดง"; @@ -521,6 +655,9 @@ "clear_search" = "ล้างการค้นหาประวัติ"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "ตำแหน่งที่ตั้งของคุณ"; "p2p_start" = "เริ่มต้น"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "คุณต้องการให้เราาวงแผนเส้นทางจากสถานที่ตั้งปัจจุบันของคุณหรือไม่?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "ถัดไป"; + "editor_time_add" = "เพิ่มวัน"; "editor_time_delete" = "ลบวัน"; @@ -556,14 +696,28 @@ "editor_example_values" = "ตัวอย่างของค่าที่ตั้งไว้"; +"editor_correct_mistake" = "แก้ไขข้อผิดพลาด"; + "editor_add_select_location" = "ตำแหน่ง"; "editor_done_dialog_1" = "คุณได้เปลี่ยนแผนที่โลก อย่าซ่อนมันไว้! บอกเพื่อนคุณ แล้วมาแก้ไขมันไปด้วยกัน"; "share_with_friends" = "แชร์กับเพื่อน"; +"editor_report_problem_desription_1" = "กรุณาอธิบายปัญหาโดยละเอียดเพื่อที่ชุมชน OpenStreeMap จะสามารถแก้ไขข้อผิดพลาดได้"; + +"editor_report_problem_desription_2" = "หรือทำด้วยตัวคุณเองที่ https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "ส่ง"; +"editor_report_problem_title" = "ปัญหา"; + +"editor_report_problem_no_place_title" = "ไม่มีสถานที่นี้อยู่"; + +"editor_report_problem_under_construction_title" = "ปิดปรับปรุง"; + +"editor_report_problem_duplicate_place_title" = "สถานที่ซ้ำ"; + "autodownload" = "ดาวน์โหลดอัตโนมัติ"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "เพิ่มชั่วโมงทำการ"; +"edit_opening_hours" = "แก้ไขชั่วโมงทำการ"; + "no_osm_account" = "ไม่มีบัญชีใน OpenStreetMap?"; "register_at_openstreetmap" = "ลงทะเบียน"; @@ -592,6 +748,8 @@ "login" = "ล็อกอิน"; +"password" = "รหัสผ่าน"; + "forgot_password" = "ลืมรหัสผ่าน?"; "osm_account" = "บัญชี OSM"; @@ -609,6 +767,8 @@ "add_language" = "เพิ่มภาษา"; +"street" = "ถนน"; + /* Editable House Number text field (in address block). */ "house_number" = "บ้านเลขที่"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "เพิ่มถนน"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "เลือกภาษา"; "choose_street" = "เลือกถนน"; @@ -632,12 +795,16 @@ "phone" = "โทรศัพท์"; +"editor_add_phone" = "Add Phone"; + "please_note" = "โปรดทราบ"; "downloader_delete_map_dialog" = "การเปลี่ยนแปลงแผนที่ทั้งหมดจะถูกลบไปพร้อมกับแผนที่"; "downloader_update_maps" = "อัปเดตแผนที่"; +"downloader_mwm_migration_dialog" = "ในการสร้างเส้นทาง คุณต้องอัปเดตแผนที่ทั้งหมดแล้ววางแผนเส้นทางอีกครั้ง"; + "downloader_search_field_hint" = "ค้นหาแผนที่"; "migration_download_error_dialog" = "ข้อผิดพลาดในการดาวน์โหลด"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "กรุณาลบข้อมูลที่ไม่จำเป็น"; +"editor_login_error_dialog" = "ข้อผิดพลาดในการล็อกอิน"; + "editor_profile_changes" = "การเปลี่ยนแปลงที่อนุมัติแล้ว"; "editor_focus_map_on_location" = "ดึงแผนที่เพื่อเลือกตำแหน่งวัตถุที่ถูกต้อง"; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "หมวดหมู่"; +"detailed_problem_description" = "คำอธิบายปัญหาอย่างละเอียด"; + +"editor_report_problem_other_title" = "ปัญหาอีกอย่างหนึ่ง"; + +"placepage_add_business_button" = "เพิ่มองค์กร"; + "whatsnew_editor_message_1" = "เพิ่มสถานที่ใหม่ ๆ ไปยังแผนที่ และแก้ไขสถานที่ที่มีอยู่เดิมจากแอปโดยตรง"; "dialog_incorrect_feature_position" = "เปลี่ยนสถานที่ตั้ง"; @@ -710,6 +885,8 @@ "editor_operator" = "เจ้าของ"; +"downloader_my_maps_title" = "แผนที่ของฉัน"; + "downloader_no_downloaded_maps_title" = "คุณยังไม่ได้ดาวน์โหลดแผนที่"; "downloader_no_downloaded_maps_message" = "ดาวน์โหลดแผนที่เพื่อค้นหาสถานที่ และนำทางแบบออฟไลน์"; @@ -751,10 +928,16 @@ "miles_per_hour" = "ไมล์/ชม."; +"hour" = "ชม."; + +"minute" = "น."; + "placepage_place_description" = "คำอธิบาย"; "placepage_more_button" = "เพิ่มเติม"; +"placepage_more_reviews_button" = "รีวิวอื่น ๆ"; + "book_button" = "จอง"; "placepage_call_button" = "โทร"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "ไม่พบสถานที่นี้"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…เพิ่มเติม"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "กรอกอีเมลที่ถูกต้อง"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "อัปเดต"; "placepage_add_place_button" = "เพิ่มสถานที่ไปยังแผนที่"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "ปฏิเสธ"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "รายการ"; "mobile_data_dialog" = "ใช้อินเทอร์เน็ตมือถือแสดงข้อมูลโดยรายละเอียดหรือไม่?"; @@ -848,12 +1044,16 @@ "big_font" = "เพิ่มขนาดฟอนต์บนแผนที่"; +"traffic_update_app" = "กรุณาอัปเดต Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "ในการแสดงข้อมูลการจราจร แอปพลิเคชั่นจะต้องอัปเดตก่อน"; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "ไม่มีข้อมูลการจราจร"; +"enable_logging" = "เปิดใช้งานการเก็บล็อก"; + /* Settings: "Send general feedback" button */ "feedback_general" = "ข้อเสนอแนะทั่วไป"; @@ -861,14 +1061,24 @@ "off" = "ปิด"; +"prefs_languages_information" = "เราใช้ระบบ TTS สำหรับคำแนะนำด้วยเสียงพูด เครื่องแอนดรอยด์จำนวนมากใช้งาน Google TTS คุณสามารถดาวน์โหลดหรืออัปเดตได้จาก Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "สำหรับบางภาษาคุณจำเป็นต้องติดตั้งตัวสังเคราะห์เสียงหรือชุดภาษาเพิ่มเติมจากแอปสโตร์ (Google Play Market, Samsung Apps)\nเปิดการตั้งค่าของเครื่องคุณ → ภาษาและการป้อนข้อมูล → คำพูด → เอาต์พุตการอ่านออกเสียง\nที่นี่คุณสามารถจัดการการตั้งค่าสำหรับการสังเคราะห์เสียง (ตัวอย่างเช่น ดาวน์โหลดชุดภาษาสำหรับใช้งานออฟไลน์) และเลือกเครื่องมืออ่านออกเสียงข้อความตัวอื่นได้"; + +"prefs_languages_information_off_link" = "สำหรับข้อมูลเพิ่มเติม กรุณาเข้าชมคำแนะนำนี้"; + "transliteration_title" = "การทับศัพท์เป็นภาษาละติน"; +"learn_more" = "ศึกษาเพิ่มเติม"; + "core_exit" = "ออก"; "routing_add_start_point" = "เพิ่มจุดเริ่มต้นเพื่อวางแผนเส้นทาง"; "routing_add_finish_point" = "เพิ่มจุดสิ้นสุดเพื่อวางแผนเส้นทาง"; +"button_exit" = "ออก"; + "planning_route_manage_route" = "จัดการเส้นทาง"; "button_plan" = "วางแผน"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "โอ๊ะ มีข้อผิดพลาดเกิดขึ้น ลองลงชื่อเข้าใช้อีกครั้ง"; +"dialog_error_storage_title" = "ปัญหาการเข้าถึงที่เก็บข้อมูล"; + +"dialog_error_storage_message" = "ที่เก็บข้อมูลภายนอกไม่พร้อมใช้งาน อาจเป็นเพราะการ์ด SD ถูกถอดออกไป ได้รับความเสียหาย หรือระบบไฟล์ให้เขียนได้อย่างเดียว กรุณาตรวจสอบและติดต่อเราได้ที่ support@organicmaps.app"; + +"setting_emulate_bad_storage" = "จำลองแบบที่เก็บข้อมูลที่ไม่ดี"; + "core_entrance" = "ทางเข้า"; "error_enter_correct_name" = "กรุณาใส่ชื่อที่ถูกต้อง"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "สร้างรายการใหม่"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "ซ่อนหน้าจอ"; "downloader_percent" = "%s (%s จาก %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "ไม่สามารถแชร์รายการที่ว่างเปล่าได้"; +"bookmarks_error_title_empty_list_name" = "ชื่อต้องไม่ว่างเปล่า"; + "bookmarks_error_message_empty_list_name" = "โปรดป้อนชื่อรายการ"; +"bookmarks_new_list_hint" = "รายการใหม่"; + "bookmarks_error_title_list_name_already_taken" = "ชื่อนี้ถูกนำมาใช้แล้ว"; +"bookmarks_error_message_list_name_already_taken" = "โปรดเลือกชื่ออื่น"; + "bookmarks_error_title_list_name_too_long" = "ชื่อนี้ยาวเกินไป"; +"please_wait" = "โปรดรอสักครู่ …"; + +"phone_number" = "หมายเลขโทรศัพท์"; + "profile" = "โปรไฟล์ OpenStreetMap"; "bookmarks_detect_title" = "พบไฟล์ใหม่แล้ว"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "เรียกคืนเวอร์ชันนี้หรือไม่?"; +"common_check_internet_connection_dialog_title" = "ไม่มีการเชื่อมต่ออินเทอร์เน็ต"; + "error_system_message" = "เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ"; "restore" = "ฟื้นฟู"; +"subtittle_opt_out" = "การตั้งค่าการติดตาม"; + +"crash_reports" = "รายงานข้อขัดข้อง"; + +"crash_reports_description" = "เราอาจใช้ข้อมูลของคุณเพื่อพัฒนาประสบการณ์ของ Organic Maps การเปลี่ยนแปลงจะมีผลหลังจากที่คุณเปิดแอพฯ ขึ้นใหม่"; + "privacy_policy" = "นโยบายความเป็นส่วนตัว"; "terms_of_use" = "ข้อกำหนดในการใช้งาน"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "แผนที่รถไฟใต้ดินไม่พร้อมใช้งาน"; +"bookmarks_empty_list_title" = "รายการนี้ว่างเปล่า"; + +"bookmarks_empty_list_message" = "เพื่อเพิ่มบุ๊กมาร์ก โปรดแตะที่สถานที่บนแผนที่ แล้วจากนั้นแตะที่ไอคอนรูปดาว"; + +"category_desc_more" = "…เพิ่มเติม"; + "title_error_downloading_bookmarks" = "มีข้อผิดพลาดเกิดขึ้น"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "ซ่อนจากแผนที่"; +"public_access" = "เข้าถึงได้โดยสาธารณะ"; + +"limited_access" = "จำกัดการเข้าถึง"; + "bookmark_list_description_hint" = "พิมพ์รายละเอียด (ข้อความหรือ html)"; +"not_shared" = "ส่วนตัว"; + "tags_loading_error_subtitle" = "เกิดข้อผิดพลาดขณะโหลดแท็ก โปรดลองใหม่อีกครั้ง"; "download_button" = "ดาวน์โหลด"; @@ -972,6 +1221,9 @@ "place_description_title" = "รายละเอียดของสถานที่"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "ตัวดาวน์โหลดแผนที่"; + "speedcams_notice_message" = "อัตโนมัติ - เตือนเกี่ยวกับกล้องตรวจจับความเร็วหากมีความเป็นได้ว่าจะขับเร็วเกิดกำหนด\nทุกครั้ง - เตือนเกี่ยวกับกล้องตรวจจับความเร็วเสมอ\nไม่ต้องเตือน - ไม่เคยเตือนเกี่ยวกับกล้องตรวจจับความเร็ว"; "power_managment_title" = "โหมดประหยัดพลังงาน"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "ประหยัดพลังงานสูงสุด"; +"enable_logging_warning_message" = "ออปชันเพื่อเปิดการบันทึกประวัติการทำงานเพื่อการวินิจฉัย ประวัติดังกล่าวอาจเป็นประโยชน์กับทีมงานช่วยเหลือของเราที่คอยจัดการกับปัญหาที่เจอระหว่างแอปทำงาน โปรดเปิดออปชันดังกล่าวจากการร้องข้อการสนับสนุนจาก Organic Maps เท่านั้น"; + +"access_rules_author_only" = "การแก้ไขทางออนไลน์"; + "driving_options_title" = "ทางเลือกเส้นทางขับขี่"; "driving_options_subheader" = "หลีกเลี่ยงในทุกเส้นทาง"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "เรียง…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "เรียงบุ๊กมาร์ก"; + /* iOS */ "sort_default" = "เรียงตามค่าเริ่มต้น"; @@ -1086,6 +1345,18 @@ "sort_date" = "เรียงตามวันที่"; +/* Android */ +"by_default" = "ตามค่าเริ่มต้น"; + +/* Android */ +"by_type" = "ตามประเภท"; + +/* Android */ +"by_distance" = "ตามระยะทาง"; + +/* Android */ +"by_date" = "ตามวันที่"; + "week_ago_sorttype" = "สัปดาห์ที่ผ่านมา"; "month_ago_sorttype" = "เดือนที่ผ่านมา"; @@ -1132,6 +1403,8 @@ "religious_places" = "สถานที่ทางศาสนา"; +"select_list" = "เลือกรายการ"; + "transit_not_found" = "ยังไม่สามารถใช้การนำทางรถไฟใต้ดินในภูมิภาคนี้ได้"; "dialog_pedestrian_route_is_long_header" = "ไม่พบเส้นทางของทางรถไฟใต้ดิน"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "ลำบาก"; +"elevation_profile_distance" = "ระยะทาง"; + "elevation_profile_time" = "เวลา:"; "isolines_toast_zooms_1_10" = "ขยายเข้าเพื่อสำรวจเส้นชั้นความสูง"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "การดาวน์โหลด"; +"key_information_title" = "ข้อมูลหลัก"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "อนุญาตให้หน้าจอเข้าสู่โหมดสลีป"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "เมื่อเปิดใช้งานหน้าจอจะได้รับอนุญาตให้เข้าสู่โหมดสลีปหลังจากไม่มีการใช้งานเป็นระยะเวลาหนึ่ง"; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "อัปเดตแผนที่ที่คุณดาวน์โหลดมา"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "ห้องปฏิบัติการทางการแพทย์"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "ป้ายรถเมล์"; "type.highway.construction" = "ทางกำลังอยู่ในการก่อสร้าง"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "ถนน"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "กล้องตรวจจับความเร็ว"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "ถนน"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "เส้นทาง"; - -"type.area_highway.living_street" = "ถนน"; - -"type.area_highway.motorway" = "ถนน"; - -"type.area_highway.path" = "เส้นทาง"; - -"type.area_highway.pedestrian" = "ถนน"; - -"type.area_highway.primary" = "ถนน"; - -"type.area_highway.residential" = "ถนน"; - -"type.area_highway.secondary" = "ถนน"; - -"type.area_highway.service" = "ถนน"; - -"type.area_highway.tertiary" = "ถนน"; - -"type.area_highway.steps" = "เส้นทาง"; - -"type.area_highway.track" = "ถนน"; - -"type.area_highway.trunk" = "ถนน"; - -"type.area_highway.unclassified" = "ถนน"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "โบราณสถาน"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "สวนน้ำ"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "อาคาร"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/th.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/th.lproj/Localizable.stringsdict index 69749d6e27..c62a34593f 100644 --- a/iphone/Maps/LocalizedStrings/th.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/th.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -54,6 +54,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d สถานที่ต่าง ๆ + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.strings index a91c26337e..5818881647 100644 --- a/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Geri"; + /* Button text (should be short) */ "cancel" = "İptal"; @@ -17,6 +20,9 @@ "download_maps" = "Haritaları İndir"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "İndirme işlemi başarısız oldu, bir kez daha denemek için tekrar dokunun"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "İndiriliyor…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Haritalar"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Mil"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Ara"; +/* Search box placeholder text */ +"search_map" = "Haritada Ara"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Evet"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Şu anda bu cihaz için tüm Yer Hizmetleri veya uygulama devre dışı bırakılmış. Lütfen Ayarlar bölümünden etkinleştirin."; + /* View and button titles for accessibility */ "zoom_to_country" = "Haritada göster"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Indirme işlemi başarısız oldu"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Tekrar Dene"; + "about_menu_title" = "Organic Maps Hakkında"; +"connection_settings" = "Bağlantı Ayarları"; + "close" = "Kapat"; +"unsupported_phone" = "Hızlı donanıma sahip bir OpenGL gerekli. Ne yazık ki cihazınız desteklenmiyor."; + "download" = "İndir"; +"disconnect_usb_cable" = "Organic Maps’yi kullanabilmeniz için lütfen USB kablosunun bağlantısını kesin veya hafıza kartı takın"; + +"not_enough_free_space_on_sdcard" = "Uygulamayı kullanabilmeniz için lütfen SD kart/USB depolama aygıtında biraz alan boşaltın"; + +"not_enough_memory" = "Uygulamayı başlatmak için yeterli hafıza yok"; + +"download_resources" = "Başlamadan önce cihazınıza genel dünya haritasını indirelim.\nVerilerin %@’si gerekli."; + +"download_resources_continue" = "Haritaya Git"; + +"downloading_country_can_proceed" = "%@ indiriliyor. Şimdi haritaya\ngidebilirsiniz."; + +"download_country_ask" = "%@ indir?"; + +"update_country_ask" = "%@ güncelle?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Duraklat"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Devam"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ indirme işlemi başarısız oldu"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Yeni Ayar ekle"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Yerlerim"; +/* Add bookmark dialog - bookmark name */ +"name" = "Adı"; + /* Editor title above street and house number */ "address" = "Adres"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Liste"; + /* Settings button in system menu */ "settings" = "Ayarlar"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Haritaları şuraya kaydet:"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Haritaların indirileceği yeri seçin"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Haritalar taşınsın mı?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Bu işlem birkaç dakika sürebilir.\nLütfen bekleyin…"; + /* Measurement units title in settings activity */ "measurement_units" = "Ölçü birimleri"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Mil veya kilometre seçimini yap"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Nerede yenir"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Market"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Ulaşım"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ -"fuel" = "Benzinlik"; +/* Search category */ +"fuel" = "Yakıt"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Otopark"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Alışveriş"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Otel"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Görülecek yerler"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Eğlence"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Bankamatik"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Gece hayatı"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Aile tatili"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Banka"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Eczane"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Hastane"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "WC"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Posta"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Polis"; +/* Notes field in Bookmarks view */ +"description" = "Notlar"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Seninle paylaşılan Organic Maps yer imleri"; + "share_bookmarks_email_body" = "Merhaba!\n\nEktekiler benim Organic Maps yer imlerim. Eğer Organic Maps'i yüklediyseniz lütfen ektekileri açın. Eğer yüklemediyseniz, bu bağlantıyı takip ederek iOS ve Android cihazınız için uygulamayı yükleyebilirsiniz: https://omaps.app/get?kmz\n\nOrganic Maps ile seyahat etmenin keyfini çıkarın!"; /* message title of loading file */ @@ -161,7 +231,16 @@ "edit" = "Düzenle"; /* Warning message when doing search around current position */ -"unknown_current_position" = "Konumunuz henüz belirlenmedi"; +"unknown_current_position" = "Yeriniz henüz belirlenmedi"; + +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Üzgünüz, Harita Depolama ayarları şu anda devre dışı."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Harita indirme işlemi şu anda sürüyor."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Hey, Organic Maps’te geçerli konumumu incele! %1$@ veya %2$@ Çevrimdışı haritalar sende yok mu? Buradan indir: https://omaps.app/get"; /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Hey, Organic Maps haritasında pinimi incele!"; @@ -169,12 +248,18 @@ /* Subject for emailed position */ "my_position_share_email_subject" = "Hey, Organic Maps’te geçerli konumumu incele!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Merhaba,\n\nŞu anda bulunduğum yer: %1$@. Yeri haritada görmek için bu bağlantıya %2$@ veya şuna %3$@ tıkla.\n\nTeşekkürler."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Paylaş"; /* Share by email button text, also used in editor. */ "email" = "E-posta"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Panoya Kopyalandı: %1$@"; + /* place preview title */ "info" = "Bilgi"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Veri sürümü: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Devam etmek istediğinizden emin misiniz?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Kayıtlar"; @@ -195,10 +283,18 @@ "share_my_location" = "Yerimi paylaş"; +/* Settings general group in settings screen */ +"prefs_group_general" = "Genel ayarlar"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Bilgi"; + "prefs_group_route" = "Navigasyon"; "pref_zoom_title" = "Yakınlaştırma butonları"; +"pref_zoom_summary" = "Haritada göster"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Gece Modu"; @@ -212,17 +308,20 @@ "pref_map_style_auto" = "Otomatik"; /* Settings «Map» category: «Perspective view» title */ -"pref_map_3d_title" = "Perspektif görünüş"; +"pref_map_3d_title" = "Perspektif görünüm"; /* Settings «Map» category: «3D buildings» title */ "pref_map_3d_buildings_title" = "3D yapılar"; /* Settings «Route» category: «Tts enabled» title */ -"pref_tts_enable_title" = "Sesli Yönlendirme"; +"pref_tts_enable_title" = "Sesli Talimatlar"; /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Ses Dili"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Mevcut değil"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Diğer"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Yardım"; +/* Button in the main Help dialog */ +"faq" = "Sıkça Sorulan Sorular"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Sizi nasıl destekleyebilirim?"; + /* Button in the main Help dialog */ "copyright" = "Telif hakkı"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Hepsini güncelle"; +/* Cancel all button text */ +"downloader_cancel_all" = "Tümünü İptal Et"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "İndirildi"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Haritayı Sil"; +/* Item in context menu. */ +"downloader_update_map" = "Haritayı Güncelle"; + +/* Preference text */ +"pref_use_google_play" = "Şu anki konumunuzu almak için Google Play hizmetlerini kullanın"; + /* Text for rating dialog */ "rating_just_rated" = "Uygulamanıza az önce puan verdim"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Konumunuzdan bir rota oluşturmak bölgenizdeki tüm haritaların indirilmesini ve güncellenmesini gerektirir."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Yeterli alan yok"; + /* bookmark button text */ "bookmark" = "yer i̇mi"; +/* location service disabled */ +"enable_location_services" = "Lütfen Konum Hizmetlerini etkinleştirin"; + "save" = "Kaydet"; +"edit_description_hint" = "Açıklamalarınız (metin veya html)"; + "create" = "oluştur"; /* red color */ @@ -419,13 +547,13 @@ /********** Routing dialogs strings **********/ -"dialog_routing_disclaimer_title" = "Rotanızı takip ederken şunları lütfen unutmayın:"; +"dialog_routing_disclaimer_title" = "Güzergahınızı takip ederken şunları lütfen unutmayın:"; "dialog_routing_disclaimer_priority" = "— Yol durumları, trafik kuralları ve trafik işaretleri, her zaman navigasyon tavsiyelerinden önceliklidir;"; -"dialog_routing_disclaimer_precision" = "— Harita doğru olmayabilir, önerilen rota da hedefinize ulaşmak için en uygun yol olmayabilir;"; +"dialog_routing_disclaimer_precision" = "— Harita doğru olmayabilir, önerilen güzergah da hedefinize ulaşmak için en uygun yol olmayabilir;"; -"dialog_routing_disclaimer_recommendations" = "— Önerilen rotalar yalnızca tavsiye olarak kabul edilmelidir;"; +"dialog_routing_disclaimer_recommendations" = "— Önerilen güzergahlar yalnızca tavsiye olarak kabul edilmelidir;"; "dialog_routing_disclaimer_borders" = "— Sınır bölgelerinde rotalar konusunda dikkatli olun: uygulamamız tarafından oluşturulan rotalar bazen izin verilmeyen yerlerdeki ülke sınırlarını geçebilir;"; @@ -433,31 +561,33 @@ "dialog_routing_check_gps" = "GPS sinyalini kontrol edin"; -"dialog_routing_error_location_not_found" = "Rota oluşturulamıyor. Mevcut GPS koordinatları tanımlanamadı."; +"dialog_routing_error_location_not_found" = "Güzergah oluşturulamıyor. Mevcut GPS koordinatları tanımlanamadı."; "dialog_routing_location_turn_wifi" = "Lütfen GPS sinyalinizi kontrol edin. Wi-Fi'ı etkinleştirmek konum isabetini arttırır."; "dialog_routing_location_turn_on" = "Konum hizmetlerini etkinleştirin"; -"dialog_routing_location_unknown_turn_on" = "Mevcut GPS koordinatları belirlenemiyor. Rota hesaplamak için konum hizmetlerini etkinleştirin."; +"dialog_routing_location_unknown_turn_on" = "Mevcut GPS koordinatları belirlenemiyor. Güzergah hesaplamak için konum hizmetlerini etkinleştirin."; "dialog_routing_download_files" = "Gerekli dosyaları indirin"; -"dialog_routing_download_and_update_all" = "Planlanan yoldaki tüm harita ve rota bilgilerini indirip güncelleyerek rotayı hesaplayın."; +"dialog_routing_download_and_update_all" = "Planlanan yoldaki tüm harita ve güzergah bilgilerini indirip güncelleyerek güzergahı hesaplayın."; -"dialog_routing_unable_locate_route" = "Rota belirlenemiyor"; +"dialog_routing_unable_locate_route" = "Güzergah belirlenemiyor"; + +"dialog_routing_cant_build_route" = "Güzergah oluşturulamıyor."; "dialog_routing_change_start_or_end" = "Lütfen başlangıç noktanızı veya hedefinizi ayarlayın."; "dialog_routing_change_start" = "Başlangıç noktasını ayarlayın"; -"dialog_routing_start_not_determined" = "Rota oluşturulamadı. Başlangıç noktası belirlenemiyor."; +"dialog_routing_start_not_determined" = "Güzergah oluşturulamadı. Başlangıç noktası belirlenemiyor."; "dialog_routing_select_closer_start" = "Lütfen yola daha yakın bir başlangıç noktası seçin."; "dialog_routing_change_end" = "Hedefinizi ayarlayın"; -"dialog_routing_end_not_determined" = "Rota oluşturulamadı. Hedef belirlenemiyor."; +"dialog_routing_end_not_determined" = "Güzergah oluşturulamadı. Hedef belirlenemiyor."; "dialog_routing_select_closer_end" = "Lütfen yola daha yakın bir hedef noktası seçin."; @@ -467,19 +597,23 @@ "dialog_routing_system_error" = "Sistem hatası"; -"dialog_routing_application_error" = "Uygulama hatası nedeniyle rota oluşturulamadı."; +"dialog_routing_application_error" = "Uygulama hatası nedeniyle güzergah oluşturulamadı."; "dialog_routing_try_again" = "Lütfen daha sonra tekrar deneyin"; "not_now" = "Şimdi Değil"; -"dialog_routing_download_and_build_cross_route" = "Haritayı indirerek birden fazla haritaya uzanan daha uygun bir rota oluşturmak ister misiniz?"; +"dialog_routing_download_and_build_cross_route" = "Haritayı indirerek birden fazla haritaya uzanan daha uygun bir güzergah oluşturmak ister misiniz?"; -"dialog_routing_download_cross_route" = "Bu haritanın bir kısmından geçen daha uygun bir rota oluşturmak için haritayı indirin."; +"dialog_routing_download_cross_route" = "Bu haritanın bir kısmından geçen daha uygun bir güzergah oluşturmak için haritayı indirin."; /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Rotaları aramak ve oluşturmaya başlamak için lütfen haritayı indirin. İndirdikten sonra artık internet bağlantısına ihtiyacınız olmayacak."; + +"search_select_map" = "Haritayı Seçin"; + /* «Show» context menu */ "show" = "Göster"; @@ -517,9 +651,12 @@ "search_history_title" = "Arama Geçmişi"; -"search_history_text" = "Son aramaları görüntüleyin."; +"search_history_text" = "En son yapılan arama sorgularını görüntüle."; -"clear_search" = "Arama Geçmişini Temizle"; +"clear_search" = "Arama Geçmişini temizle"; + +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Vikipedi"; "p2p_your_location" = "Konumunuz"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Mevcut konumunuzdan bir rota planlamamızı ister misiniz?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Sonraki"; + "editor_time_add" = "Plan Ekle"; "editor_time_delete" = "Planı Sil"; @@ -556,14 +696,28 @@ "editor_example_values" = "Örnek Değerler"; +"editor_correct_mistake" = "Hatayı düzelt"; + "editor_add_select_location" = "Konum"; "editor_done_dialog_1" = "Dünya haritasını değiştirdiniz. Bunu gizlemeyin! Arkadaşlarınıza anlatın ve birlikte düzenleyin."; "share_with_friends" = "Arkadaşlarınla paylaş"; +"editor_report_problem_desription_1" = "OpenStreetMap topluluğunun hatayı düzeltmesi için lütfen problemi detaylı bir şekilde açıklayın."; + +"editor_report_problem_desription_2" = "Veya bunu https://www.openstreetmap.org/ adresinden kendiniz yapın"; + "editor_report_problem_send_button" = "Gönder"; +"editor_report_problem_title" = "Problem"; + +"editor_report_problem_no_place_title" = "Yer mevcut değil"; + +"editor_report_problem_under_construction_title" = "Bakım için kapalı"; + +"editor_report_problem_duplicate_place_title" = "Kopyalanmış yer"; + "autodownload" = "Otomatik indir"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "İş saatlerini ekle"; +"edit_opening_hours" = "İş saatlerini düzenle"; + "no_osm_account" = "OpenStreetMap hesabın yok mu?"; "register_at_openstreetmap" = "Kaydol"; @@ -592,6 +748,8 @@ "login" = "Oturum aç"; +"password" = "Şifre"; + "forgot_password" = "Şifreni mi unuttun?"; "osm_account" = "OSM Hesabı"; @@ -609,6 +767,8 @@ "add_language" = "Bir dil ekle"; +"street" = "Sokak"; + /* Editable House Number text field (in address block). */ "house_number" = "Bina numarası"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Bir sokak ekle"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Lütfen bir sokak adı girin"; + "choose_language" = "Bir dil seç"; "choose_street" = "Bir sokak seç"; @@ -632,12 +795,16 @@ "phone" = "Telefon"; +"editor_add_phone" = "Telefon Ekle"; + "please_note" = "Lütfen dikkat"; "downloader_delete_map_dialog" = "Harita ile birlikte tüm harita değişiklikleri de silinecektir."; "downloader_update_maps" = "Haritaları güncelle"; +"downloader_mwm_migration_dialog" = "Bir rota oluşturmak için tüm haritaları güncellemeli ve ardından rotayı tekrar planlamalısınız."; + "downloader_search_field_hint" = "Harita bul"; "migration_download_error_dialog" = "İndirme hatası"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Lütfen gereksiz verileri silin"; +"editor_login_error_dialog" = "Giriş hatası"; + "editor_profile_changes" = "Doğrulanan Değişiklikler"; "editor_focus_map_on_location" = "Objenin doğru konumunu seçmek için haritayı sürükleyin."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Kategori"; +"detailed_problem_description" = "Sorunun ayrıntılı açıklaması"; + +"editor_report_problem_other_title" = "Farklı bir problem"; + +"placepage_add_business_button" = "Kuruluş ekle"; + "whatsnew_editor_message_1" = "Doğrudan uygulamadan haritaya yeni yerler ekleyin ve mevcut yerleri düzenleyin."; "dialog_incorrect_feature_position" = "Konumu değiştir"; @@ -710,6 +885,8 @@ "editor_operator" = "İşletmeci"; +"downloader_my_maps_title" = "Haritalarım"; + "downloader_no_downloaded_maps_title" = "Hiç harita indirmediniz"; "downloader_no_downloaded_maps_message" = "Çevrimdışı olarak adres bulmak ve gezinmek için haritaları indirin."; @@ -751,10 +928,16 @@ "miles_per_hour" = "saatte mil"; +"hour" = "sa"; + +"minute" = "dk"; + "placepage_place_description" = "Açıklama"; "placepage_more_button" = "Diğer"; +"placepage_more_reviews_button" = "Diğer yorumlar"; + "book_button" = "Rezervasyon"; "placepage_call_button" = "Çağrı"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Bu yer mevcut değil"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Lütfen bu yerin silinmesinin nedenini belirtin"; + "text_more_button" = "…daha fazla"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Geçerli bir e-posta girin"; +"error_enter_correct_facebook_page" = "Geçerli bir Facebook web adresi, hesap veya sayfa adı girin"; + +"error_enter_correct_instagram_page" = "Geçerli bir İnstagram web adresi veya hesap adı girin"; + +"error_enter_correct_twitter_page" = "Geçerli bir Twitter web adresi veya kullanıcı adı girin"; + +"error_enter_correct_vk_page" = "Geçerli bir VK web adresi veya hesap adı girin"; + +"error_enter_correct_line_page" = "Geçerli bir Line web adresi veya Line ID'si girin"; + "refresh" = "Güncelleştirme"; "placepage_add_place_button" = "Haritaya bir yer ekleyin"; @@ -825,12 +1021,12 @@ /* For the first routing */ "decline" = "Reddet"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Liste"; "mobile_data_dialog" = "Ayrıntılı bilgileri görüntülemek için mobil internet kullanılsın mı?"; -"mobile_data_option_always" = "Her Zaman Kullan"; +"mobile_data_option_always" = "Her zaman kullan"; "mobile_data_option_today" = "Sadece Bugün"; @@ -848,12 +1044,16 @@ "big_font" = "Harita üzerindeki yazı tipi boyutunu artır"; +"traffic_update_app" = "Lütfen Organic Maps uygulamasını güncelleyin"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Trafik verilerini görüntülemek için uygulamanın güncellenmesi gerekiyor."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Trafik verileri kullanılamıyor"; +"enable_logging" = "Günlüğü etkinleştir"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Genel Geribildirim"; @@ -861,7 +1061,15 @@ "off" = "Kapat"; -"transliteration_title" = "Latin harf çevirisi"; +"prefs_languages_information" = "Sesli talimatlar için TTS sistemini kullanıyoruz. Çoğu Android cihaz, Google TTS'yi kullanıyor. Uygulamayı, Google Play'den indirebilir veya güncelleyebilirsiniz (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Bazı diller için uygulama mağazasından (Google Play Market, Samsung Apps) farklı bir konuşma sentezleyicisi veya ek bir dil paketi yüklemeniz gerekebilir. Cihaz ayarları → Dil ve Giriş → Konuşma → Metin Okuma sekmelerini açın. Buradan konuşma sentezi ayarlarını yönetebilir (örneğin, çevrimdışı kullanım için bir dil paketini karşıdan yükleyebilir) ve başka bir metin okuma motorunu seçebilirsiniz."; + +"prefs_languages_information_off_link" = "Daha fazla bilgi için lütfen bu kılavuzu inceleyin."; + +"transliteration_title" = "Latin alfabesine çevirme"; + +"learn_more" = "Daha fazla bilgi edinin"; "core_exit" = "Çık"; @@ -869,6 +1077,8 @@ "routing_add_finish_point" = "Güzergâhı planlamak için bir varış noktası ekleyin"; +"button_exit" = "Çık"; + "planning_route_manage_route" = "Güzergâhı yönet"; "button_plan" = "Plan"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Üzgünüz, bir hata oluştu. Tekrar oturum açmayı deneyin."; +"dialog_error_storage_title" = "Depolama alanı erişim sorunu"; + +"dialog_error_storage_message" = "Harici bellek kullanılamıyor, muhtemelen SD Kart çıkarılmış, hasarlı veya dosya sistemi salt okunur. Lütfen kontrol edin veya support@organicmaps.app adresinden bizimle iletişime geçin"; + +"setting_emulate_bad_storage" = "Bozuk depolama alanını taklit et"; + "core_entrance" = "Giriş"; "error_enter_correct_name" = "Lütfen, doğru bir isim girin"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Yeni liste oluştur"; +/* Bookmark categories screen */ +"bookmarks_import" = "Yer imlerini içe aktar"; + "downloader_hide_screen" = "Ekranı Gizle"; "downloader_percent" = "%s (%s / %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Boş bir liste paylaşılamaz"; +"bookmarks_error_title_empty_list_name" = "İsim boş olamaz"; + "bookmarks_error_message_empty_list_name" = "Lütfen liste ismini girin"; +"bookmarks_new_list_hint" = "Yeni liste"; + "bookmarks_error_title_list_name_already_taken" = "Bu isim zaten alınmış"; +"bookmarks_error_message_list_name_already_taken" = "Lütfen başka bir isim seçin"; + "bookmarks_error_title_list_name_too_long" = "Bu isim çok uzun"; +"please_wait" = "Lütfen bekleyin�"; + +"phone_number" = "Telefon numarası"; + "profile" = "OpenStreetMap profili"; "bookmarks_detect_title" = "Yeni dosyalar algılandı"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Bu sürümü geri yükle?"; +"common_check_internet_connection_dialog_title" = "İnternet bağlantısı yok"; + "error_system_message" = "Bilinmeyen bir hata oluştu"; "restore" = "Geri al"; +"subtittle_opt_out" = "Kayıt ayarları"; + +"crash_reports" = "Kilitlenme raporu"; + +"crash_reports_description" = "Organic Maps deneyimini geliştirmek için verilerinizi kullanabiliriz. Değişiklikler, uygulama yeniden başlatıldıktan sonra geçerli olur."; + "privacy_policy" = "Gizlilik politikası"; "terms_of_use" = "Kullanım koşulları"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Metro haritası mevcut değil"; +"bookmarks_empty_list_title" = "Bu liste boş"; + +"bookmarks_empty_list_message" = "Yer imi eklemek için önce haritadaki bir yere sonrasında ise yıldız simgesine dokunun"; + +"category_desc_more" = "…daha fazla"; + "title_error_downloading_bookmarks" = "Bir hata oluştu"; "popular_place" = "Popüler"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Haritadan gizle"; +"public_access" = "Genel erişim"; + +"limited_access" = "Sınırlı erişim"; + "bookmark_list_description_hint" = "Bir açıklama yazın (metin veya html)"; +"not_shared" = "Gizli"; + "tags_loading_error_subtitle" = "Etiketler yüklenirken bir hata oluştu, lütfen tekrar deneyin"; "download_button" = "İndir"; @@ -972,6 +1221,9 @@ "place_description_title" = "Yer Açıklaması"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Harita indiricisi"; + "speedcams_notice_message" = "Otomatik - Hız sınırını aşma riski varsa hız kameraları hakkında uyar\nHer zaman - Hız kameraları hakkında her zaman uyar\nAsla - Hız kameraları hakkında hiçbir zaman uyarma"; "power_managment_title" = "Güç tasarrufu modu"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Maksimum güç tasarrufu"; +"enable_logging_warning_message" = "Bu seçenek tanılama amacıyla günlüğe kaydetmeyi açar. Ekibimizin uygulamayla ilgili sorunları gidermesine yardımcı olabilir. Sorununuzla ilgili ayrıntılı günlükleri kaydetmek ve bize göndermek için bu seçeneği geçici olarak etkinleştirin."; + +"access_rules_author_only" = "Çevrimiçi düzenleme"; + "driving_options_title" = "Sürüş seçenekleri"; "driving_options_subheader" = "Her rotada kaçının"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Sırala…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Yer imlerini sırala"; + /* iOS */ "sort_default" = "Varsayılana göre sırala"; @@ -1086,6 +1345,18 @@ "sort_date" = "Tarihe göre sırala"; +/* Android */ +"by_default" = "Varsayılana göre"; + +/* Android */ +"by_type" = "Türe göre"; + +/* Android */ +"by_distance" = "Mesafeye göre"; + +/* Android */ +"by_date" = "Tarihe göre"; + "week_ago_sorttype" = "Bir hafta önce"; "month_ago_sorttype" = "Bir ay önce"; @@ -1132,13 +1403,15 @@ "religious_places" = "Dini yerler"; +"select_list" = "Liste seç"; + "transit_not_found" = "Metro navigasyonu bu bölgede henüz mevcut değil"; "dialog_pedestrian_route_is_long_header" = "Metro güzergahı bulunamadı"; "dialog_pedestrian_route_is_long_message" = "Metro istasyonuna en yakın rotanın başlangıç veya bitiş noktasını seçin"; -"button_layer_isolines" = "Arazi"; +"button_layer_isolines" = "Yükseklikler"; "isolines_activation_error_dialog" = "Yükseklik çizgilerini kullanmak için, istediğiniz arazinin haritasını güncelleyin veya indirin"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Zorluk"; +"elevation_profile_distance" = "Mesafe:"; + "elevation_profile_time" = "Süre:"; "isolines_toast_zooms_1_10" = "Konturları görmek için haritayı büyütün"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "İndir"; +"key_information_title" = "Anahtar bilgisi"; + +"download_map_title" = "Dünya haritasını indir"; + +"connection_failure" = "Bağlantı hatası"; + +"disconnect_usb_cable_title" = "USB kablosunu çıkarın"; + +"enable_screen_sleep" = "Ekranın kapanmasına izin ver"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Etkinleştirildiğinde ekranın bir süre hareketsiz kaldıktan sonra kapanmasına izin verilir."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "İndirdiğiniz haritaları güncelleyin"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Tıbbi laboratuvar"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Otobüs durağı"; "type.highway.construction" = "Yol yapım aşamasında"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Cadde"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Hız Kamerası"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Cadde"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Yol"; - -"type.area_highway.living_street" = "Cadde"; - -"type.area_highway.motorway" = "Cadde"; - -"type.area_highway.path" = "Yol"; - -"type.area_highway.pedestrian" = "Cadde"; - -"type.area_highway.primary" = "Cadde"; - -"type.area_highway.residential" = "Cadde"; - -"type.area_highway.secondary" = "Cadde"; - -"type.area_highway.service" = "Cadde"; - -"type.area_highway.tertiary" = "Cadde"; - -"type.area_highway.steps" = "Yol"; - -"type.area_highway.track" = "Cadde"; - -"type.area_highway.trunk" = "Cadde"; - -"type.area_highway.unclassified" = "Cadde"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Arkeolojik alan"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Centre aquatique"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2313,7 +2563,7 @@ "type.natural.volcano" = "Volcan"; -"type.natural.water" = "Su"; +"type.natural.water" = "Water body"; "type.natural.wetland" = "Sulak alan"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Başkent"; -"type.place.city.capital.10" = "Şehir"; +"type.place.city.capital.10" = "Başkent"; -"type.place.city.capital.11" = "Şehir"; +"type.place.city.capital.11" = "Başkent"; "type.place.city.capital.2" = "Başkent"; -"type.place.city.capital.3" = "Şehir"; +"type.place.city.capital.3" = "Başkent"; -"type.place.city.capital.4" = "Şehir"; +"type.place.city.capital.4" = "Başkent"; -"type.place.city.capital.5" = "Şehir"; +"type.place.city.capital.5" = "Başkent"; -"type.place.city.capital.6" = "Şehir"; +"type.place.city.capital.6" = "Başkent"; -"type.place.city.capital.7" = "Şehir"; +"type.place.city.capital.7" = "Başkent"; -"type.place.city.capital.8" = "Şehir"; +"type.place.city.capital.8" = "Başkent"; -"type.place.city.capital.9" = "Şehir"; +"type.place.city.capital.9" = "Başkent"; "type.place.continent" = "Kıta"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Bina"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.stringsdict index 901c079299..63861ef04e 100644 --- a/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/tr.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -54,6 +54,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d yer + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.strings index 74e296b9c4..22f36c05fa 100644 --- a/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Назад"; + /* Button text (should be short) */ "cancel" = "Скасувати"; @@ -17,6 +20,9 @@ "download_maps" = "Завантажити мапи"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Помилка завантаження. Натисніть, щоб повторити спробу"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Завантажується…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Мапи"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "МБ"; + +"gb" = "ГБ"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Милі"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Пошук"; +/* Search box placeholder text */ +"search_map" = "Пошук на мапі"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Так"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Геолокація вимкнена в налаштуваннях пристрою. Будь ласка, увімкніть її для зручного використання програми."; + /* View and button titles for accessibility */ "zoom_to_country" = "Показати на мапі"; @@ -53,26 +70,55 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Помилка завантаження"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Спробуйте ще раз"; + "about_menu_title" = "Про програму"; +"connection_settings" = "Налаштування підключення"; + "close" = "Закрити"; +"unsupported_phone" = "Для роботи програми необхідний апаратно прискорений OpenGL. На жаль, ваш пристрій не підтримується."; + "download" = "Завантажити"; +"disconnect_usb_cable" = "Вимкніть USB кабель або вставте SD-карту"; + +"not_enough_free_space_on_sdcard" = "Недостатньо вільного місця на SD карті / в пам'яті пристрою для використання програми"; + +"not_enough_memory" = "Недостатньо пам'яті для запуску програми"; + +"download_resources" = "Перш ніж розпочати дозвольте нам завантажити мапу світу на ваш пристрій.\nВона потребує %@ даних."; + +"download_resources_continue" = "Перейти на мапу"; + +"downloading_country_can_proceed" = "Поки завантажується %@\nви можете користуватися програмою."; + +"download_country_ask" = "Завантажити %@?"; + +"update_country_ask" = "Oновити %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Призупинити"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Продовжити"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "Не вдалося завантажити %@"; + /* "Add new bookmark list" dialog title */ -"add_new_set" = "Додати список"; +"add_new_set" = "Додати групу"; /* Bookmark Color dialog title */ "bookmark_color" = "Колір мiтки"; /* Add Bookmark list dialog - hint when the list name is empty */ -"bookmark_set_name" = "Назва списка мiток"; +"bookmark_set_name" = "Назва групи"; /* "Bookmark Lists" dialog title */ -"bookmark_sets" = "Списки мiток"; +"bookmark_sets" = "Групи мiток"; /* "Bookmarks" dialog title */ "bookmarks" = "Мітки"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Мої Мітки"; +/* Add bookmark dialog - bookmark name */ +"name" = "Iм'я"; + /* Editor title above street and house number */ "address" = "Адреса"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Група"; + /* Settings button in system menu */ "settings" = "Налаштування"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Зберігати мапи до"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Виберіть місце, куди повинні бути завантажені мапи"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Перемістити мапи?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Це може зайняти кілька хвилин.\nБудь ласка, зачекайте…"; + /* Measurement units title in settings activity */ "measurement_units" = "Одиниці виміру"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Використовувати милі чи кілометри"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Де поїсти"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Продукти"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Транспорт"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Заправка"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "Парковка"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Шопінг"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Готель"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Пам’ятні місця"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Розваги"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "Банкомат"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Нічне життя"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Відпочинок з дітьми"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Банк"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Аптека"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Лікарня"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Туалет"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Пошта"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Поліція"; +/* Notes field in Bookmarks view */ +"description" = "Примітка"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "З вами поділилися мiтками Organic Maps"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Ваше місце розташування не визначено"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Вибачте, налаштування папки з мапами зараз недоступні."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Зараз відбувається завантаження країни."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Глянь де я зараз. Іди %1$@ або %2$@"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Поглянь на мою мiтку на мапі Organic Maps"; /* Subject for emailed position */ "my_position_share_email_subject" = "Поглянь на моє поточне місцезнаходження на мапі Organic Maps"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Привіт,\n\nЯ зараз тут: %1$@. Натисни на це посилання %2$@ або на це посилання %3$@ щоб побачити місце на мапі.\n\nДякую."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Подiлитись"; /* Share by email button text, also used in editor. */ "email" = "Ел. пошта"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Скопіювати в буфер обміну: %1$@"; + /* place preview title */ "info" = "Інфо"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Продовжити?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Маршрути"; @@ -195,10 +283,18 @@ "share_my_location" = "Поділитися моїм місцезнаходженням"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Навігація"; "pref_zoom_title" = "Кнопки трансфокації"; +"pref_zoom_summary" = "Відображення на екрані"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Нічний режим"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Мова підказок"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Не доступнi"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Інша"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Допомога"; +/* Button in the main Help dialog */ +"faq" = "Питання та відповіді"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Як нас підтримати?"; + /* Button in the main Help dialog */ "copyright" = "Копірайт"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Оновити всі"; +/* Cancel all button text */ +"downloader_cancel_all" = "Скасувати всі"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Завантажено"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Видалити мапу"; +/* Item in context menu. */ +"downloader_update_map" = "Оновити мапу"; + +/* Preference text */ +"pref_use_google_play" = "Щоб визначити ваше поточне місцезнаходження, використовуйте сервіси Google Play"; + /* Text for rating dialog */ "rating_just_rated" = "Я щойно оцінив вашу програму"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Для створення маршруту необхідно щоб всі мапи, починаючи від вашого місцезнаходження і до пункту призначення, були завантажені та оновлені."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Недостатньо місця"; + /* bookmark button text */ "bookmark" = "мітка"; +/* location service disabled */ +"enable_location_services" = "Будь ласка, увімкніть геолокацію"; + "save" = "Зберегти"; +"edit_description_hint" = "Ваше описання (текст або html)"; + "create" = "створити"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Маршрут не знайдено"; +"dialog_routing_cant_build_route" = "Не вдалося побудувати маршрут."; + "dialog_routing_change_start_or_end" = "Будь ласка, змініть початкову або кінцеву точку маршруту."; "dialog_routing_change_start" = "Змініть початкову точку маршруту"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Щоб розпочати пошук та створення маршрутів, будь ласка, завантажте мапу і вам більше ніколи не знадобиться інтернет-з’єднання."; + +"search_select_map" = "Вибрати мапу"; + /* «Show» context menu */ "show" = "Показати"; @@ -521,6 +655,9 @@ "clear_search" = "Очистити історію пошуку"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Ваше місцезнаходження"; "p2p_start" = "Почати рух"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Хочете спланувати маршрут із поточного місцезнаходження?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Далі"; + "editor_time_add" = "Додати розклад"; "editor_time_delete" = "Видалити розклад"; @@ -556,14 +696,28 @@ "editor_example_values" = "Приклади значень"; +"editor_correct_mistake" = "Виправте помилку"; + "editor_add_select_location" = "Місцезнаходження"; "editor_done_dialog_1" = "Ви змінили карту світу. Не приховуйте це! Розкажіть своїм друзям і редагуйте разом."; "share_with_friends" = "Поділитися з друзями"; +"editor_report_problem_desription_1" = "Будь-ласка, напишіть детально про проблему, щоб суспільство OpenStreetMap виправило помилку."; + +"editor_report_problem_desription_2" = "Або зробіть це самостійно на сайті https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Надіслати"; +"editor_report_problem_title" = "Проблема"; + +"editor_report_problem_no_place_title" = "Місце не існує"; + +"editor_report_problem_under_construction_title" = "Зачинено на ремонт"; + +"editor_report_problem_duplicate_place_title" = "Дубльовані місця"; + "autodownload" = "Автоматичне завантаження"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Додати години роботи"; +"edit_opening_hours" = "Редагувати години роботи"; + "no_osm_account" = "Не зареєстровані в OpenStreetMap?"; "register_at_openstreetmap" = "Зареєструватися"; @@ -592,6 +748,8 @@ "login" = "Увійти"; +"password" = "Пароль"; + "forgot_password" = "Забули пароль?"; "osm_account" = "Обліковий запис OSM"; @@ -609,6 +767,8 @@ "add_language" = "Додати мову"; +"street" = "Вулиця"; + /* Editable House Number text field (in address block). */ "house_number" = "Номер будинку"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Додати вулицю"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Введіть назву вулиці"; + "choose_language" = "Вибрати мову"; "choose_street" = "Вибрати вулицю"; @@ -632,12 +795,16 @@ "phone" = "Телефон"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Будь ласка, зверніть увагу"; "downloader_delete_map_dialog" = "Разом з мапою будуть видалені й внесені Вами правки на цій мапі."; "downloader_update_maps" = "Оновити мапи"; +"downloader_mwm_migration_dialog" = "Для побудови маршруту необхідно оновити усі мапи та побудувати маршрут заново."; + "downloader_search_field_hint" = "Знайти мапу"; "migration_download_error_dialog" = "Помилка завантаження"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Видаліть непотрібні дані"; +"editor_login_error_dialog" = "Виникла помилка при авторизації."; + "editor_profile_changes" = "Виправлення, що ураховані"; "editor_focus_map_on_location" = "Потягніть мапу, щоб вибрати правильне місцезнаходження об’єкту."; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Категорія"; +"detailed_problem_description" = "Детальний опис проблеми"; + +"editor_report_problem_other_title" = "Інші проблема"; + +"placepage_add_business_button" = "Додати організацію"; + "whatsnew_editor_message_1" = "Додати нові місця до мапи і редагувати існуючі місця прямо з програми."; "dialog_incorrect_feature_position" = "Змініть розташування"; @@ -710,6 +885,8 @@ "editor_operator" = "Власник"; +"downloader_my_maps_title" = "Мої мапи"; + "downloader_no_downloaded_maps_title" = "Ви не маєте завантажених мап"; "downloader_no_downloaded_maps_message" = "Завантажте необхідні мапи, щоб знаходити місця та користуватися навігацією без iнтернету."; @@ -751,10 +928,16 @@ "miles_per_hour" = "ми/год"; +"hour" = "год"; + +"minute" = "хв"; + "placepage_place_description" = "Опис"; "placepage_more_button" = "Ще"; +"placepage_more_reviews_button" = "Ще відгуки"; + "book_button" = "Забронювати"; "placepage_call_button" = "Подзвонити"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Місце не існує"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Будь ласка, вкажіть причину видалення"; + "text_more_button" = "…більше"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Введіть вірну адресу електронної пошти"; +"error_enter_correct_facebook_page" = "Введіть вірну веб-адресу Facebook сторінки або і'мя користувача"; + +"error_enter_correct_instagram_page" = "Введіть вірну веб-адресу Instagram сторінки або і'мя користувача"; + +"error_enter_correct_twitter_page" = "Введіть вірну веб-адресу Twitter сторінки або і'мя користувача"; + +"error_enter_correct_vk_page" = "Введіть вірну веб-адресу VK сторінки або і'мя користувача"; + +"error_enter_correct_line_page" = "Введіть вірну веб-адресу LINE сторінки або LINE ID"; + "refresh" = "Оновити"; "placepage_add_place_button" = "Додати на мапу"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Відхилити"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Список"; "mobile_data_dialog" = "Використовувати мобільні дані для перегляду докладної інформації?"; @@ -848,12 +1044,16 @@ "big_font" = "Збільшити розмір шрифту на мапі"; +"traffic_update_app" = "Будь ласка, встановіть оновлення Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Для відображення даних про трафік оновіть додаток."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Дані про трафік недоступні"; +"enable_logging" = "Включити логіювання"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Загальний відгук"; @@ -861,14 +1061,24 @@ "off" = "Вимкн."; +"prefs_languages_information" = "Для озвучування голосових інструкцій ми використовуємо систему TTS. Більшість Android-пристроїв підтримують систему Google TTS. Для завантаження або оновлення перейдіть до магазину Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Для деяких мов вам знадобиться встановити інший додаток для синтезу мовлення або додатковий мовний пакет з магазину додатків (Google Play Market, Samsung Apps).\nВідкрийте налаштування пристрою → Мови та введення → Мовлення → Синтез мовлення.\nТут ви можете здійснювати управління налаштуваннями синтезу мовлення (наприклад, завантажити мовний пакет для використання офлайн) або вибрати інший програмний рушій для синтезу мовлення."; + +"prefs_languages_information_off_link" = "Додаткову інформацію див. у цьому керівництві."; + "transliteration_title" = "Транслітерація латинськими літерами"; +"learn_more" = "Докладніше"; + "core_exit" = "Вихід"; "routing_add_start_point" = "Вкажіть початкову точку для побудови маршруту"; "routing_add_finish_point" = "Вкажіть кінцеву точку для побудови маршруту"; +"button_exit" = "Вихід"; + "planning_route_manage_route" = "Редагування маршруту"; "button_plan" = "Прокласти маршрут"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Ой, трапилася помилка. Спробуйте увійти знову."; +"dialog_error_storage_title" = "Не вдалося отримати доступ до сховища"; + +"dialog_error_storage_message" = "Зовнішнє сховище не доступно. Ймовірно, SD-картку пам'яті було вилучено, пошкоджено, або система файлів доступна тільки для читання. Будь ласка, перевірте та зв'яжіться з нами, написавши на адресу електронну пошту support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Емулювати проблемне сховище"; + "core_entrance" = "Вхід"; "error_enter_correct_name" = "Будь ласка, введіть коректне ім'я"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Створити новий список"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Приховати екран"; "downloader_percent" = "%s (%s з %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Неможливо поділитися пустим списком"; +"bookmarks_error_title_empty_list_name" = "Ім'я не може бути порожнім"; + "bookmarks_error_message_empty_list_name" = "Будь ласка, введіть назву списку"; +"bookmarks_new_list_hint" = "Новий список"; + "bookmarks_error_title_list_name_already_taken" = "Це ім'я вже зайнято"; +"bookmarks_error_message_list_name_already_taken" = "Виберіть інше ім'я"; + "bookmarks_error_title_list_name_too_long" = "Це ім'я задовге"; +"please_wait" = "Будь ласка, зачекайте…"; + +"phone_number" = "Номер телефону"; + "profile" = "Профіль OpenStreetMap"; "bookmarks_detect_title" = "Виявлено нові файли"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Відновити цю версію?"; +"common_check_internet_connection_dialog_title" = "Нема інтернет з'єднання"; + "error_system_message" = "Виникла невідома помилка"; "restore" = "Відновити"; +"subtittle_opt_out" = "Налаштування супроводу"; + +"crash_reports" = "Звіти про помилки"; + +"crash_reports_description" = "Ми можемо використовувати ваші дані, щоб розвивати та покращувати Organic Maps. Зміни вступлять у силу після перезапуску програми"; + "privacy_policy" = "Політика конфіденційності"; "terms_of_use" = "Умови використання"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Мапа метрополітену недоступна"; +"bookmarks_empty_list_title" = "Список порожній"; + +"bookmarks_empty_list_message" = "Щоб додати нову позначку, натисніть на значок зірочки в картці об’єкта"; + +"category_desc_more" = "…ще"; + "title_error_downloading_bookmarks" = "Виникла помилка"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Приховати з карти"; +"public_access" = "Публічний доступ"; + +"limited_access" = "Приватний доступ"; + "bookmark_list_description_hint" = "Додайте опис (текст чи html)"; +"not_shared" = "Особистий"; + "tags_loading_error_subtitle" = "Під час завантаження тегів сталася помилка, будь ласка, спробуйте ще раз"; "download_button" = "Завантажити"; @@ -972,6 +1221,9 @@ "place_description_title" = "Опис місця"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Завантаження мап"; + "speedcams_notice_message" = "Авто - Попереджати про камери швидкості, якщо є ризик перевищення швидкісного ліміту\nЗавжди - Завжди попереджати про камери\nНіколи - Ніколи не попереджати про камери"; "power_managment_title" = "Режим енергозбереження"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Максимальне енергозбереження"; +"enable_logging_warning_message" = "Дана опція вмикається для логування дій з метою діагностики. Це допомагає команді виявити проблеми з додатком. Тимчасово включайте цю настройку тільки для відправки детальної інформації про знайдену вами проблему в додатку."; + +"access_rules_author_only" = "Редагується онлайн"; + "driving_options_title" = "Налаштування об’їзду"; "driving_options_subheader" = "Уникати в кожному маршруті"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Сортувати"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Сортувати мітки"; + /* iOS */ "sort_default" = "Сортувати за промовчанням"; @@ -1086,6 +1345,18 @@ "sort_date" = "Сортувати за датою"; +/* Android */ +"by_default" = "Усталено"; + +/* Android */ +"by_type" = "За типом"; + +/* Android */ +"by_distance" = "За відстанню"; + +/* Android */ +"by_date" = "За датою"; + "week_ago_sorttype" = "Тиждень тому"; "month_ago_sorttype" = "Місяць тому"; @@ -1132,6 +1403,8 @@ "religious_places" = "Святі місця"; +"select_list" = "Обрати список"; + "transit_not_found" = "Навігація на метро ще недоступна в цьому регіоні"; "dialog_pedestrian_route_is_long_header" = "Маршрут метро не знайдено"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Складність"; +"elevation_profile_distance" = "Відст.:"; + "elevation_profile_time" = "Шлях:"; "isolines_toast_zooms_1_10" = "Збільште мапу, щоб побачити ізолінії"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Завантаження"; +"key_information_title" = "Ключова інформація"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Дозволити екрану вимкнутись"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "При включенні екран може переходити в сплячий режим після певного періоду бездіяльності"; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Оновити завантажені мапи"; @@ -1197,21 +1485,21 @@ /********** Types **********/ -"type.aerialway" = "Канатна дорога"; +"type.aerialway" = "Aerialway"; -"type.aerialway.cable_car" = "Канатна дорога"; +"type.aerialway.cable_car" = "Aerialway"; -"type.aerialway.chair_lift" = "Канатна дорога"; +"type.aerialway.chair_lift" = "Aerialway"; -"type.aerialway.drag_lift" = "Канатна дорога"; +"type.aerialway.drag_lift" = "Aerialway"; -"type.aerialway.gondola" = "Канатна дорога"; +"type.aerialway.gondola" = "Aerialway"; -"type.aerialway.mixed_lift" = "Канатна дорога"; +"type.aerialway.mixed_lift" = "Aerialway"; "type.aerialway.station" = "Канатна дорога"; -"type.aeroway" = "Аеропорт"; +"type.aeroway" = "Aeroway"; "type.aeroway.aerodrome" = "Аеропорт"; @@ -1225,7 +1513,7 @@ "type.aeroway.runway" = "Злітно-посадкова смуга"; -"type.aeroway.taxiway" = "Рульова дорiжка"; +"type.aeroway.taxiway" = "aeroway-taxiway"; "type.aeroway.terminal" = "Термінал"; @@ -1735,18 +2023,15 @@ "type.healthcare.laboratory" = "Медична лабораторія"; +"type.highway" = "Highway"; -/********** Types: Roads **********/ +"type.highway.bridleway" = "Rider's Path"; -"type.highway" = "Дорога"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway" = "Кінна доріжка"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Кінна доріжка"; - -"type.highway.bridleway.permissive" = "Кінна доріжка"; - -"type.highway.bridleway.tunnel" = "Кінна доріжка"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Зупинка"; @@ -1764,21 +2049,21 @@ "type.highway.footway" = "Пішохідна доріжка"; -"type.highway.footway.alpine_hiking" = "Стежка"; +"type.highway.footway.alpine_hiking" = "Пішохідна доріжка"; -"type.highway.footway.area" = "Пішохідна зона"; +"type.highway.footway.area" = "Пішохідна доріжка"; "type.highway.footway.bridge" = "Пішохідна доріжка"; -"type.highway.footway.demanding_alpine_hiking" = "Стежка"; +"type.highway.footway.demanding_alpine_hiking" = "Пішохідна доріжка"; -"type.highway.footway.demanding_mountain_hiking" = "Стежка"; +"type.highway.footway.demanding_mountain_hiking" = "Пішохідна доріжка"; -"type.highway.footway.difficult_alpine_hiking" = "Стежка"; +"type.highway.footway.difficult_alpine_hiking" = "Пішохідна доріжка"; -"type.highway.footway.hiking" = "Стежка"; +"type.highway.footway.hiking" = "Пішохідна доріжка"; -"type.highway.footway.mountain_hiking" = "Стежка"; +"type.highway.footway.mountain_hiking" = "Пішохідна доріжка"; "type.highway.footway.permissive" = "Пішохідна доріжка"; @@ -1786,71 +2071,71 @@ "type.highway.ford" = "Брід"; -"type.highway.living_street" = "Житлова зона"; +"type.highway.living_street" = "Вулиця"; -"type.highway.living_street.bridge" = "Житлова зона"; +"type.highway.living_street.bridge" = "Вулиця"; -"type.highway.living_street.tunnel" = "Житлова зона"; +"type.highway.living_street.tunnel" = "Вулиця"; -"type.highway.motorway" = "Автомагістраль"; +"type.highway.motorway" = "Вулиця"; -"type.highway.motorway.bridge" = "Автомагістраль"; +"type.highway.motorway.bridge" = "Вулиця"; -"type.highway.motorway.tunnel" = "Автомагістраль"; +"type.highway.motorway.tunnel" = "Вулиця"; "type.highway.motorway_junction" = "З'їзд"; -"type.highway.motorway_link" = "З'їзд з автомагістралі"; +"type.highway.motorway_link" = "Вулиця"; -"type.highway.motorway_link.bridge" = "З'їзд з автомагістралі"; +"type.highway.motorway_link.bridge" = "Вулиця"; -"type.highway.motorway_link.tunnel" = "З'їзд з автомагістралі"; +"type.highway.motorway_link.tunnel" = "Вулиця"; -"type.highway.path" = "Стежка"; +"type.highway.path" = "Пішохідна доріжка"; -"type.highway.path.alpine_hiking" = "Стежка"; +"type.highway.path.alpine_hiking" = "Пішохідна доріжка"; -"type.highway.path.bicycle" = "Велопішохідна доріжка"; +"type.highway.path.bicycle" = "Пішохідна доріжка"; -"type.highway.path.bridge" = "Стежка"; +"type.highway.path.bridge" = "Пішохідна доріжка"; -"type.highway.path.demanding_alpine_hiking" = "Стежка"; +"type.highway.path.demanding_alpine_hiking" = "Пішохідна доріжка"; -"type.highway.path.demanding_mountain_hiking" = "Стежка"; +"type.highway.path.demanding_mountain_hiking" = "Пішохідна доріжка"; -"type.highway.path.difficult_alpine_hiking" = "Стежка"; +"type.highway.path.difficult_alpine_hiking" = "Пішохідна доріжка"; -"type.highway.path.hiking" = "Стежка"; +"type.highway.path.hiking" = "Пішохідна доріжка"; -"type.highway.path.horse" = "Кінна стежка"; +"type.highway.path.horse" = "Пішохідна доріжка"; -"type.highway.path.mountain_hiking" = "Стежка"; +"type.highway.path.mountain_hiking" = "Пішохідна доріжка"; -"type.highway.path.permissive" = "Стежка"; +"type.highway.path.permissive" = "Пішохідна доріжка"; -"type.highway.path.tunnel" = "Стежка"; +"type.highway.path.tunnel" = "Пішохідна доріжка"; -"type.highway.pedestrian" = "Пішохідна вулиця"; +"type.highway.pedestrian" = "Вулиця"; -"type.highway.pedestrian.area" = "Пішохідна зона"; +"type.highway.pedestrian.area" = "Вулиця"; -"type.highway.pedestrian.bridge" = "Пішохідна вулиця"; +"type.highway.pedestrian.bridge" = "Вулиця"; -"type.highway.pedestrian.tunnel" = "Пішохідна вулиця"; +"type.highway.pedestrian.tunnel" = "Вулиця"; -"type.highway.primary" = "Шосе"; +"type.highway.primary" = "Вулиця"; -"type.highway.primary.bridge" = "Шосе"; +"type.highway.primary.bridge" = "Вулиця"; -"type.highway.primary.tunnel" = "Шосе"; +"type.highway.primary.tunnel" = "Вулиця"; -"type.highway.primary_link" = "З'їзд з шосе"; +"type.highway.primary_link" = "Вулиця"; -"type.highway.primary_link.bridge" = "З'їзд з шосе"; +"type.highway.primary_link.bridge" = "Вулиця"; -"type.highway.primary_link.tunnel" = "З'їзд з шосе"; +"type.highway.primary_link.tunnel" = "Вулиця"; -"type.highway.raceway" = "Гоночний трек"; +"type.highway.raceway" = "Автодром"; "type.highway.residential" = "Вулиця"; @@ -1862,139 +2147,106 @@ "type.highway.rest_area" = "Зона відпочинку"; -"type.highway.road" = "Дорога"; +"type.highway.road" = "Вулиця"; -"type.highway.road.bridge" = "Дорога"; +"type.highway.road.bridge" = "Вулиця"; -"type.highway.road.tunnel" = "Дорога"; +"type.highway.road.tunnel" = "Вулиця"; -"type.highway.secondary" = "Автодорога"; +"type.highway.secondary" = "Вулиця"; -"type.highway.secondary.bridge" = "Автодорога"; +"type.highway.secondary.bridge" = "Вулиця"; -"type.highway.secondary.tunnel" = "Автодорога"; +"type.highway.secondary.tunnel" = "Вулиця"; -"type.highway.secondary_link" = "З'їзд з автодороги"; +"type.highway.secondary_link" = "Вулиця"; -"type.highway.secondary_link.bridge" = "З'їзд з автодороги"; +"type.highway.secondary_link.bridge" = "Вулиця"; -"type.highway.secondary_link.tunnel" = "З'їзд з автодороги"; +"type.highway.secondary_link.tunnel" = "Вулиця"; -"type.highway.service" = "Проїзд"; +"type.highway.service" = "Вулиця"; -"type.highway.service.area" = "Проїзд"; +"type.highway.service.area" = "Вулиця"; -"type.highway.service.bridge" = "Проїзд"; +"type.highway.service.bridge" = "Вулиця"; -"type.highway.service.driveway" = "Під'їзд"; +"type.highway.service.driveway" = "Вулиця"; -"type.highway.service.parking_aisle" = "Паркувальний проїзд"; +"type.highway.service.parking_aisle" = "Вулиця"; -"type.highway.service.tunnel" = "Проїзд"; +"type.highway.service.tunnel" = "Вулиця"; -"type.highway.services" = "Зона обслуговування"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Камера швидкості"; -"type.highway.steps" = "Сходи"; +"type.highway.steps" = "Пішохідна доріжка"; -"type.highway.steps.bridge" = "Сходи"; +"type.highway.steps.bridge" = "Пішохідна доріжка"; -"type.highway.steps.tunnel" = "Сходи"; +"type.highway.steps.tunnel" = "Пішохідна доріжка"; -"type.highway.tertiary" = "Дорога"; +"type.highway.tertiary" = "Вулиця"; -"type.highway.tertiary.bridge" = "Дорога"; +"type.highway.tertiary.bridge" = "Вулиця"; -"type.highway.tertiary.tunnel" = "Дорога"; +"type.highway.tertiary.tunnel" = "Вулиця"; -"type.highway.tertiary_link" = "З'їзд з дороги"; +"type.highway.tertiary_link" = "Вулиця"; -"type.highway.tertiary_link.bridge" = "З'їзд з дороги"; +"type.highway.tertiary_link.bridge" = "Вулиця"; -"type.highway.tertiary_link.tunnel" = "З'їзд з дороги"; +"type.highway.tertiary_link.tunnel" = "Вулиця"; -"type.highway.track" = "Ґрунтівка"; +"type.highway.track" = "Вулиця"; -"type.highway.track.area" = "Ґрунтівка"; +"type.highway.track.area" = "Вулиця"; -"type.highway.track.bridge" = "Ґрунтівка"; +"type.highway.track.bridge" = "Вулиця"; -"type.highway.track.grade1" = "Ґрунтівка"; +"type.highway.track.grade1" = "Вулиця"; -"type.highway.track.grade2" = "Ґрунтівка"; +"type.highway.track.grade2" = "Вулиця"; -"type.highway.track.grade3" = "Ґрунтівка"; +"type.highway.track.grade3" = "Вулиця"; -"type.highway.track.grade4" = "Ґрунтівка"; +"type.highway.track.grade4" = "Вулиця"; -"type.highway.track.grade5" = "Ґрунтівка"; +"type.highway.track.grade5" = "Вулиця"; -"type.highway.track.no.access" = "Ґрунтівка"; +"type.highway.track.no.access" = "Вулиця"; -"type.highway.track.permissive" = "Ґрунтівка"; +"type.highway.track.permissive" = "Вулиця"; -"type.highway.track.tunnel" = "Ґрунтівка"; +"type.highway.track.tunnel" = "Вулиця"; "type.highway.traffic_signals" = "Світлофор"; -"type.highway.trunk" = "Траса"; +"type.highway.trunk" = "Вулиця"; -"type.highway.trunk.bridge" = "Траса"; +"type.highway.trunk.bridge" = "Вулиця"; -"type.highway.trunk.tunnel" = "Траса"; +"type.highway.trunk.tunnel" = "Вулиця"; -"type.highway.trunk_link" = "З'їзд з траси"; +"type.highway.trunk_link" = "Вулиця"; -"type.highway.trunk_link.bridge" = "З'їзд з траси"; +"type.highway.trunk_link.bridge" = "Вулиця"; -"type.highway.trunk_link.tunnel" = "З'їзд з траси"; +"type.highway.trunk_link.tunnel" = "Вулиця"; -"type.highway.unclassified" = "Невелика дорога"; +"type.highway.unclassified" = "Вулиця"; -"type.highway.unclassified.area" = "Невелика дорога"; +"type.highway.unclassified.area" = "Вулиця"; -"type.highway.unclassified.bridge" = "Невелика дорога"; +"type.highway.unclassified.bridge" = "Вулиця"; -"type.highway.unclassified.tunnel" = "Невелика дорога"; - -"type.area_highway.cycleway" = "Велодоріжка"; - -"type.area_highway.footway" = "Пішохідна доріжка"; - -"type.area_highway.living_street" = "Житлова зона"; - -"type.area_highway.motorway" = "Автомагістраль"; - -"type.area_highway.path" = "Стежка"; - -"type.area_highway.pedestrian" = "Пішохідна вулиця"; - -"type.area_highway.primary" = "Шосе"; - -"type.area_highway.residential" = "Вулиця"; - -"type.area_highway.secondary" = "Автодорога"; - -"type.area_highway.service" = "Проїзд"; - -"type.area_highway.tertiary" = "Дорога"; - -"type.area_highway.steps" = "Сходи"; - -"type.area_highway.track" = "Ґрунтівка"; - -"type.area_highway.trunk" = "Траса"; - -"type.area_highway.unclassified" = "Невелика дорога"; +"type.highway.unclassified.tunnel" = "Вулиця"; "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Історичний об'єкт"; "type.historic.archaeological_site" = "Пам'ятка археології"; @@ -2029,7 +2281,7 @@ "type.historic.tomb" = "Гробниця"; -"type.historic.wayside_cross" = "Християнський хрест"; +"type.historic.wayside_cross" = "Christian Cross"; "type.historic.wayside_shrine" = "Святиня"; @@ -2067,17 +2319,17 @@ "type.junction.roundabout" = "Кільце"; -"type.landuse" = "Землевикористання"; +"type.landuse" = "Landuse"; "type.landuse.allotments" = "Земельні ділянки"; "type.landuse.basin" = "Резервуар"; -"type.landuse.brownfield" = "Земля для будiвництва"; +"type.landuse.brownfield" = "Brownfield"; "type.landuse.cemetery" = "Цвинтар"; -"type.landuse.cemetery.christian" = "Християнський цвинтар"; +"type.landuse.cemetery.christian" = "Цвинтар"; "type.landuse.churchyard" = "Церковний двір"; @@ -2085,11 +2337,11 @@ "type.landuse.construction" = "Будівництво"; -"type.landuse.farm" = "Ферма"; +"type.landuse.farm" = "Farm"; "type.landuse.farmland" = "Сільськогосподарська земля"; -"type.landuse.farmyard" = "Сільськогосподарська земля"; +"type.landuse.farmyard" = "Farmyard"; "type.landuse.field" = "Поле"; @@ -2105,7 +2357,7 @@ "type.landuse.grass" = "Газон"; -"type.landuse.greenfield" = "Земля для будiвництва"; +"type.landuse.greenfield" = "Greenfield"; "type.landuse.greenhouse_horticulture" = "Теплиці"; @@ -2123,7 +2375,7 @@ "type.landuse.railway" = "Залізничні споруди"; -"type.landuse.recreation_ground" = "База вiдпочинку"; +"type.landuse.recreation_ground" = "Recreation Ground"; "type.landuse.reservoir" = "Водоймище"; @@ -2139,7 +2391,7 @@ "type.leisure" = "Місце відпочинку"; -"type.leisure.common" = "Громадська земля"; +"type.leisure.common" = "leisure-common"; "type.leisure.dog_park" = "Місце для вигулу собак"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Аквапарк"; -"type.leisure.beach_resort" = "Пляжний курорт"; - "type.man_made" = "Штучна споруда"; "type.man_made.breakwater" = "Хвилеріз"; @@ -2247,9 +2497,9 @@ "type.mountain_pass" = "Перевал"; -"type.natural" = "Природа"; +"type.natural" = "Natural"; -"type.natural.bare_rock" = "Скелi"; +"type.natural.bare_rock" = "Bare Rock"; "type.natural.bay" = "Затока"; @@ -2263,9 +2513,9 @@ "type.natural.cave_entrance" = "Печера"; -"type.natural.cliff" = "Обрив"; +"type.natural.cliff" = "Cliff"; -"type.natural.coastline" = "Берегова лiнiя"; +"type.natural.coastline" = "Coastline"; "type.natural.geyser" = "Гейзер"; @@ -2273,9 +2523,9 @@ "type.natural.grassland" = "Поле"; -"type.natural.heath" = "Пустище"; +"type.natural.heath" = "Heath"; -"type.natural.hot_spring" = "Горяче джерело"; +"type.natural.hot_spring" = "Hot Spring"; "type.natural.water.lake" = "Озеро"; @@ -2297,7 +2547,7 @@ "type.natural.saddle" = "Сідловина"; -"type.natural.rock" = "Камiнь"; +"type.natural.rock" = "Rock"; "type.natural.scrub" = "Зарості"; @@ -2307,9 +2557,9 @@ "type.natural.tree" = "Дерево"; -"type.natural.tree_row" = "Ряд дерев"; +"type.natural.tree_row" = "Tree Row"; -"type.natural.vineyard" = "Виноградник"; +"type.natural.vineyard" = "Vineyard"; "type.natural.volcano" = "Вулкан"; @@ -2317,11 +2567,11 @@ "type.natural.wetland" = "Болотиста місцевість"; -"type.natural.wetland.bog" = "Торф'яне болото"; +"type.natural.wetland.bog" = "Wetland"; -"type.natural.wetland.marsh" = "Болотиста мiсцевiсть"; +"type.natural.wetland.marsh" = "Wetland"; -"type.noexit" = "Тупик"; +"type.noexit" = "noexit"; "type.noexit.motor_vehicle" = "noexit-motor_vehicle"; @@ -2329,7 +2579,7 @@ "type.office.company" = "Організація"; -"type.office.estate_agent" = "Агенція нерухомості"; +"type.office.estate_agent" = "Агенція нерухомості/ріелтор"; "type.office.government" = "Держустанова"; @@ -2341,31 +2591,31 @@ "type.office.telecommunication" = "Мобільний оператор"; -"type.place" = "Мicце"; +"type.place" = "place"; "type.place.city" = "Місто"; "type.place.city.capital" = "Столиця"; -"type.place.city.capital.10" = "Місто"; +"type.place.city.capital.10" = "Столиця"; -"type.place.city.capital.11" = "Місто"; +"type.place.city.capital.11" = "Столиця"; "type.place.city.capital.2" = "Столиця"; -"type.place.city.capital.3" = "Місто"; +"type.place.city.capital.3" = "Столиця"; -"type.place.city.capital.4" = "Місто"; +"type.place.city.capital.4" = "Столиця"; -"type.place.city.capital.5" = "Місто"; +"type.place.city.capital.5" = "Столиця"; -"type.place.city.capital.6" = "Місто"; +"type.place.city.capital.6" = "Столиця"; -"type.place.city.capital.7" = "Місто"; +"type.place.city.capital.7" = "Столиця"; -"type.place.city.capital.8" = "Місто"; +"type.place.city.capital.8" = "Столиця"; -"type.place.city.capital.9" = "Місто"; +"type.place.city.capital.9" = "Столиця"; "type.place.continent" = "Континент"; @@ -2381,11 +2631,11 @@ "type.place.islet" = "Острів"; -"type.place.isolated_dwelling" = "Житло"; +"type.place.isolated_dwelling" = "Dwelling"; "type.place.locality" = "Місцевість"; -"type.place.neighbourhood" = "Мiкрорайон"; +"type.place.neighbourhood" = "Neighbourhood"; "type.place.ocean" = "Океан"; @@ -2393,7 +2643,7 @@ "type.place.sea" = "Море"; -"type.place.square" = "Площа"; +"type.place.square" = "Square"; "type.place.state" = "Штат"; @@ -2405,19 +2655,19 @@ "type.place.village" = "Село"; -"type.power" = "Енергія"; +"type.power" = "Power"; -"type.power.generator" = "Генератор"; +"type.power.generator" = "Generator"; -"type.power.line" = "Лінія електропередач"; +"type.power.line" = "Power Line"; -"type.power.line.underground" = "Підземна лінія електропередач"; +"type.power.line.underground" = "Underground Power Line"; -"type.power.minor_line" = "Лінія електропередач низької напруги"; +"type.power.minor_line" = "Minor Power Line"; "type.power.pole" = "Стовп ЛЕП"; -"type.power.station" = "Електростанція"; +"type.power.station" = "Power Station"; "type.power.substation" = "Підстанція"; @@ -2433,81 +2683,81 @@ "type.psurface.unpaved_good" = "psurface-unpaved_good"; -"type.public_transport" = "Громадський транспорт"; +"type.public_transport" = "Public Transport"; "type.public_transport.platform" = "Platform"; -"type.railway" = "Залізниця"; +"type.railway" = "Railway"; -"type.railway.abandoned" = "Закинута залізниця"; +"type.railway.abandoned" = "Abandoned railway"; -"type.railway.abandoned.bridge" = "Закинутий залізничний міст"; +"type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Закинутий залізничний тунель"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Будівництво залізниці"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Пішохідний перехід"; +"type.railway.crossing" = "Railway crossing"; -"type.railway.disused" = "Недійсна залізниця"; +"type.railway.disused" = "Disused railway"; -"type.railway.funicular" = "Фунікулер"; +"type.railway.funicular" = "Funicular"; -"type.railway.funicular.bridge" = "Фунікулер"; +"type.railway.funicular.bridge" = "Funicular"; -"type.railway.funicular.tunnel" = "Фунікулер"; +"type.railway.funicular.tunnel" = "Funicular"; "type.railway.halt" = "Залізничний вокзал"; "type.railway.level_crossing" = "Залізничний переїзд"; -"type.railway.light_rail" = "Швидкістний трамвай"; +"type.railway.light_rail" = "Light Rail"; -"type.railway.light_rail.bridge" = "Швидкістний трамвай"; +"type.railway.light_rail.bridge" = "Light Rail"; -"type.railway.light_rail.tunnel" = "Швидкістний трамвай"; +"type.railway.light_rail.tunnel" = "Light Rail"; "type.railway.monorail" = "Монорейкова залізниця"; -"type.railway.monorail.bridge" = "Монорейкова залізниця"; +"type.railway.monorail.bridge" = "Monorail"; -"type.railway.monorail.tunnel" = "Монорейкова залізниця"; +"type.railway.monorail.tunnel" = "Monorail"; -"type.railway.narrow_gauge" = "Вузькоколійка"; +"type.railway.narrow_gauge" = "Narrow Gauge Rail"; -"type.railway.narrow_gauge.bridge" = "Вузькоколійка"; +"type.railway.narrow_gauge.bridge" = "Narrow Gauge Rail"; -"type.railway.narrow_gauge.tunnel" = "Вузькоколійка"; +"type.railway.narrow_gauge.tunnel" = "Narrow Gauge Rail"; -"type.railway.platform" = "Залізнична платформа"; +"type.railway.platform" = "Platform"; -"type.railway.preserved" = "Законсервована залізниця"; +"type.railway.preserved" = "Preserved Rail"; -"type.railway.preserved.bridge" = "Законсервована залізниця"; +"type.railway.preserved.bridge" = "Preserved Rail"; -"type.railway.preserved.tunnel" = "Законсервована залізниця"; +"type.railway.preserved.tunnel" = "Preserved Rail"; -"type.railway.rail" = "Залізнична дорога"; +"type.railway.rail" = "Залізна дорога"; -"type.railway.rail.bridge" = "Залізничний міст"; +"type.railway.rail.bridge" = "Railway"; -"type.railway.rail.motor_vehicle" = "Залізниця"; +"type.railway.rail.motor_vehicle" = "Railway"; -"type.railway.rail.tunnel" = "Залізничний тунель"; +"type.railway.rail.tunnel" = "Railway"; -"type.railway.razed" = "Закинута залізниця"; +"type.railway.razed" = "Razed Rail"; -"type.railway.siding" = "Гілка залізниці"; +"type.railway.siding" = "Siding Rail"; -"type.railway.siding.bridge" = "Гілка залізниці"; +"type.railway.siding.bridge" = "Siding Rail"; -"type.railway.siding.tunnel" = "Гілка залізниці"; +"type.railway.siding.tunnel" = "Siding Rail"; -"type.railway.spur" = "Під'їздна залізниця"; +"type.railway.spur" = "Spur Rail"; -"type.railway.spur.bridge" = "Під'їздна залізниця"; +"type.railway.spur.bridge" = "Spur Rail"; -"type.railway.spur.tunnel" = "Під'їздна залізниця"; +"type.railway.spur.tunnel" = "Spur Rail"; "type.railway.station" = "Залізничний вокзал"; @@ -2539,11 +2789,11 @@ "type.railway.station.subway.spb" = "Метро"; -"type.railway.subway" = "Лінія метро"; +"type.railway.subway" = "Subway Line"; -"type.railway.subway.bridge" = "Лінія метро"; +"type.railway.subway.bridge" = "Subway Line"; -"type.railway.subway.tunnel" = "Лінія метро"; +"type.railway.subway.tunnel" = "Subway Line"; "type.railway.subway_entrance" = "Вхід до метро"; @@ -2569,23 +2819,23 @@ "type.railway.subway_entrance.spb" = "Метро"; -"type.railway.tram" = "Трамвай"; +"type.railway.tram" = "Tram Line"; -"type.railway.tram.bridge" = "Трамвай"; +"type.railway.tram.bridge" = "Tram Line"; -"type.railway.tram.tunnel" = "Трамвай"; +"type.railway.tram.tunnel" = "Tram Line"; "type.railway.tram_stop" = "Зупинка"; -"type.railway.yard" = "Залізнична ділянка"; +"type.railway.yard" = "Railway Yard"; -"type.railway.yard.bridge" = "Залізнична ділянка"; +"type.railway.yard.bridge" = "Railway Yard"; -"type.railway.yard.tunnel" = "Залізнична ділянка"; +"type.railway.yard.tunnel" = "Railway Yard"; -"type.route" = "Маршрут"; +"type.route" = "route"; -"type.route.ferry" = "Паромна переправа"; +"type.route.ferry" = "Ferry"; "type.route.shuttle_train" = "Shuttle Train"; @@ -2599,7 +2849,7 @@ "type.shop.beverages" = "Напої"; -"type.shop.bicycle" = "Веломагазин"; +"type.shop.bicycle" = "Веломагазін"; "type.shop.bookmaker" = "Букмекерська контора"; @@ -2635,11 +2885,11 @@ "type.shop.department_store" = "Універмаг"; -"type.shop.doityourself" = "Господарськi товари"; +"type.shop.doityourself" = "Будматеріали"; "type.shop.dry_cleaning" = "Хімчистка"; -"type.shop.electronics" = "Електротехнiка"; +"type.shop.electronics" = "Електротехнічний магазин"; "type.shop.erotic" = "Секс-шоп"; @@ -2655,7 +2905,7 @@ "type.shop.gift" = "Магазин сувенірів"; -"type.shop.greengrocer" = "Овочі та фрукти"; +"type.shop.greengrocer" = "Магазин овочів"; "type.shop.hairdresser" = "Перукарня"; @@ -2693,13 +2943,13 @@ "type.shop.photo" = "Фототовари"; -"type.shop.seafood" = "Рибна лавка"; +"type.shop.seafood" = "Рибна крамниця"; "type.shop.shoes" = "Магазин взуття"; "type.shop.sports" = "Спортивні товари"; -"type.shop.stationery" = "Канцелярськi товари"; +"type.shop.stationery" = "Магазин канцелярських товарів"; "type.shop.supermarket" = "Супермаркет"; @@ -2707,7 +2957,7 @@ "type.shop.tea" = "Крамниця"; -"type.shop.ticket" = "Квитковий кiоск"; +"type.shop.ticket" = "Білетна каса"; "type.shop.toys" = "Магазин іграшок"; @@ -2715,7 +2965,7 @@ "type.shop.tyres" = "Магазин шин"; -"type.shop.variety_store" = "Магазин корисних товарів"; +"type.shop.variety_store" = "Магазин господарських товарів"; "type.shop.video" = "Магазин відео"; @@ -2723,65 +2973,65 @@ "type.shop.wine" = "Винна крамниця"; -"type.sport" = "Спорт"; +"type.sport" = "sport"; -"type.sport.american_football" = "Американський футбол"; +"type.sport.american_football" = "American Football"; -"type.sport.archery" = "Стрiльба з лука"; +"type.sport.archery" = "Archery"; "type.sport.athletics" = "Легка атлетика"; -"type.sport.australian_football" = "Регбi"; +"type.sport.australian_football" = "Rugby"; -"type.sport.baseball" = "Бейсбол"; +"type.sport.baseball" = "Baseball"; "type.sport.basketball" = "Баскетбол"; -"type.sport.bowls" = "Кеглi"; +"type.sport.bowls" = "Bowls"; -"type.sport.cricket" = "Крикет"; +"type.sport.cricket" = "Cricket"; -"type.sport.curling" = "Керлiнг"; +"type.sport.curling" = "Сurling"; -"type.sport.diving" = "Пiдводне плавання"; +"type.sport.diving" = "Diving"; "type.sport.equestrian" = "Кінний спорт"; -"type.sport.golf" = "Гольф"; +"type.sport.golf" = "Golf"; -"type.sport.gymnastics" = "Гiмнастика"; +"type.sport.gymnastics" = "Gymnastics"; -"type.sport.handball" = "Гандбол"; +"type.sport.handball" = "Handball"; -"type.sport.multi" = "Рiзноманiтнi типи спорту"; +"type.sport.multi" = "Various Sport"; -"type.sport.scuba_diving" = "Акваланг"; +"type.sport.scuba_diving" = "Scuba Diving"; -"type.sport.shooting" = "Стрiльба"; +"type.sport.shooting" = "Shooting"; -"type.sport.skiing" = "Лижi"; +"type.sport.skiing" = "Skiing"; -"type.sport.soccer" = "Футбол"; +"type.sport.soccer" = "Soccer (Football)"; -"type.sport.swimming" = "Плавання"; +"type.sport.swimming" = "Swimming"; "type.sport.tennis" = "Тенісний корт"; -"type.tourism" = "Туризм"; +"type.tourism" = "Tourism"; "type.tourism.alpine_hut" = "Гірський готель"; "type.tourism.apartment" = "Апартаменти"; -"type.tourism.artwork" = "Витвір мистецтва"; +"type.tourism.artwork" = "Твір мистецтва"; -"type.tourism.artwork.architecture" = "Витвір мистецтва"; +"type.tourism.artwork.architecture" = "Твір мистецтва"; -"type.tourism.artwork.painting" = "Витвір мистецтва"; +"type.tourism.artwork.painting" = "Твір мистецтва"; -"type.tourism.artwork.sculpture" = "Витвір мистецтва"; +"type.tourism.artwork.sculpture" = "Твір мистецтва"; -"type.tourism.artwork.statue" = "Витвір мистецтва"; +"type.tourism.artwork.statue" = "Твір мистецтва"; "type.tourism.attraction" = "Пам’ятка"; @@ -2821,7 +3071,7 @@ "type.tourism.resort" = "Будинок відпочинку"; -"type.tourism.theme_park" = "Парк розваг"; +"type.tourism.theme_park" = "Пам’ятні місця"; "type.tourism.viewpoint" = "Оглядний майданчик"; @@ -2829,31 +3079,31 @@ "type.tourism.zoo" = "Зоопарк"; -"type.traffic_calming" = "Лежачий полiцейський"; +"type.traffic_calming" = "Traffic Calming"; -"type.traffic_calming.bump" = "Лежачий полiцейський"; +"type.traffic_calming.bump" = "Traffic Bump"; -"type.traffic_calming.hump" = "Лежачий полiцейський"; +"type.traffic_calming.hump" = "Traffic Hump"; -"type.waterway" = "Водяний шлях"; +"type.waterway" = "Waterway"; "type.waterway.canal" = "Канал"; "type.waterway.canal.tunnel" = "Канал"; -"type.waterway.dam" = "Дамба"; +"type.waterway.dam" = "Dam"; -"type.waterway.ditch" = "Канава"; +"type.waterway.ditch" = "Ditch"; -"type.waterway.ditch.tunnel" = "Канава"; +"type.waterway.ditch.tunnel" = "Ditch"; -"type.waterway.dock" = "Причал"; +"type.waterway.dock" = "Waterway Dock"; -"type.waterway.drain" = "Водовiдвiд"; +"type.waterway.drain" = "Drain"; -"type.waterway.drain.tunnel" = "Водовiдвiд"; +"type.waterway.drain.tunnel" = "Drain"; -"type.waterway.lock" = "Шлюз"; +"type.waterway.lock" = "Waterway Lock"; "type.waterway.lock_gate" = "Шлюз"; @@ -2873,9 +3123,9 @@ "type.waterway.waterfall" = "Водоспад"; -"type.waterway.weir" = "Гребля"; +"type.waterway.weir" = "Weir"; -"type.wheelchair" = "Iнвалiдний вiзок"; +"type.wheelchair" = "Wheelchair"; "type.wheelchair.limited" = "Частково обладнано для інвалідів"; @@ -2883,36 +3133,66 @@ "type.wheelchair.yes" = "Обладнано для інвалідів"; -"type.piste_lift" = "Пiдйомник"; +"type.piste_lift" = "piste:lift"; -"type.piste_lift.j.bar" = "Пiдйомник"; +"type.piste_lift.j.bar" = "piste:lift-j-bar"; -"type.piste_lift.magic_carpet" = "Стрiчковий конвеєр"; +"type.piste_lift.magic_carpet" = "piste:lift-magic_carpet"; -"type.piste_lift.platter" = "Пiдйомник"; +"type.piste_lift.platter" = "piste:lift-platter"; -"type.piste_lift.rope_tow" = "Пiдйомник"; +"type.piste_lift.rope_tow" = "piste:lift-rope_tow"; -"type.piste_lift.t.bar" = "Пiдйомник"; +"type.piste_lift.t.bar" = "piste:lift-t-bar"; -"type.piste_type" = "Тип дороги"; +"type.piste_type" = "piste:type"; -"type.piste_type.downhill" = "Гірськолижна траса"; +"type.piste_type.downhill" = "piste:type-downhill"; -"type.piste_type.downhill.advanced" = "Доповнена гірськолижна траса"; +"type.piste_type.downhill.advanced" = "piste:type-downhill-advanced"; -"type.piste_type.downhill.easy" = "Легка гірськолижна траса"; +"type.piste_type.downhill.easy" = "piste:type-downhill-easy"; -"type.piste_type.downhill.expert" = "Гірськолижна траса для експертів"; +"type.piste_type.downhill.expert" = "piste:type-downhill-expert"; -"type.piste_type.downhill.freeride" = "Гірськолижна траса вільного спуска"; +"type.piste_type.downhill.freeride" = "piste:type-downhill-freeride"; -"type.piste_type.downhill.intermediate" = "Гірськолижна траса середнього рівня"; +"type.piste_type.downhill.intermediate" = "piste:type-downhill-intermediate"; -"type.piste_type.downhill.novice" = "Гірськолижна траса для новеньких"; +"type.piste_type.downhill.novice" = "piste:type-downhill-novice"; -"type.piste_type.nordic" = "Траса для скандинавської ходьби"; +"type.piste_type.nordic" = "piste:type-nordic"; -"type.piste_type.sled" = "Траса для санок"; +"type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Будівля"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.stringsdict index e104903b54..ff77f00187 100644 --- a/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/uk.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -34,12 +34,12 @@ NSStringPluralRuleType NSStringFormatValueTypeKey d - few - %d файлу були знайдені. Ви побачите їх після конвертації. one %d файл був знайдений. Ви побачите його після перетворення. other %d файлів було знайдено. Ви побачите їх після конвертації. + two + %d файлу були знайдені. Ви побачите їх після конвертації. @@ -58,6 +58,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d місць + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.strings index 4f7fcba2da..6385842623 100644 --- a/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "Quay lại"; + /* Button text (should be short) */ "cancel" = "Huỷ bỏ"; @@ -17,6 +20,9 @@ "download_maps" = "Tải xuống Bản đồ"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "Tải xuống thất bại, hãy chạm lại để thử một lần nữa"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "Đang tải xuống…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "Bản đồ"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "Dặm"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "Tìm kiếm"; +/* Search box placeholder text */ +"search_map" = "Tìm kiếm Bản đồ"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "Có"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "Bạn hiện đang tắt tất cả Dịch vụ Định vị cho thiết bị hoặc ứng dụng này. Bạn vui lòng bật lại chúng trong Thiết lập."; + /* View and button titles for accessibility */ "zoom_to_country" = "Hiển thị trên bản đồ"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "Tải xuống đã thất bại"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "Thử lại"; + "about_menu_title" = "Giới thiệu về Organic Maps"; +"connection_settings" = "Thiết lập Kết nối"; + "close" = "Đóng"; +"unsupported_phone" = "Cần có OpenGL được tăng tốc phần cứng. Thật không may, thiết bị của bạn không được hỗ trợ."; + "download" = "Tải xuống"; +"disconnect_usb_cable" = "Bạn vui lòng tháo cáp USB hoặc lắp thẻ nhớ vào để sử dụng Organic Maps"; + +"not_enough_free_space_on_sdcard" = "Bạn vui lòng giải phóng dung lượng trên ổ lưu trữ thẻ SD/USB để có thể sử dụng ứng dụng"; + +"not_enough_memory" = "Không đủ bộ nhớ để chạy ứng dụng"; + +"download_resources" = "Trước khi bạn bắt đầu, hãy để chúng tôi tải bản đồ thế giới vào thiết bị của bạn.\nBản đồ này cần %@ dữ liệu."; + +"download_resources_continue" = "Đến Bản đồ"; + +"downloading_country_can_proceed" = "Đang tải xuống %@. Bây giờ bạn đã có thể\nvào bản đồ."; + +"download_country_ask" = "Tải xuống %@?"; + +"update_country_ask" = "Cập nhật %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "Tạm dừng"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "Tiếp tục"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ - descărcarea a eșuat"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "Thêm Bộ Mới"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "Các Địa chỉ của Tôi"; +/* Add bookmark dialog - bookmark name */ +"name" = "Tên"; + /* Editor title above street and house number */ "address" = "Địa chỉ"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "Đặt"; + /* Settings button in system menu */ "settings" = "Thiết lập"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "Lưu bản đồ vào"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "Chọn vị trí nơi bản đồ sẽ được tải về"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "Di chuyển bản đồ?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "Việc này có thể mất vài phút.\nVui lòng đợi…"; + /* Measurement units title in settings activity */ "measurement_units" = "Đơn vị đo"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "Chọn giữa dặm và kilômét"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "Ăn ở đâu"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "Cửa hàng tạp hóa"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "Giao thông"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "Khí đốt"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "đỗ xe"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "Đi mua sắm"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "Khách sạn"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "Diểm tham quan"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "Giải trí"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "ATM"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "Cuộc sống về đêm"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "Kỳ nghỉ gia đình"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "Ngân hàng"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "Hiệu thuốc"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "Bệnh viện"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "Nhà vệ sinh"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "Bưu điện"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "Cảnh sát"; +/* Notes field in Bookmarks view */ +"description" = "Ghi chú"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Điểm đánh dấu Organic Maps được chia sẻ"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "Chưa xác định được vị trí của bạn"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "Rất tiếc, cài đặt Lưu trữ Bản đồ hiện đã bị tắt."; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "Hiện đang tải xuống quốc gia."; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "Này, hãy xem vị trí hiện tại của tôi tại Organic Maps! %1$@ hoặc %2$@ Bạn không có bản đồ ngoại tuyến? Tải xuống tại đây: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "Này, hãy xem ghim của tôi tại Organic Maps map"; /* Subject for emailed position */ "my_position_share_email_subject" = "Này, hãy xem vị trí hiện tại của tôi tại Organic Maps map!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "Chào,\n\nTôi hiện đang ở đây: %1$@. Hãy nhấn vào liên kết này %2$@ hoặc liên kết này %3$@ để xem địa điểm trên bản đồ.\n\nCám ơn."; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "Chia sẻ"; /* Share by email button text, also used in editor. */ "email" = "Email"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "Đã sao chép vào Bảng tạm: %1$@"; + /* place preview title */ "info" = "Thông tin"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "Data version: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "Bạn có chắc muốn tiếp tục không?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "Dấu vết"; @@ -195,10 +283,18 @@ "share_my_location" = "Chia sẻ Vị trí của tôi"; +/* Settings general group in settings screen */ +"prefs_group_general" = "General settings"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "Information"; + "prefs_group_route" = "Điều hướng"; "pref_zoom_title" = "Nút Phóng to/Thu nhỏ"; +"pref_zoom_summary" = "Hiển thị trên màn hình"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "Chế độ ban đêm"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "Ngôn ngữ Giọng nói"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "Không có sẵn"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "Khác"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "Trợ giúp"; +/* Button in the main Help dialog */ +"faq" = "Câu hỏi và trả lời"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "Làm thế nào để hỗ trợ chúng tôi?"; + /* Button in the main Help dialog */ "copyright" = "Bản quyền"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "Cập nhật tất cả"; +/* Cancel all button text */ +"downloader_cancel_all" = "Hủy tất cả"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "Đã tải xuống"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "Xóa Bản đồ"; +/* Item in context menu. */ +"downloader_update_map" = "Cập nhật Bản đồ"; + +/* Preference text */ +"pref_use_google_play" = "Sử dụng Dịch vụ Google Play để có được vị trí hiện tại của bạn"; + /* Text for rating dialog */ "rating_just_rated" = "Tôi vừa đánh giá ứng dụng của bạn"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "Tạo một tuyến đường đòi hỏi tất cả các bản đồ từ vị trí của bạn đến điểm đến phải được tải xuống và cập nhật."; +/* Text for routing error dialog */ +"routing_not_enough_space" = "Không đủ không gian"; + /* bookmark button text */ "bookmark" = "yer i̇mi"; +/* location service disabled */ +"enable_location_services" = "Bạn vui lòng bật Dịch vụ Định vị"; + "save" = "Lưu"; +"edit_description_hint" = "Mô tả của bạn (chữ hoặc html)"; + "create" = "tạo"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "Không thể xác định tuyến đường"; +"dialog_routing_cant_build_route" = "Không thể tạo tuyến đường."; + "dialog_routing_change_start_or_end" = "Hãy điều chỉnh điểm bắt đầu hoặc điểm đến của bạn."; "dialog_routing_change_start" = "Điều chỉnh điểm bắt đầu"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "Để bắt đầu tìm kiếm và tạo đường đi, vui lòng tải về bản đồ, và bạn sẽ không cần đến kết nối Internet nữa."; + +"search_select_map" = "Chọn bản đồ"; + /* «Show» context menu */ "show" = "Hiện"; @@ -521,6 +655,9 @@ "clear_search" = "Xóa Lịch sử Tìm kiếm"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "Wikipedia"; + "p2p_your_location" = "Vị trí của bạn"; "p2p_start" = "Bắt đầu"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "Bạn có muốn chúng tôi vạch đường từ vị trí hiện tại của bạn không?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "Tiếp theo"; + "editor_time_add" = "Thêm lịch biểu"; "editor_time_delete" = "Xóa lịch biểu"; @@ -556,14 +696,28 @@ "editor_example_values" = "Giá trị ví dụ"; +"editor_correct_mistake" = "Sửa lỗi"; + "editor_add_select_location" = "Vị trí"; "editor_done_dialog_1" = "Bạn đã thay đổi bản đồ thế giới. Đừng giấu điều đó! Hãy cho các bạn khác biết và cùng nhau chỉnh sửa."; "share_with_friends" = "Chia sẻ với bạn bè"; +"editor_report_problem_desription_1" = "Xin mô tả chi tiết vấn đề để cộng đồng OpenStreeMap có thể sửa lỗi đó."; + +"editor_report_problem_desription_2" = "Hoặc bạn có thể tự sửa tại https://www.openstreetmap.org/"; + "editor_report_problem_send_button" = "Gửi"; +"editor_report_problem_title" = "Vấn đề"; + +"editor_report_problem_no_place_title" = "Địa điểm này không tồn tại"; + +"editor_report_problem_under_construction_title" = "Tạm dừng để bảo trì"; + +"editor_report_problem_duplicate_place_title" = "Địa điểm trùng lặp"; + "autodownload" = "Tự động tải về"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "Thêm giờ làm việc"; +"edit_opening_hours" = "Sửa giờ làm việc"; + "no_osm_account" = "Bạn chưa có tài khoản tại OpenStreetMap ư?"; "register_at_openstreetmap" = "Đăng ký"; @@ -592,6 +748,8 @@ "login" = "Đăng nhập"; +"password" = "Mật khẩu"; + "forgot_password" = "Quên mật khẩu?"; "osm_account" = "Tài khoản OSM"; @@ -609,6 +767,8 @@ "add_language" = "Thêm ngôn ngữ"; +"street" = "Đường"; + /* Editable House Number text field (in address block). */ "house_number" = "Số nhà"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "Thêm con đường"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "Đã chọn ngôn ngữ"; "choose_street" = "Đã chọn con đường"; @@ -632,12 +795,16 @@ "phone" = "Điện thoại"; +"editor_add_phone" = "Add Phone"; + "please_note" = "Xin lưu ý"; "downloader_delete_map_dialog" = "Tất cả những thay đổi của bản đồ sẽ bị xóa cùng với bản đồ đó."; "downloader_update_maps" = "Cập nhật các bản đồ"; +"downloader_mwm_migration_dialog" = "Để tạo một tuyến đường, bạn cần cập nhật tất cả các bản đồ và sau đó lập lại tuyến đường."; + "downloader_search_field_hint" = "Tìm bản đồ"; "migration_download_error_dialog" = "Lỗi tải xuống"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "Xin xóa dữ liệu không cần thiết"; +"editor_login_error_dialog" = "Lỗi đăng nhập."; + "editor_profile_changes" = "Các thay đổi đã được xác thực"; "editor_focus_map_on_location" = "Kéo bản đồ để chọn vị trí chính xác của đối tượng"; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "Thể loại"; +"detailed_problem_description" = "Mô tả chi tiết của vấn đề"; + +"editor_report_problem_other_title" = "Một vấn đề khác"; + +"placepage_add_business_button" = "Thêm tổ chức"; + "whatsnew_editor_message_1" = "Nhập các địa điểm mới vào bản đồ, và trực tiếp chỉnh sửa những địa điểm hiện có trên ứng dụng."; "dialog_incorrect_feature_position" = "Thay đổi địa điểm"; @@ -710,6 +885,8 @@ "editor_operator" = "Đơn vị điều hành"; +"downloader_my_maps_title" = "Bản đồ của tôi"; + "downloader_no_downloaded_maps_title" = "Bạn chưa tải về bất kỳ bản đồ nào"; "downloader_no_downloaded_maps_message" = "Tải về bản đồ để tìm địa điểm và định hướng ngoại tuyến."; @@ -751,10 +928,16 @@ "miles_per_hour" = "mph"; +"hour" = "giờ"; + +"minute" = "phút"; + "placepage_place_description" = "Mô tả"; "placepage_more_button" = "Bổ sung"; +"placepage_more_reviews_button" = "Thêm nhận xét"; + "book_button" = "Đặt trước"; "placepage_call_button" = "Gọi"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "Địa điểm không tồn tại"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…thêm"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "Nhập email hợp lệ"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "Cập nhật"; "placepage_add_place_button" = "Thêm địa điểm vào bản đồ"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "Từ chối"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "Danh sách"; "mobile_data_dialog" = "Sử dụng mạng Internet di động để hiển thị thông tin chi tiết?"; @@ -848,12 +1044,16 @@ "big_font" = "Tăng kích cỡ phông chữ trên bản đồ"; +"traffic_update_app" = "Vui lòng cập nhật Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "Để hiển thị dữ liệu giao thông, ứng dụng cần phải được cập nhật."; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "Dữ liệu giao thông không khả dụng"; +"enable_logging" = "Bật nhật ký"; + /* Settings: "Send general feedback" button */ "feedback_general" = "Phản hồi chung"; @@ -861,14 +1061,24 @@ "off" = "Tắt"; +"prefs_languages_information" = "Chúng tôi sử dụng TTS hệ thống để hướng dẫn bằng giọng nói. Rất nhiều thiết bị Android sử dụng Google TTS, bạn có thể tải về hoặc cập nhật nó từ Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "Đối với một số ngôn ngữ, bạn sẽ cần cài đặt một trình tổng hợp lời nói khác hoặc một gói ngôn ngữ bổ sung từ cửa hàng ứng dụng (Google Play Market, Samsung Apps).\nMở cài đặt của thiết bị → Ngôn ngữ và nhập liệu → Lời nói → Đầu ra văn bản sang lời nói.\nTại đây bạn có thể quản lý các cài đặt tổng hợp lời nói (ví dụ, tải về các gói ngôn ngữ để sử dụng ngoại tuyến) và chọn một công cụ chuyển đổi văn bản sang lời nói khác."; + +"prefs_languages_information_off_link" = "Để biết thêm thông tin, vui lòng kiểm tra bài hướng dẫn này."; + "transliteration_title" = "Chuyển ngữ sang chữ Latinh"; +"learn_more" = "Tìm hiểu thêm"; + "core_exit" = "Lối ra"; "routing_add_start_point" = "Bổ sung điểm bắt đầu để lập kế hoạch lộ trình"; "routing_add_finish_point" = "Bổ sung điểm kết thúc để lập kế hoạch lộ trình"; +"button_exit" = "Thoát"; + "planning_route_manage_route" = "Quản lý lộ trình"; "button_plan" = "Kế hoạch"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "Rất tiếc, đã có lỗi xảy ra. Hãy thử đăng nhập lại."; +"dialog_error_storage_title" = "Vấn đề truy cập ổ lưu trữ"; + +"dialog_error_storage_message" = "Ổ lưu trữ bên ngoài không khả dụng, có thể Thẻ SD đã bị tháo, bị hỏng hoặc hệ thống tập tin được thiết lập chỉ đọc. Hãy kiểm tra và liên hệ với chúng tôi qua support@organicmaps.app"; + +"setting_emulate_bad_storage" = "Giả lập ổ lưu trữ hỏng"; + "core_entrance" = "Lối vào"; "error_enter_correct_name" = "Vui lòng nhập một tên chính xác"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "Tạo danh sách mới"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "Ẩn Màn hình"; "downloader_percent" = "%s (%s / %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "Không thể chia sẻ một danh sách trống"; +"bookmarks_error_title_empty_list_name" = "Tên không được để trống"; + "bookmarks_error_message_empty_list_name" = "Vui lòng nhập tên danh sách"; +"bookmarks_new_list_hint" = "Danh sách mới"; + "bookmarks_error_title_list_name_already_taken" = "Tên này đã được sử dụng"; +"bookmarks_error_message_list_name_already_taken" = "Vui lòng chọn một tên khác"; + "bookmarks_error_title_list_name_too_long" = "Tên này quá dài"; +"please_wait" = "Vui lòng chờ…"; + +"phone_number" = "Số điện thoại"; + "profile" = "Hồ sơ OpenStreetMap"; "bookmarks_detect_title" = "Đã phát hiện tệp mới"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "Khôi phục phiên bản này?"; +"common_check_internet_connection_dialog_title" = "Không có kết nối internet"; + "error_system_message" = "Đã xảy ra lỗi không xác định"; "restore" = "Khôi phục"; +"subtittle_opt_out" = "Thiết lập theo dõi"; + +"crash_reports" = "Báo cáo sự cố"; + +"crash_reports_description" = "Chúng tôi có thể sử dụng dữ liệu của bạn để cải thiện trải nghiệm trên Organic Maps. Thay đổi sẽ có hiệu lực sau khi bạn khởi động lại ứng dụng."; + "privacy_policy" = "Chính sách bảo mật"; "terms_of_use" = "Điều khoảng sử dụng"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "Bản đồ tàu điện ngầm không khả dụng"; +"bookmarks_empty_list_title" = "Danh sách trống"; + +"bookmarks_empty_list_message" = "Để thêm dấu trang, hãy nhấn vào một địa điểm trên bản đồ và sau đó nhấn vào biểu tượng dấu sao"; + +"category_desc_more" = "…thêm"; + "title_error_downloading_bookmarks" = "Đã xảy ra lỗi"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "Ẩn từ bản đồ"; +"public_access" = "Truy cập công khai"; + +"limited_access" = "Truy cập hạn chế"; + "bookmark_list_description_hint" = "Đánh vào một mô tả (văn bản hoặc html)"; +"not_shared" = "Riêng tư"; + "tags_loading_error_subtitle" = "Đã xảy ra lỗi khi tải thẻ, vui lòng thử lại"; "download_button" = "Tải"; @@ -972,6 +1221,9 @@ "place_description_title" = "Mô tả Địa điểm"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "Trình tải xuống bản đồ"; + "speedcams_notice_message" = "Tự động - Cảnh báo về speedcam nếu có nguy cơ vượt quá giới hạn tốc độ\nLuôn luôn - Luôn cảnh báo về speedcams\nKhông bao giờ - Không bao giờ cảnh báo về speedcams"; "power_managment_title" = "Chế độ tiết kiệm năng lượng"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "Tiết kiệm năng lượng tối đa"; +"enable_logging_warning_message" = "Tùy chọn này được kích hoạt để ghi nhật ký đăng nhập cho mục đích chẩn đoán. Điều này sẽ giúp nhóm chúng tôi làm rõ các vấn đề liên quan đến ứng dụng. Hãy bật tùy chọn này chỉ khi nào có yêu cầu hỗ trợ từ Organic Maps."; + +"access_rules_author_only" = "Chỉnh sửa trực tuyến"; + "driving_options_title" = "Thiết lập đi vòng"; "driving_options_subheader" = "Tránh trên mỗi tuyến"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "Sắp xếp…"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "Sắp xếp dấu trang"; + /* iOS */ "sort_default" = "Sắp xếp theo mặc định"; @@ -1086,6 +1345,18 @@ "sort_date" = "Sắp xếp theo ngày"; +/* Android */ +"by_default" = "Theo mặc định"; + +/* Android */ +"by_type" = "Theo kiểu"; + +/* Android */ +"by_distance" = "Theo khoảng cách"; + +/* Android */ +"by_date" = "Theo ngày"; + "week_ago_sorttype" = "Tuần trước"; "month_ago_sorttype" = "Tháng trước"; @@ -1132,6 +1403,8 @@ "religious_places" = "Những nơi tôn nghiêm"; +"select_list" = "Chọn danh sách"; + "transit_not_found" = "Điều hướng đến Metro hiện chưa khả dụng cho khu vực này"; "dialog_pedestrian_route_is_long_header" = "Không tìm thấy tuyến Metro"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "Độ khó"; +"elevation_profile_distance" = "Khoảng cách"; + "elevation_profile_time" = "Giờ:"; "isolines_toast_zooms_1_10" = "Phóng bản đồ để nhìn rõ đường đồng mức"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "Tải xuống"; +"key_information_title" = "Thông tin chìa khóa"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "Cho phép màn hình ở chế độ ngủ"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "Khi được bật, màn hình sẽ được phép ở chế độ ngủ sau một thời gian không hoạt động."; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "Cập nhật các bản đồ đã tải về của bạn"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "Phòng thí nghiệm y tế"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "Bến xe buýt"; "type.highway.construction" = "Đường đang thi công"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1892,7 +2177,7 @@ "type.highway.service.tunnel" = "Phố"; -"type.highway.services" = "Service Area"; +"type.highway.services" = "Service on the Road"; "type.highway.speed_camera" = "Camera bắn tốc độ"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "Phố"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "Đường"; - -"type.area_highway.living_street" = "Phố"; - -"type.area_highway.motorway" = "Phố"; - -"type.area_highway.path" = "Đường"; - -"type.area_highway.pedestrian" = "Phố"; - -"type.area_highway.primary" = "Phố"; - -"type.area_highway.residential" = "Phố"; - -"type.area_highway.secondary" = "Phố"; - -"type.area_highway.service" = "Phố"; - -"type.area_highway.tertiary" = "Phố"; - -"type.area_highway.steps" = "Đường"; - -"type.area_highway.track" = "Phố"; - -"type.area_highway.trunk" = "Phố"; - -"type.area_highway.unclassified" = "Phố"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "Điểm khảo cổ"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "Công Viên Nước"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "Thủ đô"; -"type.place.city.capital.10" = "Đất nước"; +"type.place.city.capital.10" = "Thủ đô"; -"type.place.city.capital.11" = "Đất nước"; +"type.place.city.capital.11" = "Thủ đô"; "type.place.city.capital.2" = "Thủ đô"; -"type.place.city.capital.3" = "Đất nước"; +"type.place.city.capital.3" = "Thủ đô"; -"type.place.city.capital.4" = "Đất nước"; +"type.place.city.capital.4" = "Thủ đô"; -"type.place.city.capital.5" = "Đất nước"; +"type.place.city.capital.5" = "Thủ đô"; -"type.place.city.capital.6" = "Đất nước"; +"type.place.city.capital.6" = "Thủ đô"; -"type.place.city.capital.7" = "Đất nước"; +"type.place.city.capital.7" = "Thủ đô"; -"type.place.city.capital.8" = "Đất nước"; +"type.place.city.capital.8" = "Thủ đô"; -"type.place.city.capital.9" = "Đất nước"; +"type.place.city.capital.9" = "Thủ đô"; "type.place.continent" = "Trường đại học"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "Tòa nhà"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.stringsdict index a590c3dd80..dc8897bc85 100644 --- a/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/vi.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -56,6 +56,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d các nơi + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.strings index 52ca9400c9..25f67c60fd 100644 --- a/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "返回"; + /* Button text (should be short) */ "cancel" = "取消"; @@ -17,6 +20,9 @@ "download_maps" = "下载地图"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "下载失败,重新轻触再试一次"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "下载…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "地图"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "英里"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "搜索"; +/* Search box placeholder text */ +"search_map" = "搜索地图"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "是"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "您目前有此设备的所有位置服务或应用已禁用。请在设置中启用它们。"; + /* View and button titles for accessibility */ "zoom_to_country" = "在地图上显示"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "下载失败"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "重试"; + "about_menu_title" = "关于 Organic Maps"; +"connection_settings" = "连接设置"; + "close" = "关闭"; +"unsupported_phone" = "硬件加速的 OpenGL 是必需的。遗憾的是您的设备不支持此功能。"; + "download" = "下载"; +"disconnect_usb_cable" = "请断开 USB 线或插入存储卡以使用 Organic Maps"; + +"not_enough_free_space_on_sdcard" = "请在存储卡/ USB 储存设备上释放一些空间以 使用此应用"; + +"not_enough_memory" = "没有足够的内存来启动应用程序"; + +"download_resources" = "在您开始前请让我们下载通用世界地图至您的设备中。\n它需要%@的 数据。"; + +"download_resources_continue" = "前往地图"; + +"downloading_country_can_proceed" = "下载 %@。您现在可\n前往地图。"; + +"download_country_ask" = "下载 %@?"; + +"update_country_ask" = "更新 %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "暂停"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "继续"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@下载失败"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "添加新的集合"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "我的位置"; +/* Add bookmark dialog - bookmark name */ +"name" = "名字"; + /* Editor title above street and house number */ "address" = "地址"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "集合"; + /* Settings button in system menu */ "settings" = "设置"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "将地图保存到"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "选取地图应该下载的位置"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "移动地图?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "这可能需要几分钟的时间。\n请稍候…"; + /* Measurement units title in settings activity */ "measurement_units" = "测量单位"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "选择英里或公里"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "在哪儿吃"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "食品"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "交通"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "汽油"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "停车"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "购物"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "旅店"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "景点"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "娱乐"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "自动取款机"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "夜生活"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "亲子休闲"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "银行"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "药店"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "医院"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "厕所"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "邮政"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "警察"; +/* Notes field in Bookmarks view */ +"description" = "注释"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "Organic Maps 书签已与您共享"; + "share_bookmarks_email_body" = "Hello!\n\nAttached are my bookmarks from Organic Maps app. Please open them if you have Organic Maps installed. Or, if you don't, download the app for your iOS or Android device by following this link: https://omaps.app/get?kmz\n\nEnjoy traveling with Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "您的位置尚未确定"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "抱歉,地图存储设置目前被禁用"; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "地图下载进行中。"; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "嘿,在 Organic Maps 上查看我目前的位置吧!%1$@ 或%2$@ 未安装离线地图?在此下载: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "嘿,在 Organic Maps 上查看我标注的图钉吧!"; /* Subject for emailed position */ "my_position_share_email_subject" = "嗨,到 Organic Maps 查看我的当前位置!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "嗨,\n\n我现在在这:%1$@。点击此链 接%2$@或此链接 %3$@来查看在地图上的位置。\n\n谢谢。"; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "分享"; /* Share by email button text, also used in editor. */ "email" = "邮件"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "复制到剪贴板:%1$@"; + /* place preview title */ "info" = "信息"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "资料版本: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "您确定要继续吗?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "轨迹"; @@ -195,10 +283,18 @@ "share_my_location" = "共享我的位置"; +/* Settings general group in settings screen */ +"prefs_group_general" = "常规设置"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "信息"; + "prefs_group_route" = "导航"; "pref_zoom_title" = "缩放按钮"; +"pref_zoom_summary" = "在屏幕上显示"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "夜间模式"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "语音语言"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "无法使用"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "其他"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "OpenStreetMap"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "帮助"; +/* Button in the main Help dialog */ +"faq" = "问题和解答"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "如何支持我们?"; + /* Button in the main Help dialog */ "copyright" = "版权"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "更新全部"; +/* Cancel all button text */ +"downloader_cancel_all" = "全部取消"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "已下载"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "删除地图"; +/* Item in context menu. */ +"downloader_update_map" = "更新地图"; + +/* Preference text */ +"pref_use_google_play" = "使用Google Play服务以获取您的当前位置。"; + /* Text for rating dialog */ "rating_just_rated" = "我刚刚评价了您的应用"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "创建路线需要下载并更新好所有从您的位置到目的地的地图。"; +/* Text for routing error dialog */ +"routing_not_enough_space" = "空间不足"; + /* bookmark button text */ "bookmark" = "书签"; +/* location service disabled */ +"enable_location_services" = "请启用位置服务"; + "save" = "保存"; +"edit_description_hint" = "您的描述(文本或html)"; + "create" = "创建"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "无法定位路线"; +"dialog_routing_cant_build_route" = "无法创建路线。"; + "dialog_routing_change_start_or_end" = "请调整您的起点或目的地。"; "dialog_routing_change_start" = "调整出发点"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "要开始搜索和创建路线,请下载地图,那您就不再需要网络连接了。"; + +"search_select_map" = "选择地图"; + /* «Show» context menu */ "show" = "显示"; @@ -521,6 +655,9 @@ "clear_search" = "清除历史搜索"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "维基百科"; + "p2p_your_location" = "您的位置"; "p2p_start" = "开始"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "你是否想要规划当前位置的路线?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "下一页"; + "editor_time_add" = "添加计划"; "editor_time_delete" = "删除计划"; @@ -556,14 +696,28 @@ "editor_example_values" = "示例值"; +"editor_correct_mistake" = "纠正错误"; + "editor_add_select_location" = "位置"; "editor_done_dialog_1" = "您已经改变了世界地图。请不要隐藏这一点!告诉您的朋友们并一起编辑它。"; "share_with_friends" = "与朋友分享"; +"editor_report_problem_desription_1" = "请详细描述此问题以便OpenStreeMap社区能够修复此错误。"; + +"editor_report_problem_desription_2" = "或者在https://www.openstreetmap.org/上亲自修复此错误。"; + "editor_report_problem_send_button" = "发送"; +"editor_report_problem_title" = "问题"; + +"editor_report_problem_no_place_title" = "该地点不存在"; + +"editor_report_problem_under_construction_title" = "因维护而关闭"; + +"editor_report_problem_duplicate_place_title" = "重复的地点"; + "autodownload" = "自动下载"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "添加工作时间"; +"edit_opening_hours" = "编辑工作时间"; + "no_osm_account" = "在OpenStreetMap上没有账户吗?"; "register_at_openstreetmap" = "注册"; @@ -592,6 +748,8 @@ "login" = "登录"; +"password" = "密码"; + "forgot_password" = "忘记密码"; "osm_account" = "OSM账户"; @@ -609,6 +767,8 @@ "add_language" = "添加语言"; +"street" = "街道"; + /* Editable House Number text field (in address block). */ "house_number" = "门牌号码"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "添加街道"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "选择语言"; "choose_street" = "选择街道"; @@ -632,12 +795,16 @@ "phone" = "电话"; +"editor_add_phone" = "Add Phone"; + "please_note" = "请注意"; "downloader_delete_map_dialog" = "所有对地图的修改都将与地图一起被删除。"; "downloader_update_maps" = "更新地图"; +"downloader_mwm_migration_dialog" = "为了创建路线,您需要更新全部地图并重新规划路线。"; + "downloader_search_field_hint" = "找到地图"; "migration_download_error_dialog" = "下载错误"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "请删除不必要的数据"; +"editor_login_error_dialog" = "登录错误。"; + "editor_profile_changes" = "已验证的更改"; "editor_focus_map_on_location" = "拖动地图以选择此对象的正确位置。"; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "类别"; +"detailed_problem_description" = "问题的详细描述"; + +"editor_report_problem_other_title" = "一个不同的问题"; + +"placepage_add_business_button" = "添加组织"; + "whatsnew_editor_message_1" = "添加新地点到该地图,并直接通过此应用编辑已存在的地点。"; "dialog_incorrect_feature_position" = "改变位置"; @@ -710,6 +885,8 @@ "editor_operator" = "运营者"; +"downloader_my_maps_title" = "我的地图"; + "downloader_no_downloaded_maps_title" = "您尚未下载任何地图"; "downloader_no_downloaded_maps_message" = "下载地图来查找位置和离线浏览"; @@ -751,10 +928,16 @@ "miles_per_hour" = "英里每小时"; +"hour" = "小時"; + +"minute" = "分鐘"; + "placepage_place_description" = "说明"; "placepage_more_button" = "更多"; +"placepage_more_reviews_button" = "更多评论"; + "book_button" = "预約"; "placepage_call_button" = "呼叫"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "位置不存在"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…更多"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "输入有效电子邮箱"; +"error_enter_correct_facebook_page" = "Enter a valid Facebook web address, account, or page name"; + +"error_enter_correct_instagram_page" = "Enter a valid Instagram web address or account name"; + +"error_enter_correct_twitter_page" = "Enter a valid Twitter web address or username"; + +"error_enter_correct_vk_page" = "Enter a valid VK web address or account name"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "更新"; "placepage_add_place_button" = "添加地点到地图上"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "拒绝"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "列表"; "mobile_data_dialog" = "使用移动网络显示详细信息?"; @@ -848,12 +1044,16 @@ "big_font" = "增大地图上的字体大小"; +"traffic_update_app" = "请更新 Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "要显示交通数据,必须更新应用。"; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "交通数据不可用"; +"enable_logging" = "启用记录"; + /* Settings: "Send general feedback" button */ "feedback_general" = "一般反馈"; @@ -861,14 +1061,24 @@ "off" = "关"; +"prefs_languages_information" = "我们为语音指令使用“文字转语音”系统。许多 Android 设备使用 Google 文字转语音,您可以从 Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts) 下载或更新这一功能"; + +"prefs_languages_information_off" = "对于某些语言,您需要从应用商店(Google Play Market、Samsung Apps)中安装其他语音合成器或语言包。\n打开您的设备的设置 → 语言和输入法 → 语音 → 文字转语音 (TTS) 输出。\n您可以在这里管理语音合成的设置(例如,下载语言包供离线使用)和选择其他文字转语音引擎。"; + +"prefs_languages_information_off_link" = "如需了解更多信息,请查阅此指南。"; + "transliteration_title" = "直译成拉丁文"; +"learn_more" = "了解更多"; + "core_exit" = "退出"; "routing_add_start_point" = "添加起点以规划路线"; "routing_add_finish_point" = "添加终点以规划路线"; +"button_exit" = "退出"; + "planning_route_manage_route" = "管理路线"; "button_plan" = "规划"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "糟糕,出错了。请尝试重新登录。"; +"dialog_error_storage_title" = "存储空间访问问题"; + +"dialog_error_storage_message" = "外部存储空间不可用,可能是存储卡已移除、损坏,或者文件系统为只读。请检查,然后通过以下方式联系我们:support@organicmaps.app"; + +"setting_emulate_bad_storage" = "模拟不良存储空间"; + "core_entrance" = "入口"; "error_enter_correct_name" = "请输入正确的名称"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "创建新的列表"; +/* Bookmark categories screen */ +"bookmarks_import" = "Import bookmarks"; + "downloader_hide_screen" = "隱藏屏幕"; "downloader_percent" = "%s (%s / %s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "无法分享空列表"; +"bookmarks_error_title_empty_list_name" = "名字不能为空"; + "bookmarks_error_message_empty_list_name" = "请输入列表名称"; +"bookmarks_new_list_hint" = "新的列表"; + "bookmarks_error_title_list_name_already_taken" = "这个名字已经被使用了"; +"bookmarks_error_message_list_name_already_taken" = "请选择其他名称"; + "bookmarks_error_title_list_name_too_long" = "这个名字太长了"; +"please_wait" = "请稍候…"; + +"phone_number" = "电话号码"; + "profile" = "OpenStreetMap 资料"; "bookmarks_detect_title" = "检测到新文件"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "还原这个版本?"; +"common_check_internet_connection_dialog_title" = "没有互联网连接"; + "error_system_message" = "出现未知错误"; "restore" = "恢复"; +"subtittle_opt_out" = "支持设置"; + +"crash_reports" = "错误报告"; + +"crash_reports_description" = "我们可以使用您的数据来开发和改进Organic Maps。更改将在重新启动应用程序后生效。"; + "privacy_policy" = "隐私政策"; "terms_of_use" = "使用条款"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "地铁地图不可用"; +"bookmarks_empty_list_title" = "该列表为空"; + +"bookmarks_empty_list_message" = "要添加新标签,请单击对象卡中的星形图标"; + +"category_desc_more" = "…更多"; + "title_error_downloading_bookmarks" = "发生错误"; "popular_place" = "Popular"; @@ -956,8 +1199,14 @@ "hide_from_map" = "从卡中隐藏"; +"public_access" = "公共访问"; + +"limited_access" = "私人访问"; + "bookmark_list_description_hint" = "请添加说明(文字或html)"; +"not_shared" = "私人"; + "tags_loading_error_subtitle" = "加载标签时出错,请重试"; "download_button" = "下载"; @@ -972,6 +1221,9 @@ "place_description_title" = "地点说明"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "加载地图"; + "speedcams_notice_message" = "自动 - 如果存在超出速度限制的风险,则对速度摄像头发出警告\n总是 - 始终提醒摄像头\n从不 - 永远不会对摄像头发出警告"; "power_managment_title" = "省电模式"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "最大程度省电"; +"enable_logging_warning_message" = "此选项启用以记录操作来进行诊断。这有助于团队识别应用程序的问题。请仅在Organic Maps支持请求时开启该选项。"; + +"access_rules_author_only" = "在线编辑"; + "driving_options_title" = "绕行设置"; "driving_options_subheader" = "在每条线路上规避"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "分类……"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "分类标签"; + /* iOS */ "sort_default" = "默认排序"; @@ -1086,6 +1345,18 @@ "sort_date" = "按日期排序"; +/* Android */ +"by_default" = "默认情况下"; + +/* Android */ +"by_type" = "按类型"; + +/* Android */ +"by_distance" = "按距离"; + +/* Android */ +"by_date" = "按时间"; + "week_ago_sorttype" = "一周前"; "month_ago_sorttype" = "一月前"; @@ -1132,6 +1403,8 @@ "religious_places" = "圣地"; +"select_list" = "选择列表"; + "transit_not_found" = "本区域的地铁导航目前不可用"; "dialog_pedestrian_route_is_long_header" = "地铁路线图未找到"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "难度"; +"elevation_profile_distance" = "距离:"; + "elevation_profile_time" = "在路上:"; "isolines_toast_zooms_1_10" = "放大地图以查看等高线"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "加载"; +"key_information_title" = "关键信息"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "Disconnect USB cable"; + +"enable_screen_sleep" = "允许屏幕进入休眠状态"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "启用后,屏幕将在一段时间不活动后进入休眠状态。"; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "更新已下载的地图"; @@ -1735,9 +2023,6 @@ "type.healthcare.laboratory" = "医学实验室"; - -/********** Types: Roads **********/ - "type.highway" = "公路要素"; "type.highway.bridleway" = "马道"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "道路"; -"type.area_highway.cycleway" = "自行车道"; - -"type.area_highway.footway" = "步行道路"; - -"type.area_highway.living_street" = "生活性街道"; - -"type.area_highway.motorway" = "高速公路"; - -"type.area_highway.path" = "小道"; - -"type.area_highway.pedestrian" = "步行街"; - -"type.area_highway.primary" = "主要道路"; - -"type.area_highway.residential" = "住宅区道路"; - -"type.area_highway.secondary" = "次要道路"; - -"type.area_highway.service" = "辅助道路"; - -"type.area_highway.tertiary" = "三级道路"; - -"type.area_highway.steps" = "阶梯"; - -"type.area_highway.track" = "土路"; - -"type.area_highway.trunk" = "干线道路"; - -"type.area_highway.unclassified" = "道路"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "历史地点"; "type.historic.archaeological_site" = "考古地点"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "水上乐园"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "人造要素"; "type.man_made.breakwater" = "防波堤"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "首府"; -"type.place.city.capital.10" = "城市"; +"type.place.city.capital.10" = "首府"; -"type.place.city.capital.11" = "城市"; +"type.place.city.capital.11" = "首府"; -"type.place.city.capital.2" = "首府"; +"type.place.city.capital.2" = "首都"; -"type.place.city.capital.3" = "城市"; +"type.place.city.capital.3" = "首都"; -"type.place.city.capital.4" = "城市"; +"type.place.city.capital.4" = "首府"; -"type.place.city.capital.5" = "城市"; +"type.place.city.capital.5" = "首府"; -"type.place.city.capital.6" = "城市"; +"type.place.city.capital.6" = "首府"; -"type.place.city.capital.7" = "城市"; +"type.place.city.capital.7" = "首府"; -"type.place.city.capital.8" = "城市"; +"type.place.city.capital.8" = "首府"; -"type.place.city.capital.9" = "城市"; +"type.place.city.capital.9" = "首府"; "type.place.continent" = "大陆"; @@ -2447,7 +2697,7 @@ "type.railway.construction" = "在建铁路"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "废弃铁路"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "建筑部分"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.stringsdict index f0c8fb727b..f7d2336b08 100644 --- a/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/zh-Hans.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -54,6 +54,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d 地点 + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.strings b/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.strings index 3172bbd3b4..6a283607f5 100644 --- a/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.strings +++ b/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.strings @@ -6,6 +6,9 @@ /********** Strings **********/ +/* Button text (should be short) */ +"back" = "返回"; + /* Button text (should be short) */ "cancel" = "取消"; @@ -17,6 +20,9 @@ "download_maps" = "下載地圖"; +/* Settings/Downloader - info for country when download fails */ +"download_has_failed" = "下載失敗,輕觸以再試一次"; + /* Settings/Downloader - info for country which started downloading */ "downloading" = "下載中…"; @@ -29,6 +35,11 @@ /* View and button titles for accessibility */ "maps" = "地圖"; +/* Settings/Downloader - size string, only strings different from English should be translated */ +"mb" = "MB"; + +"gb" = "GB"; + /* Choose measurement on first launch alert - choose imperial system button */ "miles" = "英哩"; @@ -41,9 +52,15 @@ /* View and button titles for accessibility */ "search" = "搜尋"; +/* Search box placeholder text */ +"search_map" = "搜尋地圖"; + /* Settings/Downloader - 3G download warning dialog confirm button */ "use_cellular_data" = "是"; +/* Location services are disabled by user alert - message */ +"location_is_disabled_long_text" = "您目前裝置所有的定位服務或相關應用程式是處於停用的狀態,請從系統設定中選擇啟用。"; + /* View and button titles for accessibility */ "zoom_to_country" = "在地圖上顯示"; @@ -53,15 +70,44 @@ /* Message to display at the center of the screen when the country download has failed */ "country_status_download_failed" = "下載失敗"; +/* Button text for the button under the country_status_download_failed message */ +"try_again" = "再試一次"; + "about_menu_title" = "關於 Organic Maps"; +"connection_settings" = "連線設定"; + "close" = "關閉"; +"unsupported_phone" = "需要 OpenGL 硬體加速功能的支援。但很不幸的,您的裝置並不支援此功能!"; + "download" = "下載"; +"disconnect_usb_cable" = "請拔除 USB 線或插入 SD 卡以使用 Organic Maps"; + +"not_enough_free_space_on_sdcard" = "如要繼續使用,請先釋放一些 SD 卡/ USB 儲存空間"; + +"not_enough_memory" = "沒有足夠的記憶體以啟動應用程式"; + +"download_resources" = "在您開始之前,先讓我們下載世界地圖到您的裝置中以便瀏覽。\n這需要資料的 %@。"; + +"download_resources_continue" = "跳到地圖"; + +"downloading_country_can_proceed" = "正在下載 %@。您現在 可以繼續使用地圖了"; + +"download_country_ask" = "下載 %@?"; + +"update_country_ask" = "更新 %@?"; + +/* REMOVE THIS STRING AFTER REFACTORING */ +"pause" = "暫停"; + /* REMOVE THIS STRING AFTER REFACTORING */ "continue_download" = "繼續"; +/* Show popup notification on top of the map when country download has failed. */ +"download_country_failed" = "%@ 下載失敗"; + /* "Add new bookmark list" dialog title */ "add_new_set" = "新增收藏夾"; @@ -80,72 +126,96 @@ /* Default bookmark list name */ "core_my_places" = "我的地點"; +/* Add bookmark dialog - bookmark name */ +"name" = "名稱"; + /* Editor title above street and house number */ "address" = "地址"; +/* Add Bookmark dialog/Bookmark list; Bookmarks dialog/Bookmark list cell. TODO: sync with [search_in_table] if all languages will be renamed consistently. */ +"list" = "收藏夾"; + /* Settings button in system menu */ "settings" = "設定"; +/* Header of settings activity where user defines storage path */ +"maps_storage" = "將地圖儲存至"; + +/* Detailed description of Maps Storage settings button */ +"maps_storage_summary" = "請選擇下載地圖後要放的位置"; + +/* Question dialog for transferring maps from one storage to another */ +"move_maps" = "移動地圖?"; + +/* Ask to wait user several minutes (some long process in modal dialog). */ +"wait_several_minutes" = "這可能需要幾分鐘\n請稍候…"; + /* Measurement units title in settings activity */ "measurement_units" = "測量單位"; +/* Detailed description of Measurement Units settings button */ +"measurement_units_summary" = "請選擇公里或英哩"; -/********** Search categories **********/ - -/* Search category for cafes, bars, restaurants; any changes should be duplicated in categories.txt @eat! */ +/* Search category for cafes, bars, restaurants */ "eat" = "在哪兒吃"; -/* Search category for grocery stores; any changes should be duplicated in categories.txt @food! */ +/* Search category for grocery stores */ "food" = "食物"; -/* Search category for public transport; any changes should be duplicated in categories.txt @transport! */ +/* Search category */ "transport" = "運輸"; -/* Search category for fuel stations; any changes should be duplicated in categories.txt @fuel! */ +/* Search category */ "fuel" = "加油站"; -/* Search category for parking lots; any changes should be duplicated in categories.txt @parking! */ +/* Search category */ "parking" = "停車場"; -/* Search category for clothes/shoes/gifts/jewellery/sport shops; any changes should be duplicated in categories.txt @shopping! */ +/* Search category for clothes/shoes/gifts/jewellery/sport shops */ "shopping" = "購物"; -/* Search category for places to stay; any changes should be duplicated in categories.txt @hotel! */ +/* Search category */ "hotel" = "旅館"; -/* Search category sight seeings and touristic attractions; any changes should be duplicated in categories.txt @tourism! */ +/* Search category */ "tourism" = "旅遊景點"; -/* Search category for entertainment; any changes should be duplicated in categories.txt @entertainment! */ +/* Search category */ "entertainment" = "娛樂"; -/* Search category for ATMs; any changes should be duplicated in categories.txt @atm! */ +/* Search category */ "atm" = "自動櫃員機"; -/* Search category for nightclubs/bars; any changes should be duplicated in categories.txt @nightlife! */ +/* Search category for nightclubs/bars */ "nightlife" = "夜生活"; -/* Search category for water park/disneyland/playground/toys store; any changes should be duplicated in categories.txt @children! */ +/* Search category for water park/disneyland/playground/toys store */ "children" = "親子休閒"; -/* Search category for banks; any changes should be duplicated in categories.txt @bank! */ +/* Search category */ "bank" = "銀行"; -/* Search category for pharmacies; any changes should be duplicated in categories.txt @pharmacy! */ +/* Search category */ "pharmacy" = "藥局"; -/* Search category for hospitals; any changes should be duplicated in categories.txt @hospital! */ +/* Search category */ "hospital" = "醫院"; -/* Search category for toilets; any changes should be duplicated in categories.txt @toilet! */ +/* Search category */ "toilet" = "廁所"; -/* Search category for post offices; any changes should be duplicated in categories.txt @post! */ +/* Search category */ "post" = "郵局"; -/* Search category for police; any changes should be duplicated in categories.txt @police! */ +/* Search category */ "police" = "警察局"; +/* Notes field in Bookmarks view */ +"description" = "描述說明"; + +/* Email Subject when sharing bookmark list */ +"share_bookmarks_email_subject" = "已分享 Organic Maps 書籤"; + "share_bookmarks_email_body" = "你好!\n\n附件為 Organic Maps app 的書籤,如果你有安裝 Organic Maps 則直接開啟,如果沒有的話,請先在 iOS 或是 Android 裝置,從下面連結下載:https://omaps.app/get?kmz\n\n旅行時用上 Organic Maps!"; /* message title of loading file */ @@ -163,18 +233,33 @@ /* Warning message when doing search around current position */ "unknown_current_position" = "您的位置尚未定位完成"; +/* Alert message that we can't run Map Storage settings due to some reasons. */ +"cant_change_this_setting" = "很抱歉,地圖儲存設定目前已停用。"; + +/* Alert message that downloading is in progress. */ +"downloading_is_active" = "地圖下載中。"; + +/* Share my position using SMS, %1$@ contains om:// and %2$@ https://omaps.app link WITHOUT NAME. @NOTE non-ascii symbols in the link will result in max 70 characters SMS instead of 140. */ +"my_position_share_sms" = "嘿,在 Organic Maps 查看我的目前位置吧! %1$@ 或%2$@ 沒安裝離線地圖?在此下載: https://omaps.app/get"; + /* Subject for emailed bookmark */ "bookmark_share_email_subject" = "嘿,看看我在 Organic Maps 地圖上的圖釘!"; /* Subject for emailed position */ "my_position_share_email_subject" = "嗨,到 Organic Maps 地圖查看我的目前位置!"; +/* Share my position using EMail, %1$@ is om:// and %2$@ is https://omaps.app link WITHOUT NAME */ +"my_position_share_email" = "嗨,\n\n我現在在這:%1$@。點擊此連結 %2$@ 或此連結 %3$@ 來查看在地圖上的位置。\n\n謝謝。"; + /* Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. */ "share" = "分享"; /* Share by email button text, also used in editor. */ "email" = "電子郵件"; +/* Text for message when used successfully copied something */ +"copied_to_clipboard" = "已複製到剪貼簿:%1$@"; + /* place preview title */ "info" = "簡介"; @@ -187,6 +272,9 @@ /* Data version in «About» screen */ "data_version" = "資料版本: %d"; +/* Confirmation in downloading countries dialog */ +"are_you_sure" = "確定要繼續嗎?"; + /* Title for tracks category in bookmarks manager */ "tracks_title" = "軌跡"; @@ -195,10 +283,18 @@ "share_my_location" = "分享我的位置"; +/* Settings general group in settings screen */ +"prefs_group_general" = "一般設定"; + +/* Settings information group in settings screen */ +"prefs_group_information" = "資訊"; + "prefs_group_route" = "導航"; "pref_zoom_title" = "縮放按鈕"; +"pref_zoom_summary" = "在螢幕上顯示"; + /* Settings «Map» category: «Night style» title */ "pref_map_style_title" = "夜間模式"; @@ -223,6 +319,9 @@ /* Settings «Route» category: «Tts language» title */ "pref_tts_language_title" = "語音語言"; +/* Settings «Route» category: «Tts unavailable» subtitle */ +"pref_tts_unavailable" = "無法使用"; + /* Title for "Other" section in TTS settings. */ "pref_tts_other_section_title" = "其他"; @@ -267,6 +366,12 @@ /* Text in menu */ "instagram" = "Instagram"; +/* Text in the editor */ +"vk" = "VK"; + +/* Text in the editor */ +"editor_line_social_network" = "LINE"; + /* Text in menu */ "openstreetmap" = "開放街圖"; @@ -279,6 +384,12 @@ /* Text in menu */ "help" = "幫助"; +/* Button in the main Help dialog */ +"faq" = "問題和解答"; + +/* Button in the main Help dialog */ +"how_to_support_us" = "如何支持我們?"; + /* Button in the main Help dialog */ "copyright" = "版權"; @@ -300,6 +411,9 @@ /* Update all button text */ "downloader_update_all_button" = "更新全部"; +/* Cancel all button text */ +"downloader_cancel_all" = "全部取消"; + /* Downloaded maps category */ "downloader_downloaded_subtitle" = "已下載"; @@ -340,6 +454,12 @@ /* Item in context menu. */ "downloader_delete_map" = "刪除地圖"; +/* Item in context menu. */ +"downloader_update_map" = "更新地圖"; + +/* Preference text */ +"pref_use_google_play" = "使用 Google Play 服務來獲得您的目前位置"; + /* Text for rating dialog */ "rating_just_rated" = "我剛剛評價了您的應用程式"; @@ -358,11 +478,19 @@ /* Text for routing error dialog */ "routing_requires_all_map" = "建立路線需要下載並更新好所有從您的位置到目的地的地圖。"; +/* Text for routing error dialog */ +"routing_not_enough_space" = "空間不足"; + /* bookmark button text */ "bookmark" = "書籤"; +/* location service disabled */ +"enable_location_services" = "請啟用定位服務"; + "save" = "儲存"; +"edit_description_hint" = "您的描述(文字或 html)"; + "create" = "建立"; /* red color */ @@ -447,6 +575,8 @@ "dialog_routing_unable_locate_route" = "路線未找到"; +"dialog_routing_cant_build_route" = "無法產生路線。"; + "dialog_routing_change_start_or_end" = "請變更起點或最終目的地。"; "dialog_routing_change_start" = "變更起點"; @@ -480,6 +610,10 @@ /********** Strings for downloading map from search **********/ +"search_without_internet_advertisement" = "要開始搜索和建立路線,請下載地圖,那您就不再需要網絡連接了。"; + +"search_select_map" = "選擇地圖"; + /* «Show» context menu */ "show" = "顯示"; @@ -521,6 +655,9 @@ "clear_search" = "清除搜尋記錄"; +/* Place Page link to Wikipedia article (if map object has it). */ +"read_in_wikipedia" = "維基百科"; + "p2p_your_location" = "您的位置"; "p2p_start" = "開始"; @@ -533,6 +670,9 @@ "p2p_reroute_from_current" = "你是否想要規劃目前位置的路線?"; +/* Edit open hours/set time and minutes dialog */ +"next_button" = "下一頁"; + "editor_time_add" = "新增排程"; "editor_time_delete" = "刪除排程"; @@ -556,14 +696,28 @@ "editor_example_values" = "範例值"; +"editor_correct_mistake" = "修正錯誤"; + "editor_add_select_location" = "位置"; "editor_done_dialog_1" = "您已經改變了世界地圖。別藏私!告訴您的朋友們一起來編輯。"; "share_with_friends" = "和朋友分享"; +"editor_report_problem_desription_1" = "請詳細描述此問題以便 OpenStreeMap 社群修復此錯誤。"; + +"editor_report_problem_desription_2" = "或者在 https://www.openstreetmap.org/ 上親自修復此錯誤"; + "editor_report_problem_send_button" = "發送"; +"editor_report_problem_title" = "問題"; + +"editor_report_problem_no_place_title" = "該地點不存在"; + +"editor_report_problem_under_construction_title" = "因維護而關閉"; + +"editor_report_problem_duplicate_place_title" = "重複的地點"; + "autodownload" = "自動下載"; /* Place Page opening hours text */ @@ -582,6 +736,8 @@ "add_opening_hours" = "新增營業時間"; +"edit_opening_hours" = "編輯營業時間"; + "no_osm_account" = "沒有 OpenStreeMap 帳號嗎?"; "register_at_openstreetmap" = "註冊"; @@ -592,6 +748,8 @@ "login" = "登入"; +"password" = "密碼"; + "forgot_password" = "忘記密碼"; "osm_account" = "OSM 帳號"; @@ -609,6 +767,8 @@ "add_language" = "新增語言"; +"street" = "街道"; + /* Editable House Number text field (in address block). */ "house_number" = "門牌號碼"; @@ -617,6 +777,9 @@ /* Text field to enter non-existing street name, below list of known streets around */ "add_street" = "新增街道"; +/* Error to display when a new street name is not entered in the New street dialog */ +"empty_street_name_error" = "Please enter a street name"; + "choose_language" = "選擇語言"; "choose_street" = "選擇街道"; @@ -632,12 +795,16 @@ "phone" = "電話"; +"editor_add_phone" = "新增電話"; + "please_note" = "請註意"; "downloader_delete_map_dialog" = "所有對地圖的修改都將與地圖一起被刪除。"; "downloader_update_maps" = "更新地圖"; +"downloader_mwm_migration_dialog" = "為了建立路線,您需要更新全部地圖並重新規劃路線。"; + "downloader_search_field_hint" = "尋找地圖"; "migration_download_error_dialog" = "下載錯誤"; @@ -648,6 +815,8 @@ "downloader_no_space_message" = "請刪除不必要的資料"; +"editor_login_error_dialog" = "登入錯誤。"; + "editor_profile_changes" = "已驗證的變更"; "editor_focus_map_on_location" = "拖動地圖以選擇此物件的正確位置。"; @@ -666,6 +835,12 @@ "editor_edit_place_category_title" = "類別"; +"detailed_problem_description" = "問題的詳細描述"; + +"editor_report_problem_other_title" = "不同的問題"; + +"placepage_add_business_button" = "添加組織"; + "whatsnew_editor_message_1" = "新增新地點到該地圖,並直接通過此應用程式編輯已存在的地點。"; "dialog_incorrect_feature_position" = "改變位置"; @@ -710,6 +885,8 @@ "editor_operator" = "營運者"; +"downloader_my_maps_title" = "我的地圖"; + "downloader_no_downloaded_maps_title" = "您尚未下載任何地圖"; "downloader_no_downloaded_maps_message" = "下載地圖來尋找位置和離線瀏覽。"; @@ -751,10 +928,16 @@ "miles_per_hour" = "英哩每小時"; +"hour" = "小時"; + +"minute" = "分鐘"; + "placepage_place_description" = "說明"; "placepage_more_button" = "更多"; +"placepage_more_reviews_button" = "更多評論"; + "book_button" = "預約"; "placepage_call_button" = "呼叫"; @@ -781,6 +964,9 @@ "editor_place_doesnt_exist" = "位置不存在"; +/* Error message for "Place doesn't exist" dialog when comment is empty */ +"delete_place_empty_comment_error" = "Please indicate the reason for deleting the place"; + "text_more_button" = "…更多"; /* Phone number error message */ @@ -790,6 +976,16 @@ "error_enter_correct_email" = "輸入有效電子郵件"; +"error_enter_correct_facebook_page" = "輸入有效臉書網址、帳號或粉絲頁名稱"; + +"error_enter_correct_instagram_page" = "輸入有效 Instagram 網址或帳號名稱"; + +"error_enter_correct_twitter_page" = "輸入有效推特網址或使用者名稱"; + +"error_enter_correct_vk_page" = "輸入有效 VK 網益止或帳號名稱"; + +"error_enter_correct_line_page" = "Enter a valid LINE web address or LINE ID"; + "refresh" = "更新"; "placepage_add_place_button" = "增加地點到地圖上"; @@ -825,7 +1021,7 @@ /* For the first routing */ "decline" = "拒絕"; -/* A noun - a button name used to show search results in list form */ +/* noun */ "search_in_table" = "清單"; "mobile_data_dialog" = "使用手機網路顯示詳細資訊?"; @@ -848,12 +1044,16 @@ "big_font" = "增加地圖上的字體大小"; +"traffic_update_app" = "請更新 Organic Maps"; + /* "traffic" as in road congestion */ "traffic_update_app_message" = "若要顯示交通資訊,必須更新 app。"; /* "traffic" as in "road congestion" */ "traffic_data_unavailable" = "無法使用交通資訊"; +"enable_logging" = "啟用記錄"; + /* Settings: "Send general feedback" button */ "feedback_general" = "一般反應"; @@ -861,14 +1061,24 @@ "off" = "關"; +"prefs_languages_information" = "我們使用系統 TTS 提供語音指示。許多 Android 裝置使用 Google TTS,您可從 Google Play 下載或更新 (https://play.google.com/store/apps/details?id=com.google.android.tts)"; + +"prefs_languages_information_off" = "對於某些語言,您將需要從 App 商店 (Google Play 商店, Samsung Apps) 安裝其他語音合成器或額外的語言套件。\n開啟您裝置的設定 → 語言與輸入 → 語音 → 文字轉換語音輸出。\n在這裡,您可以管理語音合成器的設定(例如,下載語言套件以供離線使用),並選取其他文字轉換語音引擎。"; + +"prefs_languages_information_off_link" = "如需更多資訊,請參閱本指南。"; + "transliteration_title" = "音譯為拉丁文"; +"learn_more" = "瞭解更多資訊"; + "core_exit" = "退出"; "routing_add_start_point" = "新增起點以計劃路線"; "routing_add_finish_point" = "新增終點以計劃路線"; +"button_exit" = "退出"; + "planning_route_manage_route" = "管理路線"; "button_plan" = "計畫"; @@ -883,6 +1093,12 @@ "profile_authorization_error" = "噢,發生錯誤。請嘗試再次登入。"; +"dialog_error_storage_title" = "儲存空間存取問題"; + +"dialog_error_storage_message" = "外部儲存空間不可用,很可能是因為 SD 卡已移除、毀損,或檔案系統處於唯讀狀態。請進行檢查,然後以 support@organicmaps.app 方式聯繫我們"; + +"setting_emulate_bad_storage" = "模擬不良儲存空間"; + "core_entrance" = "入口"; "error_enter_correct_name" = "請輸入正確的名稱"; @@ -896,6 +1112,9 @@ "bookmarks_create_new_group" = "創建新列表"; +/* Bookmark categories screen */ +"bookmarks_import" = "匯入書籤"; + "downloader_hide_screen" = "隱藏畫面"; "downloader_percent" = "%s (%s,共%s)"; @@ -910,12 +1129,22 @@ "bookmarks_error_message_share_empty" = "無法分享空的列表"; +"bookmarks_error_title_empty_list_name" = "名字不能為空"; + "bookmarks_error_message_empty_list_name" = "請輸入列表名稱"; +"bookmarks_new_list_hint" = "新的列表"; + "bookmarks_error_title_list_name_already_taken" = "這個名字已經被使用了"; +"bookmarks_error_message_list_name_already_taken" = "請選擇其他名稱"; + "bookmarks_error_title_list_name_too_long" = "這個名字太長了"; +"please_wait" = "請稍候…"; + +"phone_number" = "電話號碼"; + "profile" = "OpenStreetMap 資料"; "bookmarks_detect_title" = "檢測到新文件"; @@ -928,10 +1157,18 @@ "bookmarks_restore_title" = "還原這個版本?"; +"common_check_internet_connection_dialog_title" = "沒有網路連線"; + "error_system_message" = "出現未知錯誤"; "restore" = "恢復"; +"subtittle_opt_out" = "跟蹤設置"; + +"crash_reports" = "錯誤報告"; + +"crash_reports_description" = "我們可以使用您的數據來開發和改進Organic Maps。更改將再重新啟動 app 後生效。"; + "privacy_policy" = "隱私政策"; "terms_of_use" = "使用條款"; @@ -944,6 +1181,12 @@ "subway_data_unavailable" = "捷運圖層不可用"; +"bookmarks_empty_list_title" = "列表為空"; + +"bookmarks_empty_list_message" = "要增加新標籤,請點一下對象卡片中的星型圖標"; + +"category_desc_more" = "…更多"; + "title_error_downloading_bookmarks" = "發生錯誤"; "popular_place" = "受歡迎的"; @@ -956,8 +1199,14 @@ "hide_from_map" = "從卡中隱藏"; +"public_access" = "開放空間"; + +"limited_access" = "私人空間"; + "bookmark_list_description_hint" = "增加說明(文字或html)"; +"not_shared" = "私人"; + "tags_loading_error_subtitle" = "載入標籤時出錯,請重試"; "download_button" = "下載"; @@ -972,6 +1221,9 @@ "place_description_title" = "地點說明"; +/* this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. */ +"notification_channel_downloader" = "載入地圖"; + "speedcams_notice_message" = "自動 - 如果存在超出速度限制的風險,則對速度照相機發出警告\n總是 - 始終提醒照相機\n從不 - 永遠不會對照相機發出警告"; "power_managment_title" = "省電模式"; @@ -984,6 +1236,10 @@ "power_managment_setting_manual_max" = "最大程度省電"; +"enable_logging_warning_message" = "此選項啟用以記錄操作來進行診斷。這有助於團隊辨別 app 的問題。請僅在Organic Maps支援請求時開啟該選項。"; + +"access_rules_author_only" = "線上編輯"; + "driving_options_title" = "繞行設定"; "driving_options_subheader" = "在每條線路上規避"; @@ -1077,6 +1333,9 @@ /* max. 10 symbols, both iOS and Android */ "sort" = "分類……"; +/* Android, title, max 20-22 symbols */ +"sort_bookmarks" = "分類書籤"; + /* iOS */ "sort_default" = "按預設值排序"; @@ -1086,6 +1345,18 @@ "sort_date" = "按日期排序"; +/* Android */ +"by_default" = "採用預設值"; + +/* Android */ +"by_type" = "按類型"; + +/* Android */ +"by_distance" = "按距離"; + +/* Android */ +"by_date" = "按時間"; + "week_ago_sorttype" = "一週前"; "month_ago_sorttype" = "一個月前"; @@ -1132,6 +1403,8 @@ "religious_places" = "宗教聖地"; +"select_list" = "選擇列表"; + "transit_not_found" = "本區域的地鐵導航目前不可用"; "dialog_pedestrian_route_is_long_header" = "未找到捷運路線圖"; @@ -1162,6 +1435,8 @@ "elevation_profile_difficulty" = "難易度"; +"elevation_profile_distance" = "距離:"; + "elevation_profile_time" = "時間:"; "isolines_toast_zooms_1_10" = "放大地圖以查看等高線"; @@ -1170,6 +1445,19 @@ "downloader_loading_ios" = "載入"; +"key_information_title" = "關鍵資訊"; + +"download_map_title" = "Download the world map"; + +"connection_failure" = "Connection failure"; + +"disconnect_usb_cable_title" = "拔除 USB 線"; + +"enable_screen_sleep" = "允许螢幕進入休眠狀態"; + +/* Description in preferences */ +"enable_screen_sleep_description" = "啟用後,螢幕將在一段時間不活動後進入休眠狀態。"; + /* Autoupdate dialog on start */ "whats_new_auto_update_title" = "更新您下載的地圖"; @@ -1735,30 +2023,27 @@ "type.healthcare.laboratory" = "醫學實驗室"; - -/********** Types: Roads **********/ - "type.highway" = "Highway"; -"type.highway.bridleway" = "Bridle Path"; +"type.highway.bridleway" = "Rider's Path"; -"type.highway.bridleway.bridge" = "Bridle Path"; +"type.highway.bridleway.bridge" = "Rider's Path"; -"type.highway.bridleway.permissive" = "Bridle Path"; +"type.highway.bridleway.permissive" = "Rider's Path"; -"type.highway.bridleway.tunnel" = "Bridle Path"; +"type.highway.bridleway.tunnel" = "Rider's Path"; "type.highway.bus_stop" = "巴士站"; "type.highway.construction" = "在建道路"; -"type.highway.cycleway" = "Cycle Path"; +"type.highway.cycleway" = "Bike Path"; -"type.highway.cycleway.bridge" = "Cycle Path"; +"type.highway.cycleway.bridge" = "Bike Path"; -"type.highway.cycleway.permissive" = "Cycle Path"; +"type.highway.cycleway.permissive" = "Bike Path"; -"type.highway.cycleway.tunnel" = "Cycle Path"; +"type.highway.cycleway.tunnel" = "Bike Path"; "type.highway.elevator" = "Elevator"; @@ -1958,43 +2243,10 @@ "type.highway.unclassified.tunnel" = "道路"; -"type.area_highway.cycleway" = "Cycle Path"; - -"type.area_highway.footway" = "人行步道"; - -"type.area_highway.living_street" = "路"; - -"type.area_highway.motorway" = "高速公路"; - -"type.area_highway.path" = "人行步道"; - -"type.area_highway.pedestrian" = "路"; - -"type.area_highway.primary" = "主要道路"; - -"type.area_highway.residential" = "住宅區道路"; - -"type.area_highway.secondary" = "次要道路"; - -"type.area_highway.service" = "輔助道路"; - -"type.area_highway.tertiary" = "三级道路"; - -"type.area_highway.steps" = "人行步道"; - -"type.area_highway.track" = "土路"; - -"type.area_highway.trunk" = "主幹道"; - -"type.area_highway.unclassified" = "道路"; - "type.highway.world_level" = "highway-world_level"; "type.highway.world_towns_level" = "highway-world_towns_level"; - -/********** Types: Historic **********/ - "type.historic" = "Historic"; "type.historic.archaeological_site" = "考古遺址"; @@ -2197,8 +2449,6 @@ "type.leisure.water_park" = "水上樂園"; -"type.leisure.beach_resort" = "Beach Resort"; - "type.man_made" = "Man Made"; "type.man_made.breakwater" = "Breakwater"; @@ -2347,25 +2597,25 @@ "type.place.city.capital" = "首府"; -"type.place.city.capital.10" = "城市"; +"type.place.city.capital.10" = "首府"; -"type.place.city.capital.11" = "城市"; +"type.place.city.capital.11" = "首府"; -"type.place.city.capital.2" = "首府"; +"type.place.city.capital.2" = "首都"; -"type.place.city.capital.3" = "城市"; +"type.place.city.capital.3" = "首都"; -"type.place.city.capital.4" = "城市"; +"type.place.city.capital.4" = "首府"; -"type.place.city.capital.5" = "城市"; +"type.place.city.capital.5" = "首府"; -"type.place.city.capital.6" = "城市"; +"type.place.city.capital.6" = "首府"; -"type.place.city.capital.7" = "城市"; +"type.place.city.capital.7" = "首府"; -"type.place.city.capital.8" = "城市"; +"type.place.city.capital.8" = "首府"; -"type.place.city.capital.9" = "城市"; +"type.place.city.capital.9" = "首府"; "type.place.continent" = "大陸"; @@ -2443,11 +2693,11 @@ "type.railway.abandoned.bridge" = "Abandoned railway"; -"type.railway.abandoned.tunnel" = "Abandoned Railway"; +"type.railway.abandoned.tunnel" = "Abandoned railway"; -"type.railway.construction" = "Railway's Construction"; +"type.railway.construction" = "Railway's construction"; -"type.railway.crossing" = "Railway Crossing"; +"type.railway.crossing" = "Railway crossing"; "type.railway.disused" = "Disused railway"; @@ -2916,3 +3166,33 @@ "type.piste_type.sled" = "piste:type-sled"; "type.building_part" = "建築物"; + +"type.area_highway.cycleway" = "Bike Path"; + +"type.area_highway.footway" = "Path"; + +"type.area_highway.living_street" = "Street"; + +"type.area_highway.motorway" = "area:highway-motorway"; + +"type.area_highway.path" = "Path"; + +"type.area_highway.pedestrian" = "Street"; + +"type.area_highway.primary" = "Street"; + +"type.area_highway.residential" = "Street"; + +"type.area_highway.secondary" = "Street"; + +"type.area_highway.service" = "Street"; + +"type.area_highway.tertiary" = "Street"; + +"type.area_highway.steps" = "Steps"; + +"type.area_highway.track" = "area:highway-track"; + +"type.area_highway.trunk" = "area:highway-trunk"; + +"type.area_highway.unclassified" = "area:highway-unclassified"; diff --git a/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.stringsdict b/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.stringsdict index 29af2b9c59..85d7b51c62 100644 --- a/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.stringsdict +++ b/iphone/Maps/LocalizedStrings/zh-Hant.lproj/Localizable.stringsdict @@ -1,9 +1,9 @@ - - + + @@ -54,6 +54,21 @@ + places + + NSStringLocalizedFormatKey + %#@value@ + value + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + d + other + %d 地點 + + + tracks NSStringLocalizedFormatKey diff --git a/iphone/Maps/Maps.xcodeproj/project.pbxproj b/iphone/Maps/Maps.xcodeproj/project.pbxproj index 5ec036c4b6..e00f3e5f81 100644 --- a/iphone/Maps/Maps.xcodeproj/project.pbxproj +++ b/iphone/Maps/Maps.xcodeproj/project.pbxproj @@ -343,6 +343,7 @@ 990F33B624BC915200D0F426 /* SearchActionBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 990F33B524BC915200D0F426 /* SearchActionBarView.swift */; }; 9917D17F2397B1D600A7E06E /* IPadModalPresentationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9917D17E2397B1D600A7E06E /* IPadModalPresentationController.swift */; }; 991FCA2423B11E61009AD684 /* BookmarksStyleSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 991FCA2323B11E61009AD684 /* BookmarksStyleSheet.swift */; }; + 993416F82534427300526F6E /* PlacePageDividerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 993416F72534427300526F6E /* PlacePageDividerViewController.swift */; }; 993DF0B523F6B2EF00AC231A /* PlacePageElevationLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 993DF0B423F6B2EF00AC231A /* PlacePageElevationLayout.swift */; }; 993DF0C823F6BD0600AC231A /* ElevationDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 993DF0C323F6BD0600AC231A /* ElevationDetailsViewController.swift */; }; 993DF0C923F6BD0600AC231A /* ElevationDetailsBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 993DF0C423F6BD0600AC231A /* ElevationDetailsBuilder.swift */; }; @@ -1170,6 +1171,7 @@ 990F33B524BC915200D0F426 /* SearchActionBarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchActionBarView.swift; sourceTree = ""; }; 9917D17E2397B1D600A7E06E /* IPadModalPresentationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IPadModalPresentationController.swift; sourceTree = ""; }; 991FCA2323B11E61009AD684 /* BookmarksStyleSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BookmarksStyleSheet.swift; sourceTree = ""; }; + 993416F72534427300526F6E /* PlacePageDividerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlacePageDividerViewController.swift; sourceTree = ""; }; 993DF0B423F6B2EF00AC231A /* PlacePageElevationLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlacePageElevationLayout.swift; sourceTree = ""; }; 993DF0C323F6BD0600AC231A /* ElevationDetailsViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ElevationDetailsViewController.swift; sourceTree = ""; }; 993DF0C423F6BD0600AC231A /* ElevationDetailsBuilder.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ElevationDetailsBuilder.swift; sourceTree = ""; }; @@ -1622,21 +1624,6 @@ FAAEA7D0161BD26600CCD661 /* synonyms.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = synonyms.txt; path = ../../data/synonyms.txt; sourceTree = ""; }; FAAFD696139D9BE2000AE70C /* categories.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = categories.txt; path = ../../data/categories.txt; sourceTree = SOURCE_ROOT; }; FAF30A94173AB23900818BF6 /* 07_roboto_medium.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 07_roboto_medium.ttf; path = ../../data/07_roboto_medium.ttf; sourceTree = ""; }; - FAF8C669278CEE29006CAE66 /* be */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = be; path = be.lproj/InfoPlist.strings; sourceTree = ""; }; - FAF8C66C278CEE2A006CAE66 /* be */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = be; path = be.lproj/Localizable.stringsdict; sourceTree = ""; }; - FAF8C66E278CEE2A006CAE66 /* be */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = be; path = be.lproj/Localizable.strings; sourceTree = ""; }; - FAF8C676278CEEA2006CAE66 /* sw */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sw; path = sw.lproj/InfoPlist.strings; sourceTree = ""; }; - FAF8C677278CEEA2006CAE66 /* fa */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fa; path = fa.lproj/Localizable.strings; sourceTree = ""; }; - FAF8C678278CEEA2006CAE66 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = ""; }; - FAF8C679278CEEA2006CAE66 /* sw */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sw; path = sw.lproj/Localizable.strings; sourceTree = ""; }; - FAF8C67A278CEEA2006CAE66 /* sw */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = sw; path = sw.lproj/Localizable.stringsdict; sourceTree = ""; }; - FAF8C67B278CEEA3006CAE66 /* fa */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fa; path = fa.lproj/InfoPlist.strings; sourceTree = ""; }; - FAF8C67C278CEEA3006CAE66 /* fa */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = fa; path = fa.lproj/Localizable.stringsdict; sourceTree = ""; }; - FAF8C67D278CEEA3006CAE66 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = he; path = he.lproj/Localizable.stringsdict; sourceTree = ""; }; - FAF8C67E278CEEA3006CAE66 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = ""; }; - FAF8C67F278CEEA3006CAE66 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/InfoPlist.strings"; sourceTree = ""; }; - FAF8C680278CEEA3006CAE66 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = "es-MX"; path = "es-MX.lproj/Localizable.stringsdict"; sourceTree = ""; }; - FAF8C681278CEEA3006CAE66 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/InfoPlist.strings; sourceTree = ""; }; FAFF42291347F101009BBB14 /* World.mwm */ = {isa = PBXFileReference; lastKnownFileType = file; name = World.mwm; path = ../../data/World.mwm; sourceTree = ""; }; /* End PBXFileReference section */ @@ -2461,9 +2448,9 @@ 34F73F5E1E082FF700AC1FD6 /* LocalizedStrings */ = { isa = PBXGroup; children = ( + A630D1E8207CA95900976DEA /* Localizable.stringsdict */, 34F73F5F1E082FF700AC1FD6 /* InfoPlist.strings */, 34F73F611E082FF800AC1FD6 /* Localizable.strings */, - A630D1E8207CA95900976DEA /* Localizable.stringsdict */, ); path = LocalizedStrings; sourceTree = ""; @@ -2794,6 +2781,7 @@ 99A906DC23F6F7030005872B /* PlacePagePreviewViewController.swift */, 99A906D823F6F7030005872B /* WikiDescriptionViewController.swift */, 4726254821C27D4B00C7BAAD /* PlacePageDescriptionViewController.swift */, + 993416F72534427300526F6E /* PlacePageDividerViewController.swift */, 99C964222428C0D500E41723 /* PlacePageHeader */, 993DF0C223F6BD0600AC231A /* ElevationDetails */, 99DEF9D523E420D2006BFD21 /* ElevationProfile */, @@ -3697,11 +3685,6 @@ el, bg, "pt-BR", - be, - sw, - fa, - "es-MX", - he, ); mainGroup = 29B97314FDCFA39411CA2CEA /* Maps */; productRefGroup = 19C28FACFE9D520D11CA2CBB /* Products */; @@ -3956,6 +3939,7 @@ F6E2FDE91E097BA00083EBEC /* MWMObjectsCategorySelectorController.mm in Sources */, 34AB665F1FC5AA330078E451 /* TransportTransitIntermediatePoint.swift in Sources */, 34B846A82029E8110081ECCD /* BMCDefaultViewModel.swift in Sources */, + 993416F82534427300526F6E /* PlacePageDividerViewController.swift in Sources */, 993DF12123F6BDB100AC231A /* UIViewControllerRenderer.swift in Sources */, 34D3AFF61E37A36A004100F9 /* UICollectionView+Cells.swift in Sources */, 4767CDA420AAF66B00BD8166 /* NSAttributedString+HTML.swift in Sources */, @@ -4405,11 +4389,6 @@ 34F73F991E082FF800AC1FD6 /* zh-Hant */, FA1A4CF326AABBED00026C44 /* bg */, FA9F050C26923D4D007849F1 /* pt-BR */, - FAF8C669278CEE29006CAE66 /* be */, - FAF8C676278CEEA2006CAE66 /* sw */, - FAF8C67B278CEEA3006CAE66 /* fa */, - FAF8C67F278CEEA3006CAE66 /* es-MX */, - FAF8C681278CEEA3006CAE66 /* he */, ); name = InfoPlist.strings; sourceTree = ""; @@ -4448,11 +4427,6 @@ 34F73F9A1E082FF800AC1FD6 /* zh-Hant */, FA1A4CF426AABBEE00026C44 /* bg */, FA9F050D26923D4E007849F1 /* pt-BR */, - FAF8C66E278CEE2A006CAE66 /* be */, - FAF8C677278CEEA2006CAE66 /* fa */, - FAF8C678278CEEA2006CAE66 /* es-MX */, - FAF8C679278CEEA2006CAE66 /* sw */, - FAF8C67E278CEEA3006CAE66 /* he */, ); name = Localizable.strings; sourceTree = ""; @@ -4491,11 +4465,6 @@ A630D206207CAA5800976DEA /* zh-Hans */, FA1A4CF226AABBEC00026C44 /* bg */, FA9F050B26923D4C007849F1 /* pt-BR */, - FAF8C66C278CEE2A006CAE66 /* be */, - FAF8C67A278CEEA2006CAE66 /* sw */, - FAF8C67C278CEEA3006CAE66 /* fa */, - FAF8C67D278CEEA3006CAE66 /* he */, - FAF8C680278CEEA3006CAE66 /* es-MX */, ); name = Localizable.stringsdict; sourceTree = ""; diff --git a/iphone/Maps/UI/Downloader/Cells/MWMMapDownloaderButtonTableViewCell.xib b/iphone/Maps/UI/Downloader/Cells/MWMMapDownloaderButtonTableViewCell.xib index 7d1bd401ac..e024ee1ea6 100644 --- a/iphone/Maps/UI/Downloader/Cells/MWMMapDownloaderButtonTableViewCell.xib +++ b/iphone/Maps/UI/Downloader/Cells/MWMMapDownloaderButtonTableViewCell.xib @@ -1,10 +1,9 @@ - + - - + @@ -17,11 +16,13 @@ - + + + + + + @@ -37,9 +44,4 @@ - - - - - diff --git a/iphone/Maps/UI/Downloader/DownloadMapsViewController.swift b/iphone/Maps/UI/Downloader/DownloadMapsViewController.swift index e9e172c78b..87efc362bc 100644 --- a/iphone/Maps/UI/Downloader/DownloadMapsViewController.swift +++ b/iphone/Maps/UI/Downloader/DownloadMapsViewController.swift @@ -1,5 +1,3 @@ -import UIKit - @objc(MWMDownloadMapsViewController) class DownloadMapsViewController: MWMViewController { // MARK: - Types @@ -22,12 +20,14 @@ class DownloadMapsViewController: MWMViewController { // MARK: - Outlets @IBOutlet var tableView: UITableView! + @IBOutlet var searchBar: UISearchBar! + @IBOutlet var statusBarBackground: UIView! @IBOutlet var noMapsContainer: UIView! + @IBOutlet var searchBarTopOffset: NSLayoutConstraint! @IBOutlet var downloadAllViewContainer: UIView! // MARK: - Properties - private var searchBar: UISearchBar = UISearchBar() var dataSource: IDownloaderDataSource! @objc var mode: MWMMapDownloaderMode = .downloaded private var skipCountryEvent = false @@ -36,7 +36,7 @@ class DownloadMapsViewController: MWMViewController { lazy var noSerchResultViewController: SearchNoResultsViewController = { let vc = storyboard!.instantiateViewController(ofType: SearchNoResultsViewController.self) - view.insertSubview(vc.view, aboveSubview: tableView) + view.insertSubview(vc.view, belowSubview: statusBarBackground) vc.view.alignToSuperview() vc.view.isHidden = true addChild(vc) @@ -77,12 +77,10 @@ class DownloadMapsViewController: MWMViewController { navigationItem.rightBarButtonItem = addMapsButton } noMapsContainer.isHidden = !dataSource.isEmpty || Storage.shared().downloadInProgress() - - if dataSource.isRoot { + if !dataSource.isRoot { + searchBarTopOffset.constant = -searchBar.frame.height + } else { searchBar.placeholder = L("downloader_search_field_hint") - searchBar.delegate = self - // TODO: Fix the height and centering of the searchBar, it's very tricky. - navigationItem.titleView = searchBar } configButtons() } @@ -436,6 +434,22 @@ extension DownloadMapsViewController: StorageObserver { // MARK: - UISearchBarDelegate extension DownloadMapsViewController: UISearchBarDelegate { + func searchBarShouldBeginEditing(_ searchBar: UISearchBar) -> Bool { + searchBar.setShowsCancelButton(true, animated: true) + navigationController?.setNavigationBarHidden(true, animated: true) + tableView.contentInset = .zero + tableView.scrollIndicatorInsets = .zero + return true + } + + func searchBarShouldEndEditing(_ searchBar: UISearchBar) -> Bool { + searchBar.setShowsCancelButton(false, animated: true) + navigationController?.setNavigationBarHidden(false, animated: true) + tableView.contentInset = .zero + tableView.scrollIndicatorInsets = .zero + return true + } + func searchBarCancelButtonClicked(_ searchBar: UISearchBar) { searchBar.text = nil searchBar.resignFirstResponder() diff --git a/iphone/Maps/UI/Downloader/DownloadedMapsDataSource.swift b/iphone/Maps/UI/Downloader/DownloadedMapsDataSource.swift index 77d939e116..2774cf94c9 100644 --- a/iphone/Maps/UI/Downloader/DownloadedMapsDataSource.swift +++ b/iphone/Maps/UI/Downloader/DownloadedMapsDataSource.swift @@ -38,10 +38,10 @@ extension DownloadedMapsDataSource: IDownloaderDataSource { var isEmpty: Bool { return searching ? searchDataSource.isEmpty : countryIds.isEmpty } - + var title: String { guard let parentCountryId = parentCountryId else { - return "" // Root Downloader dialog displays UISearchBar instead of title. + return L("downloader_my_maps_title") } return Storage.shared().name(forCountry: parentCountryId) } diff --git a/iphone/Maps/UI/PlacePage/Components/PlacePageDividerViewController.swift b/iphone/Maps/UI/PlacePage/Components/PlacePageDividerViewController.swift new file mode 100644 index 0000000000..3b2f68a485 --- /dev/null +++ b/iphone/Maps/UI/PlacePage/Components/PlacePageDividerViewController.swift @@ -0,0 +1,13 @@ +final class PlacePageDividerViewController: UIViewController { + @IBOutlet private var titleLabel: UILabel! + + var titleText: String? { + didSet { + titleLabel.text = titleText + } + } + + override func viewDidLoad() { + super.viewDidLoad() + } +} diff --git a/iphone/Maps/UI/PlacePage/PlacePage.storyboard b/iphone/Maps/UI/PlacePage/PlacePage.storyboard index d1a9fbc5b4..6fb47f9725 100644 --- a/iphone/Maps/UI/PlacePage/PlacePage.storyboard +++ b/iphone/Maps/UI/PlacePage/PlacePage.storyboard @@ -1806,6 +1806,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/Layouts/PlacePageCommonLayout.swift b/iphone/Maps/UI/PlacePage/PlacePageLayout/Layouts/PlacePageCommonLayout.swift index 7a634a6ac7..752bc3f49a 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/Layouts/PlacePageCommonLayout.swift +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/Layouts/PlacePageCommonLayout.swift @@ -44,6 +44,20 @@ class PlacePageCommonLayout: NSObject, IPlacePageLayout { return vc } () + lazy var descriptionDividerViewController: PlacePageDividerViewController = { + let vc = storyboard.instantiateViewController(ofType: PlacePageDividerViewController.self) + vc.view.isHidden = true + vc.titleText = L("placepage_place_description").uppercased() + return vc + } () + + lazy var keyInformationDividerViewController: PlacePageDividerViewController = { + let vc = storyboard.instantiateViewController(ofType: PlacePageDividerViewController.self) + vc.view.isHidden = true + vc.titleText = L("key_information_title").uppercased() + return vc + } () + lazy var bookmarkViewController: PlacePageBookmarkViewController = { let vc = storyboard.instantiateViewController(ofType: PlacePageBookmarkViewController.self) vc.view.isHidden = true @@ -92,11 +106,13 @@ class PlacePageCommonLayout: NSObject, IPlacePageLayout { private func configureViewControllers() -> [UIViewController] { var viewControllers = [UIViewController]() viewControllers.append(previewViewController) + viewControllers.append(descriptionDividerViewController) viewControllers.append(wikiDescriptionViewController) if let wikiDescriptionHtml = placePageData.wikiDescriptionHtml { wikiDescriptionViewController.descriptionHtml = wikiDescriptionHtml if placePageData.bookmarkData?.bookmarkDescription == nil { wikiDescriptionViewController.view.isHidden = false + descriptionDividerViewController.view.isHidden = false } } @@ -104,9 +120,14 @@ class PlacePageCommonLayout: NSObject, IPlacePageLayout { if let bookmarkData = placePageData.bookmarkData { bookmarkViewController.bookmarkData = bookmarkData bookmarkViewController.view.isHidden = false + if let description = bookmarkData.bookmarkDescription, description.isEmpty == false { + descriptionDividerViewController.view.isHidden = false + } } if placePageData.infoData != nil { + viewControllers.append(keyInformationDividerViewController) + keyInformationDividerViewController.view.isHidden = false viewControllers.append(infoViewController) } diff --git a/iphone/Maps/UI/Settings/MWMAboutController.m b/iphone/Maps/UI/Settings/MWMAboutController.m index 129ab12b26..731d871fb0 100644 --- a/iphone/Maps/UI/Settings/MWMAboutController.m +++ b/iphone/Maps/UI/Settings/MWMAboutController.m @@ -38,7 +38,7 @@ AppInfo * appInfo = [AppInfo sharedInfo]; NSString * version = appInfo.bundleVersion; if (appInfo.buildNumber) - version = [NSString stringWithFormat:@"%@-%@", version, appInfo.buildNumber]; + version = [NSString stringWithFormat:@"%@.%@", version, appInfo.buildNumber]; self.versionLabel.text = [NSString stringWithFormat:L(@"version"), version]; self.dataVersionLabel.text = [NSString stringWithFormat:L(@"data_version"), [MWMFrameworkHelper dataVersion]]; diff --git a/iphone/Maps/UI/Storyboard/Main.storyboard b/iphone/Maps/UI/Storyboard/Main.storyboard index 0d87cad03a..844e2961f0 100644 --- a/iphone/Maps/UI/Storyboard/Main.storyboard +++ b/iphone/Maps/UI/Storyboard/Main.storyboard @@ -1,9 +1,9 @@ - + - + @@ -670,7 +670,7 @@ - + @@ -873,7 +873,7 @@ - + @@ -884,8 +884,29 @@ + + + + + + + + + + + + + + + + + + + + +