[v0.12.0 pre] Planning & Itinerary Overhaul, Recommendation Engine, OIDC Enhancements, and More (#931)

* Fixes [REQUEST] Email-based auto-linking for OIDC
Fixes #921

* Add ClusterMap integration for regions and cities with fit-to-bounds functionality

* Update COUNTRY_REGION_JSON_VERSION to v3.0 and modify state ID generation to use ISO2 code

* fix: handle email verification required case during signup

Updated the signup action to return a specific message when the backend responds with a 401 status, indicating that the signup succeeded but email verification is required. This allows the frontend to display the appropriate message using an i18n key.

* feat: add Advanced Configuration documentation with optional environment variables

* Fixes #511

* fix: update appVersion to v0.11.0-main-121425 and enhance socialProviders handling in settings page

* feat: implement social signup controls and update documentation for new environment variables

* fix: update LocationCard props and enhance restore data functionality

- Changed the user prop to null in LocationCard component on the dashboard page.
- Added isRestoring state to manage loading state during data restoration in settings.
- Updated the restore button to show a loading spinner when a restore operation is in progress.

* fix: update appVersion to v0.12.0-pre-dev-121625

* feat: implement itinerary planning feature with CollectionItineraryPlanner component and related updates

* feat: add overnight lodging indicator and functionality to CollectionItineraryPlanner

* feat: add compact display option to LocationCard and enhance lodging filtering in CollectionItineraryPlanner

* feat(itinerary): add itinerary management features and link modal

- Introduced ItineraryViewSet for managing itinerary items with create and reorder functionalities.
- Added itinerary linking capabilities in CollectionModal and CollectionItineraryPlanner components.
- Implemented new ItineraryLinkModal for linking existing items to specific dates.
- Enhanced the frontend with new modals for creating locations, lodging, transportation, notes, and checklists.
- Updated the backend to handle itinerary item creation and reordering with appropriate permissions.
- Improved data handling for unscheduled items and their association with the itinerary.
- Added new dependencies to the frontend for enhanced functionality.

* feat(itinerary): implement auto-generate functionality for itinerary items based on dated records

* feat(collection): enhance collection sharing logic and improve data handling on invite acceptance

* fix: update appVersion to correct pre-dev version

* feat(wikipedia): implement image selection from Wikipedia with enhanced results display

* Refactor code structure for improved readability and maintainability

* feat: add CollectionRecommendationView component for displaying location recommendations

- Implemented CollectionRecommendationView.svelte to handle location recommendations based on user input and selected categories.
- Added Recommendation and RecommendationResponse types to types.ts for better type safety and structure.
- Updated collections/[id]/+page.svelte to include a new view for recommendations, allowing users to switch between different views seamlessly.

* fix: update appVersion and improve button accessibility in collection views

* feat: add canModify prop to collection components for user permission handling

* feat: add itinerary removal functionality to various cards and update UI components

- Implemented `removeFromItinerary` function in `LodgingCard`, `NoteCard`, and `TransportationCard` to allow users to remove items from their itinerary.
- Replaced the trash icon with a calendar remove icon in `LocationCard`, `LodgingCard`, `NoteCard`, and `TransportationCard` for better visual representation.
- Updated the dropdown menus in `LodgingCard`, `NoteCard`, and `TransportationCard` to include the new remove from itinerary option.
- Enhanced `CollectionItineraryPlanner` to pass itinerary items to the respective cards.
- Removed `PointSelectionModal.svelte` as it is no longer needed.
- Refactored `LocationMedia.svelte` to integrate `ImageManagement` component and clean up unused code related to image handling.

* feat: enhance itinerary management with deduplication and initial visit date handling

* feat: add FullMap component for enhanced map functionality with clustering support

- Introduced FullMap.svelte to handle map rendering, clustering, and marker management.
- Updated map page to utilize FullMap component, replacing direct MapLibre usage.
- Implemented clustering options and marker properties handling in FullMap.
- Added utility functions for resolving theme colors and managing marker states.
- Enhanced user experience with hover popups and improved loading states for location details.
- Updated app version to v0.12.0-pre-dev-122225.

* feat: enhance map interaction for touch devices with custom popup handling

* feat: add progress tracker for folder views to display visited and planned locations

* feat: add map center and zoom state management with URL synchronization

* feat: add status and days until start fields to collections with filtering options

* Component folder structure changes

* feat: add LodgingMedia and LodgingModal components for managing lodging details and media attachments

feat: implement LocationSearchMap component for interactive location searching and mapping functionality

* fix: update contentType in ImageManagement component to 'lodging' for correct media handling

* feat: enhance lodging management with date validation and update messages

* feat: implement lodging detail page with server-side loading and image modal functionality

- Added a new server-side load function to fetch lodging details by ID.
- Created a new Svelte component for the lodging detail page, including image carousel and map integration.
- Implemented a modal for displaying images with navigation.
- Enhanced URL handling in the locations page to only read parameters.

* feat: add Transportation modal component and related routes

- Implemented TransportationModal component for creating and editing transportation entries.
- Added server-side loading for transportation details in the new route [id]/+page.server.ts.
- Created a new Svelte page for displaying transportation details with image and attachment handling.
- Integrated modal for editing transportation in the transportation details page.
- Updated lodging routes to include a modal for editing lodging entries.
- Removed unused delete action from lodging server-side logic.

* feat: add start_code and end_code fields to Transportation model and update related components

* feat: implement date validation for itinerary items and add day picker modal for scheduling

* Reorder town and county checks in geocoding.py

Fix detection if only town exists for a location but county is no city name

* Use address keys only if city is found

* Make sure reverse geocoding uses correct key for cities (#938)

* Reorder town and county checks in geocoding.py

Fix detection if only town exists for a location but county is no city name

* Use address keys only if city is found

* Refactor code structure for improved readability and maintainability

* Enhance collection management with modal updates and item handling

* feat: integrate CollectionMap component in collections page and update map titles in lodging and transportation pages

- Replaced inline map implementation with CollectionMap component in collections/[id]/+page.svelte for better modularity.
- Updated the map title in lodging/[id]/+page.svelte to reflect lodging context.
- Updated the map title in transportations/[id]/+page.svelte to reflect transportation context.
- Added functionality to collect and render GeoJSON data from transportation attachments in transportations/[id]/+page.svelte.

* chore: update copyright year to 2026 in various files

* feat: enhance backup export functionality with itinerary items and export IDs

* fix: improve dropdown close behavior by handling multiple event types

* fix: remove unnecessary cache decorator from globespin function

* feat: add initial visit date support in ChecklistModal and NoteModal, with UI suggestions for prefilled dates

* feat: add details view for checklist and note cards with edit functionality

* feat: add travel duration and GPX distance calculation to Transportation model and UI

* feat: add primary image support to Collection model, serializers, and UI components

* Refactor calendar components and enhance event detail handling

- Replaced direct calendar implementation with a reusable CalendarComponent in the calendar route.
- Introduced EventDetailsModal for displaying event details, improving modularity and readability.
- Added functionality to fetch event details asynchronously when an event is clicked.
- Implemented ICS calendar download functionality with loading state management.
- Enhanced collections page to support calendar view, integrating event handling and timezone management.
- Improved lodging and transportation pages to display local time for stays and trips, including timezone badges.
- Cleaned up unused code and comments for better maintainability.

* feat: enhance hero image handling in collection view by prioritizing primary image

* chore: update .env.example to include account email verification configuration

* feat: enhance LodgingCard and TransportationCard components with expandable details and improved layout

* feat: add price and currency fields to locations, lodging, and transportation components

- Introduced price and price_currency fields in LocationModal, LodgingDetails, LodgingModal, TransportationDetails, and TransportationModal components.
- Implemented MoneyInput and CurrencyDropdown components for handling monetary values and currency selection.
- Updated data structures and types to accommodate new price and currency fields across various models.
- Enhanced cost summary calculations in collections and routes to display total costs by currency.
- Added user preference for default currency in settings, affecting new item forms.
- Updated UI to display price information in relevant components, ensuring consistent formatting and user experience.

* feat: add Development Timeline link to overview and create timeline documentation

* feat: enhance map functionality with search and zoom features

- Updated availableViews in collection page to include map view based on lodging and transportation locations.
- Added search functionality to the map page, allowing users to filter pins by name and category.
- Implemented auto-zoom feature to adjust the map view based on filtered search results.
- Introduced a search bar with a clear button for better user experience.

* feat: enhance ISO code extraction and region matching logic in extractIsoCode function

* feat: enhance extractIsoCode function with normalization for locality matching

* feat: update extractIsoCode function to include additional ISO3166 levels for improved region matching

* feat: enhance extractIsoCode function to handle cases without city information and update CollectionMap to bind user data

* feat: add cron job for syncing visited regions and cities, enhance Docker and supervisord configurations

* feat: add CollectionItineraryDay model and related functionality for itinerary day metadata management

* feat: implement cleanup of out-of-range itinerary items and notify users of potential impacts on itinerary when dates change

* Refactor collection page for improved localization and code clarity

- Removed unused imports and consolidated cost category labels to be reactive.
- Updated cost summary function to accept localized labels.
- Enhanced localization for various UI elements, including buttons, headings, and statistics.
- Improved user feedback messages for better clarity and consistency.
- Ensured all relevant text is translatable using the i18n library.

* feat: add collaborator serialization and display in collections

- Implemented `_build_profile_pic_url` and `_serialize_collaborator` functions for user profile picture URLs and serialization.
- Updated `CollectionSerializer` and `UltraSlimCollectionSerializer` to include collaborators in the serialized output.
- Enhanced `CollectionViewSet` to prefetch shared_with users for optimized queries.
- Modified frontend components to display collaborators in collection details, including profile pictures and initials.
- Added new localization strings for collaborators.
- Refactored map and location components to improve usability and functionality.
- Updated app version to reflect new changes.

* feat: add dynamic lodging icons based on type in CollectionMap component

* feat: add CollectionStats component for detailed trip statistics

- Implemented CollectionStats.svelte to display various statistics related to the collection, including distances, activities, and locations visited.
- Enhanced CollectionMap.svelte to filter activities based on date range using new getActivityDate function.
- Updated LocationSearchMap.svelte to handle airport mode for start and end locations.
- Modified types.ts to include is_global property in CollectionItineraryItem for trip-wide items.
- Updated +page.svelte to integrate the new stats view and manage view state accordingly.

* feat: enhance itinerary management by removing old items on date change for notes and checklists; normalize date handling in CollectionMap

* feat: add functionality to change day and move items to trip-wide itinerary

- Implemented changeDay function in ChecklistCard, LocationCard, LodgingCard, NoteCard, and TransportationCard components to allow users to change the scheduled day of items.
- Added a button to move items to the global (trip-wide) itinerary in the aforementioned components, with appropriate dispatch events.
- Enhanced CollectionItineraryPlanner to handle moving items to the global itinerary and added UI elements for unscheduled items.
- Updated ItineraryDayPickModal to support the deletion of source visits when moving locations.
- Added new translations for "Change Day" and "Move Trip Wide" in the English locale.

* fix: specify full path for python3 in cron job and add shell and path variables

* fix: update appVersion to v0.12.0-pre-dev-010726

* feat: enhance CollectionItineraryPlanner and CollectionStats with dynamic links and transport type normalization

* Add Dev Container + WSL install docs and link in install guide (#944) (#951)

* feat: enhance internationalization support in CollectionMap and CollectionStats components

- Added translation support for various labels and messages in CollectionMap.svelte and CollectionStats.svelte using svelte-i18n.
- Updated English and Chinese locale files to include new translation keys for improved user experience.
- Simplified the rendering of recommendation views in the collections page.

* Refactor itinerary management and UI components

- Updated ItineraryViewSet to handle visit updates and creations more efficiently, preserving visit IDs when moving between days.
- Enhanced ChecklistCard, LodgingCard, TransportationCard, and NoteCard to include a new "Change Day" option in the actions menu.
- Improved user experience in CollectionItineraryPlanner by tracking specific itinerary items being moved and ensuring only the relevant entries are deleted.
- Added new location sharing options in LodgingCard and TransportationCard for Apple Maps, Google Maps, and OpenStreetMap.
- Updated translations in en.json for consistency and clarity.
- Minor UI adjustments for better accessibility and usability across various components.

* feat: implement action menus and close event handling in card components

* feat: refactor Dockerfile and supervisord configuration to remove cron and add periodic sync script

* feat: enhance LocationSearchMap and TransportationDetails components with initialization handling and airport mode logic

* feat: add airport and location search mode labels to localization file

* feat: enhance periodic sync logging and improve airport mode handling in LocationSearchMap

* feat: enhance unscheduled items display with improved card interactions and accessibility

* Add dev compose for hot reload and update WSL dev container docs (#958)

* feat: enhance localization for itinerary linking and transportation components

* Localization: update localization files with new keys and values

* fix: improve error messages for Overpass API responses

* chore: update dependencies in frontend package.json and pnpm-lock.yaml

- Updated @sveltejs/adapter-node from ^5.2.12 to ^5.4.0
- Updated @sveltejs/adapter-vercel from ^5.7.0 to ^6.3.0
- Updated tailwindcss from ^3.4.17 to ^3.4.19
- Updated typescript from ^5.8.3 to ^5.9.3
- Updated vite from ^5.4.19 to ^5.4.21

* chore: update dependencies in pnpm-lock.yaml to latest versions

* Refactor code structure for improved readability and maintainability

* Refactor code structure for improved readability and maintainability

* fix: update package dependencies to resolve compatibility issues

* Add "worldtravel" translations to multiple locale files

- Added "worldtravel" key with translations for Spanish, French, Hungarian, Italian, Japanese, Korean, Dutch, Norwegian, Polish, Brazilian Portuguese, Russian, Slovak, Swedish, Turkish, Ukrainian, and Chinese.
- Updated the navigation section in each locale file to include the new "worldtravel" entry.

* Add new screenshots and update email verification message in locale file

* feat: Implement data restoration functionality with file import

- Added a new action `restoreData` in `+page.server.ts` to handle file uploads for restoring collections.
- Enhanced the UI in `+page.svelte` to include an import button and a modal for import progress.
- Integrated file input handling to trigger form submission upon file selection.
- Removed unused GSAP animations from the login, profile, and signup pages for cleaner code.

* feat: Add modals for creating locations and lodging from recommendations, enhance image import functionality

* fix: Adjust styles to prevent horizontal scroll and enhance floating action button visibility

* feat: Enhance error handling and messaging for Google Maps and OpenStreetMap geocoding functions

* fix: Enhance error messaging for Google Maps access forbidden response

* feat: Add User-Agent header to Google Maps API requests and refine error messaging for access forbidden response

* fix: Update User-Agent header in Google Maps API requests for improved compatibility

* fix: Disable proxy settings in Google Maps API request to prevent connection issues

* fix: Update Trivy security scan configuration and add .trivyignore for known false positives

* fix: Refactor update method to handle is_public cascading for related items

* feat: Integrate django-invitations for user invitation management and update settings

* feat: Add Tailwind CSS and DaisyUI plugin for styling

* feat: Add Tailwind CSS and DaisyUI plugin for styling

* feat: Add "Invite a User" guide and update navigation links

* docs: Update "Invite a User" guide to include email configuration tip

* feat: Update email invitation template for improved styling and clarity

* fix: Remove trailing backslash from installation note in Unraid documentation

* feat: Add export/import messages and user email verification prompts in multiple languages

* Squashed commit of the following:

commit a993a15b93ebb7521ae2e5cc31596b98b29fcd6c
Author: Alex <div@alexe.at>
Date:   Mon Jan 12 20:44:47 2026 +0100

    Translated using Weblate (German)

    Currently translated at 100.0% (1048 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/de/

commit fdc455d9424fbb0f6b72179d9eb1340411700773
Author: Ettore Atalan <atalanttore@googlemail.com>
Date:   Sat Jan 10 23:24:23 2026 +0100

    Translated using Weblate (German)

    Currently translated at 100.0% (1048 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/de/

commit 5942129c55e89dd999a13d4df9c40e6e3189355c
Author: Orhun <orhunavcu@gmail.com>
Date:   Sun Jan 11 13:05:31 2026 +0100

    Translated using Weblate (Turkish)

    Currently translated at 100.0% (1048 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/tr/

commit 8712e43d8ba4a7e7fe163fb454d6577187f9a375
Author: Henrique Fonseca Veloso <henriquefv@tutamail.com>
Date:   Fri Jan 9 22:53:11 2026 +0100

    Translated using Weblate (Portuguese (Brazil))

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/pt_BR/

commit 18ee56653470413afe8d71ecd2b5028f6e4cf118
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:52:57 2026 +0100

    Translated using Weblate (Dutch)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/nl/

commit 57783c544e583c035c8b57b5c10ca320f25f399e
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:52:14 2026 +0100

    Translated using Weblate (Arabic)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/ar/

commit fb09edfd85bc85234b1c1ba7dd499f2915093fff
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:52:26 2026 +0100

    Translated using Weblate (Spanish)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/es/

commit 554a207d8e454a1f7ae826e2a40d389b94be5512
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:52:21 2026 +0100

    Translated using Weblate (German)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/de/

commit b70b9db27fb8607beefeb288185601c8f5eae28d
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:53:02 2026 +0100

    Translated using Weblate (Norwegian Bokmål)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/nb_NO/

commit 3b467caa9007c553e4ae7de97f53b6e462161ea3
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:53:07 2026 +0100

    Translated using Weblate (Polish)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/pl/

commit 30fbbfba3572c8f78ec7c7e1a231e363aca1ef10
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:53:17 2026 +0100

    Translated using Weblate (Russian)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/ru/

commit 8cecb492cfcac0a1f93ee8919f7b41d978d331ee
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:52:42 2026 +0100

    Translated using Weblate (Italian)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/it/

commit f0d3d41029c89bfa83d5891ee7af70241f27b7be
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:52:38 2026 +0100

    Translated using Weblate (Hungarian)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/hu/

commit 102e0f1912d010d38755a1713abb2a7f7564aafb
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:53:21 2026 +0100

    Translated using Weblate (Slovak)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/sk/

commit 428b8f18cf6195a96b55109e0221413d82415a2f
Author: Максим Горпиніч <gorpinicmaksim0@gmail.com>
Date:   Sat Jan 10 08:55:28 2026 +0100

    Translated using Weblate (Ukrainian)

    Currently translated at 100.0% (1048 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/uk/

commit 1a71aaf279ecab26c0c1fede05025732e6dcfa5e
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:53:27 2026 +0100

    Translated using Weblate (Swedish)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/sv/

commit 36ec3701f3a1a904e7c42ac4ffbe6a050dc6d1ed
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:53:43 2026 +0100

    Translated using Weblate (Chinese (Simplified Han script))

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/zh_Hans/

commit 65d8b74b340c877cad2028b7142c783a1b568d49
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:52:48 2026 +0100

    Translated using Weblate (Japanese)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/ja/

commit 4d11d1d31022583657e93aee70301a8ffcde1340
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:52:52 2026 +0100

    Translated using Weblate (Korean)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/ko/

commit bd1135bcb965ad73cf493771b15081cc97cf513a
Author: Orhun <orhunavcu@gmail.com>
Date:   Fri Jan 9 22:53:33 2026 +0100

    Translated using Weblate (Turkish)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/tr/

commit 2c3d814119f4cf2dabd20933699f5b991f20f3e6
Author: Anonymous <noreply@weblate.org>
Date:   Fri Jan 9 22:52:32 2026 +0100

    Translated using Weblate (French)

    Currently translated at 99.9% (1047 of 1048 strings)

    Translation: AdventureLog/Web App
    Translate-URL: https://hosted.weblate.org/projects/adventurelog/web-app/fr/

* Refactor code structure and remove redundant code blocks for improved readability and maintainability

* fix: Correct appVersion to match the latest pre-release version

* fix: Add missing vulnerability reference for jaraco.context in .trivyignore

---------

Co-authored-by: Lars Lehmann <33843261+larsl-net@users.noreply.github.com>
Co-authored-by: Lars Lehmann <lars@lmail.eu>
Co-authored-by: Nick Petrushin <n.a.petrushin@gmail.com>
This commit is contained in:
Sean Morley
2026-01-14 10:22:14 -05:00
committed by GitHub
parent d954ac057d
commit c39ff2449e
206 changed files with 33830 additions and 14254 deletions

View File

@@ -9,10 +9,7 @@
"license_info": "رخصة",
"message": "صنعت مع ❤ في الولايات المتحدة.",
"nominatim_1": "يتم توفير البحث والتشفير الجغرافي بواسطة",
"nominatim_2": "يتم تعزيز بياناتهم بموجب ترخيص ODBL.",
"oss_attributions": "سمات المصدر المفتوح",
"other_attributions": "يمكن العثور على سمات إضافية في ملف ReadMe.",
"source_code": "رمز المصدر",
"sponsor": "راعي",
"thank_you": "شكرا لك على استخدام المغامرة!",
"version": "إصدار",
@@ -20,40 +17,28 @@
"view_license": "عرض الترخيص"
},
"adventures": {
"actions": "الإجراءات",
"activity_types": "أنواع النشاط",
"add": "يضيف",
"add_a_tag": "إضافة علامة",
"add_new": "أضف جديد ...",
"add_notes": "أضف ملاحظات",
"add_to_collection": "إضافة إلى المجموعة",
"adventure": "مفامرة",
"adventure_calendar": "تقويم المغامرة",
"adventure_not_found": "لا توجد مغامرات لعرضها. \nأضف بعضًا باستخدام الزر Plus في أسفل اليمين أو حاول تغيير المرشحات!",
"adventures_available": "المغامرات المتاحة",
"all": "الجميع",
"all_adventures_already_linked": "جميع المغامرات مرتبطة بالفعل بهذه المجموعة.",
"all_day": "طوال اليوم",
"all_linked_items": "جميع العناصر المرتبطة",
"archive": "أرشيف",
"archived": "أرشفة",
"archived_collection_message": "مجموعة أرشفة بنجاح!",
"archived_collections": "مجموعات أرشفة",
"arrival_date": "تاريخ الوصول",
"arrival_timezone": "وصول المنطقة الزمنية",
"ascending": "تصاعدي",
"attachment": "مرفق",
"attachment_delete_success": "تم حذف المرفق بنجاح!",
"attachment_name": "اسم المرفق",
"attachment_update_error": "خطأ تحديث المرفق",
"attachment_update_success": "تم تحديث المرفق بنجاح!",
"attachment_upload_error": "خطأ في تحميل المرفق",
"attachment_upload_success": "تم تحميل المرفق بنجاح!",
"attachments": "المرفقات",
"basic_information": "المعلومات الأساسية",
"cancel": "يلغي",
"category": "فئة",
"category_fetch_error": "خطأ جلب فئات",
"category_filter": "مرشح فئة",
"check_in": "تحقق في",
"check_out": "الدفع",
@@ -63,20 +48,13 @@
"cities_updated": "تحديث المدن",
"city": "مدينة",
"clear": "واضح",
"clear_location": "موقع واضح",
"clear_map": "خريطة واضحة",
"collection": "مجموعة",
"collection_adventures": "تضمين مغامرات التجميع",
"collection_archived": "تم أرشفة هذه المجموعة.",
"collection_completed": "لقد أكملت هذه المجموعة!",
"collection_contents": "محتويات جمع",
"collection_link_location_error": "خطأ في ربط الموقع بالجمع",
"collection_link_location_success": "الموقع مرتبط بجمع بنجاح!",
"collection_locations": "تشمل مواقع التجميع",
"collection_no_start_end_date": "ستؤدي إضافة تاريخ البدء والنهاية إلى المجموعة إلى إلغاء قفل ميزات تخطيط خط الرحلة في صفحة التجميع.",
"collection_remove_location_error": "خطأ إزالة الموقع من المجموعة",
"collection_remove_location_success": "الموقع تمت إزالته من المجموعة بنجاح!",
"collection_stats": "إحصائيات التجميع",
"collections_linked": "مجموعات مرتبطة",
"coordinates": "الإحداثيات",
"copied_to_clipboard": "نسخ إلى الحافظة!",
@@ -86,7 +64,6 @@
"date": "تاريخ",
"date_constrain": "تقييد تواريخ التجميع",
"date_information": "معلومات التاريخ",
"date_itinerary": "خط سير الرحلة",
"dates": "بلح",
"day": "يوم",
"days": "أيام",
@@ -99,48 +76,34 @@
"delete_lodging": "حذف الإقامة",
"delete_note": "حذف الملاحظة",
"delete_transportation": "حذف النقل",
"departure_date": "تاريخ المغادرة",
"departure_timezone": "المنطقة الزمنية المغادرة",
"descending": "النزول",
"description": "وصف",
"details": "تفاصيل",
"display_name": "اسم العرض",
"distance": "مسافة",
"done": "منتهي",
"download_calendar": "تنزيل التقويم",
"duration": "مدة",
"edit_adventure": "تحرير المغامرة",
"edit_collection": "تحرير مجموعة",
"edit_location": "تحرير الموقع",
"emoji_picker": "منتقي الرموز التعبيرية",
"end": "نهاية",
"end_date": "تاريخ الانتهاء",
"ending_airport": "إنهاء المطار",
"error_updating_regions": "خطأ تحديث المناطق",
"fetch_image": "جلب الصورة",
"filter": "فلتر",
"filters_and_sort": "المرشحات",
"filters_and_stats": "المرشحات",
"finding_recommendations": "اكتشاف الأحجار الكريمة المخفية لمغامرتك القادمة",
"flight_information": "معلومات الطيران",
"from": "من",
"generate_desc": "توليد الوصف",
"gpx_tip": "قم بتحميل ملفات GPX إلى المرفقات لعرضها على الخريطة!",
"hide": "يخفي",
"homepage": "الصفحة الرئيسية",
"image": "صورة",
"image_fetch_failed": "فشل في جلب الصورة",
"image_modal_navigate": "استخدم مفاتيح الأسهم أو انقر للتنقل",
"image_removed_error": "خطأ إزالة الصورة",
"image_removed_success": "تمت إزالة الصورة بنجاح!",
"image_upload_error": "خطأ في تحميل الصورة",
"image_upload_success": "تم تحميل الصورة بنجاح!",
"images": "الصور",
"invalid_date_range": "نطاق تاريخ غير صالح",
"itineary_by_date": "خط سير الرحلة حسب التاريخ",
"itinerary": "خط سير الرحلة",
"joined": "انضم",
"keep_exploring": "استمر في الاستكشاف!",
"latitude": "خط العرض",
"leave": "يترك",
"leave_collection": "ترك مجموعة",
@@ -148,59 +111,36 @@
"left_collection_message": "مجموعة تركت بنجاح",
"link": "وصلة",
"link_new": "ربط جديد ...",
"linked_adventures": "مغامرات مرتبطة",
"links": "الروابط",
"loading_adventures": "تحميل المغامرات ...",
"loading_collections": "مجموعات التحميل ...",
"location": "موقع",
"location_create_error": "فشل في إنشاء موقع",
"location_created": "الموقع الذي تم إنشاؤه",
"location_delete_confirm": "هل أنت متأكد أنك تريد حذف هذا الموقع؟ \nلا يمكن التراجع عن هذا الإجراء.",
"location_delete_success": "تم حذف الموقع بنجاح!",
"location_details": "تفاصيل الموقع",
"location_information": "معلومات الموقع",
"location_not_found": "الموقع غير موجود",
"location_not_found_desc": "لا يمكن العثور على الموقع الذي كنت تبحث عنه. \nيرجى تجربة موقع مختلف أو التحقق مرة أخرى لاحقًا.",
"location_update_error": "فشل في تحديث الموقع",
"location_updated": "الموقع محدث",
"lodging": "إقامة",
"lodging_delete_confirm": "هل أنت متأكد من أنك تريد حذف موقع الإقامة هذا؟ \nلا يمكن التراجع عن هذا الإجراء.",
"lodging_information": "معلومات السكن",
"longitude": "خط الطول",
"mark_visited": "مارك زار",
"md_instructions": "اكتب تخفيضك هنا ...",
"my_adventures": "مغامراتي",
"my_collections": "مجموعاتي",
"my_images": "صوري",
"name": "اسم",
"name_location": "الاسم ، الموقع",
"new_location": "موقع جديد",
"no_adventures_found": "لم يتم العثور على مغامرات",
"no_adventures_message": "ابدأ في توثيق مغامراتك والتخطيط لمغامراتك الجديدة. \nكل رحلة لديها قصة تستحق سرد.",
"no_collections_to_add_location": "لم يتم العثور على مجموعات لإضافة هذا الموقع إلى.",
"no_description_found": "لم يتم العثور على وصف",
"no_image_found": "لم يتم العثور على صورة",
"no_image_url": "لم يتم العثور على صورة في عنوان URL هذا.",
"no_images": "لا توجد صور",
"no_linkable_adventures": "لم يتم العثور على مغامرات يمكن ربطها بهذه المجموعة.",
"no_location": "الرجاء إدخال موقع",
"no_location_found": "لم يتم العثور على موقع",
"no_locations_found": "لم يتم العثور على مواقع",
"no_locations_to_recommendations": "لم يتم العثور على مواقع. \nإضافة موقع واحد على الأقل للحصول على توصيات.",
"no_ordered_items": "أضف عناصر مع تواريخ إلى المجموعة لرؤيتها هنا.",
"no_results": "لم يتم العثور على نتائج",
"no_visits": "لا زيارات",
"not_visited": "لم يزور",
"note": "ملحوظة",
"note_delete_confirm": "هل أنت متأكد من أنك تريد حذف هذه الملاحظة؟ \nلا يمكن التراجع عن هذا الإجراء.",
"notes": "ملحوظات",
"nothing_planned": "لا شيء مخطط لهذا اليوم. \nاستمتع بالرحلة!",
"open_details": "تفاصيل مفتوحة",
"open_filters": "مرشحات مفتوحة",
"open_in_maps": "مفتوح في الخرائط",
"order_by": "ترتيب",
"order_direction": "اتجاه الطلب",
"ordered_itinerary": "طلب خط سير",
"out_of_range": "ليس في نطاق تاريخ الرحلة",
"planned": "المخطط",
"preview": "معاينة",
@@ -214,22 +154,15 @@
"regions_updated": "تحديث المناطق",
"remove": "يزيل",
"remove_from_collection": "ترفع من المجموعة",
"reservation_number": "رقم الحجز",
"save_next": "يحفظ",
"search_for_location": "ابحث عن موقع",
"search_results": "نتائج البحث",
"see_adventures": "انظر المغامرات",
"set_to_pin": "ضبط على دبوس",
"share": "يشارك",
"share_collection": "شارك هذه المجموعة!",
"share_location": "شارك هذا الموقع!",
"show": "يعرض",
"sort": "نوع",
"sources": "مصادر",
"start": "يبدأ",
"start_before_end_error": "يجب أن يكون تاريخ البدء قبل تاريخ الانتهاء",
"start_date": "تاريخ البدء",
"starting_airport": "بدء المطار",
"sun_times": "أوقات الشمس",
"sunrise": "شروق الشمس",
"sunset": "غروب",
@@ -244,31 +177,20 @@
"unarchive": "unarchive",
"unarchived_collection_message": "جمع unarchived بنجاح!",
"update_visited_regions": "تحديث المناطق التي تمت زيارتها",
"update_visited_regions_disclaimer": "قد يستغرق هذا بعض الوقت اعتمادًا على عدد المغامرات التي قمت بزيارتها.",
"updated": "تحديث",
"upload": "رفع",
"upload_image": "تحميل الصورة",
"url": "عنوان URL",
"view_profile": "عرض الملف الشخصي",
"visit": "يزور",
"visit_calendar": "زيارة التقويم",
"visit_link": "قم بزيارة الرابط",
"visited": "زار",
"visited_region_check": "تمت زيارة المنطقة التي تمت زيارتها",
"visited_region_check_desc": "من خلال اختيار ذلك ، سيقوم الخادم بفحص جميع مغامراتك التي تمت زيارتك وتمييز المناطق التي تقع فيها كما تمت زيارتها في World Travel.",
"visits": "زيارات",
"warning": "تحذير",
"wiki_image_error": "خطأ جلب الصورة من ويكيبيديا",
"wiki_location_desc": "يسحب مقتطفات من مقالة ويكيبيديا تطابق اسم الموقع.",
"wikipedia": "ويكيبيديا",
"will_be_marked_location": "سيتم تمييزها كما تمت زيارتها بمجرد حفظ الموقع.",
"copy_link": "نسخ الوصلة",
"count_txt": "النتائج مطابقة بحثك",
"create_collection_first": "قم بإنشاء مجموعة أولاً لتنظيم مغامراتك وذكرياتك.",
"create_location": "إنشاء الموقع",
"achievements": "الإنجازات",
"active_duration": "مدة نشطة",
"activities_name": "أنشطة",
"activity_name": "اسم النشاط",
"activity_name_placeholder": "تشغيل الصباح",
"activity_name_required": "اسم النشاط مطلوب",
@@ -356,13 +278,11 @@
"select_on_map": "حدد على الخريطة",
"select_wanderer_trail": "حدد مسارًا من حساب Wanderer الخاص بك",
"sport_type": "نوع الرياضة",
"sport_type_placeholder": "درب الجري",
"start_lat": "ابدأ خط العرض",
"start_lng": "ابدأ خط الطول",
"strava_activities_during_visit": "أنشطة سترافا أثناء الزيارة",
"strava_activity_ready": "نشاط سترافا جاهز",
"time": "وقت",
"total_covered": "إجمالي مغطى",
"total_recorded": "المسجل مجموع",
"trail": "أثر",
"trail_created_successfully": "تم إنشاء درب بنجاح",
@@ -403,19 +323,7 @@
"low": "قليل",
"rest": "استراحة",
"total": "المجموع",
"attachment_removed_error": "خطأ إزالة المرفق",
"attachment_removed_success": "مرفق تمت إزالته بشجاعة",
"attachments_upload_info": "سيتم تحميل المرفقات بعد حفظ",
"image_upload_info": "سيتم تحميل الصور بعد حفظ",
"linked_locations": "المواقع المرتبطة",
"lodging_save_error": "خطأ حفظ الإقامة",
"my_attachments": "مرفقاتي",
"no_attachments": "لا مرفقات",
"no_attachments_desc": "تحميل الملفات للبدء",
"no_images_desc": "تحميل الصور للبدء",
"route_map": "خريطة الطريق",
"selected_attachments": "مرفقات محددة",
"selected_images": "صور محددة",
"activities_text": "أنشطة",
"activity_breakdown_by_category": "انهيار النشاط حسب الفئة",
"distance_covered": "مسافة مغطاة",
@@ -424,7 +332,109 @@
"total_climbed": "مجموع تسلق",
"total_distance": "إجمالي المسافة",
"dates_not_saved": "زيارة لم تتم إضافتها بعد",
"dates_not_saved_description": "انقر فوق إضافة زيارة إلى حفظ"
"dates_not_saved_description": "انقر فوق إضافة زيارة إلى حفظ",
"active_days": "الأيام النشطة",
"add_here": "أضف هنا",
"airport_code_examples": "جون كنيدي، لوس أنجلوس، LHR...",
"airport_search_mode": "وضع البحث في المطار",
"all_locations_already_linked": "جميع المواقع مرتبطة بالفعل بهذه المجموعة.",
"arrival_airport": "مطار الوصول",
"avg_rating": "متوسط ​​التقييم",
"burned": "أحرق",
"categories": "فئات",
"cities": "المدن",
"clear_search": "مسح البحث",
"click_map_add_marker": "انقر على الخريطة لإسقاط العلامة، ثم قم بإضافتها هنا.",
"completed": "مكتمل",
"content_media": "محتوى",
"countries": "بلدان",
"country": "دولة",
"departure_airport": "مطار المغادرة",
"distance_traveled": "المسافة المقطوعة",
"end_location": "موقع النهاية",
"enter_location_display_name": "أدخل اسم عرض الموقع",
"files": "ملفات",
"flight": "رحلة جوية",
"folder": "مجلد",
"folder_view": "عرض المجلد - إظهار كافة البيانات",
"footprints": "آثار أقدام",
"gained": "اكتسب",
"geographic_breakdown": "الانهيار الجغرافي",
"gpx_routes": "طرق جي بي إكس",
"hide_filters": "إخفاء عوامل التصفية",
"images_captured": "الصور الملتقطة",
"in": "في",
"in_progress": "في تَقَدم",
"items": "أغراض",
"itinerary_link_modal": {
"add_here": "أضف هنا",
"add_here_keep_date": "إضافة (الاحتفاظ بالتاريخ)",
"add_to_itinerary": "أضف إلى خط سير الرحلة",
"already_added": "تمت إضافتها بالفعل",
"already_added_on_this_day": "تمت إضافتها بالفعل في هذا اليوم",
"already_added_on_this_day_desc": "تمت جدولة هذه العناصر بالفعل لهذا اليوم.",
"already_added_other_days": "تمت إضافتها بالفعل في أيام أخرى",
"already_added_other_days_desc": "تتم جدولة هذه العناصر في تواريخ مختلفة. \nستؤدي إضافتها هنا إلى تحديث تاريخها أو إضافتها كما هي.",
"items_available": "{count} من العناصر المتاحة للربط",
"items_on_other_days": "العناصر في أيام أخرى",
"items_on_other_days_desc": "هذه العناصر لها تواريخ مختلفة. \nيمكنك إضافتها وتحديث تاريخها بشكل اختياري للمطابقة.",
"items_on_this_day": "العناصر في هذا اليوم",
"no_unscheduled_items": "لا توجد عناصر غير مجدولة المتاحة",
"no_unscheduled_items_desc": "تمت إضافة جميع العناصر إلى خط سير الرحلة أو لا توجد عناصر لإضافتها.",
"title": "ربط العناصر بـ {date}"
},
"link_copied": "تم نسخ الرابط",
"lists": "القوائم",
"location_search_mode": "وضع البحث عن الموقع",
"locations_visited": "المواقع التي تمت زيارتها",
"lodging_not_found": "لم يتم العثور على السكن",
"lodging_types": "أنواع السكن",
"more_details": "مزيد من التفاصيل",
"my_locations": "مواقعي",
"nights": "ليالي",
"no_linkable_locations": "لم يتم العثور على مواقع يمكن ربطها بهذه المجموعة.",
"of_locations": "من المواقع",
"on_this_trip": "في هذه الرحلة",
"overnight": "بين عشية وضحاها",
"physical_activities": "الأنشطة البدنية",
"pins": "دبابيس",
"places": "الأماكن",
"regions": "المناطق",
"reservation": "حجز",
"reset_filters": "إعادة ضبط",
"route": "طريق",
"route_selected": "الطريق المحدد",
"routes_and_activities": "الطرق",
"saving": "توفير",
"search_end_location": "موقع نهاية البحث",
"search_start_end_locations": "البحث عن مواقع البداية والنهاية",
"search_start_location": "موقع بدء البحث",
"segments": "شرائح",
"select": "يختار",
"show_filters": "إظهار عوامل التصفية",
"start_location": "ابدأ الموقع",
"status_filter": "مرشح الحالة",
"stays": "يبقى",
"tasks_done": "تم إنجاز المهام",
"total_days": "إجمالي الأيام",
"total_visits": "إجمالي الزيارات",
"transport_activity_paths": "ينقل",
"transportation_gpx_tip": "قم بتحميل ملفات GPX هنا لعرضها على الخريطة",
"traveled": "سافر",
"travelers": "المسافرون",
"trip_timeline": "الجدول الزمني للرحلة",
"trip_window": "نافذة الرحلة",
"upcoming": "القادمة",
"view": "منظر",
"wiki_results_found": "نتائج ويكيبيديا",
"with_activities": "مع الأنشطة",
"written": "مكتوب",
"export_failed": "فشل التصدير",
"export_success": "المجموعة المصدرة",
"export_zip": "تصدير الرمز البريدي",
"import_failed": "فشل الاستيراد",
"import_from_file": "استيراد من ملف",
"import_success": "نجاح الاستيراد"
},
"auth": {
"confirm_password": "تأكيد كلمة المرور",
@@ -441,7 +451,6 @@
"password": "كلمة المرور",
"profile_picture": "صورة الملف الشخصي",
"public_profile": "ملف تعريف عام",
"public_tooltip": "باستخدام ملف تعريف عام ، يمكن للمستخدمين مشاركة المجموعات معك وعرض ملفك الشخصي على صفحة المستخدمين.",
"registration_disabled": "التسجيل معاق حاليا.",
"signup": "اشتراك",
"user_collections": "مجموعات المستخدم",
@@ -450,7 +459,8 @@
"enter_password": "أدخل كلمة المرور الخاصة بك",
"enter_username": "أدخل اسم المستخدم الخاص بك",
"logging_in": "تسجيل الدخول",
"totp": "رمز ثنائي العوامل"
"totp": "رمز ثنائي العوامل",
"user_email_verification_required": "التحقق من البريد الإلكتروني مطلوب. \nيرجى التحقق من بريدك الإلكتروني للحصول على رابط التحقق."
},
"calendar": {
"all_day_event": "الحدث طوال اليوم",
@@ -461,7 +471,9 @@
"month": "شهر",
"today": "اليوم",
"total_events": "الأحداث الكلية",
"week": "أسبوع"
"week": "أسبوع",
"event timezone": "المنطقة الزمنية للحدث",
"your timezone": "منطقتك الزمنية"
},
"categories": {
"add_new_category": "أضف فئة جديدة",
@@ -514,10 +526,23 @@
"no_shared_collections": "لا مجموعات مشتركة.",
"public_collection": "مجموعة عامة",
"shared_collections": "مجموعات مشتركة",
"try_different_search": "جرب بحثًا مختلفًا أو تصفية."
"try_different_search": "جرب بحثًا مختلفًا أو تصفية.",
"changing_date_title": "سيؤثر تغيير التواريخ على عناصر خط سير الرحلة",
"changing_date_warning": "ستتم إزالة أي عناصر خط سير الرحلة خارج النطاق الزمني الجديد من خط سير الرحلة وإعادتها إلى عناصر المجموعة غير المؤرخة.",
"clear_cover": "غطاء واضح",
"collaborators": "المتعاونون",
"cover": "غطاء",
"cover_image": "صورة الغلاف",
"cover_image_hint": "اختر غلافًا من الصور الموجودة في هذه المجموعة.",
"create_new_collection": "إنشاء مجموعة جديدة",
"enter_collection_name": "أدخل اسم المجموعة",
"location_primary": "غطاء الموقع",
"no_images_available": "لا توجد صور متاحة من المواقع المرتبطة حتى الآن.",
"public_collection_description": "اسمح لأي شخص لديه الرابط بالمشاهدة",
"set_cover": "تعيين الغطاء",
"update_collection_details": "تفاصيل مجموعة Updte"
},
"dashboard": {
"add_some": "لماذا لا تبدأ في التخطيط لمغامرتك القادمة؟ \nيمكنك إضافة مغامرة جديدة بالنقر فوق الزر أدناه.",
"countries_visited": "الدول التي تمت زيارتها",
"document_some_adventures": "ابدأ في توثيق رحلاتك وبناء خريطة المغامرة الشخصية!",
"no_recent_adventures": "لا مغامرات حديثة؟",
@@ -587,8 +612,6 @@
"loading_albums": "ألبومات تحميل",
"no_images": "لم يتم العثور على صور",
"select_album": "حدد الألبوم",
"select_album_first": "حدد ألبوم أولاً",
"select_date": "حدد التاريخ",
"try_different_date": "جرب تاريخًا مختلفًا"
},
"invites": {
@@ -628,16 +651,12 @@
"villa": "فيلا",
"create_new_lodging": "سكن جديد",
"enter_lodging_name": "أدخل اسم الإقامة",
"enter_price": "أدخل السعر",
"enter_reservation_number": "أدخل رقم الحجز",
"update_lodging_details": "تحديث تفاصيل الإقامة"
},
"map": {
"add_adventure": "أضف مغامرة جديدة",
"add_adventure_at_marker": "أضف مغامرة جديدة في علامة",
"add_location": "أضف موقعًا جديدًا",
"add_location_at_marker": "أضف موقعًا جديدًا في Marker",
"adventure_map": "خريطة المغامرة",
"adventure_stats": "احصائيات المغامرة",
"clear_marker": "علامة واضحة",
"completion": "انتهاء",
@@ -645,19 +664,16 @@
"location_map": "خريطة الموقع",
"locations_shown": "المواقع الموضحة",
"map_controls": "أدوات التحكم في الخريطة",
"map_options": "خيارات الخريطة",
"marker_placed_on_map": "وضعت علامة على الخريطة",
"place_marker_desc_location": "انقر على الخريطة لوضع علامة.",
"regions": "المناطق",
"show_visited_regions": "عرض المناطق التي تمت زيارتها",
"view_details": "عرض التفاصيل",
"show_activities": "إظهار الأنشطة",
"show_visited_cities": "زار المدن"
"show_visited_cities": "زار المدن",
"search_locations": "مواقع البحث..."
},
"navbar": {
"about": "حول المغامرة",
"admin_panel": "لوحة المسؤول",
"adventures": "مغامرات",
"calendar": "تقويم",
"collections": "مجموعات",
"documentation": "الوثائق",
@@ -665,14 +681,11 @@
"language_selection": "لغة",
"logout": "تسجيل الخروج",
"map": "رسم خريطة",
"my_adventures": "مغامراتي",
"my_tags": "علاماتي",
"profile": "حساب تعريفي",
"search": "يبحث",
"settings": "إعدادات",
"shared_with_me": "شارك معي",
"support": "يدعم",
"tag": "علامة",
"theme_selection": "اختيار الموضوع",
"themes": {
"aestheticDark": "جمالية الظلام",
@@ -686,11 +699,10 @@
"northernLights": "الأضواء الشمالية"
},
"users": "المستخدمون",
"worldtravel": "السفر العالمي",
"navigation": "ملاحة"
"navigation": "ملاحة",
"worldtravel": "السفر العالمي"
},
"notes": {
"add_a_link": "أضف رابطًا",
"content": "محتوى",
"editing_note": "ملاحظة التحرير",
"failed_to_save": "فشل في حفظ الملاحظة",
@@ -716,7 +728,6 @@
"planned_trips": "الرحلات المخطط لها",
"public_location_experiences": "تجارب الموقع العام",
"travel_statistics": "إحصائيات السفر",
"user_stats": "إحصائيات المستخدم",
"visited_cities": "زار المدن",
"visited_countries": "زار البلدان",
"visited_regions": "تمت زيارة المناطق",
@@ -724,18 +735,35 @@
},
"recomendations": {
"food": "طعام",
"location_recommendations": "توصيات الموقع",
"recommendation": "توصية",
"recommendations": "التوصيات",
"tourism": "السياحة"
"tourism": "السياحة",
"any": "أي",
"average_rating": "متوسط ​​التقييم",
"discover_places": "اكتشف الأماكن",
"lodging": "الفنادق",
"map_view": "عرض الخريطة",
"minimum_rating": "الحد الأدنى للتقييم",
"minimum_reviews": "الحد الأدنى من المراجعات",
"no_results_yet": "لا توجد نتائج حتى الآن",
"open_now_only": "افتح الآن فقط",
"search_around_location": "البحث حول الموقع",
"search_by_address": "البحث حسب العنوان",
"search_radius_label": "نطاق البحث:",
"searching": "جارٍ البحث...",
"select_location_or_query": "حدد موقعًا أو أدخل استعلام بحث لاكتشاف الأماكن الرائعة القريبة!",
"total_results": "النتائج الإجمالية",
"use_search_instead": "استخدم البحث بدلاً من ذلك",
"add_location": "أضف الموقع",
"add_lodging": "أضف السكن",
"away": "بعيد",
"hours": "ساعات",
"open": "يفتح",
"your_location": "موقعك"
},
"search": {
"adventurelog_results": "نتائج المغامرة",
"cities": "المدن",
"countries": "بلدان",
"found": "وجد",
"online_results": "نتائج عبر الإنترنت",
"public_adventures": "المغامرات العامة",
"result": "نتيجة",
"results": "نتائج",
"try_searching_desc": "حاول البحث عن المغامرات أو المجموعات أو البلدان أو المناطق أو المدن أو المستخدمين."
@@ -890,14 +918,10 @@
"settings_download_backup": "تنزيل النسخ الاحتياطي",
"share": {
"available": "متاح",
"go_to_settings": "انتقل إلى الإعدادات",
"no_shared_found": "لم يتم العثور على مجموعات مشتركة معك.",
"no_users_shared": "لم يشارك أي مستخدمين معهم",
"not_shared_with": "لم يتم مشاركتها مع",
"pending": "قيد الانتظار",
"revoke_invite": "إلغاء دعوة",
"send_invite": "أرسل دعوة",
"set_public": "من أجل السماح للمستخدمين بمشاركتك معك ، تحتاج إلى تعيين ملفك الشخصي إلى الأماكن العامة.",
"share_desc": "شارك هذه المجموعة مع المستخدمين الآخرين.",
"shared": "مشترك",
"shared_with": "مشترك مع",
@@ -911,15 +935,11 @@
"unshare_failed": "فشل Unshare"
},
"strava": {
"account_connected": "حساب متصل",
"admin_setup_required": "يجب على مسؤول الخادم تمكينه على مستوى العالم",
"authorization_error": "خطأ إعادة توجيه إلى عنوان URL لترخيص Strava",
"connect_account": "اتصال حساب",
"disconnect": "قطع الاتصال",
"disconnect_error": "خطأ الانفصال عن سترافا",
"disconnected": "تم قطع الاتصال بنجاح عن Strava",
"not_configured": "Strava لم يتم تكوينه",
"ready_to_connect": "جاهز للاتصال",
"strava_integration_desc": "اتصل بـ Strava لاستيراد التنشيطات الخاصة بك بسهولة إلى مواقع وزيارات",
"gpx_required": "يرجى تحميل ملف GPX لإكمال استيراد Strava",
"not_enabled": "لا يتم تمكين تكامل Strava في هذه الحالة."
@@ -927,8 +947,6 @@
"transportation": {
"edit": "يحرر",
"edit_transportation": "تحرير النقل",
"ending_airport_desc": "أدخل رمز المطار النهائي (على سبيل المثال ، LAX)",
"fetch_location_information": "جلب معلومات الموقع",
"flight_number": "رقم الرحلة",
"from_location": "من الموقع",
"modes": {
@@ -942,7 +960,6 @@
"walking": "المشي"
},
"new_transportation": "نقل جديد",
"starting_airport_desc": "أدخل رمز المطار بدء (على سبيل المثال ، JFK)",
"to_location": "إلى الموقع",
"transportation_delete_error": "خطأ حذف النقل",
"transportation_deleted": "تم حذف النقل بنجاح!",
@@ -954,7 +971,13 @@
"enter_to_location": "أدخل إلى الموقع",
"enter_transportation_name": "أدخل اسم النقل",
"select_type": "حدد النوع",
"update_transportation_details": "تحديث تفاصيل النقل"
"update_transportation_details": "تحديث تفاصيل النقل",
"arrival_code": "رمز الوصول",
"arrival_date": "تاريخ الوصول",
"arrival_timezone": "المنطقة الزمنية للوصول",
"departure_code": "رمز المغادرة",
"departure_date": "تاريخ المغادرة",
"departure_timezone": "منطقة المغادرة الزمنية"
},
"users": {
"no_users_found": "لم يتم العثور على مستخدمين مع ملفات تعريف عامة."
@@ -965,18 +988,14 @@
"wanderer_integration_desc": "اتصل بـ Wanderer لاستيراد مساراتك بسهولة وعرضها في المواقع"
},
"worldtravel": {
"all": "الجميع",
"all_regions": "جميع المناطق",
"all_subregions": "جميع المناطق الفرعية",
"available_to_explore": "متاح لاستكشاف",
"cities": "المدن",
"cities_in": "المدن في",
"clear_all": "مسح كل شيء",
"clear_all_filters": "مسح جميع المرشحات",
"clear_filters": "مرشحات واضحة",
"clear_search": "بحث واضح",
"complete": "مكتمل",
"completely_visited": "زار تماما",
"countries": "بلدان",
"country_completed": "أكملت البلد",
"country_list": "قائمة البلد",
@@ -988,19 +1007,14 @@
"hide_map_labels": "إخفاء ملصقات الخريطة",
"interactive_map": "خريطة تفاعلية",
"marked_visited": "تم وضع علامة كما تمت زيارته",
"newest_first": "أحدث أولا",
"no_cities_found": "لم يتم العثور على مدن",
"no_countries_found": "لم يتم العثور على دول",
"no_countries_found_desc": "حاول ضبط مصطلحات البحث أو المرشحات للعثور على البلدان التي تبحث عنها.",
"no_country_data_available": "لا توجد بيانات بلد متاحة",
"no_country_data_available_desc": "يرجى التحقق من الوثائق لتحديث بيانات المنطقة.",
"no_regions_found": "لم يتم العثور على مناطق",
"not_visited": "لم يزور",
"num_countries": "وجدت البلدان",
"of": "ل",
"oldest_first": "الأقدم الأول",
"partial": "جزئي",
"partially_visited": "زار جزئيا",
"progress": "تقدم",
"progress_and_stats": "تقدم",
"region_completed": "اكتملت المنطقة",
@@ -1012,13 +1026,10 @@
"show_map_labels": "عرض ملصقات الخريطة",
"total_cities": "إجمالي المدن",
"total_countries": "إجمالي البلدان",
"total_items": "إجمالي العناصر",
"total_regions": "إجمالي المناطق",
"unvisited_first": "غير زيارة أولا",
"view_cities": "عرض المدن",
"visit_remove_failed": "فشل في إزالة الزيارة",
"visit_to": "زيارة",
"visited_first": "زار أولاً",
"getting_location_details": "الحصول على تفاصيل الموقع",
"cities_available": "المدن المتاحة",
"destination_revealed": "كشفت الوجهة!",
@@ -1038,6 +1049,84 @@
"about_country": "حول البلد",
"about_region": "حول المنطقة",
"show_less": "عرض أقل",
"show_more": "عرض المزيد",
"all_locations_visited": "جميع المواقع التي تمت زيارتها!"
},
"collections": {
"all_items": "كافة العناصر",
"currencies": "العملات",
"currency": "عملة",
"event_timezone": "المنطقة الزمنية للحدث",
"event_timezone_desc": "تستخدم المنطقة الزمنية للحدث المنطقة الزمنية للموقع أو العنصر عندما يكون ذلك متاحًا. \nتستخدم المنطقة الزمنية الخاصة بي",
"events": "الأحداث",
"local_timezone": "منطقتي الزمنية",
"no_calendar_events": "لم تتم جدولة أي زيارات لهذه المجموعة حتى الآن.",
"no_priced_items": "أضف الأسعار إلى المواقع أو أماكن الإقامة أو وسائل النقل لمعرفة إجمالي الرحلات حسب العملة.",
"not_found": "لم يتم العثور على المجموعة",
"statistics": "إحصائيات",
"times_shown_in": "الأوقات المعروضة في",
"trip_costs": "تكاليف الرحلة"
},
"common": {
"show_less": "إخفاء التفاصيل",
"show_more": "عرض المزيد"
},
"currencies": {
"AED": "درهم اماراتي",
"AUD": "الدولار الأسترالي",
"BRL": "ريال برازيلي",
"CAD": "الدولار الكندي",
"CHF": "الفرنك السويسري",
"CNY": "اليوان الصيني",
"DKK": "كرونة دنماركية",
"EUR": "اليورو",
"GBP": "الجنيه البريطاني",
"HKD": "دولار هونج كونج",
"INR": "الروبية الهندية",
"JPY": "الين الياباني",
"MXN": "البيزو المكسيكي",
"NOK": "كرونة نرويجية",
"NZD": "الدولار النيوزيلندي",
"SEK": "الكرونا السويدية",
"SGD": "دولار سنغافوري",
"TRY": "الليرة التركية",
"USD": "الدولار الأمريكي",
"ZAR": "راند جنوب أفريقيا",
"no_matches": "لا توجد مباريات",
"search": "عملة البحث",
"select_currency": "اختر العملة"
},
"itinerary": {
"add_description": "أضف الوصف",
"add_to_day": "أضف إلى اليوم",
"add_to_trip_context": "أضف سياق الرحلة",
"added_to_trip_context": "تمت إضافتها إلى سياق الرحلة",
"auto_generate": "إنشاء تلقائي",
"auto_generate_itinerary": "إنشاء خط سير الرحلة تلقائيًا",
"auto_generate_itinerary_desc": "تحتوي هذه المجموعة على عناصر مؤرخة ولكن لا يوجد خط سير للرحلة حتى الآن. \nهل ترغب في تنظيمها تلقائيًا حسب التاريخ؟",
"change_day": "يوم التغيير",
"drag_to_reorder": "اسحب لإعادة الترتيب",
"failed_to_add_to_trip_context": "فشلت إضافة عنصر إلى سياق الرحلة",
"failed_to_move_to_trip_context": "فشل الانتقال إلى سياق الرحلة",
"generating": "توليد",
"item_already_in_trip_context": "العناصر الموجودة بالفعل في سياق الرحلة",
"item_not_found": "لم يتم العثور على العنصر",
"item_remove_error": "حدث خطأ أثناء إزالة العنصر من خط سير الرحلة",
"item_remove_success": "تمت إزالة العنصر من خط سير الرحلة",
"link_existing_item": "ربط العنصر الموجود",
"move_to_trip_context": "انتقل إلى سياق الرحلة",
"moved_to_trip_context": "تم النقل إلى سياق الرحلة",
"multi_day": "متعدد الأيام",
"no_itinerary_yet": "لا يوجد خط سير حتى الآن",
"no_plans_for_day": "لا توجد خطط لهذا اليوم",
"no_trip_context_items": "لا توجد عناصر سياق الرحلة حتى الآن.",
"remove_from_itinerary": "إزالة من اليوم",
"remove_from_trip_context": "إزالة من السياق",
"start_planning": "ابدأ التخطيط لرحلتك عن طريق إضافة عناصر إلى أيام محددة.",
"staying_overnight": "البقاء بين عشية وضحاها",
"trip_context": "سياق الرحلة",
"trip_context_info": "تنطبق عناصر سياق الرحلة على الرحلة بأكملها — على سبيل المثال المواقع التي تمثل الوجهة نفسها، أو الملاحظات العامة، أو قوائم التعبئة المهمة للرحلة بأكملها.",
"unscheduled_items": "العناصر غير المجدولة",
"unscheduled_items_desc": "ترتبط هذه العناصر بهذه الرحلة ولكن لم تتم إضافتها إلى يوم محدد بعد."
}
}

View File

@@ -5,10 +5,7 @@
"license": "Lizenziert unter der GPL-3.0-Lizenz.",
"message": "Hergestellt mit ❤️ in den Vereinigten Staaten.",
"nominatim_1": "Standortsuche und Geokodierung werden bereitgestellt von",
"nominatim_2": "Deren Daten sind unter der ODbL-Lizenz lizenziert.",
"oss_attributions": "Open Source Quellenangaben",
"other_attributions": "Weitere Hinweise finden Sie in der README-Datei.",
"source_code": "Quellcode",
"generic_attributions": "Melden Sie sich bei Adventurelog an, um Zuschreibungen für aktivierte Integrationen und Dienste anzuzeigen.",
"attributions": "Zuschreibungen",
"developer": "Entwickler",
@@ -22,11 +19,8 @@
"adventures": {
"add_to_collection": "Zur Sammlung hinzufügen",
"delete": "Löschen",
"edit_adventure": "Abenteuer bearbeiten",
"no_image_found": "Kein Bild gefunden",
"open_details": "Details öffnen",
"remove_from_collection": "Aus Sammlung entfernen",
"adventure": "Abenteuer",
"archive": "Archiv",
"archived": "Archiviert",
"archived_collection_message": "Sammlung erfolgreich archiviert!",
@@ -36,8 +30,6 @@
"category_filter": "Kategoriefilter",
"clear": "Zurücksetzen",
"collection": "Sammlung",
"collection_adventures": "Abenteuer aus Sammlung berücksichtigen",
"count_txt": "Suchergebnisse",
"date": "Datum",
"dates": "Termine",
"delete_collection": "Sammlung löschen",
@@ -47,8 +39,6 @@
"edit_collection": "Sammlung bearbeiten",
"filter": "Filter",
"homepage": "Startseite",
"image_removed_error": "Fehler beim Entfernen des Bildes",
"image_removed_success": "Bild erfolgreich entfernt!",
"image_upload_error": "Fehler beim Hochladen des Bildes",
"image_upload_success": "Bild erfolgreich hochgeladen!",
"latitude": "Breitengrad",
@@ -56,7 +46,6 @@
"my_collections": "Meine Sammlungen",
"name": "Name",
"no_image_url": "Unter dieser URL wurde kein Bild gefunden.",
"open_filters": "Filter öffnen",
"order_by": "Sortieren nach",
"order_direction": "Sortierreihenfolge",
"planned": "Geplant",
@@ -74,109 +63,67 @@
"visited": "Besucht",
"visits": "Besuche",
"wiki_image_error": "Fehler beim Abrufen des Bildes aus Wikipedia",
"actions": "Aktionen",
"activity_types": "Aktivitätsarten",
"add": "Hinzufügen",
"add_notes": "Notizen hinzufügen",
"basic_information": "Basisdaten",
"category": "Kategorie",
"clear_map": "Karte leeren",
"copy_link": "Link kopieren",
"create_new": "Neu erstellen...",
"create_new": "Neu erstellen",
"date_constrain": "Beschränke auf Sammlungstermine",
"description": "Beschreibung",
"end_date": "Enddatum",
"fetch_image": "Bild abrufen",
"generate_desc": "Beschreibung generieren",
"image": "Bild",
"image_fetch_failed": "Bild konnte nicht abgerufen werden",
"link": "Link",
"location": "Standort",
"location_information": "Standortinformationen",
"my_images": "Meine Bilder",
"no_description_found": "Keine Beschreibung gefunden",
"no_images": "Keine Bilder",
"no_location": "Bitte geben Sie einen Ort ein",
"no_results": "Keine Ergebnisse gefunden",
"remove": "Entfernen",
"save_next": "Speichern & weiter",
"search_for_location": "Nach einem Ort suchen",
"search_results": "Suchergebnisse",
"see_adventures": "Siehe Abenteuer",
"start_date": "Startdatum",
"upload_image": "Bild hochladen",
"url": "URL",
"warning": "Warnung",
"wikipedia": "Wikipedia",
"adventure_not_found": "Keine Abenteuer vorhanden. \nFügen Sie welche über die Plus-Schaltfläche unten rechts hinzu oder versuchen Sie, die Filter zu ändern!",
"all": "Alle",
"error_updating_regions": "Fehler beim Aktualisieren der Regionen",
"mark_visited": "als besucht markieren",
"my_adventures": "Meine Abenteuer",
"no_adventures_found": "Keine Abenteuer gefunden",
"no_linkable_adventures": "Es wurden keine Abenteuer gefunden, die mit dieser Sammlung verknüpft werden können.",
"not_visited": "Nicht besucht",
"regions_updated": "Regionen aktualisiert",
"update_visited_regions": "Besuchte Regionen aktualisieren",
"update_visited_regions_disclaimer": "Dies kann je nach Anzahl der Abenteuer, die Sie besucht haben, eine Weile dauern.",
"visited_region_check": "Überprüfung der besuchten Region",
"visited_region_check_desc": "Wenn Sie diese Option auswählen, überprüft der Server alle von Ihnen besuchten Abenteuer und markiert die Regionen, in denen sie sich befinden, im Bereich Weltreisen als besucht.",
"add_new": "Neu...",
"checklist": "Checkliste",
"checklists": "Checklisten",
"collection_completed": "Du hast die Sammlung vervollständigt!",
"collection_stats": "Sammlungsstatistiken",
"days": "Tage",
"itineary_by_date": "Reiseroute nach Datum",
"keep_exploring": "Weiter erkunden!",
"link_new": "Neuer Link...",
"linked_adventures": "Verknüpfte Abenteuer",
"links": "Links",
"note": "Notiz",
"notes": "Notizen",
"nothing_planned": "Für heute ist nichts geplant. \nGenieße die Reise!",
"transportation": "Transport",
"transportations": "Transporte",
"visit_link": "Besuche Link",
"collection_archived": "Diese Sammlung wurde archiviert.",
"day": "Tag",
"add_a_tag": "Fügen Sie ein Schlagwort hinzu",
"tags": "Schlagworte",
"set_to_pin": "Zu Pin setzen",
"category_fetch_error": "Fehler beim Abrufen der Kategorien",
"copied_to_clipboard": "In die Zwischenablage kopiert!",
"copy_failed": "Das Kopieren ist fehlgeschlagen",
"adventure_calendar": "Abenteuerkalender",
"emoji_picker": "Emoji-Wähler",
"hide": "Verstecken",
"show": "Anzeigen",
"download_calendar": "Kalender herunterladen",
"md_instructions": "Hier den Markdowntext schreiben...",
"preview": "Vorschau",
"checklist_delete_confirm": "Sind Sie sicher, dass Sie diese Checkliste löschen möchten? \nDies kann nicht rückgängig gemacht werden.",
"clear_location": "Standort löschen",
"date_information": "Datumsinformationen",
"delete_checklist": "Checkliste löschen",
"delete_note": "Notiz löschen",
"delete_transportation": "Transport löschen",
"end": "Ende",
"ending_airport": "Zielflughafen",
"flight_information": "Fluginformationen",
"from": "Von",
"no_location_found": "Keinen Standort gefunden",
"note_delete_confirm": "Sind Sie sicher, dass Sie diese Notiz löschen möchten? \nDies kann nicht rückgängig gemacht werden!",
"out_of_range": "Außerhalb des geplanten Reisezeitraums",
"start": "Start",
"starting_airport": "Startflughafen",
"to": "Nach",
"transportation_delete_confirm": "Sind Sie sicher, dass Sie diesen Transport löschen möchten? \nDies lässt sich nicht rückgängig machen.",
"cities_updated": "Städte aktualisiert",
"finding_recommendations": "Entdecken von verborgenen Schätzen für Ihr nächstes Abenteuer",
"attachment": "Anhang",
"attachment_delete_success": "Anhang erfolgreich gelöscht!",
"attachment_name": "Anhangsname",
"attachment_update_error": "Fehler beim Aktualisieren des Anhangs",
"attachment_update_success": "Anhang erfolgreich aktualisiert!",
"attachment_upload_error": "Fehler beim Hochladen des Anhangs",
"attachment_upload_success": "Anhang erfolgreich hochgeladen!",
"attachments": "Anhänge",
@@ -184,28 +131,17 @@
"images": "Bilder",
"upload": "Hochladen",
"city": "Stadt",
"display_name": "Anzeigename",
"location_details": "Standortdetails",
"lodging": "Unterkunft",
"region": "Region",
"delete_lodging": "Unterkunft löschen",
"lodging_delete_confirm": "Sind Sie sicher, dass Sie diese Unterkunft löschen möchten? \nDies lässt sich nicht rückgängig machen!",
"lodging_information": "Informationen zur Unterkunft",
"price": "Preis",
"reservation_number": "Reservierungsnummer",
"open_in_maps": "In Karten öffnen",
"all_day": "Ganztags",
"collection_no_start_end_date": "Durch das Hinzufügen eines Start- und Enddatums zur Sammlung werden Reiseroutenplanungsfunktionen auf der Sammlungsseite freigegeben.",
"date_itinerary": "Route nach Datum",
"no_ordered_items": "Fügen Sie der Sammlung Elemente mit Daten hinzu, um sie hier zu sehen.",
"ordered_itinerary": "Geordnete Reiseroute",
"invalid_date_range": "Ungültiger Datumsbereich",
"timezone": "Zeitzone",
"no_visits": "Keine Besuche",
"arrival_timezone": "Ankunftszeitzone",
"departure_timezone": "Abfahrtszeitzone",
"arrival_date": "Ankunftsdatum",
"departure_date": "Abreisedatum",
"coordinates": "Koordinaten",
"copy_coordinates": "Koordinaten kopieren",
"sun_times": "Sonnenzeiten",
@@ -213,7 +149,6 @@
"sunset": "Sonnenuntergang",
"timed": "Zeitlich abgestimmt",
"distance": "Distanz",
"all_linked_items": "Alle verknüpften Elemente",
"itinerary": "Route",
"joined": "Beigetreten",
"view_profile": "Profil anzeigen",
@@ -222,15 +157,11 @@
"filters_and_stats": "Filter & Statistiken",
"no_adventures_message": "Dokumentieren Sie Ihre Abenteuer und planen Sie neue. \nJede Reise hat eine Geschichte, die es wert ist, erzählt zu werden.",
"travel_progress": "Reisefortschritt",
"adventures_available": "Abenteuer verfügbar",
"all_adventures_already_linked": "Alle Abenteuer sind bereits mit dieser Sammlung verknüpft.",
"collections_linked": "Kollektionen verknüpft",
"create_collection_first": "Erstellen Sie zuerst eine Sammlung, um Ihre Abenteuer und Erinnerungen zu organisieren.",
"delete_collection_warning": "Sind Sie sicher, dass Sie diese Sammlung löschen möchten? \nDiese Aktion kann nicht rückgängig gemacht werden.",
"done": "Erledigt",
"loading_adventures": "Lade Abenteuer...",
"name_location": "Name, Ort",
"collection_contents": "Sammlungsinhalt",
"check_in": "Einchecken",
"check_out": "Auschecken",
"collection_link_location_error": "Fehler beim Verknüpfen des Standorts mit der Sammlung",
@@ -241,22 +172,14 @@
"create_location": "Standort erstellen",
"delete_location": "Standort löschen",
"edit_location": "Standort bearbeiten",
"location_create_error": "Fehler beim Erstellen des Standort",
"location_created": "Ort erstellt",
"location_delete_confirm": "Sind Sie sicher, dass Sie diesen Ort löschen möchten? \nDiese Aktion kann nicht rückgängig gemacht werden.",
"location_delete_success": "Standort erfolgreich gelöscht!",
"location_not_found": "Ort nicht gefunden",
"location_not_found_desc": "Der Ort, den Sie gesucht haben, konnte nicht gefunden werden. \nBitte probieren Sie einen anderen Ort aus oder schauen Sie später noch einmal vorbei.",
"location_update_error": "Fehler beim Aktualisieren des Standort",
"location_updated": "Standort aktualisiert",
"new_location": "Neuer Standort",
"no_collections_to_add_location": "Keine Sammlungen gefunden, die dieser Ort hinzugefügt werden kann.",
"no_locations_to_recommendations": "Keine Standorte gefunden. \nFügen Sie mindestens einen Ort hinzu, um Empfehlungen zu erhalten.",
"public_location": "Öffentliche Lage",
"share_location": "Teilen Sie diesen Ort!",
"visit_calendar": "Besuchs-Kalender",
"wiki_location_desc": "Zieht Auszug aus dem Wikipedia -Artikel, der dem Namen des Standorts entspricht.",
"will_be_marked_location": "wird als besucht markiert, sobald der Standort gespeichert ist.",
"no_locations_found": "Keine Standorte gefunden",
"image_modal_navigate": "Verwenden Sie Pfeiltasten oder klicken Sie, um zu navigieren",
"details": "Details",
@@ -268,7 +191,6 @@
"quick_start": "Schnellstart",
"achievements": "Erfolge",
"active_duration": "Aktive Dauer",
"activities_name": "Aktivitäten",
"activity_name": "Aktivitätsname",
"activity_name_placeholder": "Morgenlauf",
"activity_name_required": "Aktivitätsname ist erforderlich",
@@ -359,13 +281,11 @@
"select_on_map": "Wählen Sie auf der Karte",
"select_wanderer_trail": "Wählen Sie einen Trail aus Ihrem Wanderer -Konto aus",
"sport_type": "Sportart",
"sport_type_placeholder": "Trailrunning",
"start_lat": "Start-Breitengrad",
"start_lng": "Start-Längengrad",
"strava_activities_during_visit": "Strava -Aktivitäten während des Besuchs",
"strava_activity_ready": "Strava -Aktivität bereit",
"time": "Zeit",
"total_covered": "Gesamt abgedeckt",
"total_recorded": "Insgesamt aufgezeichnet",
"trail": "Pfad",
"trail_created_successfully": "Trail erfolgreich erstellt",
@@ -403,19 +323,7 @@
"low": "Niedrig",
"rest": "Pause",
"total": "Gesamt",
"attachment_removed_error": "Fehler beim Entfernen des Anhangs",
"attachment_removed_success": "Anhang erfolgreich entfernt",
"attachments_upload_info": "Anhänge werden hochgeladen nach dem Speichern der",
"image_upload_info": "Bilder werden hochgeladen nach dem Speichern der",
"linked_locations": "Verknüpfte Orte",
"lodging_save_error": "Fehler beim Speichern der Unterkunft",
"my_attachments": "Meine Anhänge",
"no_attachments": "Keine Anhänge",
"no_attachments_desc": "Laden Sie Dateien hoch, um loszulegen",
"no_images_desc": "Laden Sie Bilder hoch, um loszulegen",
"route_map": "Routenkarte",
"selected_attachments": "Ausgewählte Anhänge",
"selected_images": "Ausgewählte Bilder",
"activities_text": "Aktivitäten",
"activity_breakdown_by_category": "Aktivitätsaufschlüsselung nach Kategorie",
"distance_covered": "Entfernung abgedeckt",
@@ -424,7 +332,109 @@
"total_climbed": "Total bestiegen",
"total_distance": "Gesamtstrecke",
"dates_not_saved": "Noch nicht hinzugefügte Besuche",
"dates_not_saved_description": "Zum Speichern\"Besuch hinzufügen\" klicken"
"dates_not_saved_description": "Zum Speichern\"Besuch hinzufügen\" klicken",
"active_days": "Aktive Tage",
"add_here": "Hier hinzufügen",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Flughafensuchmodus",
"all_locations_already_linked": "Alle Standorte sind bereits mit dieser Sammlung verknüpft.",
"arrival_airport": "Ankunftsflughafen",
"avg_rating": "Durchschnittliche Bewertung",
"burned": "verbrannt",
"categories": "Kategorien",
"cities": "Städte",
"clear_search": "Suche löschen",
"click_map_add_marker": "Klicken Sie auf die Karte, um eine Markierung zu setzen, und fügen Sie sie dann hier hinzu.",
"completed": "Vollendet",
"content_media": "Inhalt & Medien",
"countries": "Länder",
"country": "Land",
"departure_airport": "Abflughafen",
"distance_traveled": "Zurückgelegte Strecke",
"end_location": "Endstandort",
"enter_location_display_name": "Geben Sie den Anzeigenamen des Standorts ein",
"files": "Dateien",
"flight": "Flug",
"folder": "Ordner",
"folder_view": "Ordneransicht Anzeige aller Daten",
"footprints": "Fußabdrücke",
"gained": "gewonnen",
"geographic_breakdown": "Geografische Aufteilung",
"gpx_routes": "GPX-Routen",
"hide_filters": "Filter ausblenden",
"images_captured": "Bilder aufgenommen",
"in": "in",
"in_progress": "Im Gange",
"items": "Einträge",
"itinerary_link_modal": {
"add_here": "Hier hinzufügen",
"add_here_keep_date": "Hinzufügen (Datum beibehalten)",
"add_to_itinerary": "Zur Reiseroute hinzufügen",
"already_added": "Bereits hinzugefügt",
"already_added_on_this_day": "An diesem Tag bereits hinzugefügt",
"already_added_on_this_day_desc": "Diese Einträge sind für diesen Tag bereits eingeplant.",
"already_added_other_days": "Bereits an anderen Tagen hinzugefügt",
"already_added_other_days_desc": "Diese Einträge sind an unterschiedlichen Terminen geplant. \nWenn Sie sie hier hinzufügen, wird ihr Datum aktualisiert oder sie werden unverändert hinzugefügt.",
"items_available": "{count} Einträge zum Verknüpfen verfügbar",
"items_on_other_days": "Einträge an anderen Tagen",
"items_on_other_days_desc": "Diese Einträge haben unterschiedliche Daten. \nSie können sie hinzufügen und optional ihr Datum angleichen.",
"items_on_this_day": "Einträge an diesem Tag",
"no_unscheduled_items": "Keine ungeplanten Einträge verfügbar",
"no_unscheduled_items_desc": "Alle Einträge wurden zur Reiseroute hinzugefügt oder es sind keine Einträge zum Hinzufügen vorhanden.",
"title": "Einträge mit {Datum} verknüpfen"
},
"link_copied": "Link kopiert",
"lists": "Listen",
"location_search_mode": "Standortsuchmodus",
"locations_visited": "Besuchte Orte",
"lodging_not_found": "Unterkunft nicht gefunden",
"lodging_types": "Unterkunftsarten",
"more_details": "Mehr Details",
"my_locations": "Meine Standorte",
"nights": "Nächte",
"no_linkable_locations": "Es wurden keine Orte gefunden, die mit dieser Sammlung verknüpft werden können.",
"of_locations": "von Standorten",
"on_this_trip": "Auf dieser Reise",
"overnight": "Über Nacht",
"physical_activities": "Körperliche Aktivitäten",
"pins": "Stecknadeln",
"places": "Orte",
"regions": "Regionen",
"reservation": "Reservierung",
"reset_filters": "Zurücksetzen",
"route": "Route",
"route_selected": "Route ausgewählt",
"routes_and_activities": "Routen & Aktivitäten",
"saving": "Speichern",
"search_end_location": "Endort suchen",
"search_start_end_locations": "Suchen Sie nach Start- und Endorten",
"search_start_location": "Startort suchen",
"segments": "Segmente",
"select": "Wählen",
"show_filters": "Filter anzeigen",
"start_location": "Startort",
"status_filter": "Statusfilter",
"stays": "Aufenthalte",
"tasks_done": "Aufgaben erledigt",
"total_days": "Gesamtzahl der Tage",
"total_visits": "Besuche gesamt",
"transport_activity_paths": "Transport- und Aktivitätenpfade",
"transportation_gpx_tip": "Laden Sie hier GPX-Dateien hoch, um sie auf der Karte anzuzeigen",
"traveled": "gereist",
"travelers": "Reisende",
"trip_timeline": "Reisezeitachse",
"trip_window": "Reisefenster",
"upcoming": "Bevorstehend",
"view": "Ansicht",
"wiki_results_found": "Wikipedia-Ergebnisse",
"with_activities": "Mit Aktivitäten",
"written": "Geschrieben",
"export_failed": "Der Export ist fehlgeschlagen",
"export_success": "Exportierte Sammlung",
"export_zip": "ZIP exportieren",
"import_failed": "Import fehlgeschlagen",
"import_from_file": "Aus Datei importieren",
"import_success": "Erfolg importieren"
},
"home": {
"desc_1": "Entdecken, planen und erkunden Sie mühelos",
@@ -446,13 +456,11 @@
},
"navbar": {
"about": "Über AdventureLog",
"adventures": "Abenteuer",
"collections": "Sammlungen",
"documentation": "Dokumentation",
"greeting": "Hallo",
"logout": "Abmelden",
"map": "Karte",
"my_adventures": "Meine Abenteuer",
"profile": "Profil",
"search": "Suchen",
"settings": "Einstellungen",
@@ -470,14 +478,12 @@
"northernLights": "Nordlicht"
},
"users": "Benutzer",
"worldtravel": "Weltreisen",
"my_tags": "Meine Schlagworte",
"tag": "Schlagwort",
"language_selection": "Sprachauswahl",
"support": "Unterstützung",
"calendar": "Kalender",
"admin_panel": "Administration",
"navigation": "Navigation"
"navigation": "Navigation",
"worldtravel": "Weltreisen"
},
"auth": {
"confirm_password": "Passwort bestätigen",
@@ -493,7 +499,6 @@
"username": "Benutzername",
"profile_picture": "Profilbild",
"public_profile": "Öffentliches Profil",
"public_tooltip": "Mit einem öffentlichen Profil können Benutzer Sammlungen mit Ihnen teilen und Ihr Profil auf der Benutzerseite anzeigen.",
"new_password": "Neues Passwort (6+ Zeichen)",
"or_3rd_party": "Oder melden Sie sich bei einem Drittanbieter an",
"no_public_collections": "Keine öffentlichen Sammlungen gefunden",
@@ -503,21 +508,15 @@
"enter_password": "Geben Sie Ihr Passwort ein",
"enter_username": "Geben Sie Ihren Benutzernamen ein",
"logging_in": "Anmelden",
"totp": "Zwei-Faktor-Code"
"totp": "Zwei-Faktor-Code",
"user_email_verification_required": "E-Mail-Bestätigung erforderlich. \nBitte überprüfen Sie Ihre E-Mail auf einen Bestätigungslink."
},
"users": {
"no_users_found": "Keine Benutzer mit öffentlichem Profil gefunden."
},
"worldtravel": {
"all": "Alle",
"all_subregions": "Alle Unterregionen",
"clear_search": "Suche löschen",
"completely_visited": "Vollständig besucht",
"country_list": "Länderliste",
"no_countries_found": "Keine Länder gefunden",
"not_visited": "Nicht besucht",
"num_countries": "Länder gefunden",
"partially_visited": "Teilweise besucht",
"cities": "Städte",
"failed_to_mark_visit": "Fehler beim Markieren des Besuchs von",
"failed_to_remove_visit": "Fehler beim Entfernen des Besuchs nach",
@@ -558,11 +557,6 @@
"total_cities": "Städte gesamt",
"total_countries": "Länder gesamt",
"total_regions": "Regionen gesamt",
"newest_first": "Neueste zuerst",
"oldest_first": "Älteste zuerst",
"unvisited_first": "Nicht-besucht zuerst",
"visited_first": "Besucht zuerst",
"total_items": "Artikel gesamt",
"getting_location_details": "Erhalten von Standortdetails",
"cities_available": "verfügbare Städte",
"destination_revealed": "Ziel enthüllt!",
@@ -571,18 +565,19 @@
"explore_country": "Land erkunden",
"globe_spin_error_desc": "Fehler beim Abrufen von Globus-Drehung-Daten",
"hide_globe_spin": "Globusdrehung verstecken",
"in": "In",
"in": "in",
"loading_globe_spin": "Globusdrehung wird geladen",
"no_globe_spin_data": "Keine Globus-Drehung-Daten",
"show_globe_spin": "Globus Drehung anzeigen",
"spin_again": "Wieder drehen",
"spin_again": "Nochmal drehen",
"spinning_globe": "Drehender Globus",
"try_again": "Versuchen Sie es erneut",
"your_random_adventure_awaits": "Ihr zufälliges Abenteuer wartet!",
"about_country": "Über Land",
"about_region": "Über die Region",
"show_less": "Weniger anzeigen",
"show_more": "Mehr anzeigen"
"show_more": "Mehr anzeigen",
"all_locations_visited": "Alle Orte besucht!"
},
"settings": {
"account_settings": "Benutzerkontoeinstellungen",
@@ -771,10 +766,23 @@
"shared_collections": "Gemeinsame Sammlungen",
"available": "Verfügbar",
"linked": "Verknüpft",
"try_different_search": "Versuchen Sie eine andere Suche oder Filter."
"try_different_search": "Versuchen Sie eine andere Suche oder Filter.",
"changing_date_title": "Ändern der Daten wirkt sich auf die Reiseplanelemente aus",
"changing_date_warning": "Alle Reiseplanelemente außerhalb des neuen Datumsbereichs werden aus dem Reiseplan entfernt und wieder in die undatierten Elemente der Sammlung eingefügt.",
"clear_cover": "Deckblatt entfernen",
"collaborators": "Mitwirkende",
"cover": "Deckblatt",
"cover_image": "Titelbild",
"cover_image_hint": "Wählen Sie aus den Bildern dieser Sammlung ein Deckblatt aus.",
"create_new_collection": "Neue Sammlung erstellen",
"enter_collection_name": "Sammlungsnamen eingeben",
"location_primary": "Standort-Deckblatt",
"no_images_available": "Von den verlinkten Standorten sind noch keine Bilder verfügbar.",
"public_collection_description": "Erlauben Sie jedem, der über den Link verfügt, die Ansicht",
"set_cover": "Deckblatt einstellen",
"update_collection_details": "Sammlungsdetails aktualisieren"
},
"notes": {
"add_a_link": "Fügen Sie einen Link hinzu",
"content": "Inhalt",
"editing_note": "Bearbeiten der Notiz",
"failed_to_save": "Notiz konnte nicht gespeichert werden",
@@ -811,9 +819,6 @@
"type": "Typ",
"new_transportation": "Neues Verkehrsmittel",
"to_location": "End-Standort",
"ending_airport_desc": "Geben Sie den Flughafencode des Zielflughafens ein (z. B. LAX)",
"fetch_location_information": "Standortinformationen abrufen",
"starting_airport_desc": "Geben Sie den Flughafencode des Startflughafens ein (z. B. JFK)",
"create_new_transportation": "Neuer Transport",
"enter_flight_number": "Flugnummer eingeben",
"enter_from_location": "Start-Standort eingeben",
@@ -821,12 +826,15 @@
"enter_to_location": "End-Standort eingeben",
"enter_transportation_name": "Geben Sie den Transportnamen ein",
"select_type": "Typ auswählen",
"update_transportation_details": "Aktualisieren Sie die Transportdetails"
"update_transportation_details": "Aktualisieren Sie die Transportdetails",
"arrival_code": "Ankunftscode",
"arrival_date": "Ankunftsdatum",
"arrival_timezone": "Ankunftszeitzone",
"departure_code": "Abflugcode",
"departure_date": "Abreisedatum",
"departure_timezone": "Abreisezeitzone"
},
"search": {
"adventurelog_results": "AdventureLog-Ergebnisse",
"online_results": "Online-Ergebnisse",
"public_adventures": "Öffentliche Abenteuer",
"cities": "Städte",
"countries": "Länder",
"found": "gefunden",
@@ -835,12 +843,7 @@
"try_searching_desc": "Versuchen Sie, nach Abenteuern, Sammlungen, Ländern, Regionen, Städten oder Nutzern zu suchen."
},
"map": {
"add_adventure": "Neues Abenteuer hinzufügen",
"add_adventure_at_marker": "Neues Abenteuer bei Marker hinzufügen",
"adventure_map": "Abenteuerkarte",
"clear_marker": "Markierung löschen",
"map_options": "Kartenoptionen",
"show_visited_regions": "Besuchte Regionen anzeigen",
"view_details": "Details anzeigen",
"adventure_stats": "Abenteuerstatistiken",
"completion": "Fertigstellung",
@@ -853,20 +856,16 @@
"location_map": "Standortkarte",
"locations_shown": "Standorte angezeigt",
"place_marker_desc_location": "Klicken Sie auf die Karte, um einen Marker zu platzieren.",
"show_activities": "Aktivitäten anzeigen",
"show_visited_cities": "Besuchte Städte"
"show_visited_cities": "Besuchte Sdte",
"search_locations": "Standorte suchen..."
},
"share": {
"no_users_shared": "Mit keinen Benutzern geteilt",
"not_shared_with": "Nicht geteilt mit",
"share_desc": "Sammlung mit anderen Benutzern teilen.",
"shared": "Geteilt",
"shared_with": "Geteilt mit",
"unshared": "Nicht geteilt",
"with": "mit",
"go_to_settings": "Zu Einstellungen gehen",
"no_shared_found": "Es wurden keine Sammlungen gefunden, die mit Ihnen geteilt wurden.",
"set_public": "Damit Benutzer Inhalte mit Ihnen teilen können, muss Ihr Profil auf „Öffentlich“ gesetzt sein.",
"available": "Verfügbar",
"pending": "Ausstehend",
"revoke_invite": "Einladung zurückziehen",
@@ -880,7 +879,6 @@
},
"profile": {
"member_since": "Mitglied seit",
"user_stats": "Benutzerstatistiken",
"visited_countries": "Besuchte Länder",
"visited_regions": "Besuchte Regionen",
"visited_cities": "Besuchte Städte",
@@ -905,7 +903,6 @@
"location_update_after_refresh": "Die Standortkarten werden aktualisiert, sobald Sie die Seite aktualisiert haben."
},
"dashboard": {
"add_some": "Warum nicht gleich Ihr nächstes Abenteuer planen? Sie können ein neues Abenteuer hinzufügen, indem Sie auf die Schaltfläche unten klicken.",
"countries_visited": "Besuchte Länder",
"no_recent_adventures": "Keine aktuellen Abenteuer?",
"recent_adventures": "Kürzliche Abenteuer",
@@ -953,16 +950,34 @@
"loading_albums": "Alben laden",
"no_images": "Keine Bilder gefunden",
"select_album": "Album auswählen",
"select_album_first": "Wählen Sie zuerst ein Album aus",
"select_date": "Datum auswählen",
"try_different_date": "Versuchen Sie ein anderes Datum"
},
"recomendations": {
"recommendation": "Empfehlung",
"recommendations": "Empfehlungen",
"food": "Essen",
"tourism": "Tourismus",
"location_recommendations": "Standortempfehlungen"
"any": "Beliebig",
"average_rating": "Durchschnittliche Bewertung",
"discover_places": "Entdecken Sie Orte",
"lodging": "Hotels & Unterkünfte",
"map_view": "Kartenansicht",
"minimum_rating": "Mindestbewertung",
"minimum_reviews": "Mindestbewertungen",
"no_results_yet": "Noch keine Ergebnisse",
"open_now_only": "Nur jetzt geöffnet",
"search_around_location": "Suchen Sie rund um den Standort",
"search_by_address": "Nach Adresse suchen",
"search_radius_label": "Suchradius:",
"searching": "Suche...",
"select_location_or_query": "Wählen Sie einen Ort aus oder geben Sie eine Suchanfrage ein, um tolle Orte in der Nähe zu entdecken!",
"total_results": "Gesamtergebnisse",
"use_search_instead": "Verwenden Sie stattdessen die Suche",
"add_location": "Standort hinzufügen",
"add_lodging": "Unterkunft hinzufügen",
"away": "weg",
"hours": "Std",
"open": "Offen",
"your_location": "Ihr Standort"
},
"lodging": {
"apartment": "Wohnung",
@@ -982,7 +997,6 @@
"villa": "Villa",
"create_new_lodging": "Neue Unterkunft",
"enter_lodging_name": "Unterkunftsnamen eingeben",
"enter_price": "Preis eingeben",
"enter_reservation_number": "Reservierungsnummer eingeben",
"update_lodging_details": "Aktualisieren der Unterkunftsdetails"
},
@@ -999,7 +1013,9 @@
"month": "Monat",
"today": "Heute",
"total_events": "Gesamtereignisse",
"week": "Woche"
"week": "Woche",
"event timezone": "Zeitzone des Ereignisses",
"your timezone": "Ihre Zeitzone"
},
"locations": {
"location": "Standort",
@@ -1022,15 +1038,11 @@
"title": "Einladungen"
},
"strava": {
"account_connected": "Konto verbunden",
"admin_setup_required": "Der Serveradministrator muss es global aktivieren",
"authorization_error": "Fehler beim Umleiten zur Strava-Autorisierungs-URL",
"connect_account": "Konto verbinden",
"disconnect": "Trennen",
"disconnect_error": "Fehler beim Trennen von Strava",
"disconnected": "Erfolgreich von Strava getrennt",
"not_configured": "Strava nicht eingerichtet",
"ready_to_connect": "Bereit zum Verbinden",
"strava_integration_desc": "Stellen Sie eine Verbindung zu Strava her, um Ihre Aktivitäten einfach in Orte und Besuche zu importieren",
"gpx_required": "Bitte laden Sie die GPX -Datei hoch, um den Strava -Import zu vervollständigen",
"not_enabled": "Die Strava-Integration ist in dieser Instanz nicht aktiviert."
@@ -1039,5 +1051,82 @@
"connected": "Erfolgreich mit Wanderer verbunden",
"connection_error": "Fehler beim Verbinden zu Wanderer",
"wanderer_integration_desc": "Stellen Sie eine Verbindung zu Wanderer her, um Ihre Trails einfach in Standorten zu importieren und anzusehen"
},
"collections": {
"all_items": "Alle Einträge",
"currencies": "Währungen",
"currency": "Währung",
"event_timezone": "Zeitzone des Ereignisses",
"event_timezone_desc": "Die Ereigniszeitzone verwendet die Standort- oder Eintrags-zeitzone, sofern verfügbar. \nMeine Zeitzone verwendet",
"events": "Ereignisse",
"local_timezone": "Meine Zeitzone",
"no_calendar_events": "Für diese Sammlung sind noch keine Besuche geplant.",
"no_priced_items": "Fügen Sie Preise zu Standorten, Unterkünften oder Transportmitteln hinzu, um die Reisesummen nach Währung anzuzeigen.",
"not_found": "Sammlung nicht gefunden",
"statistics": "Statistiken",
"times_shown_in": "Zeiten angezeigt in",
"trip_costs": "Reisekosten"
},
"common": {
"show_less": "Details ausblenden",
"show_more": "Mehr anzeigen"
},
"currencies": {
"AED": "VAE-Dirham",
"AUD": "Australischer Dollar",
"BRL": "Brasilianischer Real",
"CAD": "Kanadischer Dollar",
"CHF": "Schweizer Franken",
"CNY": "Chinesischer Yuan",
"DKK": "Dänische Krone",
"EUR": "Euro",
"GBP": "Britisches Pfund",
"HKD": "Hongkong-Dollar",
"INR": "Indische Rupie",
"JPY": "Japanischer Yen",
"MXN": "Mexikanischer Peso",
"NOK": "Norwegische Krone",
"NZD": "Neuseeland-Dollar",
"SEK": "Schwedische Krone",
"SGD": "Singapur-Dollar",
"TRY": "Türkische Lira",
"USD": "US-Dollar",
"ZAR": "Südafrikanischer Rand",
"no_matches": "Keine Übereinstimmungen",
"search": "Währung suchen",
"select_currency": "Währung auswählen"
},
"itinerary": {
"add_description": "Beschreibung hinzufügen",
"add_to_day": "Zum Tag hinzufügen",
"add_to_trip_context": "Reisekontext hinzufügen",
"added_to_trip_context": "Zum Reisekontext hinzugefügt",
"auto_generate": "Automatisch generieren",
"auto_generate_itinerary": "Reiseroute automatisch generieren",
"auto_generate_itinerary_desc": "Diese Sammlung enthält Einträge mit Datum, aber noch keinen Reiseplan. \nMöchten Sie sie automatisch nach Datum organisieren?",
"change_day": "Tag wechseln",
"drag_to_reorder": "Zum Neuanordnen ziehen",
"failed_to_add_to_trip_context": "Das Element konnte nicht zum Reisekontext hinzugefügt werden",
"failed_to_move_to_trip_context": "Der Wechsel zum Reisekontext ist fehlgeschlagen",
"generating": "Generieren",
"item_already_in_trip_context": "Elemente, die sich bereits im Reisekontext befinden",
"item_not_found": "Eintrag nicht gefunden",
"item_remove_error": "Beim Entfernen des Elements aus der Reiseroute ist ein Fehler aufgetreten",
"item_remove_success": "Eintrag aus der Reiseroute entfernt",
"link_existing_item": "Vorhandenen Eintrag verknüpfen",
"move_to_trip_context": "Wechseln Sie zum Reisekontext",
"moved_to_trip_context": "In den Reisekontext verschoben",
"multi_day": "Mehrtägig",
"no_itinerary_yet": "Noch keine Reiseroute",
"no_plans_for_day": "Keine Pläne für diesen Tag",
"no_trip_context_items": "Noch keine Reisekontextelemente.",
"remove_from_itinerary": "Aus Tag entfernen",
"remove_from_trip_context": "Aus Kontext entfernen",
"start_planning": "Beginnen Sie mit der Planung Ihrer Reise, indem Sie Einträge zu bestimmten Tagen hinzufügen.",
"staying_overnight": "Übernachten",
"trip_context": "Reisekontext",
"trip_context_info": "Reisekontextelemente gelten für die gesamte Reise zum Beispiel Orte, die das Ziel selbst darstellen, allgemeine Notizen oder Packlisten, die für die gesamte Reise wichtig sind.",
"unscheduled_items": "Ungeplante Einträge",
"unscheduled_items_desc": "Diese Einträge sind mit dieser Reise verknüpft, wurden aber noch keinem bestimmten Tag hinzugefügt."
}
}

View File

@@ -1,16 +1,11 @@
{
"navbar": {
"adventures": "Adventures",
"collections": "Collections",
"worldtravel": "World Travel",
"map": "Map",
"users": "Users",
"search": "Search",
"profile": "Profile",
"greeting": "Hi",
"my_adventures": "My Adventures",
"my_tags": "My Tags",
"tag": "Tag",
"shared_with_me": "Shared With Me",
"settings": "Settings",
"logout": "Logout",
@@ -21,6 +16,7 @@
"calendar": "Calendar",
"theme_selection": "Theme Selection",
"admin_panel": "Admin Panel",
"worldtravel": "World Travel",
"themes": {
"light": "Light",
"dark": "Dark",
@@ -37,11 +33,8 @@
"about": {
"about": "About",
"license": "Licensed under the GPL-3.0 License.",
"source_code": "Source Code",
"message": "Made with ❤️ in the United States.",
"oss_attributions": "Open Source Attributions",
"nominatim_1": "Location Search and Geocoding is provided by",
"nominatim_2": "Their data is liscensed under the ODbL license.",
"other_attributions": "Additional attributions can be found in the README file.",
"generic_attributions": "Login to AdventureLog to view attributions for enabled integrations and services.",
"close": "Close",
@@ -79,11 +72,6 @@
"invalid_date_range": "Invalid date range",
"timezone": "Timezone",
"no_visits": "No visits",
"departure_timezone": "Departure Timezone",
"arrival_timezone": "Arrival Timezone",
"departure_date": "Departure Date",
"arrival_date": "Arrival Date",
"no_image_found": "No image found",
"collection_link_location_error": "Error linking location to collection",
"location_delete_confirm": "Are you sure you want to delete this location? This action cannot be undone.",
"checklist_delete_confirm": "Are you sure you want to delete this checklist? This action cannot be undone.",
@@ -95,10 +83,41 @@
"delete_transportation": "Delete Transportation",
"delete_lodging": "Delete Lodging",
"open_details": "Open Details",
"edit_adventure": "Edit Adventure",
"edit_location": "Edit Location",
"remove_from_collection": "Remove from Collection",
"add_to_collection": "Add to Collection",
"click_map_add_marker": "Click the map to drop a marker, then add it here.",
"add_here": "Add here",
"folder_view": "Folder view - showing all data",
"footprints": "Footprints",
"locations_visited": "Locations visited",
"images_captured": "Images captured",
"geographic_breakdown": "Geographic Breakdown",
"travelers": "Travelers",
"on_this_trip": "On this trip",
"trip_timeline": "Trip Timeline",
"total_days": "Total Days",
"trip_window": "Trip window",
"active_days": "Active Days",
"with_activities": "With activities",
"total_visits": "Total visits",
"distance_traveled": "Distance Traveled",
"traveled": "traveled",
"physical_activities": "Physical Activities",
"gained": "gained",
"burned": "burned",
"content_media": "Content & Media",
"written": "Written",
"lists": "Lists",
"segments": "Segments",
"places": "Places",
"files": "Files",
"more_details": "More Details",
"avg_rating": "Avg Rating",
"of_locations": "of locations",
"tasks_done": "Tasks Done",
"items": "items",
"lodging_types": "Lodging Types",
"delete": "Delete",
"location_not_found": "Location not found",
"location_not_found_desc": "The location you were looking for could not be found. Please try a different location or check back later.",
@@ -113,9 +132,7 @@
"coordinates": "Coordinates",
"copy_coordinates": "Copy Coordinates",
"visits": "Visits",
"create_new": "Create New...",
"adventure": "Adventure",
"count_txt": "results matching your search",
"create_new": "Create New",
"sort": "Sort",
"order_by": "Order By",
"order_direction": "Order Direction",
@@ -124,76 +141,65 @@
"updated": "Updated",
"name": "Name",
"date": "Date",
"activity_types": "Activity Types",
"tags": "Tags",
"add_a_tag": "Add a tag",
"date_constrain": "Constrain to collection dates",
"rating": "Rating",
"my_images": "My Images",
"no_images": "No Images",
"distance": "Distance",
"share_location": "Share this Location!",
"share_collection": "Share this Collection!",
"copy_link": "Copy Link",
"sun_times": "Sun Times",
"sunrise": "Sunrise",
"sunset": "Sunset",
"image": "Image",
"upload_image": "Upload Image",
"open_in_maps": "Open in Maps",
"url": "URL",
"fetch_image": "Fetch Image",
"wikipedia": "Wikipedia",
"add_notes": "Add notes",
"warning": "Warning",
"my_adventures": "My Adventures",
"no_linkable_adventures": "No adventures found that can be linked to this collection.",
"add": "Add",
"save_next": "Save & Next",
"end_date": "End Date",
"start_date": "Start Date",
"remove": "Remove",
"location": "Location",
"search_for_location": "Search for a location",
"clear_map": "Clear map",
"search_results": "Search Results",
"collection_no_start_end_date": "Adding a start and end date to the collection will unlock itinerary planning features in the collection page.",
"no_results": "No results found",
"wiki_location_desc": "Pulls excerpt from Wikipedia article matching the name of the location.",
"attachments": "Attachments",
"attachment": "Attachment",
"images": "Images",
"image_modal_navigate": "Use arrow keys or click to navigate",
"generate_desc": "Generate Description",
"public_location": "Public Location",
"location_information": "Location Information",
"link": "Link",
"links": "Links",
"description": "Description",
"sources": "Sources",
"collection_adventures": "Include Collection Adventures",
"collection_locations": "Include Collection Locations",
"filter": "Filter",
"category_filter": "Category Filter",
"category": "Category",
"categories": "Categories",
"routes_and_activities": "Routes & Activities",
"gpx_routes": "GPX Routes",
"transport_activity_paths": "Transport & activity paths",
"clear": "Clear",
"my_collections": "My Collections",
"open_filters": "Open Filters",
"show_filters": "Show Filters",
"hide_filters": "Hide Filters",
"pins": "pins",
"reset_filters": "Reset",
"clear_search": "Clear search",
"archived_collections": "Archived Collections",
"share": "Share",
"private": "Private",
"public": "Public",
"archived": "Archived",
"name_location": "name, location",
"loading_adventures": "Loading adventures...",
"all_adventures_already_linked": "All adventures are already linked to this collection.",
"edit_collection": "Edit Collection",
"unarchive": "Unarchive",
"archive": "Archive",
"no_collections_to_add_location": "No collections found to add this location to.",
"create_collection_first": "Create a collection first to organize your adventures and memories.",
"done": "Done",
"adventures_available": "Adventures Available",
"collections_linked": "Collections Linked",
"not_visited": "Not Visited",
"archived_collection_message": "Collection archived successfully!",
@@ -207,110 +213,88 @@
"visited": "Visited",
"planned": "Planned",
"duration": "Duration",
"folder": "Folder",
"upcoming": "Upcoming",
"in_progress": "In Progress",
"completed": "Completed",
"day": "Day",
"days": "days",
"country": "country",
"in": "in",
"status_filter": "Status Filter",
"filters_and_sort": "Filters & Sort",
"all": "All",
"image_removed_success": "Image removed successfully!",
"image_removed_error": "Error removing image",
"no_image_url": "No image found at that URL.",
"image_upload_success": "Image uploaded successfully!",
"image_upload_error": "Error uploading image",
"dates": "Dates",
"wiki_image_error": "Error fetching image from Wikipedia",
"start_before_end_error": "Start date must be before end date",
"actions": "Actions",
"see_adventures": "See Adventures",
"image_fetch_failed": "Failed to fetch image",
"no_location": "Please enter a location",
"no_description_found": "No description found",
"location_created": "Location created",
"location_create_error": "Failed to create location",
"lodging": "Lodging",
"create_location": "Create Location",
"location_updated": "Location updated",
"location_update_error": "Failed to update location",
"set_to_pin": "Set to Pin",
"category_fetch_error": "Error fetching categories",
"new_location": "New Location",
"basic_information": "Basic Information",
"no_locations_to_recommendations": "No locations found. Add at least one location to get recommendations.",
"display_name": "Display Name",
"adventure_not_found": "There are no adventures to display. Add some using the plus button at the bottom right or try changing filters!",
"collection_contents": "Collection Contents",
"no_adventures_found": "No adventures found",
"no_locations_found": "No locations found",
"no_adventures_message": "Start documenting your adventures and planning new ones. Every journey has a story worth telling.",
"mark_visited": "Mark Visited",
"error_updating_regions": "Error updating regions",
"regions_updated": "regions updated",
"cities_updated": "cities updated",
"visited_region_check": "Visited Region Check",
"visited_region_check_desc": "By selecting this, the server will check all of your visited adventures and mark the regions they are located in as visited in world travel.",
"update_visited_regions": "Update Visited Regions",
"update_visited_regions_disclaimer": "This may take a while depending on the number of adventures you have visited.",
"link_new": "Link New...",
"add_new": "Add New...",
"transportation": "Transportation",
"note": "Note",
"checklist": "Checklist",
"collection_archived": "This collection has been archived.",
"visit_link": "Visit Link",
"collection_completed": "You've completed this collection!",
"collection_stats": "Collection Stats",
"keep_exploring": "Keep Exploring!",
"linked_adventures": "Linked Adventures",
"notes": "Notes",
"checklists": "Checklists",
"transportations": "Transportations",
"adventure_calendar": "Adventure Calendar",
"visit_calendar": "Visit Calendar",
"day": "Day",
"itineary_by_date": "Itinerary by Date",
"nothing_planned": "Nothing planned for this day. Enjoy the journey!",
"copied_to_clipboard": "Copied to clipboard!",
"copy_failed": "Copy failed",
"show": "Show",
"hide": "Hide",
"clear_location": "Clear Location",
"starting_airport": "Starting Airport",
"view_profile": "View Profile",
"joined": "Joined",
"ending_airport": "Ending Airport",
"no_location_found": "No location found",
"from": "From",
"to": "To",
"will_be_marked_location": "will be marked as visited once the location is saved.",
"start": "Start",
"end": "End",
"emoji_picker": "Emoji Picker",
"download_calendar": "Download Calendar",
"all_day": "All Day",
"ordered_itinerary": "Ordered Itinerary",
"itinerary": "Itinerary",
"all_linked_items": "All Linked Items",
"date_itinerary": "Date Itinerary",
"no_ordered_items": "Add items with dates to the collection to see them here.",
"itinerary_link_modal": {
"title": "Link Items to {date}",
"items_available": "{count} items available to link",
"items_on_this_day": "Items on this day",
"already_added_on_this_day": "Already added on this day",
"already_added_on_this_day_desc": "These items are already scheduled for this day.",
"already_added_other_days": "Already added on other days",
"already_added_other_days_desc": "These items are scheduled on different dates. Adding them here will update their date or add them as-is.",
"items_on_other_days": "Items on other days",
"items_on_other_days_desc": "These items have different dates. You can add them and optionally update their date to match.",
"no_unscheduled_items": "No unscheduled items available",
"no_unscheduled_items_desc": "All items have been added to the itinerary or there are no items to add.",
"add_to_itinerary": "Add to Itinerary",
"already_added": "Already Added",
"add_here": "Add Here",
"add_here_keep_date": "Add (Keep Date)"
},
"date_information": "Date Information",
"flight_information": "Flight Information",
"out_of_range": "Not in itinerary date range",
"preview": "Preview",
"finding_recommendations": "Discovering hidden gems for your next adventure",
"location_details": "Location Details",
"city": "City",
"region": "Region",
"md_instructions": "Write your markdown here...",
"days": "days",
"attachment_upload_success": "Attachment uploaded successfully!",
"attachment_upload_error": "Error uploading attachment",
"upload": "Upload",
"attachment_delete_success": "Attachment deleted successfully!",
"attachment_update_success": "Attachment updated successfully!",
"attachment_name": "Attachment Name",
"gpx_tip": "Upload GPX files to attachments to view them on the map!",
"attachment_update_error": "Error updating attachment",
"activities": {},
"lodging_information": "Lodging Information",
"price": "Price",
"reservation_number": "Reservation Number",
"filters_and_sort": "Filters & Sort",
"filters_and_stats": "Filters & Stats",
"travel_progress": "Travel Progress",
"left_collection_message": "Successfully left collection",
@@ -337,6 +321,8 @@
"location_display_name": "Location Display Name",
"or": "OR",
"click_on_map": "Click on the map to select a location",
"enter_location_display_name": "Enter location display name",
"airport_code_examples": "JFK, LAX, LHR...",
"back": "Back",
"processing": "Processing",
"no_file_selected": "No file selected",
@@ -416,7 +402,6 @@
"activity_name": "Activity Name",
"activity_name_placeholder": "Morning Run",
"sport_type": "Sport Type",
"sport_type_placeholder": "Trail Running",
"elapsed_time": "Elapsed Time",
"elevation_gain": "Elevation Gain",
"elevation_loss": "Elevation Loss",
@@ -440,9 +425,7 @@
"connect_to_wanderer": "Connect to Wanderer",
"activity_statistics": "Activity Statistics",
"activity_statistics_description": "Your fitness and activity achievements",
"activities_name": "Activities",
"total_recorded": "Total recorded",
"total_covered": "Total covered",
"active_duration": "Active duration",
"activity_name_required": "Activity name is required",
"confirm_delete_activity": "Are you sure you want to delete this activity?",
@@ -457,19 +440,7 @@
"rest": "Rest",
"high": "High",
"low": "Low",
"route_map": "Route Map",
"selected_images": "Selected Images",
"selected_attachments": "Selected Attachments",
"my_attachments": "My Attachments",
"linked_locations": "Linked Locations",
"lodging_save_error": "Error saving lodging",
"attachment_removed_success": "Attachment removed sucessfully",
"attachment_removed_error": "Error removing attachment",
"no_attachments": "No Attachments",
"no_attachments_desc": "Upload files to get started",
"attachments_upload_info": "Attachments will be uploaded after saving the",
"image_upload_info": "Images will be uploaded after saving the",
"no_images_desc": "Upload images to get started",
"activities_text": "activities",
"total_climbed": "Total climbed",
"distance_covered": "Distance covered",
@@ -478,18 +449,46 @@
"recorded_sessions": "Recorded sessions",
"activity_breakdown_by_category": "Activity Breakdown by Category",
"dates_not_saved": "Visit Not Added Yet",
"dates_not_saved_description": "Click add visit to save"
"dates_not_saved_description": "Click add visit to save",
"link_copied": "Link Copied",
"wiki_results_found": "Wikipedia Results",
"select": "Select",
"lodging_not_found": "Lodging Not Found",
"nights": "Nights",
"reservation": "Reservation",
"flight": "Flight",
"route": "Route",
"my_locations": "My Locations",
"no_linkable_locations": "No locations found that can be linked to this collection.",
"all_locations_already_linked": "All locations are already linked to this collection.",
"transportation_gpx_tip": "Upload GPX files here to have them displayed on the map",
"view": "View",
"overnight": "Overnight",
"saving": "Saving",
"countries": "Countries",
"regions": "Regions",
"cities": "Cities",
"stays": "Stays",
"airport_search_mode": "Airport Search Mode",
"location_search_mode": "Location Search Mode",
"departure_airport": "Departure Airport",
"start_location": "Start Location",
"arrival_airport": "Arrival Airport",
"end_location": "End Location",
"route_selected": "Route Selected",
"search_start_end_locations": "Search start and end locations",
"search_start_location": "Search start location",
"search_end_location": "Search end location",
"import_success": "Import Success",
"import_failed": "Import Failed",
"import_from_file": "Import from file",
"export_zip": "Export ZIP",
"export_failed": "Export failed",
"export_success": "Exported collection"
},
"worldtravel": {
"country_list": "Country List",
"num_countries": "countries found",
"cities_in": "Cities in",
"all": "All",
"partially_visited": "Partially Visited",
"not_visited": "Not Visited",
"completely_visited": "Completely Visited",
"all_subregions": "All Subregions",
"clear_search": "Clear Search",
"no_countries_found": "No countries found",
"no_countries_found_desc": "Try adjusting your search terms or filters to find the countries you're looking for.",
"clear_filters": "Clear Filters",
@@ -520,7 +519,6 @@
"filter_by_region": "Filter by Region",
"all_regions": "All Regions",
"clear_all_filters": "Clear All Filters",
"total_items": "Total Items",
"filter_by": "Filter by",
"interactive_map": "Interactive Map",
"no_regions_found": "No regions found",
@@ -531,10 +529,6 @@
"hide_map_labels": "Hide Map Labels",
"total_cities": "Total Cities",
"region_completed": "Region completed",
"newest_first": "Newest First",
"oldest_first": "Oldest First",
"visited_first": "Visited First",
"unvisited_first": "Unvisited First",
"getting_location_details": "Getting location details",
"hide_globe_spin": "Hide Globe Spin",
"show_globe_spin": "Show Globe Spin",
@@ -554,13 +548,15 @@
"show_less": "Show Less",
"show_more": "Show More",
"about_country": "About Country",
"about_region": "About Region"
"about_region": "About Region",
"all_locations_visited": "All locations visited!"
},
"auth": {
"username": "Username",
"password": "Password",
"forgot_password": "Forgot Password?",
"signup": "Signup",
"user_email_verification_required": "Email verification required. Please check your email for a verification link.",
"login_error": "Unable to login with the provided credentials.",
"login": "Login",
"email": "Email",
@@ -570,7 +566,6 @@
"registration_disabled": "Registration is currently disabled.",
"profile_picture": "Profile Picture",
"public_profile": "Public Profile",
"public_tooltip": "With a public profile, users can share collections with you and view your profile on the users page.",
"new_password": "New Password (6+ characters)",
"or_3rd_party": "Or login with a third-party service",
"no_public_locations": "No public locations found",
@@ -750,7 +745,21 @@
"archived_appear_here": "Archived collections will appear here.",
"linked": "Linked",
"available": "Available",
"try_different_search": "Try a different search or filter."
"try_different_search": "Try a different search or filter.",
"update_collection_details": "Updte collection details",
"create_new_collection": "Create new collection",
"public_collection_description": "Allow anyone with the link to view",
"enter_collection_name": "Enter collection name",
"changing_date_title": "Changing dates will affect itinerary items",
"changing_date_warning": "Any itinerary items outside the new date range will be removed from the itinerary and placed back into the collection's undated items.",
"cover_image": "Cover image",
"cover_image_hint": "Choose a cover from images in this collection.",
"no_images_available": "No images available from linked locations yet.",
"cover": "Cover",
"location_primary": "Location cover",
"set_cover": "Set cover",
"clear_cover": "Clear cover",
"collaborators": "Collaborators"
},
"notes": {
"note_deleted": "Note deleted successfully!",
@@ -763,7 +772,6 @@
"content": "Content",
"save": "Save",
"note_public": "This note is public because it is in a public collection.",
"add_a_link": "Add a link",
"invalid_url": "Invalid URL",
"enter_note_title": "Enter note title",
"update_note_details": "Editing note",
@@ -800,9 +808,6 @@
"flight_number": "Flight Number",
"from_location": "From Location",
"to_location": "To Location",
"fetch_location_information": "Fetch Location Information",
"starting_airport_desc": "Enter starting airport code (e.g., JFK)",
"ending_airport_desc": "Enter ending airport code (e.g., LAX)",
"edit": "Edit",
"modes": {
"car": "Car",
@@ -822,7 +827,13 @@
"enter_link": "Enter link",
"enter_flight_number": "Enter flight number",
"enter_from_location": "Enter from location",
"enter_to_location": "Enter to location"
"enter_to_location": "Enter to location",
"arrival_code": "Arrival Code",
"departure_code": "Departure Code",
"arrival_date": "Arrival Date",
"departure_timezone": "Departure Timezone",
"arrival_timezone": "Arrival Timezone",
"departure_date": "Departure Date"
},
"lodging": {
"new_lodging": "New Lodging",
@@ -843,13 +854,9 @@
"update_lodging_details": "Update Lodging Details",
"create_new_lodging": "New Lodging",
"enter_lodging_name": "Enter lodging name",
"enter_reservation_number": "Enter reservation number",
"enter_price": "Enter price"
"enter_reservation_number": "Enter reservation number"
},
"search": {
"adventurelog_results": "AdventureLog Results",
"public_adventures": "Public Adventures",
"online_results": "Online Results",
"result": "Result",
"results": "Results",
"found": "found",
@@ -859,14 +866,9 @@
},
"map": {
"view_details": "View Details",
"adventure_map": "Adventure Map",
"location_map": "Location Map",
"map_options": "Map Options",
"show_visited_regions": "Show Visited Regions",
"add_adventure_at_marker": "Add New Adventure at Marker",
"add_location_at_marker": "Add New Location at Marker",
"clear_marker": "Clear Marker",
"add_adventure": "Add New Adventure",
"add_location": "Add New Location",
"adventure_stats": "Adventure Stats",
"map_controls": "Map Controls",
@@ -876,8 +878,8 @@
"marker_placed_on_map": "Marker placed on map",
"place_marker_desc_location": "Click on the map to place a marker.",
"locations_shown": "locations shown",
"show_activities": "Show Activities",
"show_visited_cities": "Visited Cities"
"show_visited_cities": "Visited Cities",
"search_locations": "Search locations..."
},
"share": {
"shared": "Shared",
@@ -886,10 +888,6 @@
"share_desc": "Share this collection with other users.",
"shared_with": "Shared With",
"no_users_shared": "No users shared with",
"not_shared_with": "Not Shared With",
"no_shared_found": "No collections found that are shared with you.",
"set_public": "In order to allow users to share with you, you need your profile set to public.",
"go_to_settings": "Go to settings",
"revoke_invite": "Revoke Invite",
"send_invite": "Send Invite",
"available": "Available",
@@ -904,7 +902,6 @@
"languages": {},
"profile": {
"member_since": "Member since",
"user_stats": "User Stats",
"visited_countries": "Visited Countries",
"visited_regions": "Visited Regions",
"visited_cities": "Visited Cities",
@@ -936,7 +933,6 @@
"total_visited_cities": "Total Visited Cities",
"recent_adventures": "Recent Adventures",
"no_recent_adventures": "No recent adventures?",
"add_some": "Why not start planning your next adventure? You can add a new adventure by clicking the button below.",
"document_some_adventures": "Start documenting your travels and build your personal adventure map!",
"view_all": "View All",
"welcome_text_1": "You've been on",
@@ -973,24 +969,42 @@
"by_date": "By Date",
"by_album": "By Album",
"image_search_placeholder": "Search using Immich",
"select_date": "Select Date",
"select_album": "Select Album",
"loading_albums": "Loading Albums",
"loading": "Loading",
"no_images": "No Images Found",
"try_different_date": "Try a different date",
"select_album_first": "Select an Album First"
"try_different_date": "Try a different date"
},
"google_maps": {
"google_maps_integration_desc": "Connect your Google Maps account to get high-quality location search results and recommendations.",
"google_maps_integration_desc_no_staff": "This integration must first be enabled by the admin on this server."
},
"recomendations": {
"recommendation": "Recommendation",
"recommendations": "Recommendations",
"location_recommendations": "Location Recommendations",
"food": "Food",
"tourism": "Tourism"
"tourism": "Tourism",
"discover_places": "Discover Places",
"search_around_location": "Search Around Location",
"search_by_address": "Search by Address",
"lodging": "Hotels & Lodging",
"search_radius_label": "Search Radius:",
"searching": "Searching...",
"minimum_rating": "Minimum Rating",
"minimum_reviews": "Minimum Reviews",
"open_now_only": "Open Now Only",
"total_results": "Total Results",
"average_rating": "Average Rating",
"map_view": "Map View",
"no_results_yet": "No Results Yet",
"select_location_or_query": "Select a location or enter a search query to discover amazing places nearby!",
"use_search_instead": "Use search instead",
"any": "Any",
"add_location": "Add Location",
"add_lodging": "Add Lodging",
"hours": "Hours",
"open": "Open",
"away": "away",
"your_location": "Your Location"
},
"calendar": {
"today": "Today",
@@ -1001,7 +1015,9 @@
"total_events": "Total Events",
"calendar_overview": "Calendar Overview",
"filtered_results": "Filtered Results",
"all_day_event": "All Day Event"
"all_day_event": "All Day Event",
"event timezone": "Event timezone",
"your timezone": "Your timezone"
},
"locations": {
"location": "Location",
@@ -1025,11 +1041,7 @@
},
"strava": {
"strava_integration_desc": "Connect to Strava to easily import your activties into locations and visits",
"not_configured": "Strava Not Configured",
"admin_setup_required": "The server administrator must enable it globally",
"ready_to_connect": "Ready to Connect",
"connect_account": "Connect Account",
"account_connected": "Account Connected",
"disconnect": "Disconnect",
"authorization_error": "Error redirecting to strava authorization URL",
"disconnected": "Successfully disconnected from Strava",
@@ -1041,5 +1053,82 @@
"wanderer_integration_desc": "Connect to Wanderer to easily import and view your trails in locations",
"connection_error": "Error connecting to Wanderer",
"connected": "Successfully connected to Wanderer"
},
"itinerary": {
"remove_from_itinerary": "Remove from Day",
"item_remove_success": "Item removed from itinerary",
"item_remove_error": "Error removing item from itinerary",
"auto_generate_itinerary": "Auto-Generate Itinerary",
"auto_generate_itinerary_desc": "This collection has dated items but no itinerary yet. Would you like to automatically organize them by date?",
"no_itinerary_yet": "No Itinerary Yet",
"start_planning": "Start planning your trip by adding items to specific days.",
"generating": "Generating",
"auto_generate": "Auto-Generate",
"link_existing_item": "Link existing item",
"no_plans_for_day": "No plans for this day",
"multi_day": "Multi-day",
"item_not_found": "Item not found",
"staying_overnight": "Staying overnight",
"unscheduled_items": "Unscheduled Items",
"unscheduled_items_desc": "These items are linked to this trip but haven't been added to a specific day yet.",
"change_day": "Change Day",
"trip_context": "Trip Context",
"move_to_trip_context": "Move to Trip Context",
"trip_context_info": "Trip context items apply to the whole trip — for example locations that are the destination itself, general notes, or packing lists that are important for the entire trip.",
"add_to_trip_context": "Add trip context",
"no_trip_context_items": "No trip context items yet.",
"add_description": "Add description",
"moved_to_trip_context": "Moved to trip context",
"failed_to_move_to_trip_context": "Failed to move to trip context",
"item_already_in_trip_context": "Items already in trip context",
"added_to_trip_context": "Added to trip context",
"failed_to_add_to_trip_context": "Failed to add item to trip context",
"remove_from_trip_context": "Remove from Context",
"drag_to_reorder": "Drag to reorder",
"add_to_day": "Add to day"
},
"common": {
"show_less": "Hide details",
"show_more": "Show more"
},
"collections": {
"not_found": "Collection Not Found",
"all_items": "All Items",
"no_calendar_events": "No visits are scheduled for this collection yet.",
"events": "events",
"times_shown_in": "Times shown in",
"event_timezone": "Event timezone",
"local_timezone": "My timezone",
"event_timezone_desc": "Event timezone uses the location or item timezone when available. My timezone uses",
"trip_costs": "Trip Costs",
"currency": "Currency",
"currencies": "Currencies",
"no_priced_items": "Add prices to locations, lodging, or transportation to see trip totals by currency.",
"statistics": "Statistics"
},
"currencies": {
"USD": "US Dollar",
"EUR": "Euro",
"GBP": "British Pound",
"JPY": "Japanese Yen",
"AUD": "Australian Dollar",
"CAD": "Canadian Dollar",
"CHF": "Swiss Franc",
"CNY": "Chinese Yuan",
"HKD": "Hong Kong Dollar",
"SGD": "Singapore Dollar",
"SEK": "Swedish Krona",
"NOK": "Norwegian Krone",
"DKK": "Danish Krone",
"NZD": "New Zealand Dollar",
"INR": "Indian Rupee",
"MXN": "Mexican Peso",
"BRL": "Brazilian Real",
"ZAR": "South African Rand",
"AED": "UAE Dirham",
"TRY": "Turkish Lira",
"select_currency": "Select currency",
"search": "Search currency",
"no_matches": "No matches"
}
}

View File

@@ -1,14 +1,11 @@
{
"navbar": {
"adventures": "Aventuras",
"collections": "Colecciones",
"worldtravel": "Viajar por el Mundo",
"map": "Mapa",
"users": "Usuarios",
"search": "Buscar",
"profile": "Perfil",
"greeting": "Hola",
"my_adventures": "Mis Aventuras",
"shared_with_me": "Compartido Conmigo",
"settings": "Ajustes",
"logout": "Cerrar Sesión",
@@ -26,22 +23,18 @@
"night": "Noche",
"northernLights": "Aurora del norte"
},
"my_tags": "Mis etiquetas",
"tag": "Etiqueta",
"language_selection": "Idioma",
"support": "Soporte",
"calendar": "Calendario",
"admin_panel": "Panel de administración",
"navigation": "Navegación"
"navigation": "Navegación",
"worldtravel": "Viajes por el mundo"
},
"about": {
"about": "Acerca de",
"license": "Licenciado bajo la Licencia GPL-3.0.",
"source_code": "Código Fuente",
"message": "Hecho con ❤️ en los Estados Unidos.",
"oss_attributions": "Atribuciones de Código Abierto",
"nominatim_1": "La búsqueda de ubicaciones y geocodificación es proporcionada por",
"nominatim_2": "Sus datos están licenciados bajo la licencia ODbL.",
"other_attributions": "Atribuciones adicionales se pueden encontrar en el archivo README.",
"close": "Cerrar",
"generic_attributions": "Inicie sesión en AdventureLog para ver las atribuciones para integraciones y servicios habilitados.",
@@ -74,22 +67,17 @@
},
"adventures": {
"open_details": "Abrir Detalles",
"edit_adventure": "Editar Aventura",
"remove_from_collection": "Eliminar de la Colección",
"add_to_collection": "Añadir a la Colección",
"delete": "Eliminar",
"no_image_found": "No se encontró ninguna imagen",
"collection": "Colección",
"homepage": "Página principal",
"latitude": "Latitud",
"longitude": "Longitud",
"visit": "Visita",
"visits": "Visitas",
"adventure": "Aventura",
"count_txt": "resultados que coinciden con su búsqueda",
"create_new": "Crear nuevo...",
"ascending": "Ascendente",
"collection_adventures": "Incluir aventuras de colección",
"date": "Fecha",
"descending": "Descendente",
"filter": "Filtrar",
@@ -104,7 +92,6 @@
"clear": "Limpiar",
"archived_collections": "Colecciones archivadas",
"my_collections": "Mis colecciones",
"open_filters": "Abrir filtros",
"private": "Privado",
"public": "Público",
"archived_collection_message": "¡Colección archivada exitosamente!",
@@ -121,114 +108,70 @@
"visited": "Visitado",
"dates": "Fechas",
"duration": "Duración",
"image_removed_error": "Error al eliminar la imagen",
"image_removed_success": "¡Imagen eliminada exitosamente!",
"image_upload_error": "Error al subir la imagen",
"image_upload_success": "¡Imagen cargada exitosamente!",
"no_image_url": "No se encontró ninguna imagen en esa URL.",
"start_before_end_error": "La fecha de inicio debe ser anterior a la fecha de finalización",
"wiki_image_error": "Error al obtener la imagen de Wikipedia",
"actions": "Acciones",
"see_adventures": "Ver Aventuras",
"activity_types": "Tipos de actividad",
"add": "Agregar",
"add_notes": "Agregar notas",
"basic_information": "Información básica",
"category": "Categoría",
"clear_map": "Limpiar mapa",
"copy_link": "Copiar enlace",
"date_constrain": "Restringir a las fechas de la colección",
"description": "Descripción",
"end_date": "Fecha de finalización",
"fetch_image": "Buscar imagen",
"generate_desc": "Generar descripción",
"image": "Imagen",
"image_fetch_failed": "No se pudo recuperar la imagen",
"link": "Enlace",
"location": "Ubicación",
"location_information": "Información de ubicación",
"my_images": "Mis imágenes",
"no_description_found": "No se encontró ninguna descripción",
"no_images": "Sin imágenes",
"no_location": "Por favor ingresa una ubicación",
"no_results": "No se encontraron resultados",
"remove": "Eliminar",
"save_next": "Guardar y Siguiente",
"search_for_location": "Buscar una ubicación",
"search_results": "Resultados de búsqueda",
"start_date": "Fecha de inicio",
"upload_image": "Subir imagen",
"url": "URL",
"warning": "Advertencia",
"wikipedia": "Wikipedia",
"adventure_not_found": "No hay aventuras que mostrar. ¡Agregue algunas usando el botón más en la parte inferior derecha o intente cambiar los filtros!",
"no_adventures_found": "No se encontraron aventuras",
"my_adventures": "Mis aventuras",
"no_linkable_adventures": "No se encontraron aventuras que puedan vincularse a esta colección.",
"mark_visited": "Marcar como visitado",
"not_visited": "No visitado",
"all": "Todo",
"error_updating_regions": "Error al actualizar regiones",
"regions_updated": "regiones actualizadas",
"update_visited_regions": "Actualizar regiones visitadas",
"update_visited_regions_disclaimer": "Esto puede llevar un tiempo dependiendo de la cantidad de aventuras que hayas visitado.",
"visited_region_check": "Verificación de región visitada",
"visited_region_check_desc": "Al seleccionar esto, el servidor verificará todas sus aventuras visitadas y marcará las regiones en las que se encuentran como visitadas en viajes mundiales.",
"add_new": "Agregar nuevo...",
"checklist": "Lista de tareas",
"checklists": "Listas de tareas",
"collection_archived": "Esta colección ha sido archivada.",
"collection_completed": "¡Has completado esta colección!",
"collection_stats": "Estadísticas de colección",
"days": "días",
"itineary_by_date": "Itinerario por fecha",
"keep_exploring": "¡Sigue explorando!",
"link_new": "Vincula una Nueva...",
"linked_adventures": "Aventuras vinculadas",
"links": "Enlaces",
"note": "Nota",
"notes": "Notas",
"nothing_planned": "Nada planeado para este día. ¡Disfruta el viaje!",
"transportation": "Transporte",
"transportations": "Transportes",
"visit_link": "Visitar enlace",
"day": "Día",
"add_a_tag": "Agregar una etiqueta",
"tags": "Etiquetas",
"set_to_pin": "Establecer en Marcador",
"category_fetch_error": "Error al buscar categorías",
"copied_to_clipboard": "¡Copiado al portapapeles!",
"copy_failed": "Copia fallida",
"adventure_calendar": "Calendario de aventuras",
"emoji_picker": "Selector de emojis",
"hide": "Ocultar",
"show": "Mostrar",
"download_calendar": "Descargar Calendario",
"md_instructions": "Escriba aquí con markdown...",
"preview": "Vista Previa",
"checklist_delete_confirm": "¿Está seguro de que desea eliminar esta lista de tareas? Esta acción no se puede deshacer.",
"clear_location": "Borrar ubicación",
"date_information": "Información de fecha",
"delete_checklist": "Eliminar lista de tareas",
"delete_note": "Eliminar nota",
"delete_transportation": "Eliminar transporte",
"end": "Fin",
"ending_airport": "Aeropuerto final",
"flight_information": "Información de vuelo",
"from": "De",
"no_location_found": "No se encontró ninguna ubicación",
"note_delete_confirm": "¿Estás seguro de que deseas eliminar esta nota? Esta acción no se puede deshacer.",
"out_of_range": "No en el rango de fechas del itinerario",
"start": "Comenzar",
"starting_airport": "Aeropuerto de inicio",
"to": "A",
"transportation_delete_confirm": "¿Está seguro de que desea eliminar este transporte? Esta acción no se puede deshacer.",
"cities_updated": "ciudades actualizadas",
"finding_recommendations": "Descubriendo gemas ocultas para tu próxima aventura",
"attachment": "Adjunto",
"attachment_delete_success": "¡El archivo adjunto se eliminó exitosamente!",
"attachment_update_error": "Error al actualizar el archivo adjunto",
"attachment_update_success": "¡Adjunto actualizado exitosamente!",
"attachment_upload_error": "Error al cargar el archivo adjunto",
"attachment_upload_success": "¡El archivo adjunto se cargó exitosamente!",
"attachments": "Adjuntos",
@@ -238,27 +181,16 @@
"attachment_name": "Nombre del archivo adjunto",
"city": "Ciudad",
"delete_lodging": "Eliminar alojamiento",
"display_name": "Nombre para mostrar",
"location_details": "Detalles de la ubicación",
"lodging": "Alojamiento",
"lodging_delete_confirm": "¿Estás seguro de que quieres eliminar este lugar de alojamiento? Esta acción no se puede deshacer.",
"lodging_information": "Información de alojamiento",
"price": "Precio",
"region": "Región",
"reservation_number": "Número de reserva",
"open_in_maps": "Abrir en mapas",
"all_day": "Todo el día",
"collection_no_start_end_date": "Agregar una fecha de inicio y finalización a la colección desbloqueará las funciones de planificación del itinerario en la página de colección.",
"date_itinerary": "Itinerario de fecha",
"no_ordered_items": "Agregue elementos con fechas a la colección para verlos aquí.",
"ordered_itinerary": "Itinerario ordenado",
"invalid_date_range": "Rango de fechas no válido",
"timezone": "Zona horaria",
"no_visits": "No hay visitas",
"arrival_timezone": "Zona horaria de llegada",
"departure_timezone": "Zona horaria de salida",
"arrival_date": "Fecha de llegada",
"departure_date": "Fecha de salida",
"coordinates": "Coordenadas",
"copy_coordinates": "Coordenadas de copia",
"sun_times": "Horarios del Sol",
@@ -266,7 +198,6 @@
"sunset": "Atardecer",
"timed": "Cronometrado",
"distance": "Distancia",
"all_linked_items": "Todos los artículos vinculados",
"itinerary": "Itinerario",
"joined": "Unido",
"view_profile": "Ver perfil",
@@ -275,15 +206,11 @@
"no_adventures_message": "Comience a documentar sus aventuras y planificar nuevas. Cada viaje tiene una historia que vale la pena contar.",
"filters_and_stats": "Filtros",
"travel_progress": "Progreso del viaje",
"adventures_available": "Aventuras disponibles",
"all_adventures_already_linked": "Todas las aventuras ya están vinculadas a esta colección.",
"collections_linked": "Colecciones vinculadas",
"create_collection_first": "Cree una colección primero para organizar sus aventuras y recuerdos.",
"delete_collection_warning": "¿Estás seguro de que quieres eliminar esta colección? Esta acción no se puede deshacer.",
"done": "Hecho",
"loading_adventures": "Cargando aventuras ...",
"name_location": "Nombre, ubicación",
"collection_contents": "Contenido de la colección",
"check_in": "Registro",
"check_out": "Salida",
"collection_link_location_error": "Error de vinculación de la ubicación para la recopilación",
@@ -294,22 +221,14 @@
"create_location": "Crear ubicación",
"delete_location": "Eliminar la ubicación",
"edit_location": "Editar ubicación",
"location_create_error": "No se pudo crear la ubicación",
"location_created": "Ubicación creada",
"location_delete_confirm": "¿Estás seguro de que quieres eliminar esta ubicación? Esta acción no se puede deshacer.",
"location_delete_success": "Ubicación eliminada con éxito!",
"location_not_found": "Ubicación no encontrada",
"location_not_found_desc": "No se ha encontrado la ubicación que está buscando. Pruebe con otra ubicación o vuelva a intentarlo más tarde.",
"location_update_error": "No se pudo actualizar la ubicación",
"location_updated": "Ubicación actualizada",
"new_location": "Nueva ubicación",
"no_collections_to_add_location": "No se encuentran colecciones para agregar esta ubicación a.",
"no_locations_to_recommendations": "No se encontraron ubicaciones. Agregue al menos una ubicación para obtener recomendaciones.",
"public_location": "Ubicación pública",
"share_location": "¡Comparte esta ubicación!",
"visit_calendar": "Visitar el calendario",
"wiki_location_desc": "Extrae extracto del artículo de Wikipedia que coincide con el nombre de la ubicación.",
"will_be_marked_location": "se marcará según lo visitado una vez que se guarde la ubicación.",
"no_locations_found": "No se encontraron ubicaciones",
"image_modal_navigate": "Use teclas de flecha o haga clic para navegar",
"details": "Detalles",
@@ -426,7 +345,6 @@
"rest_time": "Tiempo de descanso",
"saved_activities": "Actividades guardadas",
"sport_type": "Tipo deportivo",
"sport_type_placeholder": "Sendero",
"start_lat": "Iniciar latitud",
"start_lng": "Iniciar longitud",
"strava_activity_ready": "Actividad de Strava lista",
@@ -438,10 +356,8 @@
"current_attachments": "Archivos adjuntos actuales",
"connect_to_wanderer": "Conéctese con Wanderer",
"active_duration": "Duración activa",
"activities_name": "Actividades",
"activity_statistics": "Estadísticas de actividad",
"activity_statistics_description": "Tus logros de aptitud y actividad",
"total_covered": "Total cubierto",
"total_recorded": "Total registrado",
"activity_name_required": "Se requiere el nombre de la actividad",
"add_activity": "Agregar actividad",
@@ -456,19 +372,7 @@
"low": "Bajo",
"rest": "Descansar",
"total": "Total",
"attachment_removed_error": "Error al eliminar el archivo adjunto",
"attachment_removed_success": "Adjunto eliminado con éxito",
"attachments_upload_info": "Los archivos adjuntos se cargarán después de guardar el",
"image_upload_info": "Las imágenes se cargarán después de guardar el",
"linked_locations": "Ubicaciones vinculadas",
"lodging_save_error": "Error al horno de alojamiento",
"my_attachments": "Mis archivos adjuntos",
"no_attachments": "Sin archivos adjuntos",
"no_attachments_desc": "Subir archivos para comenzar",
"no_images_desc": "Subir imágenes para comenzar",
"route_map": "Mapa de ruta",
"selected_attachments": "Archivos adjuntos seleccionados",
"selected_images": "Imágenes seleccionadas",
"activities_text": "actividades",
"activity_breakdown_by_category": "Desglose de actividad por categoría",
"distance_covered": "Distancia cubierta",
@@ -477,17 +381,112 @@
"total_climbed": "Total escalado",
"total_distance": "Distancia total",
"dates_not_saved": "Visita aún no agregada",
"dates_not_saved_description": "Haga clic en Agregar visita a Guardar"
"dates_not_saved_description": "Haga clic en Agregar visita a Guardar",
"active_days": "Días activos",
"add_here": "Añadir aquí",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Modo de búsqueda de aeropuerto",
"all_locations_already_linked": "Todas las ubicaciones ya están vinculadas a esta colección.",
"arrival_airport": "Aeropuerto de llegada",
"avg_rating": "Calificación promedio",
"burned": "quemado",
"categories": "Categorías",
"cities": "Ciudades",
"clear_search": "Borrar búsqueda",
"click_map_add_marker": "Haga clic en el mapa para colocar un marcador y luego agréguelo aquí.",
"completed": "Terminado",
"content_media": "Contenido",
"countries": "Países",
"country": "país",
"departure_airport": "Aeropuerto de salida",
"distance_traveled": "Distancia recorrida",
"end_location": "Ubicación final",
"enter_location_display_name": "Ingrese el nombre para mostrar de la ubicación",
"files": "Archivos",
"flight": "Vuelo",
"folder": "Carpeta",
"folder_view": "Vista de carpetas: muestra todos los datos",
"footprints": "Huellas",
"gained": "ganado",
"geographic_breakdown": "Desglose geográfico",
"gpx_routes": "Rutas GPX",
"hide_filters": "Ocultar filtros",
"images_captured": "Imágenes capturadas",
"in": "en",
"in_progress": "En curso",
"items": "elementos",
"itinerary_link_modal": {
"add_here": "Añadir aquí",
"add_here_keep_date": "Agregar (Mantener fecha)",
"add_to_itinerary": "Añadir al itinerario",
"already_added": "Ya agregado",
"already_added_on_this_day": "Ya agregado en este día",
"already_added_on_this_day_desc": "Estos artículos ya están programados para este día.",
"already_added_other_days": "Ya agregado en otros días.",
"already_added_other_days_desc": "Estos artículos están programados en diferentes fechas. \nAgregarlos aquí actualizará su fecha o los agregará tal cual.",
"items_available": "{count} elementos disponibles para vincular",
"items_on_other_days": "Artículos de otros días",
"items_on_other_days_desc": "Estos artículos tienen diferentes fechas. \nPuede agregarlos y, opcionalmente, actualizar su fecha para que coincida.",
"items_on_this_day": "Artículos en este día",
"no_unscheduled_items": "No hay artículos no programados disponibles",
"no_unscheduled_items_desc": "Todos los artículos se han agregado al itinerario o no hay artículos para agregar.",
"title": "Vincular elementos a {fecha}"
},
"link_copied": "Enlace copiado",
"lists": "Liza",
"location_search_mode": "Modo de búsqueda de ubicación",
"locations_visited": "Lugares visitados",
"lodging_not_found": "Alojamiento no encontrado",
"lodging_types": "Tipos de alojamiento",
"more_details": "Más detalles",
"my_locations": "Mis ubicaciones",
"nights": "Noches",
"no_linkable_locations": "No se encontraron ubicaciones que puedan vincularse a esta colección.",
"of_locations": "de ubicaciones",
"on_this_trip": "en este viaje",
"overnight": "Durante la noche",
"physical_activities": "Actividades Físicas",
"pins": "patas",
"places": "Lugares",
"regions": "Regiones",
"reservation": "Reserva",
"reset_filters": "Reiniciar",
"route": "Ruta",
"route_selected": "Ruta seleccionada",
"routes_and_activities": "Rutas",
"saving": "Ahorro",
"search_end_location": "Ubicación final de la búsqueda",
"search_start_end_locations": "Buscar ubicaciones de inicio y fin",
"search_start_location": "Ubicación de inicio de búsqueda",
"segments": "Segmentos",
"select": "Seleccionar",
"show_filters": "Mostrar filtros",
"start_location": "Ubicación de inicio",
"status_filter": "Filtro de estado",
"stays": "Corsé",
"tasks_done": "Tareas realizadas",
"total_days": "Días totales",
"total_visits": "Visitas totales",
"transport_activity_paths": "Transporte",
"transportation_gpx_tip": "Cargue archivos GPX aquí para que se muestren en el mapa",
"traveled": "viajado",
"travelers": "Viajeros",
"trip_timeline": "Cronología del viaje",
"trip_window": "Ventana de viaje",
"upcoming": "Próximo",
"view": "Vista",
"wiki_results_found": "Resultados de Wikipedia",
"with_activities": "Con actividades",
"written": "Escrito",
"export_failed": "Exportación fallida",
"export_success": "Colección exportada",
"export_zip": "Exportar ZIP",
"import_failed": "Importación fallida",
"import_from_file": "Importar desde archivo",
"import_success": "Importación exitosa"
},
"worldtravel": {
"all": "Todo",
"all_subregions": "Todas las subregiones",
"clear_search": "Borrar búsqueda",
"completely_visited": "Visitado completamente",
"no_countries_found": "No se encontraron países",
"not_visited": "No visitado",
"num_countries": "países encontrados",
"partially_visited": "Parcialmente visitado",
"country_list": "Lista de países",
"cities": "ciudades",
"failed_to_mark_visit": "No se pudo marcar la visita a",
@@ -529,11 +528,6 @@
"total_regions": "Total de regiones",
"region_completed": "Región completada",
"total_cities": "Ciudades totales",
"newest_first": "Más reciente primero",
"oldest_first": "El más antiguo primero",
"unvisited_first": "Primero no visitado",
"visited_first": "Visitado primero",
"total_items": "Total de artículos",
"getting_location_details": "Obtener detalles de ubicación",
"cities_available": "Ciudades disponibles",
"destination_revealed": "¡Destino revelado!",
@@ -553,7 +547,8 @@
"about_country": "Acerca del país",
"about_region": "Acerca de la región",
"show_less": "Mostrar menos",
"show_more": "Mostrar más"
"show_more": "Mostrar más",
"all_locations_visited": "¡Todos los lugares visitados!"
},
"auth": {
"forgot_password": "¿Has olvidado tu contraseña?",
@@ -569,7 +564,6 @@
"registration_disabled": "El registro está actualmente deshabilitado.",
"profile_picture": "Foto de perfil",
"public_profile": "Perfil público",
"public_tooltip": "Con un perfil público, los usuarios pueden compartir colecciones con usted y ver su perfil en la página de usuarios.",
"new_password": "Nueva contraseña",
"or_3rd_party": "O inicie sesión con un servicio de terceros",
"no_public_collections": "No se encontraron colecciones públicas",
@@ -579,7 +573,8 @@
"enter_password": "Ingrese su contraseña",
"enter_username": "Ingrese su nombre de usuario",
"logging_in": "Iniciar sesión",
"totp": "Código de dos factores"
"totp": "Código de dos factores",
"user_email_verification_required": "Se requiere verificación por correo electrónico. \nPor favor revise su correo electrónico para obtener un enlace de verificación."
},
"users": {
"no_users_found": "No se encontraron usuarios con perfiles públicos."
@@ -771,10 +766,23 @@
"shared_collections": "Colecciones compartidas",
"available": "Disponible",
"linked": "Vinculado",
"try_different_search": "Pruebe una búsqueda o filtro diferente."
"try_different_search": "Pruebe una búsqueda o filtro diferente.",
"changing_date_title": "El cambio de fechas afectará los elementos del itinerario.",
"changing_date_warning": "Cualquier elemento del itinerario fuera del nuevo rango de fechas se eliminará del itinerario y se volverá a colocar en los elementos sin fecha de la colección.",
"clear_cover": "cubierta transparente",
"collaborators": "Colaboradores",
"cover": "Cubrir",
"cover_image": "Imagen de portada",
"cover_image_hint": "Elija una portada entre las imágenes de esta colección.",
"create_new_collection": "Crear nueva colección",
"enter_collection_name": "Introduzca el nombre de la colección",
"location_primary": "Portada de ubicación",
"no_images_available": "Aún no hay imágenes disponibles de las ubicaciones vinculadas.",
"public_collection_description": "Permitir que cualquier persona con el enlace pueda ver",
"set_cover": "Establecer cubierta",
"update_collection_details": "Actualizar detalles de la colección"
},
"notes": {
"add_a_link": "Agregar un enlace",
"content": "Contenido",
"editing_note": "Editando nota",
"failed_to_save": "No se pudo guardar la nota",
@@ -811,9 +819,6 @@
"flight_number": "Número de vuelo",
"from_location": "Desde la ubicación",
"transportation_delete_error": "Error al eliminar el transporte",
"ending_airport_desc": "Ingrese el código de aeropuerto final (por ejemplo, LAX)",
"fetch_location_information": "Información de ubicación para obtener",
"starting_airport_desc": "Ingrese el código de aeropuerto inicial (por ejemplo, JFK)",
"create_new_transportation": "Nuevo transporte",
"enter_flight_number": "Ingrese el número de vuelo",
"enter_from_location": "Ingrese desde la ubicación",
@@ -821,12 +826,15 @@
"enter_to_location": "Ingrese a la ubicación",
"enter_transportation_name": "Ingrese el nombre del transporte",
"select_type": "Tipo de selección",
"update_transportation_details": "Actualizar detalles de transporte"
"update_transportation_details": "Actualizar detalles de transporte",
"arrival_code": "Código de llegada",
"arrival_date": "Fecha de llegada",
"arrival_timezone": "Zona horaria de llegada",
"departure_code": "Código de salida",
"departure_date": "Fecha de salida",
"departure_timezone": "Zona horaria de salida"
},
"search": {
"adventurelog_results": "Resultados del registro de aventuras",
"online_results": "Resultados en línea",
"public_adventures": "Aventuras públicas",
"cities": "Ciudades",
"countries": "Países",
"found": "encontró",
@@ -835,12 +843,7 @@
"try_searching_desc": "Intente buscar aventuras, colecciones, países, regiones, ciudades o usuarios."
},
"map": {
"add_adventure": "Agregar nueva aventura",
"add_adventure_at_marker": "Agregar nueva aventura en Marker",
"adventure_map": "Mapa de aventuras",
"clear_marker": "Borrar marcador",
"map_options": "Opciones de mapa",
"show_visited_regions": "Mostrar regiones visitadas",
"view_details": "Ver detalles",
"adventure_stats": "Estadísticas de aventura",
"completion": "Terminación",
@@ -853,20 +856,16 @@
"location_map": "Mapa de ubicación",
"locations_shown": "ubicaciones mostradas",
"place_marker_desc_location": "Haga clic en el mapa para colocar un marcador.",
"show_activities": "Mostrar actividades",
"show_visited_cities": "Ciudades visitadas"
"show_visited_cities": "Ciudades visitadas",
"search_locations": "Buscar ubicaciones..."
},
"share": {
"no_users_shared": "Ningún usuario compartió con",
"not_shared_with": "No compartido con",
"share_desc": "Comparte esta colección con otros usuarios.",
"shared": "Compartido",
"shared_with": "Compartido con",
"unshared": "Incompartible",
"with": "con",
"go_to_settings": "Ir a configuración",
"no_shared_found": "No se encontraron colecciones que se compartan contigo.",
"set_public": "Para permitir que los usuarios compartan contenido con usted, necesita que su perfil esté configurado como público.",
"available": "Disponible",
"pending": "Pendiente",
"revoke_invite": "Revocar la invitación",
@@ -880,7 +879,6 @@
},
"profile": {
"member_since": "Miembro desde",
"user_stats": "Estadísticas de usuario",
"visited_countries": "Países visitados",
"visited_regions": "Regiones visitadas",
"visited_cities": "Ciudades Visitadas",
@@ -905,7 +903,6 @@
"location_update_after_refresh": "Las tarjetas de ubicación se actualizarán una vez que actualice la página."
},
"dashboard": {
"add_some": "¿Por qué no empezar a planificar tu próxima aventura? Puedes agregar una nueva aventura haciendo clic en el botón de abajo.",
"countries_visited": "Países visitados",
"no_recent_adventures": "¿Sin aventuras recientes?",
"recent_adventures": "Aventuras recientes",
@@ -953,16 +950,34 @@
"loading_albums": "Cargando álbumes",
"no_images": "No se encuentran imágenes",
"select_album": "Álbum seleccionado",
"select_album_first": "Seleccione un álbum primero",
"select_date": "Fecha de selección",
"try_different_date": "Prueba una fecha diferente"
},
"recomendations": {
"recommendation": "Recomendación",
"recommendations": "Recomendaciones",
"food": "Comida",
"tourism": "Turismo",
"location_recommendations": "Recomendaciones de ubicación"
"any": "Cualquier",
"average_rating": "Calificación promedio",
"discover_places": "Descubre Lugares",
"lodging": "Hoteles",
"map_view": "Vista de mapa",
"minimum_rating": "Calificación mínima",
"minimum_reviews": "Reseñas mínimas",
"no_results_yet": "Aún no hay resultados",
"open_now_only": "Abierto sólo ahora",
"search_around_location": "Buscar alrededor de la ubicación",
"search_by_address": "Buscar por dirección",
"search_radius_label": "Radio de búsqueda:",
"searching": "Búsqueda...",
"select_location_or_query": "¡Seleccione una ubicación o ingrese una consulta de búsqueda para descubrir lugares increíbles cercanos!",
"total_results": "Resultados totales",
"use_search_instead": "Utilice la búsqueda en su lugar",
"add_location": "Agregar ubicación",
"add_lodging": "Añadir Alojamiento",
"away": "lejos",
"hours": "Horas",
"open": "Abierto",
"your_location": "Tu ubicación"
},
"lodging": {
"apartment": "Apartamento",
@@ -982,7 +997,6 @@
"edit_lodging": "Editar alojamiento",
"create_new_lodging": "Nuevo alojamiento",
"enter_lodging_name": "Ingrese el nombre de alojamiento",
"enter_price": "Ingresar precio",
"enter_reservation_number": "Ingrese el número de reserva",
"update_lodging_details": "Actualizar detalles de alojamiento"
},
@@ -999,7 +1013,9 @@
"month": "Mes",
"today": "Hoy",
"total_events": "Total de eventos",
"week": "Semana"
"week": "Semana",
"event timezone": "Zona horaria del evento",
"your timezone": "Tu zona horaria"
},
"locations": {
"location": "Ubicación",
@@ -1022,15 +1038,11 @@
"title": "Invitaciones"
},
"strava": {
"account_connected": "Cuenta conectada",
"admin_setup_required": "El administrador del servidor debe habilitarlo a nivel mundial",
"authorization_error": "Redirección de errores a la URL de autorización de Strava",
"connect_account": "Cuenta de conexión",
"disconnect": "Desconectar",
"disconnect_error": "Error de desconexión de Strava",
"disconnected": "Desconectado con éxito de Strava",
"not_configured": "Strava no configurado",
"ready_to_connect": "Listo para conectarse",
"strava_integration_desc": "Conéctese a Strava para importar fácilmente sus actividades a ubicaciones y visitas",
"gpx_required": "Sube el archivo GPX para completar la importación de Strava",
"not_enabled": "La integración de Strava no está habilitada en este caso."
@@ -1039,5 +1051,82 @@
"connected": "Conectado con éxito a Wanderer",
"connection_error": "Error conectándose a Wanderer",
"wanderer_integration_desc": "Conéctese a Wanderer para importar y ver fácilmente sus senderos en ubicaciones"
},
"collections": {
"all_items": "Todos los artículos",
"currencies": "Monedas",
"currency": "Divisa",
"event_timezone": "Zona horaria del evento",
"event_timezone_desc": "La zona horaria del evento utiliza la zona horaria de la ubicación o del elemento cuando esté disponible. \nMi zona horaria usa",
"events": "eventos",
"local_timezone": "mi zona horaria",
"no_calendar_events": "Aún no hay visitas programadas para esta colección.",
"no_priced_items": "Agregue precios a ubicaciones, alojamiento o transporte para ver los totales de viajes por moneda.",
"not_found": "Colección no encontrada",
"statistics": "Estadística",
"times_shown_in": "Los tiempos mostrados en",
"trip_costs": "Costos de viaje"
},
"common": {
"show_less": "Ocultar detalles",
"show_more": "Mostrar más"
},
"currencies": {
"AED": "Dírham de los Emiratos Árabes Unidos",
"AUD": "dólar australiano",
"BRL": "Real brasileño",
"CAD": "Dólar canadiense",
"CHF": "franco suizo",
"CNY": "yuan chino",
"DKK": "corona danesa",
"EUR": "Euro",
"GBP": "Libra británica",
"HKD": "dólar de hong kong",
"INR": "rupia india",
"JPY": "yen japonés",
"MXN": "peso mexicano",
"NOK": "corona noruega",
"NZD": "dólar neozelandés",
"SEK": "corona sueca",
"SGD": "dólar de singapur",
"TRY": "lira turca",
"USD": "dólar estadounidense",
"ZAR": "rand sudafricano",
"no_matches": "No hay coincidencias",
"search": "Buscar moneda",
"select_currency": "Seleccionar moneda"
},
"itinerary": {
"add_description": "Agregar descripción",
"add_to_day": "Añadir al día",
"add_to_trip_context": "Agregar contexto de viaje",
"added_to_trip_context": "Agregado al contexto del viaje.",
"auto_generate": "Generar automáticamente",
"auto_generate_itinerary": "Itinerario generado automáticamente",
"auto_generate_itinerary_desc": "Esta colección tiene elementos fechados pero aún no tiene un itinerario. \n¿Quieres organizarlos automáticamente por fecha?",
"change_day": "Cambiar día",
"drag_to_reorder": "Arrastra para reordenar",
"failed_to_add_to_trip_context": "No se pudo agregar el elemento al contexto del viaje",
"failed_to_move_to_trip_context": "No se pudo pasar al contexto del viaje",
"generating": "generando",
"item_already_in_trip_context": "Elementos que ya están en el contexto del viaje.",
"item_not_found": "Artículo no encontrado",
"item_remove_error": "Error al eliminar artículo del itinerario",
"item_remove_success": "Artículo eliminado del itinerario",
"link_existing_item": "Vincular elemento existente",
"move_to_trip_context": "Mover al contexto del viaje",
"moved_to_trip_context": "Movido al contexto del viaje",
"multi_day": "Varios días",
"no_itinerary_yet": "Aún no hay itinerario",
"no_plans_for_day": "No hay planes para este día.",
"no_trip_context_items": "Aún no hay elementos de contexto de viaje.",
"remove_from_itinerary": "Quitar del día",
"remove_from_trip_context": "Eliminar del contexto",
"start_planning": "Comience a planificar su viaje agregando artículos para días específicos.",
"staying_overnight": "pasar la noche",
"trip_context": "Contexto del viaje",
"trip_context_info": "Los elementos del contexto del viaje se aplican a todo el viaje; por ejemplo, ubicaciones que son el destino en sí, notas generales o listas de equipaje que son importantes para todo el viaje.",
"unscheduled_items": "Artículos no programados",
"unscheduled_items_desc": "Estos elementos están vinculados a este viaje pero aún no se han agregado a un día específico."
}
}

View File

@@ -5,10 +5,7 @@
"license": "Sous licence GPL-3.0.",
"message": "Fabriqué avec ❤️ aux États-Unis.",
"nominatim_1": "La recherche de localisation et le géocodage sont fournis par",
"nominatim_2": "Leurs données sont sous licence ODbL.",
"oss_attributions": "Attributions Open Source",
"other_attributions": "Des attributions supplémentaires peuvent être trouvées dans le fichier README.",
"source_code": "Code source",
"generic_attributions": "Connectez-vous à AdventureLog pour afficher les attributions pour les intégrations et services activés.",
"attributions": "Attributions",
"developer": "Promoteur",
@@ -22,11 +19,8 @@
"adventures": {
"add_to_collection": "Ajouter à la collection",
"delete": "Supprimer",
"edit_adventure": "Modifier l'aventure",
"no_image_found": "Aucune image trouvée",
"open_details": "Ouvrir les détails",
"remove_from_collection": "Supprimer de la collection",
"adventure": "Aventure",
"archive": "Archiver",
"archived": "Archivée",
"archived_collection_message": "Collection archivée avec succès !",
@@ -36,8 +30,6 @@
"category_filter": "Filtres de catégorie",
"clear": "Réinitialiser",
"collection": "Collection",
"collection_adventures": "Inclure les aventures liées à une collection",
"count_txt": "résultats correspondant à votre recherche",
"create_new": "Créer une nouvelle aventure...",
"date": "Date",
"dates": "Dates",
@@ -48,8 +40,6 @@
"edit_collection": "Modifier la collection",
"filter": "Filtrer",
"homepage": "Page d'accueil",
"image_removed_error": "Erreur lors de la suppression de l'image",
"image_removed_success": "Image supprimée avec succès !",
"image_upload_error": "Erreur lors du téléchargement de l'image",
"image_upload_success": "Image téléchargée avec succès !",
"latitude": "Latitude",
@@ -57,7 +47,6 @@
"my_collections": "Mes collections",
"name": "Nom",
"no_image_url": "Aucune image trouvée à cette URL.",
"open_filters": "Ouvrir les filtres",
"order_by": "Trier par",
"order_direction": "Direction du tri",
"planned": "Prévue",
@@ -75,108 +64,66 @@
"visited": "Visitée",
"visits": "Visites",
"wiki_image_error": "Erreur lors de la récupération de l'image depuis Wikipédia",
"actions": "Actions",
"activity_types": "Types d'activités",
"add": "Ajouter",
"add_notes": "Ajouter des notes",
"basic_information": "Informations de base",
"category": "Catégorie",
"clear_map": "Effacer la carte",
"copy_link": "Copier le lien",
"date_constrain": "Limiter aux dates de la collection",
"description": "Description",
"end_date": "Date de fin",
"fetch_image": "Récupérer une image",
"generate_desc": "Générer une description",
"image": "Image",
"image_fetch_failed": "Échec de la récupération de l'image",
"link": "Lien",
"location": "Lieu",
"location_information": "Informations de localisation",
"my_images": "Mes images",
"no_description_found": "Aucune description trouvée",
"no_images": "Aucune image",
"no_location": "Veuillez entrer un emplacement",
"no_results": "Aucun résultat trouvé",
"remove": "Retirer",
"save_next": "Sauvegarder",
"search_for_location": "Rechercher un lieu",
"search_results": "Résultats de la recherche",
"see_adventures": "Voir les aventures",
"start_date": "Date de début",
"upload_image": "Télécharger une image",
"url": "URL",
"warning": "Avertissement",
"wikipedia": "Wikipédia",
"adventure_not_found": "Il n'y a aucune aventure à afficher. \nAjoutez-en en utilisant le bouton '+' en bas à droite ou essayez de changer les filtres !",
"all": "Tous",
"error_updating_regions": "Erreur lors de la mise à jour des régions",
"mark_visited": "Marquer comme visité",
"my_adventures": "Mes aventures",
"no_adventures_found": "Aucune aventure trouvée",
"no_linkable_adventures": "Aucune aventure trouvée pouvant être liée à cette collection.",
"not_visited": "Non visitée",
"regions_updated": "régions mises à jour",
"update_visited_regions": "Mettre à jour les régions visitées",
"update_visited_regions_disclaimer": "Cela peut prendre un certain temps en fonction du nombre d'aventures que vous avez visitées.",
"visited_region_check": "Vérification de la région visitée",
"visited_region_check_desc": "En sélectionnant cette option, le serveur vérifiera toutes vos aventures visitées et marquera les régions correspondantes comme visitées dans la section 'Voyage dans le monde'.",
"add_new": "Ajouter un nouveau...",
"checklists": "Listes de contrôle",
"collection_archived": "Cette collection a été archivée.",
"collection_completed": "Vous avez terminé cette collection !",
"collection_stats": "Statistiques de la collection",
"days": "jours",
"itineary_by_date": "Itinéraire trié par date",
"keep_exploring": "Continuez à explorer !",
"link_new": "Ajouter un lien vers...",
"linked_adventures": "Aventures liées",
"links": "Liens",
"note": "Note",
"notes": "Notes",
"nothing_planned": "Rien de prévu pour cette journée. \nBon voyage !",
"transportation": "Déplacement",
"transportations": "Déplacements",
"visit_link": "Visiter le lien",
"checklist": "Liste de contrôle",
"day": "Jour",
"add_a_tag": "Ajouter une balise",
"tags": "Balises",
"set_to_pin": "Épingler",
"category_fetch_error": "Erreur lors de la récupération des catégories",
"copied_to_clipboard": "Copié dans le presse-papier !",
"copy_failed": "Échec de la copie",
"adventure_calendar": "Calendrier des aventures",
"emoji_picker": "Sélecteur d'émoticônes",
"hide": "Cacher",
"show": "Montrer",
"download_calendar": "Télécharger le calendrier",
"md_instructions": "Écrivez ici au format Markdown...",
"preview": "Aperçu",
"checklist_delete_confirm": "Êtes-vous sûr de vouloir supprimer cette liste de contrôle ? \nCette action ne peut pas être annulée.",
"clear_location": "Effacer le lieu",
"date_information": "Dates",
"delete_checklist": "Supprimer la liste de contrôle",
"delete_note": "Supprimer la note",
"delete_transportation": "Supprimer le déplacement",
"end": "Arrivée",
"ending_airport": "Aéroport d'arrivée",
"flight_information": "Informations sur le vol",
"from": "Depuis",
"no_location_found": "Aucun lieu trouvé",
"note_delete_confirm": "Êtes-vous sûr de vouloir supprimer cette note ? \nCette action ne peut pas être annulée.",
"out_of_range": "Pas dans la plage de dates de l'itinéraire",
"start": "Départ",
"starting_airport": "Aéroport de départ",
"to": "Vers",
"transportation_delete_confirm": "Etes-vous sûr de vouloir supprimer ce transport ? \nCette action ne peut pas être annulée.",
"cities_updated": "villes mises à jour",
"finding_recommendations": "Découvrir des trésors cachés pour votre prochaine aventure",
"attachment": "Pièce jointe",
"attachment_delete_success": "Pièce jointe supprimée avec succès !",
"attachment_name": "Nom de la pièce jointe",
"attachment_update_error": "Erreur lors de la mise à jour de la pièce jointe",
"attachment_update_success": "Pièce jointe mise à jour avec succès !",
"attachment_upload_error": "Erreur lors du téléchargement de la pièce jointe",
"attachment_upload_success": "Pièce jointe téléchargée avec succès !",
"attachments": "Pièces jointes",
@@ -185,27 +132,16 @@
"upload": "Télécharger",
"city": "Ville",
"delete_lodging": "Supprimer l'hébergement",
"display_name": "Nom d'affichage",
"location_details": "Détails du lieu",
"lodging": "Hébergement",
"lodging_delete_confirm": "Êtes-vous sûr de vouloir supprimer cet hébergement? Cette action ne peut pas être annulée.",
"lodging_information": "Informations sur l'hébergement",
"price": "Prix",
"region": "Région",
"reservation_number": "Numéro de réservation",
"open_in_maps": "Ouvert dans les cartes",
"all_day": "Journée complète",
"collection_no_start_end_date": "L'ajout d'une date de début et de fin à la collection débloquera les fonctionnalités de planification de l'itinéraire dans la page de collection.",
"date_itinerary": "Itinéraire trié par date",
"no_ordered_items": "Ajoutez des éléments avec des dates de visite à la collection pour les voir ici.",
"ordered_itinerary": "Itinéraire trié par activité",
"invalid_date_range": "Plage de dates non valide",
"timezone": "Fuseau horaire",
"no_visits": "Pas de visites",
"arrival_timezone": "Fuseau horaire d'arrivée",
"departure_timezone": "Fuseau horaire de départ",
"arrival_date": "Date d'arrivée",
"departure_date": "Date de départ",
"coordinates": "Coordonnées",
"copy_coordinates": "Coordonnées de copie",
"sun_times": "Temps du soleil",
@@ -213,7 +149,6 @@
"sunset": "Coucher de soleil",
"timed": "Chronométré",
"distance": "Distance",
"all_linked_items": "Tous les éléments liés",
"itinerary": "Itinéraire",
"joined": "Joint",
"view_profile": "Afficher le profil",
@@ -222,15 +157,11 @@
"filters_and_stats": "Filtres",
"no_adventures_message": "Commencez à documenter vos aventures et à planifier de nouvelles. \nChaque voyage a une histoire qui mérite d'être racontée.",
"travel_progress": "Progrès du voyage",
"adventures_available": "Aventures disponibles",
"all_adventures_already_linked": "Toutes les aventures sont déjà liées à cette collection.",
"collections_linked": "Collections liées",
"create_collection_first": "Créez d'abord une collection pour organiser vos aventures et vos souvenirs.",
"delete_collection_warning": "Êtes-vous sûr de vouloir supprimer cette collection? \nCette action ne peut pas être annulée.",
"done": "Fait",
"loading_adventures": "Chargement des aventures ...",
"name_location": "nom, emplacement",
"collection_contents": "Contenu de la collection",
"check_in": "Enregistrement",
"check_out": "Vérifier",
"collection_link_location_error": "Erreur liant l'emplacement à la collection",
@@ -241,22 +172,14 @@
"create_location": "Créer un emplacement",
"delete_location": "Supprimer l'emplacement",
"edit_location": "Modifier l'emplacement",
"location_create_error": "Échec de la création de l'emplacement",
"location_created": "Emplacement créé",
"location_delete_confirm": "Êtes-vous sûr de vouloir supprimer cet emplacement? Cette action ne peut pas être annulée.",
"location_delete_success": "Emplacement supprimé avec succès!",
"location_not_found": "Emplacement introuvable",
"location_not_found_desc": "L'emplacement que vous recherchiez n'a pas pu être trouvé. \nVeuillez essayer un autre emplacement ou revenir plus tard.",
"location_update_error": "Échec de la mise à jour de l'emplacement",
"location_updated": "Emplacement mis à jour",
"new_location": "Nouvel emplacement",
"no_collections_to_add_location": "Aucune collection n'a été trouvée pour ajouter cet emplacement à.",
"no_locations_to_recommendations": "Aucun emplacement trouvé. \nAjoutez au moins un emplacement pour obtenir des recommandations.",
"public_location": "Lieu public",
"share_location": "Partagez cet emplacement!",
"visit_calendar": "Visiter le calendrier",
"wiki_location_desc": "Tire un extrait de l'article de Wikipedia correspondant au nom de l'emplacement.",
"will_be_marked_location": "sera marqué comme visité une fois l'emplacement enregistré.",
"no_locations_found": "Aucun emplacement trouvé",
"image_modal_navigate": "Utilisez des touches flèches ou cliquez pour naviguer",
"details": "Détails",
@@ -268,7 +191,6 @@
"quick_start": "Démarrage rapide",
"achievements": "Réalisations",
"active_duration": "Durée active",
"activities_name": "Activités",
"activity_name": "Nom d'activité",
"activity_name_placeholder": "Run du matin",
"activity_name_required": "Le nom d'activité est requis",
@@ -360,13 +282,11 @@
"select_on_map": "Sélectionner sur la carte",
"select_wanderer_trail": "Sélectionnez un sentier dans votre compte Wanderer",
"sport_type": "Type de sport",
"sport_type_placeholder": "Trace",
"start_lat": "Commencer la latitude",
"start_lng": "Commencer la longitude",
"strava_activities_during_visit": "Activités de Strava lors de la visite",
"strava_activity_ready": "Activité Strava prête",
"time": "Temps",
"total_covered": "Total couvert",
"total_recorded": "Total enregistré",
"trail": "Piste",
"trail_created_successfully": "Trail créé avec succès",
@@ -403,19 +323,7 @@
"low": "Faible",
"total": "Total",
"rest": "Repos",
"attachment_removed_error": "Erreur supprimant la pièce jointe",
"attachment_removed_success": "Attachement supprimé avec succès",
"attachments_upload_info": "Les pièces jointes seront téléchargées après avoir enregistré le",
"image_upload_info": "Les images seront téléchargées après avoir enregistré le",
"linked_locations": "Emplacements liés",
"lodging_save_error": "Économie d'erreur",
"my_attachments": "Mes pièces jointes",
"no_attachments": "Aucune pièce jointe",
"no_attachments_desc": "Télécharger des fichiers pour commencer",
"no_images_desc": "Télécharger des images pour commencer",
"route_map": "Carte d'itinéraire",
"selected_attachments": "Attachements sélectionnés",
"selected_images": "Images sélectionnées",
"activities_text": "activités",
"activity_breakdown_by_category": "Déchange d'activité par catégorie",
"distance_covered": "Distance couverte",
@@ -424,7 +332,109 @@
"total_climbed": "Total grimpé",
"total_distance": "Distance totale",
"dates_not_saved": "Visitez non encore ajouté",
"dates_not_saved_description": "Cliquez sur Ajouter une visite pour enregistrer"
"dates_not_saved_description": "Cliquez sur Ajouter une visite pour enregistrer",
"active_days": "Journées actives",
"add_here": "Ajouter ici",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Mode de recherche d'aéroport",
"all_locations_already_linked": "Tous les emplacements sont déjà liés à cette collection.",
"arrival_airport": "Aéroport d'arrivée",
"avg_rating": "Note moyenne",
"burned": "brûlé",
"categories": "Catégories",
"cities": "Villes",
"clear_search": "Effacer la recherche",
"click_map_add_marker": "Cliquez sur la carte pour déposer un marqueur, puis ajoutez-le ici.",
"completed": "Complété",
"content_media": "Contenu",
"countries": "Pays",
"country": "pays",
"departure_airport": "Aéroport de départ",
"distance_traveled": "Distance parcourue",
"end_location": "Emplacement de fin",
"enter_location_display_name": "Entrez le nom d'affichage de l'emplacement",
"files": "Fichiers",
"flight": "Vol",
"folder": "Dossier",
"folder_view": "Vue des dossiers - affichant toutes les données",
"footprints": "Empreintes",
"gained": "gagné",
"geographic_breakdown": "Répartition géographique",
"gpx_routes": "Itinéraires GPX",
"hide_filters": "Masquer les filtres",
"images_captured": "Images capturées",
"in": "dans",
"in_progress": "En cours",
"items": "articles",
"itinerary_link_modal": {
"add_here": "Ajouter ici",
"add_here_keep_date": "Ajouter (conserver la date)",
"add_to_itinerary": "Ajouter à l'itinéraire",
"already_added": "Déjà ajouté",
"already_added_on_this_day": "Déjà ajouté ce jour",
"already_added_on_this_day_desc": "Ces éléments sont déjà programmés pour cette journée.",
"already_added_other_days": "Déjà ajouté les autres jours",
"already_added_other_days_desc": "Ces éléments sont programmés à des dates différentes. \nLes ajouter ici mettra à jour leur date ou les ajoutera tels quels.",
"items_available": "{count} éléments disponibles pour lier",
"items_on_other_days": "Articles les autres jours",
"items_on_other_days_desc": "Ces éléments ont des dates différentes. \nVous pouvez les ajouter et éventuellement mettre à jour leur date en conséquence.",
"items_on_this_day": "Articles de ce jour",
"no_unscheduled_items": "Aucun élément non planifié disponible",
"no_unscheduled_items_desc": "Tous les éléments ont été ajoutés à l'itinéraire ou il n'y a aucun élément à ajouter.",
"title": "Lier les éléments à {date}"
},
"link_copied": "Lien copié",
"lists": "Listes",
"location_search_mode": "Mode de recherche d'emplacement",
"locations_visited": "Lieux visités",
"lodging_not_found": "Hébergement introuvable",
"lodging_types": "Types d'hébergement",
"more_details": "Plus de détails",
"my_locations": "Mes emplacements",
"nights": "Nuits",
"no_linkable_locations": "Aucun emplacement trouvé pouvant être lié à cette collection.",
"of_locations": "des emplacements",
"on_this_trip": "Lors de ce voyage",
"overnight": "Du jour au lendemain",
"physical_activities": "Activités physiques",
"pins": "épingles",
"places": "Lieux",
"regions": "Régions",
"reservation": "Réservation",
"reset_filters": "Réinitialiser",
"route": "Itinéraire",
"route_selected": "Itinéraire sélectionné",
"routes_and_activities": "Itinéraires",
"saving": "Économie",
"search_end_location": "Emplacement final de la recherche",
"search_start_end_locations": "Rechercher des emplacements de début et de fin",
"search_start_location": "Lieu de départ de la recherche",
"segments": "Segments",
"select": "Sélectionner",
"show_filters": "Afficher les filtres",
"start_location": "Lieu de départ",
"status_filter": "Filtre d'état",
"stays": "Séjours",
"tasks_done": "Tâches effectuées",
"total_days": "Nombre total de jours",
"total_visits": "Visites totales",
"transport_activity_paths": "Transport",
"transportation_gpx_tip": "Téléchargez les fichiers GPX ici pour les afficher sur la carte",
"traveled": "voyagé",
"travelers": "Voyageurs",
"trip_timeline": "Chronologie du voyage",
"trip_window": "Fenêtre de voyage",
"upcoming": "Prochain",
"view": "Voir",
"wiki_results_found": "Résultats Wikipédia",
"with_activities": "Avec des activités",
"written": "Écrit",
"export_failed": "Échec de l'exportation",
"export_success": "Collection exportée",
"export_zip": "Exporter le code postal",
"import_failed": "Échec de l'importation",
"import_success": "Succès de l'importation",
"import_from_file": "Importer à partir d'un fichier"
},
"home": {
"desc_1": "Découvrez, planifiez et explorez en toute simplicité",
@@ -446,13 +456,11 @@
},
"navbar": {
"about": "À propos de AdventureLog",
"adventures": "Aventures",
"collections": "Collections",
"documentation": "Documentation",
"greeting": "Salut",
"logout": "Déconnexion",
"map": "Carte",
"my_adventures": "Mes aventures",
"profile": "Profil",
"search": "Recherche",
"settings": "Paramètres",
@@ -470,14 +478,12 @@
"northernLights": "Lumières du Nord"
},
"users": "Utilisateurs",
"worldtravel": "Voyage dans le monde",
"my_tags": "Mes balises",
"tag": "Étiqueter",
"language_selection": "Langue",
"support": "Soutien",
"calendar": "Calendrier",
"admin_panel": "Panneau d'administration",
"navigation": "Navigation"
"navigation": "Navigation",
"worldtravel": "Voyage dans le monde"
},
"auth": {
"confirm_password": "Confirmer le mot de passe",
@@ -493,7 +499,6 @@
"username": "Nom d'utilisateur",
"profile_picture": "Photo de profil",
"public_profile": "Profil public",
"public_tooltip": "Avec un profil public, les utilisateurs peuvent partager des collections avec vous et afficher votre profil sur la page des utilisateurs.",
"new_password": "Nouveau mot de passe",
"or_3rd_party": "Ou connectez-vous avec un service tiers",
"no_public_collections": "Aucune collection publique trouvée",
@@ -503,21 +508,15 @@
"enter_password": "Entrez votre mot de passe",
"enter_username": "Entrez votre nom d'utilisateur",
"logging_in": "Se connecter",
"totp": "Code à deux facteurs"
"totp": "Code à deux facteurs",
"user_email_verification_required": "Vérification par e-mail requise. \nVeuillez vérifier votre courrier électronique pour un lien de vérification."
},
"users": {
"no_users_found": "Aucun utilisateur trouvé avec un profil public."
},
"worldtravel": {
"all": "Tous",
"all_subregions": "Toutes les sous-régions",
"clear_search": "Effacer la recherche",
"completely_visited": "Entièrement visité",
"country_list": "Liste des pays",
"no_countries_found": "Aucun pays trouvé",
"not_visited": "Non visité",
"num_countries": "pays trouvés",
"partially_visited": "Partiellement visité",
"cities": "villes",
"failed_to_mark_visit": "Échec de la notation de la visite à",
"failed_to_remove_visit": "Échec de la suppression de la visite à",
@@ -558,11 +557,6 @@
"total_cities": "Total des villes",
"total_countries": "Total des pays",
"total_regions": "Régions totales",
"newest_first": "Le plus récent premier",
"oldest_first": "Le plus ancien premier",
"unvisited_first": "Sans visité d'abord",
"visited_first": "Visité en premier",
"total_items": "Total des articles",
"getting_location_details": "Obtenir les détails de l'emplacement",
"cities_available": "Villes disponibles",
"destination_revealed": "Destination révélée!",
@@ -582,7 +576,8 @@
"about_country": "À propos du pays",
"about_region": "À propos de la région",
"show_less": "Afficher moins",
"show_more": "Afficher plus"
"show_more": "Afficher plus",
"all_locations_visited": "Tous les lieux visités !"
},
"settings": {
"account_settings": "Paramètres du compte utilisateur",
@@ -771,10 +766,23 @@
"shared_collections": "Collections partagées",
"available": "Disponible",
"linked": "Lié",
"try_different_search": "Essayez une recherche ou un filtre différent."
"try_different_search": "Essayez une recherche ou un filtre différent.",
"changing_date_title": "La modification des dates affectera les éléments de l'itinéraire",
"changing_date_warning": "Tous les éléments de l'itinéraire en dehors de la nouvelle plage de dates seront supprimés de l'itinéraire et réintégrés dans les éléments non datés de la collection.",
"clear_cover": "Couverture transparente",
"collaborators": "Collaborateurs",
"cover": "Couverture",
"cover_image": "Image de couverture",
"cover_image_hint": "Choisissez une couverture parmi les images de cette collection.",
"create_new_collection": "Créer une nouvelle collection",
"enter_collection_name": "Entrez le nom de la collection",
"location_primary": "Couverture d'emplacement",
"no_images_available": "Aucune image disponible à partir des emplacements liés pour le moment.",
"public_collection_description": "Autoriser toute personne disposant du lien à consulter",
"set_cover": "Définir la couverture",
"update_collection_details": "Mettre à jour les détails de la collection"
},
"notes": {
"add_a_link": "Ajouter un lien",
"content": "Contenu",
"editing_note": "Modification de la note",
"failed_to_save": "Échec de l'enregistrement de la note",
@@ -811,9 +819,6 @@
"type": "Type",
"transportation_delete_error": "Erreur lors de la suppression du déplacement",
"transportation_deleted": "Déplacement supprimé avec succès !",
"ending_airport_desc": "Entrez le code de l'aéroport de départ (par exemple, CDG)",
"fetch_location_information": "Récupérer les informations sur les lieux",
"starting_airport_desc": "Entrez le code de l'aéroport d'arrivée (par exemple, ORY)",
"create_new_transportation": "Nouveau transport",
"enter_flight_number": "Entrez le numéro de vol",
"enter_from_location": "Entrer de l'emplacement",
@@ -821,12 +826,15 @@
"enter_to_location": "Entrez à l'emplacement",
"enter_transportation_name": "Entrez le nom du transport",
"select_type": "Sélectionner le type",
"update_transportation_details": "Mettre à jour les détails du transport"
"update_transportation_details": "Mettre à jour les détails du transport",
"arrival_code": "Code d'arrivée",
"arrival_date": "Date d'arrivée",
"arrival_timezone": "Fuseau horaire d'arrivée",
"departure_code": "Code de départ",
"departure_date": "Date de départ",
"departure_timezone": "Fuseau horaire de départ"
},
"search": {
"adventurelog_results": "Résultats dans AdventureLog",
"online_results": "Résultats en ligne",
"public_adventures": "Aventures publiques",
"cities": "Villes",
"countries": "Pays",
"found": "trouvé",
@@ -835,12 +843,7 @@
"try_searching_desc": "Essayez de rechercher des aventures, des collections, des pays, des régions, des villes ou des utilisateurs."
},
"map": {
"add_adventure": "Ajouter une nouvelle aventure",
"add_adventure_at_marker": "Ajouter une nouvelle aventure au marqueur",
"adventure_map": "Carte des aventures",
"clear_marker": "Effacer le marqueur",
"map_options": "Options de la carte",
"show_visited_regions": "Afficher les régions visitées",
"view_details": "Afficher les détails",
"adventure_stats": "Statistiques d'aventure",
"completion": "Achèvement",
@@ -853,20 +856,16 @@
"location_map": "Carte de localisation",
"locations_shown": "Emplacements montrés",
"place_marker_desc_location": "Cliquez sur la carte pour placer un marqueur.",
"show_activities": "Montrer les activités",
"show_visited_cities": "Villes visites"
"show_visited_cities": "Villes visites",
"search_locations": "Rechercher des lieux..."
},
"share": {
"no_users_shared": "Aucun utilisateur",
"not_shared_with": "Pas encore partagé avec",
"share_desc": "Partager cette collection avec d'autres utilisateurs.",
"shared": "Partagé",
"shared_with": "Déjà partagé avec",
"unshared": "Partage désactivé pour",
"with": "avec",
"go_to_settings": "Allez dans les paramètres",
"no_shared_found": "Aucune collection ne semble encore avoir été partagée avec vous.",
"set_public": "Afin de permettre aux utilisateurs de partager avec vous, vous devez rendre votre profil public.",
"available": "Disponible",
"pending": "En attente",
"revoke_invite": "Revoke Inviter",
@@ -880,7 +879,6 @@
},
"profile": {
"member_since": "Membre depuis",
"user_stats": "Statistiques de l'utilisateur",
"visited_countries": "Pays visités",
"visited_regions": "Régions visitées",
"visited_cities": "Villes visitées",
@@ -905,7 +903,6 @@
"location_update_after_refresh": "Les cartes de localisation seront mises à jour une fois que vous avez actualisé la page."
},
"dashboard": {
"add_some": "Pourquoi ne pas commencer à planifier votre prochaine aventure ? \nVous pouvez ajouter une nouvelle aventure en cliquant sur le bouton ci-dessous.",
"countries_visited": "Pays visités",
"no_recent_adventures": "Pas d'aventure récente ?",
"recent_adventures": "Aventures récentes",
@@ -953,16 +950,34 @@
"loading_albums": "Chargement des albums",
"no_images": "Aucune image trouvée",
"select_album": "Sélectionner l'album",
"select_album_first": "Sélectionnez d'abord un album",
"select_date": "Sélectionner la date",
"try_different_date": "Essayez une date différente"
},
"recomendations": {
"recommendation": "Recommandation",
"recommendations": "Recommandations",
"food": "Nourriture",
"tourism": "Tourisme",
"location_recommendations": "Recommandations de localisation"
"any": "N'importe lequel",
"average_rating": "Note moyenne",
"discover_places": "Découvrez des lieux",
"lodging": "Hôtels",
"map_view": "Vue cartographique",
"minimum_rating": "Note minimale",
"minimum_reviews": "Examens minimaux",
"no_results_yet": "Aucun résultat pour l'instant",
"open_now_only": "Ouvert maintenant seulement",
"search_around_location": "Rechercher autour de l'emplacement",
"search_by_address": "Recherche par adresse",
"search_radius_label": "Rayon de recherche :",
"searching": "Recherche...",
"select_location_or_query": "Sélectionnez un emplacement ou saisissez une requête de recherche pour découvrir des endroits incroyables à proximité !",
"total_results": "Résultats totaux",
"use_search_instead": "Utilisez plutôt la recherche",
"add_location": "Ajouter un emplacement",
"add_lodging": "Ajouter un hébergement",
"away": "loin",
"hours": "Heures",
"open": "Ouvrir",
"your_location": "Votre emplacement"
},
"lodging": {
"apartment": "Appartement",
@@ -982,7 +997,6 @@
"villa": "Villa",
"create_new_lodging": "Nouveau logement",
"enter_lodging_name": "Entrez le nom de l'hébergement",
"enter_price": "Saisir le prix",
"enter_reservation_number": "Entrez le numéro de réservation",
"update_lodging_details": "Mettre à jour les détails de l'hébergement"
},
@@ -999,7 +1013,9 @@
"month": "Mois",
"today": "Aujourd'hui",
"total_events": "Événements totaux",
"week": "Semaine"
"week": "Semaine",
"event timezone": "Fuseau horaire de l'événement",
"your timezone": "Votre fuseau horaire"
},
"locations": {
"location": "Emplacement",
@@ -1022,15 +1038,11 @@
"accept": "Accepter"
},
"strava": {
"account_connected": "Compte connecté",
"admin_setup_required": "L'administrateur du serveur doit l'activer à l'échelle mondiale",
"authorization_error": "Redirection d'erreur vers l'URL de l'autorisation Strava",
"connect_account": "Connecter le compte",
"disconnect": "Débrancher",
"disconnect_error": "Erreur de déconnexion de Strava",
"disconnected": "Déconnecté avec succès de Strava",
"not_configured": "Strava non configuré",
"ready_to_connect": "Prêt à se connecter",
"strava_integration_desc": "Connectez-vous à Strava pour importer facilement vos activités dans des emplacements et des visites",
"gpx_required": "Veuillez télécharger le fichier gpx pour terminer l'importation de Strava",
"not_enabled": "L'intégration de Strava n'est pas activée sur cette instance."
@@ -1039,5 +1051,82 @@
"connected": "Connecté avec succès à Wanderer",
"connection_error": "Erreur de connexion à Wanderer",
"wanderer_integration_desc": "Connectez-vous à Wanderer pour importer facilement et afficher vos sentiers dans les endroits"
},
"collections": {
"all_items": "Tous les articles",
"currencies": "Devises",
"currency": "Devise",
"event_timezone": "Fuseau horaire de l'événement",
"event_timezone_desc": "Le fuseau horaire de l'événement utilise le fuseau horaire de l'emplacement ou de l'élément lorsqu'il est disponible. \nMon fuseau horaire utilise",
"events": "événements",
"local_timezone": "Mon fuseau horaire",
"no_calendar_events": "Aucune visite n'est encore prévue pour cette collection.",
"no_priced_items": "Ajoutez les prix des lieux, de l'hébergement ou du transport pour afficher les totaux des voyages par devise.",
"not_found": "Collection introuvable",
"statistics": "Statistiques",
"times_shown_in": "Horaires affichés dans",
"trip_costs": "Frais de voyage"
},
"common": {
"show_less": "Masquer les détails",
"show_more": "Afficher plus"
},
"currencies": {
"AED": "Dirham des Émirats Arabes Unis",
"AUD": "Dollar australien",
"BRL": "Réal brésilien",
"CAD": "Dollar canadien",
"CHF": "Franc suisse",
"CNY": "Yuan chinois",
"DKK": "Couronne danoise",
"EUR": "Euro",
"GBP": "Livre sterling",
"HKD": "Dollar de Hong Kong",
"INR": "Roupie indienne",
"JPY": "Yens japonais",
"MXN": "Peso mexicain",
"NOK": "Couronne norvégienne",
"NZD": "Dollar néo-zélandais",
"SEK": "Couronne suédoise",
"SGD": "Dollar de Singapour",
"TRY": "Lire turque",
"USD": "Dollar américain",
"ZAR": "Rand sud-africain",
"no_matches": "Aucune correspondance",
"search": "Devise de recherche",
"select_currency": "Sélectionnez la devise"
},
"itinerary": {
"add_description": "Ajouter une description",
"add_to_day": "Ajouter au jour",
"add_to_trip_context": "Ajouter un contexte de voyage",
"added_to_trip_context": "Ajouté au contexte du voyage",
"auto_generate": "Génération automatique",
"auto_generate_itinerary": "Itinéraire généré automatiquement",
"auto_generate_itinerary_desc": "Cette collection contient des articles datés mais pas encore d'itinéraire. \nSouhaitez-vous les organiser automatiquement par date ?",
"change_day": "Jour du changement",
"drag_to_reorder": "Faites glisser pour réorganiser",
"failed_to_add_to_trip_context": "Échec de l'ajout d'un élément au contexte du voyage",
"failed_to_move_to_trip_context": "Échec du passage au contexte du voyage",
"generating": "Générateur",
"item_already_in_trip_context": "Éléments déjà dans le contexte du voyage",
"item_not_found": "Article introuvable",
"item_remove_error": "Erreur lors de la suppression de l'élément de l'itinéraire",
"item_remove_success": "Article supprimé de l'itinéraire",
"move_to_trip_context": "Passer au contexte du voyage",
"moved_to_trip_context": "Déplacé vers le contexte du voyage",
"multi_day": "Plusieurs jours",
"no_itinerary_yet": "Pas encore d'itinéraire",
"no_plans_for_day": "Aucun projet pour cette journée",
"no_trip_context_items": "Aucun élément de contexte de voyage pour l'instant.",
"remove_from_itinerary": "Supprimer du jour",
"remove_from_trip_context": "Supprimer du contexte",
"start_planning": "Commencez à planifier votre voyage en ajoutant des éléments à des jours spécifiques.",
"staying_overnight": "Passer la nuit",
"trip_context": "Contexte du voyage",
"trip_context_info": "Les éléments de contexte du voyage s'appliquent à l'ensemble du voyage, par exemple les lieux qui constituent la destination elle-même, les notes générales ou les listes de colisage importantes pour l'ensemble du voyage.",
"unscheduled_items": "Éléments non planifiés",
"unscheduled_items_desc": "Ces éléments sont liés à ce voyage mais n'ont pas encore été ajoutés à un jour spécifique.",
"link_existing_item": "Lier un élément existant"
}
}

View File

@@ -1,16 +1,11 @@
{
"navbar": {
"adventures": "Kalandok",
"collections": "Gyűjtemények",
"worldtravel": "Világutazás",
"map": "Térkép",
"users": "Felhasználók",
"search": "Keresés",
"profile": "Profil",
"greeting": "Szia",
"my_adventures": "Saját kalandjaim",
"my_tags": "Saját címkéim",
"tag": "Címke",
"shared_with_me": "Velem megosztva",
"settings": "Beállítások",
"logout": "Kijelentkezés",
@@ -32,16 +27,14 @@
"northernLights": "Sarki fény",
"dim": "Halvány"
},
"navigation": "Navigáció"
"navigation": "Navigáció",
"worldtravel": "Világutazás"
},
"about": {
"about": "Névjegy",
"license": "GPL-3.0 licenc alatt terjesztve.",
"source_code": "Forráskód",
"message": "Készült ❤️-el az Egyesült Államokban.",
"oss_attributions": "Nyílt forráskódú hivatkozások",
"nominatim_1": "A helykeresést és geokódolást a következő biztosítja:",
"nominatim_2": "Adataik az ODbL licenc alatt érhetők el.",
"other_attributions": "További hivatkozások a README fájlban találhatók.",
"generic_attributions": "Jelentkezz be az AdventureLog-ba, hogy megtekinthesd az engedélyezett integrációk és szolgáltatások hivatkozásait.",
"close": "Bezárás",
@@ -79,11 +72,6 @@
"invalid_date_range": "Érvénytelen dátumtartomány",
"timezone": "Időzóna",
"no_visits": "Nincsenek látogatások",
"departure_timezone": "Indulási időzóna",
"arrival_timezone": "Érkezési időzóna",
"departure_date": "Indulás dátuma",
"arrival_date": "Érkezés dátuma",
"no_image_found": "Nem található kép",
"collection_link_location_error": "Hiba történt a hely gyűjteményhez adásakor",
"location_delete_confirm": "Biztosan törölni szeretnéd ezt a helyet? Ez a művelet nem visszavonható.",
"checklist_delete_confirm": "Biztosan törölni szeretnéd ezt az ellenőrzőlistát? Ez a művelet nem visszavonható.",
@@ -95,7 +83,6 @@
"delete_transportation": "Közlekedés törlése",
"delete_lodging": "Szállás törlése",
"open_details": "Részletek megnyitása",
"edit_adventure": "Kaland szerkesztése",
"edit_location": "Hely szerkesztése",
"remove_from_collection": "Eltávolítás a gyűjteményből",
"add_to_collection": "Hozzáadás a gyűjteményhez",
@@ -114,8 +101,6 @@
"copy_coordinates": "Koordináták másolása",
"visits": "Látogatások",
"create_new": "Új létrehozása...",
"adventure": "Kaland",
"count_txt": "találat egyezik a kereséseddel",
"sort": "Rendezés",
"order_by": "Rendezés alapja",
"order_direction": "Rendezés iránya",
@@ -124,76 +109,56 @@
"updated": "Frissítve",
"name": "Név",
"date": "Dátum",
"activity_types": "Tevékenységtípusok",
"tags": "Címkék",
"add_a_tag": "Címke hozzáadása",
"date_constrain": "Korlátozás a gyűjtemény dátumaira",
"rating": "Értékelés",
"my_images": "Saját képeim",
"no_images": "Nincsenek képek",
"distance": "Távolság",
"share_location": "Hely megosztása!",
"share_collection": "Gyűjtemény megosztása!",
"copy_link": "Hivatkozás másolása",
"sun_times": "Napkelte és napnyugta",
"sunrise": "Napkelte",
"sunset": "Napnyugta",
"image": "Kép",
"upload_image": "Kép feltöltése",
"open_in_maps": "Megnyitás térképen",
"url": "URL",
"fetch_image": "Kép letöltése",
"wikipedia": "Wikipédia",
"add_notes": "Jegyzet hozzáadása",
"warning": "Figyelmeztetés",
"my_adventures": "Saját kalandjaim",
"no_linkable_adventures": "Nem található olyan kaland, amely ehhez a gyűjteményhez kapcsolható.",
"add": "Hozzáadás",
"save_next": "Mentés és tovább",
"end_date": "Befejezés dátuma",
"start_date": "Kezdés dátuma",
"remove": "Eltávolítás",
"location": "Hely",
"search_for_location": "Hely keresése",
"clear_map": "Térkép törlése",
"search_results": "Keresési eredmények",
"collection_no_start_end_date": "A gyűjteményhez kezdő- és befejezési dátum hozzáadása engedélyezi az útiterv-tervezési funkciókat az oldalon.",
"no_results": "Nincs találat",
"wiki_location_desc": "A Wikipédia cikk rövid kivonatát jeleníti meg, amely megegyezik a hely nevével.",
"attachments": "Mellékletek",
"attachment": "Melléklet",
"images": "Képek",
"image_modal_navigate": "Használd a nyilakat vagy kattints a navigáláshoz",
"generate_desc": "Leírás generálása",
"public_location": "Nyilvános hely",
"location_information": "Helyinformáció",
"link": "Hivatkozás",
"links": "Hivatkozások",
"description": "Leírás",
"sources": "Források",
"collection_adventures": "Gyűjtemény kalandjainak megjelenítése",
"collection_locations": "Gyűjtemény helyeinek megjelenítése",
"filter": "Szűrő",
"category_filter": "Kategóriaszűrő",
"category": "Kategória",
"clear": "Törlés",
"my_collections": "Saját gyűjteményeim",
"open_filters": "Szűrők megnyitása",
"archived_collections": "Archivált gyűjtemények",
"share": "Megosztás",
"private": "Privát",
"public": "Nyilvános",
"archived": "Archivált",
"name_location": "név, helyszín",
"loading_adventures": "Kalandok betöltése...",
"all_adventures_already_linked": "Minden kaland már hozzá van kapcsolva ehhez a gyűjteményhez.",
"edit_collection": "Gyűjtemény szerkesztése",
"unarchive": "Archiválás visszavonása",
"archive": "Archiválás",
"no_collections_to_add_location": "Nem található gyűjtemény, amelyhez hozzá lehetne adni ezt a helyet.",
"create_collection_first": "Hozz létre egy gyűjteményt, hogy rendszerezhesd kalandjaidat és emlékeidet.",
"done": "Kész",
"adventures_available": "Elérhető kalandok",
"collections_linked": "Kapcsolódó gyűjtemények",
"not_visited": "Nem látogatott",
"archived_collection_message": "A gyűjtemény sikeresen archiválva!",
@@ -208,92 +173,49 @@
"planned": "Tervezett",
"duration": "Időtartam",
"all": "Összes",
"image_removed_success": "A kép sikeresen eltávolítva!",
"image_removed_error": "Hiba a kép eltávolítása során",
"no_image_url": "Nem található kép ezen az URL-en.",
"image_upload_success": "A kép sikeresen feltöltve!",
"image_upload_error": "Hiba a kép feltöltése során",
"dates": "Dátumok",
"wiki_image_error": "Hiba a Wikipédia-kép lekérésekor",
"start_before_end_error": "A kezdési dátumnak korábbinak kell lennie a befejezés dátumánál",
"actions": "Műveletek",
"see_adventures": "Kalandok megtekintése",
"image_fetch_failed": "Nem sikerült lekérni a képet",
"no_location": "Kérlek, adj meg egy helyet",
"no_description_found": "Nem található leírás",
"location_created": "Hely létrehozva",
"location_create_error": "Nem sikerült létrehozni a helyet",
"lodging": "Szállás",
"create_location": "Hely létrehozása",
"location_updated": "Hely frissítve",
"location_update_error": "Nem sikerült frissíteni a helyet",
"set_to_pin": "Beállítás térképtűként",
"category_fetch_error": "Hiba a kategóriák lekérésekor",
"new_location": "Új hely",
"basic_information": "Alapinformációk",
"no_locations_to_recommendations": "Nem találhatók helyek. Adj hozzá legalább egyet az ajánlásokhoz.",
"display_name": "Megjelenített név",
"adventure_not_found": "Nincsenek megjeleníthető kalandok. Adj hozzá néhányat a jobb alsó sarokban lévő plusz gombbal, vagy módosítsd a szűrőket!",
"collection_contents": "A gyűjtemény tartalma",
"no_adventures_found": "Nem találhatók kalandok",
"no_locations_found": "Nem találhatók helyek",
"no_adventures_message": "Kezdd el dokumentálni kalandjaidat és tervezd meg az újakat. Minden utazás egy mesélésre érdemes történet.",
"mark_visited": "Megjelölés látogatottként",
"error_updating_regions": "Hiba a régiók frissítésekor",
"regions_updated": "régiók frissítve",
"cities_updated": "városok frissítve",
"visited_region_check": "Látogatott régió ellenőrzése",
"visited_region_check_desc": "Ha ezt kiválasztod, a rendszer ellenőrzi az összes látogatott kalandodat, és a hozzájuk tartozó régiókat látogatottként jelöli meg a világutazásban.",
"update_visited_regions": "Látogatott régiók frissítése",
"update_visited_regions_disclaimer": "Ez eltarthat egy ideig, a meglátogatott kalandok számától függően.",
"link_new": "Új összekapcsolása...",
"add_new": "Új hozzáadása...",
"transportation": "Közlekedés",
"note": "Jegyzet",
"checklist": "Ellenőrzőlista",
"collection_archived": "Ez a gyűjtemény archiválva lett.",
"visit_link": "Hivatkozás meglátogatása",
"collection_completed": "Befejezted ezt a gyűjteményt!",
"collection_stats": "Gyűjtemény statisztikái",
"keep_exploring": "Fedezz fel tovább!",
"linked_adventures": "Kapcsolódó kalandok",
"notes": "Jegyzetek",
"checklists": "Ellenőrzőlisták",
"transportations": "Közlekedések",
"adventure_calendar": "Kalandnaptár",
"visit_calendar": "Látogatási naptár",
"day": "Nap",
"itineary_by_date": "Útiterv dátum szerint",
"nothing_planned": "Erre a napra nincs terv. Élvezd az utazást!",
"copied_to_clipboard": "Vágólapra másolva!",
"copy_failed": "Másolás sikertelen",
"show": "Megjelenítés",
"hide": "Elrejtés",
"clear_location": "Hely törlése",
"starting_airport": "Indulási repülőtér",
"view_profile": "Profil megtekintése",
"joined": "Csatlakozott",
"ending_airport": "Érkezési repülőtér",
"no_location_found": "Nem található hely",
"from": "Innen",
"to": "Ide",
"will_be_marked_location": "látogatottnak lesz jelölve, amint a hely mentésre kerül.",
"start": "Kezdés",
"end": "Befejezés",
"emoji_picker": "Emoji választó",
"download_calendar": "Naptár letöltése",
"all_day": "Egész napos",
"ordered_itinerary": "Rendezett útiterv",
"itinerary": "Útiterv",
"all_linked_items": "Összes kapcsolt elem",
"date_itinerary": "Útiterv dátum szerint",
"no_ordered_items": "Adj hozzá dátummal rendelkező elemeket a gyűjteményhez, hogy itt megjelenjenek.",
"date_information": "Dátum információ",
"flight_information": "Repülési információk",
"out_of_range": "Nem szerepel az útiterv dátumtartományában",
"preview": "Előnézet",
"finding_recommendations": "Rejtett gyöngyszemek keresése a következő kalandodhoz",
"location_details": "Hely részletei",
"city": "Város",
"region": "Régió",
"md_instructions": "Írd ide a markdown szövegedet...",
@@ -302,14 +224,10 @@
"attachment_upload_error": "Hiba a melléklet feltöltésekor",
"upload": "Feltöltés",
"attachment_delete_success": "A melléklet sikeresen törölve!",
"attachment_update_success": "A melléklet sikeresen frissítve!",
"attachment_name": "Melléklet neve",
"gpx_tip": "Tölts fel GPX fájlokat mellékletként, hogy megjelenjenek a térképen!",
"attachment_update_error": "Hiba a melléklet frissítésekor",
"activities": {},
"lodging_information": "Szállás információk",
"price": "Ár",
"reservation_number": "Foglalási szám",
"filters_and_sort": "Szűrés és rendezés",
"filters_and_stats": "Szűrők és statisztikák",
"travel_progress": "Utazás előrehaladása",
@@ -416,7 +334,6 @@
"activity_name": "Tevékenység neve",
"activity_name_placeholder": "Reggeli futás",
"sport_type": "Sport típusa",
"sport_type_placeholder": "Terepfutás",
"elapsed_time": "Eltelt idő",
"elevation_gain": "Szintemelkedés",
"elevation_loss": "Szintvesztés",
@@ -440,9 +357,7 @@
"connect_to_wanderer": "Csatlakozás a Wandererhez",
"activity_statistics": "Tevékenység statisztikák",
"activity_statistics_description": "Fittségi és teljesítmény eredményeid",
"activities_name": "Tevékenységek",
"total_recorded": "Összes rögzített",
"total_covered": "Összes megtett",
"active_duration": "Aktív időtartam",
"activity_name_required": "A tevékenység neve kötelező",
"confirm_delete_activity": "Biztosan törölni szeretnéd ezt a tevékenységet?",
@@ -457,19 +372,7 @@
"rest": "Pihenés",
"high": "Magas",
"low": "Alacsony",
"route_map": "Útvonal térkép",
"selected_images": "Kiválasztott képek",
"selected_attachments": "Kiválasztott mellékletek",
"my_attachments": "Saját mellékleteim",
"linked_locations": "Kapcsolódó helyek",
"lodging_save_error": "Hiba a szállás mentésekor",
"attachment_removed_success": "Melléklet sikeresen eltávolítva",
"attachment_removed_error": "Hiba a melléklet eltávolításakor",
"no_attachments": "Nincsenek mellékletek",
"no_attachments_desc": "Tölts fel fájlokat a kezdéshez",
"attachments_upload_info": "A mellékletek a mentés után kerülnek feltöltésre",
"image_upload_info": "A képek a mentés után kerülnek feltöltésre",
"no_images_desc": "Tölts fel képeket a kezdéshez",
"activities_text": "tevékenységek",
"total_climbed": "Összes mászás",
"distance_covered": "Megtett távolság",
@@ -478,18 +381,113 @@
"recorded_sessions": "Rögzített szakaszok",
"activity_breakdown_by_category": "Tevékenységek kategóriák szerinti bontása",
"dates_not_saved": "Látogatás még nem mentve",
"dates_not_saved_description": "Kattints a „Látogatás hozzáadása” gombra a mentéshez"
"dates_not_saved_description": "Kattints a „Látogatás hozzáadása” gombra a mentéshez",
"active_days": "Aktív napok",
"add_here": "Add ide",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Repülőtér keresési mód",
"all_locations_already_linked": "Az összes hely már kapcsolódik ehhez a gyűjteményhez.",
"arrival_airport": "Érkezési repülőtér",
"avg_rating": "Átl. értékelés",
"burned": "égett",
"categories": "Kategóriák",
"cities": "Városok",
"clear_search": "Keresés törlése",
"click_map_add_marker": "Kattintson a térképre egy jelölő eldobásához, majd adja hozzá ide.",
"completed": "Befejezve",
"content_media": "Tartalom",
"countries": "Országok",
"country": "ország",
"departure_airport": "Indulási repülőtér",
"distance_traveled": "Megtett távolság",
"end_location": "Befejezési hely",
"enter_location_display_name": "Adja meg a hely megjelenített nevét",
"files": "Fájlok",
"flight": "Repülési",
"folder": "Mappa",
"folder_view": "Mappa nézet - minden adatot megjelenít",
"footprints": "Lábnyomok",
"gained": "szerzett",
"geographic_breakdown": "Földrajzi bontás",
"gpx_routes": "GPX útvonalak",
"hide_filters": "Szűrők elrejtése",
"images_captured": "Rögzített képek",
"in": "be",
"in_progress": "Folyamatban van",
"items": "tételeket",
"itinerary_link_modal": {
"add_here": "Add ide",
"add_here_keep_date": "Hozzáadás (Dátum megtartása)",
"add_to_itinerary": "Hozzáadás az útvonalhoz",
"already_added": "Már hozzáadva",
"already_added_on_this_day": "Már hozzáadva ezen a napon",
"already_added_on_this_day_desc": "Ezek a tételek már be vannak ütemezve erre a napra.",
"already_added_other_days": "Más napokon már hozzáadva",
"already_added_other_days_desc": "Ezek a tételek különböző dátumokra vannak ütemezve. \nHa ide hozzáadja őket, akkor frissíti a dátumukat, vagy hozzáadja őket a jelenlegi állapotukhoz.",
"items_available": "{count} elem elérhető az összekapcsoláshoz",
"items_on_other_days": "Tételek más napokon",
"items_on_other_days_desc": "Ezeknek a tételeknek különböző dátumai vannak. \nHozzáadhatja őket, és opcionálisan frissítheti a dátumukat, hogy megfeleljenek.",
"items_on_this_day": "Elemek ezen a napon",
"no_unscheduled_items": "Nem állnak rendelkezésre előre nem tervezett tételek",
"no_unscheduled_items_desc": "Az összes elemet hozzáadta az útvonalhoz, vagy nincs hozzáadható elem.",
"title": "Elemek összekapcsolása a következővel: {date}"
},
"link_copied": "Link másolva",
"lists": "Listák",
"location_search_mode": "Helykeresési mód",
"locations_visited": "Meglátogatott helyek",
"lodging_not_found": "Szállás nem található",
"lodging_types": "Szállástípusok",
"more_details": "További részletek",
"my_locations": "Saját helyek",
"nights": "Éjszakák",
"no_linkable_locations": "Nem találhatók ehhez a gyűjteményhez kapcsolható helyek.",
"of_locations": "helyek",
"on_this_trip": "Ezen az utazáson",
"overnight": "Éjszakai",
"physical_activities": "Fizikai tevékenységek",
"pins": "csapok",
"places": "Helyek",
"regions": "Régiók",
"reservation": "Foglalás",
"reset_filters": "Reset",
"route": "Útvonal",
"route_selected": "Útvonal kiválasztva",
"routes_and_activities": "Útvonalak",
"saving": "Megtakarítás",
"search_end_location": "Keresés végpontja",
"search_start_end_locations": "Kezdő és záró helyek keresése",
"search_start_location": "Kezdőhely keresése",
"segments": "Szegmensek",
"select": "Válassza ki",
"show_filters": "Szűrők megjelenítése",
"start_location": "Kezdési hely",
"status_filter": "Állapotszűrő",
"stays": "Marad",
"tasks_done": "Feladatok Kész",
"total_days": "Összes nap",
"total_visits": "Összes látogatás",
"transport_activity_paths": "Szállítás",
"transportation_gpx_tip": "Töltse fel ide a GPX fájlokat, hogy megjelenjenek a térképen",
"traveled": "utazott",
"travelers": "Utazók",
"trip_timeline": "Utazás idővonala",
"trip_window": "Utazás ablak",
"upcoming": "Közelgő",
"view": "Kilátás",
"wiki_results_found": "Wikipédia eredmények",
"with_activities": "Tevékenységekkel",
"written": "Írott",
"export_failed": "Nem sikerült exportálni",
"export_success": "Exportált gyűjtemény",
"export_zip": "ZIP exportálása",
"import_failed": "Az importálás sikertelen",
"import_from_file": "Importálás fájlból",
"import_success": "Sikeres importálás"
},
"worldtravel": {
"country_list": "Országlista",
"num_countries": "talált ország",
"cities_in": "Városok itt:",
"all": "Összes",
"partially_visited": "Részben meglátogatott",
"not_visited": "Nem látogatott",
"completely_visited": "Teljesen meglátogatott",
"all_subregions": "Összes alrégió",
"clear_search": "Keresés törlése",
"no_countries_found": "Nem találhatók országok",
"no_countries_found_desc": "Próbáld meg módosítani a keresési feltételeket vagy a szűrőket, hogy megtaláld a keresett országokat.",
"clear_filters": "Szűrők törlése",
@@ -520,7 +518,6 @@
"filter_by_region": "Szűrés régió szerint",
"all_regions": "Összes régió",
"clear_all_filters": "Összes szűrő törlése",
"total_items": "Összes elem",
"filter_by": "Szűrés",
"interactive_map": "Interaktív térkép",
"no_regions_found": "Nem találhatók régiók",
@@ -531,10 +528,6 @@
"hide_map_labels": "Térkép címkék elrejtése",
"total_cities": "Összes város",
"region_completed": "Régió teljesítve",
"newest_first": "Legújabb elöl",
"oldest_first": "Legrégebbi elöl",
"visited_first": "Látogatott elöl",
"unvisited_first": "Nem látogatott elöl",
"getting_location_details": "Helyadatok lekérése",
"hide_globe_spin": "Földgömb forgás elrejtése",
"show_globe_spin": "Földgömb forgás megjelenítése",
@@ -554,7 +547,8 @@
"about_country": "Országról",
"about_region": "A régióról",
"show_less": "Mutass kevesebbet",
"show_more": "Továbbiak megjelenítése"
"show_more": "Továbbiak megjelenítése",
"all_locations_visited": "Minden helyszín meglátogatott!"
},
"auth": {
"username": "Felhasználónév",
@@ -570,7 +564,6 @@
"registration_disabled": "A regisztráció jelenleg le van tiltva.",
"profile_picture": "Profilkép",
"public_profile": "Nyilvános profil",
"public_tooltip": "Nyilvános profil esetén a felhasználók megoszthatnak veled gyűjteményeket, és megtekinthetik a profilodat a felhasználói oldalon.",
"new_password": "Új jelszó (legalább 6 karakter)",
"or_3rd_party": "Vagy jelentkezz be külső szolgáltatással",
"no_public_locations": "Nem találhatók nyilvános helyek",
@@ -580,7 +573,8 @@
"enter_username": "Add meg a felhasználónevedet",
"enter_password": "Add meg a jelszavadat",
"totp": "Kétlépcsős azonosító kód",
"logging_in": "Bejelentkezés folyamatban"
"logging_in": "Bejelentkezés folyamatban",
"user_email_verification_required": "E-mail ellenőrzés szükséges. \nKérjük, ellenőrizze e-mailjeit az ellenőrző linkért."
},
"users": {
"no_users_found": "Nem találhatók nyilvános profillal rendelkező felhasználók."
@@ -750,7 +744,21 @@
"archived_appear_here": "Az archivált gyűjtemények itt fognak megjelenni.",
"linked": "Összekapcsolva",
"available": "Elérhető",
"try_different_search": "Próbálj meg más keresést vagy szűrőt használni."
"try_different_search": "Próbálj meg más keresést vagy szűrőt használni.",
"changing_date_title": "A dátumok módosítása hatással lesz az útitervre",
"changing_date_warning": "Az új dátumtartományon kívül eső útiterveket eltávolítjuk az útitervből, és visszahelyezzük a gyűjtemény dátum nélküli tételei közé.",
"clear_cover": "Átlátszó borító",
"collaborators": "Együttműködők",
"cover": "Borító",
"cover_image": "Borítókép",
"cover_image_hint": "Válassz borítót a gyűjtemény képei közül.",
"create_new_collection": "Új gyűjtemény létrehozása",
"enter_collection_name": "Adja meg a gyűjtemény nevét",
"location_primary": "Helyszín borító",
"no_images_available": "Még nem érhetők el képek a linkelt helyekről.",
"public_collection_description": "A link birtokában bárki megtekintheti",
"set_cover": "Állítsa be a fedelet",
"update_collection_details": "Frissítse a gyűjtemény részleteit"
},
"notes": {
"note_deleted": "A jegyzet sikeresen törölve!",
@@ -763,7 +771,6 @@
"content": "Tartalom",
"save": "Mentés",
"note_public": "Ez a jegyzet nyilvános, mert egy nyilvános gyűjteményben van.",
"add_a_link": "Hivatkozás hozzáadása",
"invalid_url": "Érvénytelen URL",
"enter_note_title": "Add meg a jegyzet címét",
"update_note_details": "Jegyzet szerkesztése",
@@ -800,9 +807,6 @@
"flight_number": "Járatszám",
"from_location": "Kiindulási hely",
"to_location": "Célállomás",
"fetch_location_information": "Helyszíninformáció lekérése",
"starting_airport_desc": "Add meg a kiindulási repülőtér kódját (pl.: JFK)",
"ending_airport_desc": "Add meg a cél repülőtér kódját (pl.: LAX)",
"edit": "Szerkesztés",
"modes": {
"car": "Autó",
@@ -822,7 +826,13 @@
"enter_link": "Adj meg egy hivatkozást",
"enter_flight_number": "Add meg a járatszámot",
"enter_from_location": "Add meg a kiindulási helyet",
"enter_to_location": "Add meg a célállomást"
"enter_to_location": "Add meg a célállomást",
"arrival_code": "Érkezési kód",
"arrival_date": "Érkezés dátuma",
"arrival_timezone": "Érkezési időzóna",
"departure_code": "Indulási kód",
"departure_date": "Indulás dátuma",
"departure_timezone": "Indulási időzóna"
},
"lodging": {
"new_lodging": "Új szállás",
@@ -843,13 +853,9 @@
"update_lodging_details": "Szállásadatok frissítése",
"create_new_lodging": "Új szállás létrehozása",
"enter_lodging_name": "Add meg a szállás nevét",
"enter_reservation_number": "Add meg a foglalási számot",
"enter_price": "Add meg az árat"
"enter_reservation_number": "Add meg a foglalási számot"
},
"search": {
"adventurelog_results": "AdventureLog találatok",
"public_adventures": "Nyilvános kalandok",
"online_results": "Online találatok",
"result": "Találat",
"results": "Találatok",
"found": "találat",
@@ -859,14 +865,9 @@
},
"map": {
"view_details": "Részletek megtekintése",
"adventure_map": "Kalandtérkép",
"location_map": "Helytérkép",
"map_options": "Térkép beállítások",
"show_visited_regions": "Látogatott régiók megjelenítése",
"add_adventure_at_marker": "Új kaland hozzáadása a jelölőnél",
"add_location_at_marker": "Új hely hozzáadása a jelölőnél",
"clear_marker": "Jelölő törlése",
"add_adventure": "Új kaland hozzáadása",
"add_location": "Új hely hozzáadása",
"adventure_stats": "Kaland statisztikák",
"map_controls": "Térkép vezérlők",
@@ -876,8 +877,8 @@
"marker_placed_on_map": "Jelölő elhelyezve a térképen",
"place_marker_desc_location": "Kattints a térképre egy jelölő elhelyezéséhez.",
"locations_shown": "megjelenített helyszín",
"show_activities": "Tevékenységek megjelenítése",
"show_visited_cities": "Látogatott városok"
"show_visited_cities": "Látogatott városok",
"search_locations": "Helyek keresése..."
},
"share": {
"shared": "Megosztva",
@@ -886,10 +887,6 @@
"share_desc": "Oszd meg ezt a gyűjteményt más felhasználókkal.",
"shared_with": "Megosztva ezekkel",
"no_users_shared": "Nincs felhasználó, akivel meg van osztva",
"not_shared_with": "Nincs megosztva ezekkel",
"no_shared_found": "Nem található olyan gyűjtemény, amely meg van osztva veled.",
"set_public": "Ahhoz, hogy mások meg tudják osztani veled a gyűjteményeiket, a profilodnak nyilvánosnak kell lennie.",
"go_to_settings": "Ugrás a beállításokhoz",
"revoke_invite": "Meghívás visszavonása",
"send_invite": "Meghívás küldése",
"available": "Elérhető",
@@ -901,10 +898,8 @@
"invite_failed": "Meghívás sikertelen",
"invite_sent": "Meghívás elküldve"
},
"languages": {},
"profile": {
"member_since": "Tagja óta",
"user_stats": "Felhasználói statisztikák",
"visited_countries": "Látogatott országok",
"visited_regions": "Látogatott régiók",
"visited_cities": "Látogatott városok",
@@ -936,7 +931,6 @@
"total_visited_cities": "Összes látogatott város",
"recent_adventures": "Legutóbbi kalandok",
"no_recent_adventures": "Nincs legutóbbi kaland?",
"add_some": "Miért ne kezdenéd el tervezni a következő kalandodat? Új kalandot a lenti gombbal adhatsz hozzá.",
"document_some_adventures": "Kezdd el dokumentálni utazásaidat, és építsd fel a személyes kalandtérképedet!",
"view_all": "Összes megtekintése",
"welcome_text_1": "Eddig ennyi kalandban voltál:",
@@ -973,24 +967,42 @@
"by_date": "Dátum szerint",
"by_album": "Album szerint",
"image_search_placeholder": "Keresés Immich segítségével",
"select_date": "Dátum kiválasztása",
"select_album": "Album kiválasztása",
"loading_albums": "Albumok betöltése",
"loading": "Betöltés",
"no_images": "Nincs találat",
"try_different_date": "Próbálj meg másik dátumot",
"select_album_first": "Először válassz albumot"
"try_different_date": "Próbálj meg másik dátumot"
},
"google_maps": {
"google_maps_integration_desc": "Csatlakoztasd a Google Maps fiókodat a kiváló minőségű helykeresési eredmények és ajánlások érdekében.",
"google_maps_integration_desc_no_staff": "Ezt az integrációt először a szerver adminisztrátorának kell engedélyeznie."
},
"recomendations": {
"recommendation": "Ajánlás",
"recommendations": "Ajánlások",
"location_recommendations": "Helyajánlások",
"food": "Étel",
"tourism": "Turizmus"
"tourism": "Turizmus",
"any": "Bármilyen",
"average_rating": "Átlagos értékelés",
"discover_places": "Fedezze fel a helyeket",
"lodging": "Szállodák",
"map_view": "Térképnézet",
"minimum_rating": "Minimális minősítés",
"minimum_reviews": "Minimum Vélemények",
"no_results_yet": "Még nincs eredmény",
"open_now_only": "Csak most nyílik meg",
"search_around_location": "Keresés a hely körül",
"search_by_address": "Keresés cím szerint",
"search_radius_label": "Keresési sugár:",
"searching": "Keresés...",
"select_location_or_query": "Válasszon ki egy helyet, vagy írjon be egy keresési lekérdezést, hogy csodálatos helyeket fedezzen fel a közelben!",
"total_results": "Összes Eredmények",
"use_search_instead": "Használja inkább a keresést",
"add_location": "Hely hozzáadása elemre",
"add_lodging": "Szállás hozzáadása",
"away": "el",
"hours": "Órák",
"open": "Nyitott",
"your_location": "Az Ön helye"
},
"calendar": {
"today": "Ma",
@@ -1001,7 +1013,9 @@
"total_events": "Összes esemény",
"calendar_overview": "Naptár áttekintés",
"filtered_results": "Szűrt eredmények",
"all_day_event": "Egész napos esemény"
"all_day_event": "Egész napos esemény",
"event timezone": "Esemény időzóna",
"your timezone": "Az Ön időzónája"
},
"locations": {
"location": "Hely",
@@ -1025,11 +1039,7 @@
},
"strava": {
"strava_integration_desc": "Csatlakozz a Stravához, hogy könnyedén importáld az aktivitásaidat helyszínekhez és látogatásokhoz.",
"not_configured": "Strava nincs konfigurálva",
"admin_setup_required": "A szerver adminisztrátorának globálisan engedélyeznie kell.",
"ready_to_connect": "Csatlakozásra kész",
"connect_account": "Fiók csatlakoztatása",
"account_connected": "Fiók csatlakoztatva",
"disconnect": "Kapcsolat bontása",
"authorization_error": "Hiba a Strava engedélyezési URL-re való átirányításkor",
"disconnected": "Sikeresen bontva a kapcsolat a Stravával",
@@ -1041,5 +1051,82 @@
"wanderer_integration_desc": "Csatlakozz a Wandererhez, hogy könnyedén importáld és megtekinthesd a túraútvonalakat a helyszíneken.",
"connection_error": "Hiba a Wandererhez való csatlakozáskor",
"connected": "Sikeresen csatlakozva a Wandererhez"
},
"collections": {
"all_items": "Minden elem",
"currencies": "Pénznemek",
"currency": "Valuta",
"event_timezone": "Esemény időzóna",
"event_timezone_desc": "Az esemény időzónája a helyet vagy az elem időzónáját használja, ha elérhető. \nAz én időzónám használja",
"events": "eseményeket",
"local_timezone": "Az én időzónám",
"no_calendar_events": "Ehhez a gyűjteményhez még nem terveztek látogatást.",
"no_priced_items": "Adja hozzá az árakat a helyszínekhez, a szállásokhoz vagy a közlekedéshez, hogy megtekinthesse az utazások összegét pénznemenként.",
"not_found": "A gyűjtemény nem található",
"statistics": "Statisztika",
"times_shown_in": "A feltüntetett időpontok",
"trip_costs": "Utazási költségek"
},
"common": {
"show_less": "Részletek elrejtése",
"show_more": "Mutasson többet"
},
"currencies": {
"AED": "Egyesült Arab Emírségek dirham",
"AUD": "ausztrál dollár",
"BRL": "brazil real",
"CAD": "Kanadai dollár",
"CHF": "svájci frank",
"CNY": "kínai jüan",
"DKK": "dán korona",
"EUR": "Euro",
"GBP": "angol font",
"HKD": "hongkongi dollár",
"INR": "indiai rúpia",
"JPY": "japán jen",
"MXN": "mexikói peso",
"NOK": "norvég korona",
"NZD": "új-zélandi dollár",
"SEK": "svéd korona",
"SGD": "szingapúri dollár",
"TRY": "török líra",
"USD": "amerikai dollár",
"ZAR": "dél-afrikai rand",
"no_matches": "Nincs egyezés",
"search": "Pénznem keresése",
"select_currency": "Válasszon pénznemet"
},
"itinerary": {
"add_description": "Leírás hozzáadása",
"add_to_day": "Add hozzá a naphoz",
"add_to_trip_context": "Utazási kontextus hozzáadása",
"added_to_trip_context": "Hozzáadva az utazás kontextusához",
"auto_generate": "Automatikus generálás",
"auto_generate_itinerary": "Útvonal automatikus generálása",
"auto_generate_itinerary_desc": "Ebben a gyűjteményben vannak kelt elemek, de még nincs útvonal. \nSzeretné automatikusan dátum szerint rendezni őket?",
"change_day": "Változás napja",
"drag_to_reorder": "Húzza át az átrendezéshez",
"failed_to_add_to_trip_context": "Nem sikerült az elem hozzáadása az utazási kontextushoz",
"failed_to_move_to_trip_context": "Nem sikerült áthelyezni az utazási kontextusba",
"generating": "Generálás",
"item_already_in_trip_context": "Már az utazással kapcsolatos elemek",
"item_not_found": "Az elem nem található",
"item_remove_error": "Hiba történt az elem eltávolítása során az útitervből",
"item_remove_success": "Az elem eltávolítva az útitervből",
"link_existing_item": "Kapcsolja össze a meglévő elemet",
"move_to_trip_context": "Ugrás az utazási kontextushoz",
"moved_to_trip_context": "Áthelyezve utazási kontextusba",
"multi_day": "Több napos",
"no_itinerary_yet": "Még nincs útiterv",
"no_plans_for_day": "Nincs terv erre a napra",
"no_trip_context_items": "Még nincsenek utazási kontextuselemek.",
"remove_from_itinerary": "Távolítsa el a napból",
"remove_from_trip_context": "Eltávolítás a kontextusból",
"start_planning": "Kezdje megtervezni utazását úgy, hogy adott napokhoz adjon hozzá elemeket.",
"staying_overnight": "Éjszaka maradás",
"trip_context": "Utazási kontextus",
"trip_context_info": "Az utazási kontextus elemei az egész utazásra vonatkoznak például olyan helyek, amelyek maga az úti cél, általános megjegyzések vagy csomaglisták, amelyek az egész utazás szempontjából fontosak.",
"unscheduled_items": "Nem ütemezett tételek",
"unscheduled_items_desc": "Ezek az elemek ehhez az utazáshoz kapcsolódnak, de még nem adták hozzá egy adott naphoz."
}
}

View File

@@ -5,10 +5,7 @@
"license": "Concesso in licenza con la licenza GPL-3.0.",
"message": "Realizzato con ❤️ negli Stati Uniti.",
"nominatim_1": "La ricerca della posizione e la geocodifica sono fornite da",
"nominatim_2": "I loro dati sono concessi in licenza con la licenza ODbL.",
"oss_attributions": "Attribuzioni Open Source",
"other_attributions": "Ulteriori attribuzioni possono essere trovate nel file README.",
"source_code": "Codice sorgente",
"generic_attributions": "Accedi a AdventureLog per visualizzare le attribuzioni per integrazioni e servizi abilitati.",
"attributions": "Attribuzioni",
"developer": "Sviluppatore",
@@ -20,9 +17,7 @@
"view_license": "Visualizza la licenza"
},
"adventures": {
"activities": {},
"add_to_collection": "Aggiungi alla collezione",
"adventure": "Avventura",
"archive": "Archivio",
"archived": "Archiviato",
"archived_collection_message": "Collezione archiviata con successo!",
@@ -32,14 +27,12 @@
"category_filter": "Filtro categoria",
"clear": "Rimuovere",
"collection": "Collezione",
"count_txt": "risultati corrispondenti alla tua ricerca",
"create_new": "Crea nuovo...",
"date": "Data",
"delete": "Eliminare",
"delete_collection": "Elimina collezione",
"delete_collection_success": "Collezione eliminata con successo!",
"descending": "Discendente",
"edit_adventure": "Modifica Avventura",
"edit_collection": "Modifica collezione",
"filter": "Filtro",
"homepage": "Home page",
@@ -47,9 +40,7 @@
"longitude": "Longitudine",
"my_collections": "Le mie collezioni",
"name": "Nome",
"no_image_found": "Nessuna immagine trovata",
"open_details": "Apri Dettagli",
"open_filters": "Apri filtri",
"order_by": "Ordina per",
"order_direction": "Direzione dell'ordine",
"private": "Privato",
@@ -64,120 +55,75 @@
"updated": "Aggiornato",
"visit": "Visita",
"visits": "Visite",
"collection_adventures": "Includi avventure dalle raccolte",
"dates": "Date",
"duration": "Durata",
"image_removed_error": "Errore durante la rimozione dell'immagine",
"image_removed_success": "Immagine rimossa con successo!",
"image_upload_error": "Errore durante il caricamento dell'immagine",
"image_upload_success": "Immagine caricata con successo!",
"no_image_url": "Nessuna immagine trovata a quell'URL.",
"planned": "Pianificato",
"start_before_end_error": "La data di inizio deve essere antecedente alla data di fine",
"visited": "Visitato",
"actions": "Azioni",
"activity_types": "Tipi di attività",
"add": "Aggiungere",
"add_notes": "Aggiungi note",
"basic_information": "Informazioni di base",
"category": "Categoria",
"clear_map": "Libera mappa",
"copy_link": "Copia collegamento",
"date_constrain": "Vincolare alle date di collezione",
"description": "Descrizione",
"end_date": "Data di fine",
"fetch_image": "Recupera immagine",
"generate_desc": "Genera descrizione",
"image": "Immagine",
"image_fetch_failed": "Impossibile recuperare l'immagine",
"link": "Collegamento",
"location": "Posizione",
"location_information": "Informazioni sulla posizione",
"my_images": "Le mie immagini",
"no_description_found": "Nessuna descrizione trovata",
"no_images": "Nessuna immagine",
"no_location": "Inserisci una località",
"no_results": "Nessun risultato trovato",
"remove": "Rimuovere",
"save_next": "Salva",
"search_for_location": "Cerca una posizione",
"search_results": "Risultati della ricerca",
"see_adventures": "Vedi Avventure",
"start_date": "Data di inizio",
"upload_image": "Carica immagine",
"url": "URL",
"warning": "Avvertimento",
"wiki_image_error": "Errore durante il recupero dell'immagine da Wikipedia",
"wikipedia": "Wikipedia",
"adventure_not_found": "Non ci sono avventure da visualizzare. \nAggiungine alcuni utilizzando il pulsante più in basso a destra o prova a cambiare i filtri!",
"all": "Tutto",
"error_updating_regions": "Errore durante l'aggiornamento delle regioni",
"mark_visited": "Segna come visitato",
"my_adventures": "Le mie avventure",
"no_adventures_found": "Nessuna avventura trovata",
"no_linkable_adventures": "Non è stata trovata alcuna avventura che possa essere collegata a questa collezione.",
"not_visited": "Non visitato",
"regions_updated": "regioni aggiornate",
"update_visited_regions": "Aggiorna le regioni visitate",
"update_visited_regions_disclaimer": "L'operazione potrebbe richiedere del tempo a seconda del numero di avventure che hai visitato.",
"visited_region_check": "Controllo della regione visitata",
"visited_region_check_desc": "Selezionando questa opzione, il server controllerà tutte le avventure che hai visitato e contrassegnerà le regioni in cui si trovano come visitate nei viaggi per il mondo.",
"add_new": "Aggiungi nuovo...",
"checklist": "Lista di controllo",
"checklists": "Liste di controllo",
"collection_archived": "Questa collezione è stata archiviata.",
"collection_completed": "Hai completato questa collezione!",
"collection_stats": "Statistiche della collezione",
"days": "giorni",
"itineary_by_date": "Itinerario per data",
"keep_exploring": "Continua a esplorare!",
"link_new": "Collega Nuovo...",
"linked_adventures": "Avventure collegate",
"links": "Collegamenti",
"note": "Nota",
"notes": "Note",
"nothing_planned": "Niente in programma per questa giornata. \nBuon viaggio!",
"transportation": "Trasporto",
"transportations": "Trasporti",
"visit_link": "Visita il collegamento",
"day": "Giorno",
"add_a_tag": "Aggiungi un'etichetta",
"tags": "Tag",
"set_to_pin": "Imposta su Blocca",
"category_fetch_error": "Errore durante il recupero delle categorie",
"copied_to_clipboard": "Copiato negli appunti!",
"copy_failed": "Copia non riuscita",
"adventure_calendar": "Calendario delle avventure",
"emoji_picker": "Selettore di emoji",
"hide": "Nascondere",
"show": "Mostrare",
"download_calendar": "Scarica Calendario",
"md_instructions": "Scrivi qui in markdown...",
"preview": "Anteprima",
"checklist_delete_confirm": "Sei sicuro di voler eliminare questa lista di controllo? \nQuesta azione non può essere annullata.",
"clear_location": "Cancella posizione",
"date_information": "Informazioni sulla data",
"delete_checklist": "Elimina lista di controllo",
"delete_note": "Elimina nota",
"delete_transportation": "Elimina trasporto",
"end": "FINE",
"ending_airport": "Aeroporto di arrivo",
"flight_information": "Informazioni sul volo",
"from": "Da",
"no_location_found": "Nessuna posizione trovata",
"note_delete_confirm": "Sei sicuro di voler eliminare questa nota? \nQuesta azione non può essere annullata.",
"out_of_range": "Non nell'intervallo di date dell'itinerario",
"start": "Inizio",
"starting_airport": "Aeroporto di partenza",
"to": "A",
"transportation_delete_confirm": "Sei sicuro di voler eliminare questo trasporto? \nQuesta azione non può essere annullata.",
"cities_updated": "città aggiornate",
"finding_recommendations": "Alla scoperta di tesori nascosti per la tua prossima avventura",
"attachment": "Allegato",
"attachment_delete_success": "Allegato eliminato con successo!",
"attachment_name": "Nome dell'allegato",
"attachment_update_error": "Errore durante l'aggiornamento dell'allegato",
"attachment_update_success": "Allegato aggiornato con successo!",
"attachment_upload_error": "Errore durante il caricamento dell'allegato",
"attachment_upload_success": "Allegato caricato con successo!",
"attachments": "Allegati",
@@ -186,27 +132,16 @@
"upload": "Caricamento",
"city": "Città",
"delete_lodging": "Elimina alloggio",
"display_name": "Nome da visualizzare",
"location_details": "Dettagli della posizione",
"lodging": "Alloggio",
"lodging_delete_confirm": "Sei sicuro di voler eliminare questa posizione di alloggio? \nQuesta azione non può essere annullata.",
"lodging_information": "Informazioni di alloggio",
"price": "Prezzo",
"region": "Regione",
"reservation_number": "Numero di prenotazione",
"open_in_maps": "Aprire in Mappe",
"all_day": "Tutto il giorno",
"collection_no_start_end_date": "L'aggiunta di una data di inizio e fine alla collezione sbloccherà le funzionalità di pianificazione dell'itinerario nella pagina della collezione.",
"date_itinerary": "Data dell'itinerario",
"no_ordered_items": "Aggiungi elementi con date alla collezione per vederli qui.",
"ordered_itinerary": "Itinerario ordinato",
"invalid_date_range": "Intervallo di date non valido",
"timezone": "Fuso orario",
"no_visits": "Nessuna visita",
"arrival_timezone": "Fuso orario di arrivo",
"departure_timezone": "Fuso orario di partenza",
"arrival_date": "Data di arrivo",
"departure_date": "Data di partenza",
"coordinates": "Coordinate",
"copy_coordinates": "Copia coordinate",
"sun_times": "Sun Times",
@@ -214,7 +149,6 @@
"sunset": "Tramonto",
"timed": "A tempo",
"distance": "Distanza",
"all_linked_items": "Tutti gli elementi collegati",
"itinerary": "Itinerario",
"joined": "Partecipato",
"view_profile": "Visualizza il profilo",
@@ -223,15 +157,11 @@
"filters_and_stats": "Filtri",
"no_adventures_message": "Inizia a documentare le tue avventure e pianificarne di nuove. \nOgni viaggio ha una storia che vale la pena raccontare.",
"travel_progress": "Progresso di viaggio",
"adventures_available": "Avventure disponibili",
"all_adventures_already_linked": "Tutte le avventure sono già legate a questa collezione.",
"collections_linked": "Collezioni collegate",
"create_collection_first": "Crea prima una collezione per organizzare le tue avventure e i tuoi ricordi.",
"delete_collection_warning": "Sei sicuro di voler eliminare questa collezione? \nQuesta azione non può essere annullata.",
"done": "Fatto",
"loading_adventures": "Caricamento di avventure ...",
"name_location": "Nome, posizione",
"collection_contents": "Contenuto di raccolta",
"check_in": "Check -in",
"check_out": "Guardare",
"collection_link_location_error": "Errore che collega la posizione alla raccolta",
@@ -242,22 +172,14 @@
"create_location": "Crea posizione",
"delete_location": "Elimina posizione",
"edit_location": "Modifica posizione",
"location_create_error": "Impossibile creare posizione",
"location_created": "Posizione creata",
"location_delete_confirm": "Sei sicuro di voler eliminare questa posizione? \nQuesta azione non può essere annullata.",
"location_delete_success": "Posizione eliminata con successo!",
"location_not_found": "Posizione non trovata",
"location_not_found_desc": "Non è stato possibile trovare la posizione che stavi cercando. \nProva una posizione diversa o ricontrolla più tardi.",
"location_update_error": "Impossibile aggiornare la posizione",
"location_updated": "Posizione aggiornata",
"new_location": "Nuova posizione",
"no_collections_to_add_location": "Nessuna collezione trovata per aggiungere questa posizione a.",
"no_locations_to_recommendations": "Nessuna posizione trovata. \nAggiungi almeno una posizione per ottenere consigli.",
"public_location": "Posizione pubblica",
"share_location": "Condividi questa posizione!",
"visit_calendar": "Visita il calendario",
"wiki_location_desc": "Estratto dall'articolo di Wikipedia che corrisponde al nome della posizione.",
"will_be_marked_location": "sarà contrassegnato come visitato una volta salvata la posizione.",
"no_locations_found": "Nessuna posizione trovata",
"image_modal_navigate": "Usa i tasti freccia o fai clic per navigare",
"details": "Dettagli",
@@ -269,7 +191,6 @@
"quick_start": "Inizio rapido",
"achievements": "Risultati",
"active_duration": "Durata attiva",
"activities_name": "Attività",
"activity_name": "Nome dell'attività",
"activity_name_placeholder": "Corsa mattutina",
"activity_name_required": "È richiesto il nome dell'attività",
@@ -361,13 +282,11 @@
"select_on_map": "Seleziona sulla mappa",
"select_wanderer_trail": "Seleziona un sentiero dal tuo account Wanderer",
"sport_type": "Tipo di sport",
"sport_type_placeholder": "Pista",
"start_lat": "Inizia latitudine",
"start_lng": "Inizia la longitudine",
"strava_activities_during_visit": "Attività di Strava durante la visita",
"strava_activity_ready": "Attività di Strava pronta",
"time": "Tempo",
"total_covered": "Coperto totale",
"total_recorded": "Totale registrato",
"trail": "Sentiero",
"trail_created_successfully": "Trail creata con successo",
@@ -404,19 +323,7 @@
"low": "Basso",
"rest": "Riposo",
"total": "Totale",
"attachment_removed_error": "Errore di rimozione dell'allegato",
"attachment_removed_success": "Attacco rimosso con successo",
"attachments_upload_info": "Gli allegati verranno caricati dopo aver salvato il",
"image_upload_info": "Le immagini verranno caricate dopo aver salvato il",
"linked_locations": "Posizioni collegate",
"lodging_save_error": "Errore salvataggio di alloggio",
"my_attachments": "I miei allegati",
"no_attachments": "Nessun allegato",
"no_attachments_desc": "Carica file per iniziare",
"no_images_desc": "Carica immagini per iniziare",
"route_map": "Mappa del percorso",
"selected_attachments": "Allegati selezionati",
"selected_images": "Immagini selezionate",
"activities_text": "attività",
"activity_breakdown_by_category": "Bruteodown per le attività per categoria",
"distance_covered": "Distanza coperta",
@@ -425,7 +332,109 @@
"total_climbed": "Totale scalato",
"total_distance": "Distanza totale",
"dates_not_saved": "Visitare non ancora aggiunto",
"dates_not_saved_description": "Fai clic su Aggiungi visita per salvare"
"dates_not_saved_description": "Fai clic su Aggiungi visita per salvare",
"active_days": "Giorni attivi",
"add_here": "Aggiungi qui",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Modalità di ricerca dell'aeroporto",
"all_locations_already_linked": "Tutte le località sono già collegate a questa raccolta.",
"arrival_airport": "Aeroporto di arrivo",
"avg_rating": "Valutazione media",
"burned": "bruciato",
"categories": "Categorie",
"cities": "Città",
"clear_search": "Cancella ricerca",
"click_map_add_marker": "Fai clic sulla mappa per rilasciare un indicatore, quindi aggiungilo qui.",
"completed": "Completato",
"content_media": "Contenuto",
"countries": "Paesi",
"country": "Paese",
"departure_airport": "Aeroporto di partenza",
"distance_traveled": "Distanza percorsa",
"end_location": "Posizione finale",
"enter_location_display_name": "Inserisci il nome visualizzato della posizione",
"files": "File",
"flight": "Volo",
"folder": "Cartella",
"folder_view": "Visualizzazione cartella: mostra tutti i dati",
"footprints": "Impronte",
"gained": "guadagnato",
"geographic_breakdown": "Ripartizione geografica",
"gpx_routes": "Percorsi GPX",
"hide_filters": "Nascondi filtri",
"images_captured": "Immagini catturate",
"in": "In",
"in_progress": "In corso",
"items": "elementi",
"itinerary_link_modal": {
"add_here": "Aggiungi qui",
"add_here_keep_date": "Aggiungi (Mantieni data)",
"add_to_itinerary": "Aggiungi all'itinerario",
"already_added": "Già aggiunto",
"already_added_on_this_day": "Già aggiunto in questo giorno",
"already_added_on_this_day_desc": "Questi elementi sono già programmati per questo giorno.",
"already_added_other_days": "Già aggiunto negli altri giorni",
"already_added_other_days_desc": "Questi elementi sono programmati in date diverse. \nAggiungendoli qui si aggiornerà la data o li si aggiungerà così come sono.",
"items_available": "{count} elementi disponibili per il collegamento",
"items_on_other_days": "Articoli in altri giorni",
"items_on_other_days_desc": "Questi elementi hanno date diverse. \nPuoi aggiungerli e, facoltativamente, aggiornare la loro data in modo che corrisponda.",
"items_on_this_day": "Articoli in questo giorno",
"no_unscheduled_items": "Nessun elemento non programmato disponibile",
"no_unscheduled_items_desc": "Tutti gli elementi sono stati aggiunti all'itinerario o non ci sono elementi da aggiungere.",
"title": "Collega elementi a {data}"
},
"link_copied": "Collegamento copiato",
"lists": "Elenchi",
"location_search_mode": "Modalità di ricerca della posizione",
"locations_visited": "Località visitate",
"lodging_not_found": "Alloggio non trovato",
"lodging_types": "Tipi di alloggio",
"more_details": "Maggiori dettagli",
"my_locations": "Le mie posizioni",
"nights": "Notti",
"no_linkable_locations": "Nessuna località trovata che possa essere collegata a questa raccolta.",
"of_locations": "di posizioni",
"on_this_trip": "In questo viaggio",
"overnight": "Pernottamento",
"physical_activities": "Attività fisiche",
"pins": "perni",
"places": "Luoghi",
"regions": "Regioni",
"reservation": "Prenotazione",
"reset_filters": "Reset",
"route": "Itinerario",
"route_selected": "Itinerario selezionato",
"routes_and_activities": "Percorsi",
"saving": "Risparmio",
"search_end_location": "Cerca la posizione finale",
"search_start_end_locations": "Cerca le posizioni di inizio e fine",
"search_start_location": "Cerca la posizione di partenza",
"segments": "Segmenti",
"select": "Selezionare",
"show_filters": "Mostra filtri",
"start_location": "Posizione iniziale",
"status_filter": "Filtro di stato",
"stays": "Soggiorni",
"tasks_done": "Compiti completati",
"total_days": "Giorni totali",
"total_visits": "Visite totali",
"transport_activity_paths": "Trasporto",
"transportation_gpx_tip": "Carica qui i file GPX per visualizzarli sulla mappa",
"traveled": "viaggiato",
"travelers": "Viaggiatori",
"trip_timeline": "Cronologia del viaggio",
"trip_window": "Finestra di viaggio",
"upcoming": "Prossimamente",
"view": "Visualizzazione",
"wiki_results_found": "Risultati di Wikipedia",
"with_activities": "Con attività",
"written": "Scritto",
"export_failed": "Esportazione non riuscita",
"export_success": "Collezione esportata",
"export_zip": "Esporta CAP",
"import_failed": "Importazione non riuscita",
"import_from_file": "Importa da file",
"import_success": "Importazione riuscita"
},
"home": {
"desc_1": "Scopri, pianifica ed esplora con facilità",
@@ -447,13 +456,11 @@
},
"navbar": {
"about": "Informazioni su AdventureLog",
"adventures": "Avventure",
"collections": "Collezioni",
"documentation": "Documentazione",
"greeting": "Ciao",
"logout": "Esci",
"map": "Mappa",
"my_adventures": "Le mie avventure",
"profile": "Profilo",
"search": "Ricerca",
"settings": "Impostazioni",
@@ -471,14 +478,12 @@
"northernLights": "Northern Lights"
},
"users": "Utenti",
"worldtravel": "Viaggio nel mondo",
"my_tags": "Le mie tag",
"tag": "Etichetta",
"language_selection": "Lingua",
"support": "Supporto",
"calendar": "Calendario",
"admin_panel": "Pannello di amministrazione",
"navigation": "Navigazione"
"navigation": "Navigazione",
"worldtravel": "Viaggio nel mondo"
},
"auth": {
"confirm_password": "Conferma password",
@@ -494,7 +499,6 @@
"username": "Nome utente",
"profile_picture": "Immagine del profilo",
"public_profile": "Profilo pubblico",
"public_tooltip": "Con un profilo pubblico, gli utenti possono condividere raccolte con te e visualizzare il tuo profilo nella pagina degli utenti.",
"new_password": "Nuova password",
"or_3rd_party": "Oppure accedi con un servizio di terze parti",
"no_public_collections": "Nessuna collezione pubblica trovata",
@@ -504,21 +508,15 @@
"enter_password": "Inserisci la tua password",
"enter_username": "Inserisci il tuo nome utente",
"logging_in": "Accedere",
"totp": "Codice a due fattori"
"totp": "Codice a due fattori",
"user_email_verification_required": "È richiesta la verifica dell'e-mail. \nControlla la tua email per un collegamento di verifica."
},
"users": {
"no_users_found": "Nessun utente trovato con profili pubblici."
},
"worldtravel": {
"all": "Tutto",
"all_subregions": "Tutte le sottoregioni",
"clear_search": "Cancella ricerca",
"completely_visited": "Completamente visitato",
"country_list": "Elenco dei paesi",
"no_countries_found": "Nessun paese trovato",
"not_visited": "Non visitato",
"num_countries": "paesi trovati",
"partially_visited": "Parzialmente visitato",
"cities": "città",
"failed_to_mark_visit": "Impossibile contrassegnare la visita a",
"failed_to_remove_visit": "Impossibile rimuovere la visita a",
@@ -559,11 +557,6 @@
"total_cities": "Città totali",
"total_countries": "Paesi totali",
"total_regions": "Regioni totali",
"newest_first": "Primo il più recente",
"oldest_first": "Prima più antico",
"unvisited_first": "Non visitato per primo",
"visited_first": "Visitato per primo",
"total_items": "Articoli totali",
"getting_location_details": "Ottenere dettagli sulla posizione",
"cities_available": "Città disponibili",
"destination_revealed": "Destinazione rivelata!",
@@ -583,7 +576,8 @@
"about_country": "Informazioni sul paese",
"about_region": "A proposito di Regione",
"show_less": "Mostra meno",
"show_more": "Mostra altro"
"show_more": "Mostra altro",
"all_locations_visited": "Tutte le località visitate!"
},
"settings": {
"account_settings": "Impostazioni dell'account utente",
@@ -772,10 +766,23 @@
"shared_collections": "Collezioni condivise",
"available": "Disponibile",
"linked": "Collegato",
"try_different_search": "Prova una ricerca o un filtro diverso."
"try_different_search": "Prova una ricerca o un filtro diverso.",
"changing_date_title": "La modifica delle date influirà sugli elementi dell'itinerario",
"changing_date_warning": "Tutti gli elementi dell'itinerario al di fuori del nuovo intervallo di date verranno rimossi dall'itinerario e reinseriti negli elementi senza data della raccolta.",
"clear_cover": "Copertura trasparente",
"collaborators": "Collaboratori",
"cover": "Copertina",
"cover_image": "Immagine di copertina",
"cover_image_hint": "Scegli una copertina dalle immagini di questa raccolta.",
"create_new_collection": "Crea una nuova collezione",
"enter_collection_name": "Inserisci il nome della raccolta",
"location_primary": "Copertura della posizione",
"no_images_available": "Nessuna immagine ancora disponibile dalle posizioni collegate.",
"public_collection_description": "Consenti a chiunque abbia il link di visualizzarlo",
"set_cover": "Impostare la copertura",
"update_collection_details": "Aggiorna i dettagli della collezione"
},
"notes": {
"add_a_link": "Aggiungi un collegamento",
"content": "Contenuto",
"editing_note": "Editor di modifica nota",
"failed_to_save": "Impossibile salvare la nota",
@@ -812,9 +819,6 @@
"transportation_delete_error": "Errore durante l'eliminazione del trasporto",
"transportation_deleted": "Trasporto eliminato con successo!",
"type": "Tipo",
"ending_airport_desc": "Immettere il codice dell'aroporto di arrivo (ad es. LAX)",
"fetch_location_information": "Informazioni sulla posizione di recupero",
"starting_airport_desc": "Immettere il codice dell'aeroporto di partenza (ad es. JFK)",
"create_new_transportation": "Nuovo trasporto",
"enter_flight_number": "Immettere il numero di volo",
"enter_from_location": "Immettere dalla posizione",
@@ -822,12 +826,15 @@
"enter_to_location": "Entra in posizione",
"enter_transportation_name": "Immettere il nome del trasporto",
"select_type": "Selezionare il tipo",
"update_transportation_details": "Aggiorna i dettagli del trasporto"
"update_transportation_details": "Aggiorna i dettagli del trasporto",
"arrival_code": "Codice di arrivo",
"arrival_date": "Data di arrivo",
"arrival_timezone": "Fuso orario di arrivo",
"departure_code": "Codice di partenza",
"departure_date": "Data di partenza",
"departure_timezone": "Fuso orario di partenza"
},
"search": {
"adventurelog_results": "Risultati di AdventureLog",
"online_results": "Risultati in linea",
"public_adventures": "Avventure pubbliche",
"cities": "Città",
"countries": "Paesi",
"found": "trovato",
@@ -836,12 +843,7 @@
"try_searching_desc": "Prova a cercare avventure, collezioni, paesi, regioni, città o utenti."
},
"map": {
"add_adventure": "Aggiungi nuova avventura",
"add_adventure_at_marker": "Aggiungi nuova avventura a Marker",
"adventure_map": "Mappa dell'avventura",
"clear_marker": "Cancella indicatore",
"map_options": "Opzioni della mappa",
"show_visited_regions": "Mostra regioni visitate",
"view_details": "Visualizza dettagli",
"adventure_stats": "Statistiche di avventura",
"completion": "Completamento",
@@ -854,21 +856,16 @@
"location_map": "Mappa della posizione",
"locations_shown": "posizioni mostrate",
"place_marker_desc_location": "Fai clic sulla mappa per posizionare un indicatore.",
"show_activities": "Mostra attività",
"show_visited_cities": "Città visitate"
"show_visited_cities": "Città visitate",
"search_locations": "Cerca località..."
},
"languages": {},
"share": {
"no_users_shared": "Nessun utente condiviso con",
"not_shared_with": "Non condiviso con",
"share_desc": "Condividi questa collezione con altri utenti.",
"shared": "Condiviso",
"shared_with": "Condiviso con",
"unshared": "Non condiviso",
"with": "con",
"go_to_settings": "Vai alle impostazioni",
"no_shared_found": "Nessuna collezione trovata condivisa con te.",
"set_public": "Per consentire agli utenti di condividere con te, è necessario che il tuo profilo sia impostato su pubblico.",
"available": "Disponibile",
"pending": "In attesa di",
"revoke_invite": "Revoca invito",
@@ -882,7 +879,6 @@
},
"profile": {
"member_since": "Membro da",
"user_stats": "Statistiche utente",
"visited_countries": "Paesi visitati",
"visited_regions": "Regioni visitate",
"visited_cities": "Città visitate",
@@ -907,7 +903,6 @@
"location_update_after_refresh": "Le schede di posizione verranno aggiornate dopo aver aggiornato la pagina."
},
"dashboard": {
"add_some": "Perché non iniziare a pianificare la tua prossima avventura? \nPuoi aggiungere una nuova avventura facendo clic sul pulsante in basso.",
"countries_visited": "Paesi visitati",
"no_recent_adventures": "Nessuna avventura recente?",
"recent_adventures": "Avventure recenti",
@@ -955,16 +950,34 @@
"loading_albums": "Caricamento di album",
"no_images": "Nessuna immagine trovata",
"select_album": "Seleziona l'album",
"select_album_first": "Seleziona prima un album",
"select_date": "Seleziona Data",
"try_different_date": "Prova una data diversa"
},
"recomendations": {
"recommendation": "Raccomandazione",
"recommendations": "Raccomandazioni",
"food": "Cibo",
"tourism": "Turismo",
"location_recommendations": "Raccomandazioni sulla posizione"
"any": "Qualunque",
"average_rating": "Voto medio",
"discover_places": "Scopri Luoghi",
"lodging": "Alberghi",
"map_view": "Visualizzazione mappa",
"minimum_rating": "Valutazione minima",
"minimum_reviews": "Recensioni minime",
"no_results_yet": "Nessun risultato ancora",
"open_now_only": "Aperto solo ora",
"search_around_location": "Cerca nella posizione",
"search_by_address": "Cerca per indirizzo",
"search_radius_label": "Raggio di ricerca:",
"searching": "Ricerca...",
"select_location_or_query": "Seleziona una posizione o inserisci una query di ricerca per scoprire luoghi meravigliosi nelle vicinanze!",
"total_results": "Risultati totali",
"use_search_instead": "Utilizza invece la ricerca",
"add_location": "Aggiungi posizione",
"add_lodging": "Aggiungi alloggio",
"away": "lontano",
"hours": "Ore",
"open": "Aprire",
"your_location": "La tua posizione"
},
"lodging": {
"apartment": "Appartamento",
@@ -984,7 +997,6 @@
"motel": "Motel",
"create_new_lodging": "Nuovo alloggio",
"enter_lodging_name": "Immettere il nome di alloggio",
"enter_price": "Inserisci il prezzo",
"enter_reservation_number": "Immettere il numero di prenotazione",
"update_lodging_details": "Aggiorna i dettagli di alloggio"
},
@@ -1001,7 +1013,9 @@
"month": "Mese",
"today": "Oggi",
"total_events": "Eventi totali",
"week": "Settimana"
"week": "Settimana",
"event timezone": "Fuso orario dell'evento",
"your timezone": "Il tuo fuso orario"
},
"locations": {
"location": "Posizione",
@@ -1024,15 +1038,11 @@
"title": "Inviti"
},
"strava": {
"account_connected": "Conto collegato",
"admin_setup_required": "L'amministratore del server deve abilitarlo a livello globale",
"authorization_error": "Reindirizzamento dell'errore all'URL di autorizzazione Strava",
"connect_account": "Connect Account",
"disconnect": "Disconnessione",
"disconnect_error": "Errore di disconnessione da Strava",
"disconnected": "Disconnesso con successo da Strava",
"not_configured": "Strava non configurato",
"ready_to_connect": "Pronto per connettersi",
"strava_integration_desc": "Connettiti a Strava per importare facilmente le tue attivi in posizioni e visite",
"gpx_required": "Carica il file GPX per completare l'importazione di Strava",
"not_enabled": "L'integrazione di Strava non è abilitata in questa istanza."
@@ -1041,5 +1051,82 @@
"connected": "Collegato con successo a Wanderer",
"connection_error": "Errore che si collega a Wanderer",
"wanderer_integration_desc": "Connettiti a Wanderer per importare facilmente e visualizzare i tuoi sentieri in luoghi"
},
"collections": {
"all_items": "Tutti gli articoli",
"currencies": "Valute",
"currency": "Valuta",
"event_timezone": "Fuso orario dell'evento",
"event_timezone_desc": "Il fuso orario dell'evento utilizza la posizione o il fuso orario dell'elemento, se disponibile. \nIl mio fuso orario utilizza",
"events": "eventi",
"local_timezone": "Il mio fuso orario",
"no_calendar_events": "Non sono ancora previste visite per questa collezione.",
"no_priced_items": "Aggiungi i prezzi alle località, agli alloggi o ai trasporti per visualizzare i totali dei viaggi in base alla valuta.",
"not_found": "Raccolta non trovata",
"statistics": "Statistiche",
"times_shown_in": "Tempi indicati in",
"trip_costs": "Costi di viaggio"
},
"common": {
"show_less": "Nascondi dettagli",
"show_more": "Mostra di più"
},
"currencies": {
"AED": "Dirham degli Emirati Arabi Uniti",
"AUD": "Dollaro australiano",
"BRL": "Real brasiliano",
"CAD": "Dollaro canadese",
"CHF": "Franco svizzero",
"CNY": "Yuan cinese",
"DKK": "Corona danese",
"EUR": "Euro",
"GBP": "Sterlina britannica",
"HKD": "Dollaro di Hong Kong",
"INR": "Rupia indiana",
"JPY": "Yen giapponesi",
"MXN": "Peso messicano",
"NOK": "Corona norvegese",
"NZD": "Dollaro neozelandese",
"SEK": "Corona svedese",
"SGD": "Dollaro di Singapore",
"TRY": "Lira turca",
"USD": "Dollaro americano",
"ZAR": "Rand sudafricano",
"no_matches": "Nessuna corrispondenza",
"search": "Cerca valuta",
"select_currency": "Seleziona valuta"
},
"itinerary": {
"add_description": "Aggiungi descrizione",
"add_to_day": "Aggiungi al giorno",
"add_to_trip_context": "Aggiungi il contesto del viaggio",
"added_to_trip_context": "Aggiunto al contesto del viaggio",
"auto_generate": "Generazione automatica",
"auto_generate_itinerary": "Itinerario generato automaticamente",
"auto_generate_itinerary_desc": "Questa raccolta contiene elementi datati ma ancora nessun itinerario. \nVuoi organizzarli automaticamente per data?",
"change_day": "Cambia giorno",
"drag_to_reorder": "Trascina per riordinare",
"failed_to_add_to_trip_context": "Impossibile aggiungere l'elemento al contesto del viaggio",
"failed_to_move_to_trip_context": "Impossibile passare al contesto del viaggio",
"generating": "Generazione",
"item_already_in_trip_context": "Articoli già nel contesto del viaggio",
"item_not_found": "Articolo non trovato",
"item_remove_error": "Errore durante la rimozione dell'elemento dall'itinerario",
"item_remove_success": "Elemento rimosso dall'itinerario",
"link_existing_item": "Collega l'elemento esistente",
"move_to_trip_context": "Passa a Contesto viaggio",
"moved_to_trip_context": "Spostato nel contesto del viaggio",
"multi_day": "Più giorni",
"no_itinerary_yet": "Nessun itinerario ancora",
"no_plans_for_day": "Nessun programma per questo giorno",
"no_trip_context_items": "Nessun elemento di contesto del viaggio ancora.",
"remove_from_itinerary": "Rimuovi dal giorno",
"remove_from_trip_context": "Rimuovi dal contesto",
"start_planning": "Inizia a pianificare il tuo viaggio aggiungendo elementi a giorni specifici.",
"staying_overnight": "Pernottamento",
"trip_context": "Contesto del viaggio",
"trip_context_info": "Gli elementi contestuali del viaggio si applicano all'intero viaggio, ad esempio luoghi che rappresentano la destinazione stessa, note generali o liste di cose da portare importanti per l'intero viaggio.",
"unscheduled_items": "Elementi non pianificati",
"unscheduled_items_desc": "Questi elementi sono collegati a questo viaggio ma non sono ancora stati aggiunti a un giorno specifico."
}
}

View File

@@ -9,10 +9,7 @@
"license_info": "ライセンス",
"message": "米国では❤️で作られています。",
"nominatim_1": "ロケーション検索とジオコーディングはによって提供されます",
"nominatim_2": "彼らのデータは、ODBLライセンスに基づいて刻まれています。",
"oss_attributions": "オープンソースの帰属",
"other_attributions": "追加の属性は、READMEファイルにあります。",
"source_code": "ソースコード",
"sponsor": "スポンサー",
"thank_you": "AdventureLogを使用していただきありがとうございます",
"version": "バージョン",
@@ -20,40 +17,28 @@
"view_license": "ライセンスを表示します"
},
"adventures": {
"actions": "アクション",
"activity_types": "アクティビティタイプ",
"add": "追加",
"add_a_tag": "タグを追加します",
"add_new": "新しい追加...",
"add_notes": "メモを追加します",
"add_to_collection": "コレクションに追加します",
"adventure": "アドベンチャー",
"adventure_calendar": "アドベンチャーカレンダー",
"adventure_not_found": "展示する冒険はありません。\n右下のプラスボタンを使用していくつかを追加するか、フィルターを変更してみてください",
"adventures_available": "利用可能な冒険",
"all": "全て",
"all_adventures_already_linked": "すべての冒険はすでにこのコレクションにリンクされています。",
"all_day": "終日",
"all_linked_items": "すべてのリンクされたアイテム",
"archive": "アーカイブ",
"archived": "アーカイブ",
"archived_collection_message": "コレクションは正常にアーカイブされました!",
"archived_collections": "アーカイブコレクション",
"arrival_date": "到着日",
"arrival_timezone": "到着タイムゾーン",
"ascending": "上昇",
"attachment": "添付ファイル",
"attachment_delete_success": "添付ファイルは正常に削除されました!",
"attachment_name": "添付名",
"attachment_update_error": "添付ファイルの更新エラー",
"attachment_update_success": "添付ファイルは正常に更新されました!",
"attachment_upload_error": "添付ファイルのアップロードエラー",
"attachment_upload_success": "添付ファイルは正常にアップロードされました!",
"attachments": "添付ファイル",
"basic_information": "基本情報",
"cancel": "キャンセル",
"category": "カテゴリ",
"category_fetch_error": "エラーカテゴリの取得",
"category_filter": "カテゴリフィルター",
"check_in": "チェックイン",
"check_out": "チェックアウト",
@@ -63,33 +48,24 @@
"cities_updated": "都市が更新されました",
"city": "市",
"clear": "クリア",
"clear_location": "明確な場所",
"clear_map": "クリアマップ",
"collection": "コレクション",
"collection_adventures": "コレクションアドベンチャーを含めます",
"collection_archived": "このコレクションはアーカイブされています。",
"collection_completed": "あなたはこのコレクションを完成させました!",
"collection_contents": "コレクションの内容",
"collection_link_location_error": "場所をコレクションにリンクするエラー",
"collection_link_location_success": "コレクションに正常にリンクされている場所!",
"collection_locations": "収集場所を含めます",
"collection_no_start_end_date": "コレクションに開始日と終了日を追加すると、コレクションページの旅程計画機能が解除されます。",
"collection_remove_location_error": "コレクションから場所を削除するエラー",
"collection_stats": "コレクション統計",
"collections_linked": "リンクされたコレクション",
"coordinates": "座標",
"copied_to_clipboard": "クリップボードにコピーされました!",
"copy_coordinates": "座標をコピーします",
"copy_failed": "コピーが失敗しました",
"copy_link": "リンクをコピーします",
"count_txt": "あなたの検索に一致する結果",
"create_collection_first": "最初にコレクションを作成して、冒険と思い出を整理します。",
"create_location": "場所を作成します",
"create_new": "新しい...",
"date": "日付",
"date_constrain": "収集日に制約します",
"date_information": "日付情報",
"date_itinerary": "日付の旅程",
"dates": "日付",
"day": "日",
"days": "日",
@@ -102,48 +78,34 @@
"delete_lodging": "宿泊施設を削除します",
"delete_note": "メモを削除します",
"delete_transportation": "輸送を削除します",
"departure_date": "出発日",
"departure_timezone": "出発タイムゾーン",
"descending": "下降",
"description": "説明",
"details": "詳細",
"display_name": "表示名",
"distance": "距離",
"done": "終わり",
"download_calendar": "カレンダーをダウンロードします",
"duration": "間隔",
"edit_adventure": "アドベンチャーを編集します",
"edit_collection": "編集コレクション",
"edit_location": "場所を編集します",
"emoji_picker": "絵文字ピッカー",
"end": "終わり",
"end_date": "終了日",
"ending_airport": "エンディング空港",
"error_updating_regions": "エラーの更新領域",
"fetch_image": "画像を取得します",
"filter": "フィルター",
"filters_and_sort": "フィルター",
"filters_and_stats": "フィルター",
"finding_recommendations": "あなたの次の冒険のために隠された宝石を発見します",
"flight_information": "飛行情報",
"from": "から",
"generate_desc": "説明を生成します",
"gpx_tip": "GPXファイルを添付ファイルにアップロードして、マップで表示します",
"hide": "隠れる",
"homepage": "ホームページ",
"image": "画像",
"image_fetch_failed": "画像を取得できませんでした",
"image_modal_navigate": "矢印キーを使用するか、クリックしてナビゲートします",
"image_removed_error": "画像を削除するエラー",
"image_removed_success": "画像が正常に削除されました!",
"image_upload_error": "画像のアップロードエラー",
"image_upload_success": "画像が正常にアップロードされました!",
"images": "画像",
"invalid_date_range": "無効な日付範囲",
"itineary_by_date": "日付ごとに旅程",
"itinerary": "旅程",
"joined": "参加",
"keep_exploring": "探索し続けてください!",
"latitude": "緯度",
"leave": "離れる",
"leave_collection": "コレクションを残します",
@@ -151,58 +113,36 @@
"left_collection_message": "正常にコレクションを残しました",
"link": "リンク",
"link_new": "新しいリンク...",
"linked_adventures": "リンクされた冒険",
"links": "リンク",
"loading_adventures": "冒険を読み込む...",
"loading_collections": "コレクションの読み込み...",
"location": "位置",
"location_create_error": "場所の作成に失敗しました",
"location_created": "作成された場所",
"location_delete_confirm": "この場所を削除したいですか?\nこのアクションを元に戻すことはできません。",
"location_delete_success": "位置が正常に削除されました!",
"location_details": "場所の詳細",
"location_information": "位置情報",
"location_not_found": "場所が見つかりません",
"location_not_found_desc": "探していた場所は見つかりませんでした。\n別の場所を試してみるか、後でもう一度確認してください。",
"location_update_error": "場所の更新に失敗しました",
"location_updated": "更新された場所",
"lodging": "宿泊",
"lodging_delete_confirm": "この宿泊施設を削除したいですか?\nこのアクションを元に戻すことはできません。",
"lodging_information": "宿泊情報",
"longitude": "経度",
"mark_visited": "マークが訪れました",
"md_instructions": "ここにマークダウンを書いてください...",
"my_collections": "私のコレクション",
"my_images": "私の画像",
"name": "名前",
"name_location": "名前、場所",
"new_location": "新しい場所",
"no_adventures_found": "冒険は見つかりませんでした",
"no_adventures_message": "冒険の文書化と新しいものの計画を開始します。\nすべての旅には、語る価値のある物語があります。",
"no_collections_to_add_location": "この場所を追加するコレクションは見つかりませんでした。",
"no_description_found": "説明は見つかりません",
"no_image_found": "画像が見つかりません",
"no_image_url": "そのURLには画像が見つかりません。",
"no_images": "画像はありません",
"no_linkable_adventures": "このコレクションにリンクできる冒険は見つかりませんでした。",
"no_location": "場所を入力してください",
"no_location_found": "場所は見つかりません",
"no_locations_found": "場所は見つかりません",
"no_locations_to_recommendations": "場所は見つかりません。\n少なくとも1つの場所を追加して、推奨事項を取得します。",
"no_ordered_items": "コレクションに日付のあるアイテムを追加して、こちらをご覧ください。",
"no_results": "結果は見つかりませんでした",
"no_visits": "訪問はありません",
"not_visited": "訪問されていません",
"note": "注記",
"note_delete_confirm": "このメモを削除したいですか?\nこのアクションを元に戻すことはできません。",
"notes": "メモ",
"nothing_planned": "この日は何も計画されていません。\n旅を楽しんでください",
"open_details": "詳細を開きます",
"open_filters": "オープンフィルター",
"open_in_maps": "マップで開きます",
"order_by": "注文",
"order_direction": "方向を注文します",
"ordered_itinerary": "注文された旅程",
"out_of_range": "旅程日付範囲ではありません",
"planned": "計画",
"preview": "プレビュー",
@@ -216,22 +156,15 @@
"regions_updated": "更新された地域",
"remove": "取り除く",
"remove_from_collection": "コレクションから取り外します",
"reservation_number": "予約番号",
"save_next": "保存",
"search_for_location": "場所を検索します",
"search_results": "検索結果",
"see_adventures": "冒険を参照してください",
"set_to_pin": "ピンに設定します",
"share": "共有",
"share_collection": "このコレクションを共有してください!",
"share_location": "この場所を共有してください!",
"show": "見せる",
"sort": "選別",
"sources": "ソース",
"start": "始める",
"start_before_end_error": "開始日は終了日前でなければなりません",
"start_date": "開始日",
"starting_airport": "空港の開始",
"sun_times": "サンタイムズ",
"sunrise": "日の出",
"sunset": "日没",
@@ -246,29 +179,18 @@
"unarchive": "未アーティ",
"unarchived_collection_message": "コレクションは退職していません!",
"update_visited_regions": "訪問地域を更新します",
"update_visited_regions_disclaimer": "訪問した冒険の数に応じて、これには時間がかかる場合があります。",
"updated": "更新",
"upload": "アップロード",
"upload_image": "画像をアップロードします",
"url": "URL",
"view_profile": "プロファイルを表示します",
"visit": "訪問",
"visit_calendar": "カレンダーにアクセスしてください",
"visit_link": "リンクにアクセスしてください",
"visited": "訪問",
"visited_region_check": "訪問地域チェック",
"visited_region_check_desc": "これを選択することにより、サーバーは訪問したすべての冒険をチェックし、世界旅行で訪れたとおりにある地域をマークします。",
"visits": "訪問",
"warning": "警告",
"wiki_image_error": "ウィキペディアからの画像の取得エラー",
"wiki_location_desc": "場所の名前と一致するウィキペディアの記事からの抜粋を引き出します。",
"wikipedia": "ウィキペディア",
"will_be_marked_location": "場所が保存されると、訪問としてマークされます。",
"collection_remove_location_success": "コレクションから正常に削除された場所!",
"my_adventures": "私の冒険",
"achievements": "成果",
"active_duration": "アクティブな期間",
"activities_name": "活動",
"activity_name": "アクティビティ名",
"activity_name_placeholder": "朝の走り",
"activity_name_required": "アクティビティ名が必要です",
@@ -360,13 +282,11 @@
"select_on_map": "マップで選択します",
"select_wanderer_trail": "放浪者アカウントからトレイルを選択します",
"sport_type": "スポーツタイプ",
"sport_type_placeholder": "トレイルランニング",
"start_lat": "緯度を開始します",
"start_lng": "経度を開始します",
"strava_activities_during_visit": "訪問中のストラバ活動",
"strava_activity_ready": "Stravaアクティビティの準備ができました",
"time": "時間",
"total_covered": "総カバー",
"total_recorded": "総記録",
"trail": "トレイル",
"trail_created_successfully": "トレイルは正常に作成されました",
@@ -403,19 +323,7 @@
"low": "低い",
"rest": "休む",
"total": "合計",
"attachment_removed_error": "添付ファイルの削除エラー",
"linked_locations": "リンクされた場所",
"lodging_save_error": "宿泊の保存エラー",
"my_attachments": "私の添付ファイル",
"no_attachments": "添付ファイルはありません",
"no_attachments_desc": "ファイルをアップロードして開始します",
"no_images_desc": "開始するには画像をアップロードします",
"route_map": "ルートマップ",
"selected_attachments": "選択した添付ファイル",
"selected_images": "選択した画像",
"attachment_removed_success": "添付ファイルは成功して削除されました",
"attachments_upload_info": "添付ファイルは、保存後にアップロードされます",
"image_upload_info": "保存後に画像がアップロードされます",
"activities_text": "活動",
"activity_breakdown_by_category": "カテゴリ別のアクティビティの内訳",
"distance_covered": "カバーされている距離",
@@ -424,7 +332,109 @@
"total_climbed": "総登り",
"total_distance": "総距離",
"dates_not_saved": "まだ追加されていません",
"dates_not_saved_description": "[訪問の追加]をクリックして保存します"
"dates_not_saved_description": "[訪問の追加]をクリックして保存します",
"active_days": "アクティブな日",
"add_here": "ここに追加",
"airport_code_examples": "JFK、LAX、LHR...",
"airport_search_mode": "空港検索モード",
"all_locations_already_linked": "すべての場所はすでにこのコレクションにリンクされています。",
"arrival_airport": "到着空港",
"avg_rating": "平均評価",
"burned": "やけど",
"categories": "カテゴリー",
"cities": "都市",
"clear_search": "検索をクリア",
"click_map_add_marker": "マップをクリックしてマーカーをドロップし、ここに追加します。",
"completed": "完了",
"content_media": "コンテンツ",
"countries": "国",
"country": "国",
"departure_airport": "出発空港",
"distance_traveled": "走行距離",
"end_location": "終了場所",
"enter_location_display_name": "場所の表示名を入力してください",
"files": "ファイル",
"flight": "フライト",
"folder": "フォルダ",
"folder_view": "フォルダービュー - すべてのデータを表示",
"footprints": "足跡",
"gained": "得た",
"geographic_breakdown": "地理的内訳",
"gpx_routes": "GPX ルート",
"hide_filters": "フィルターを非表示にする",
"images_captured": "撮影した画像",
"in": "で",
"in_progress": "進行中",
"items": "アイテム",
"itinerary_link_modal": {
"add_here": "ここに追加",
"add_here_keep_date": "追加(日付を保持)",
"add_to_itinerary": "旅程に追加",
"already_added": "すでに追加されています",
"already_added_on_this_day": "この日すでに追加されています",
"already_added_on_this_day_desc": "これらの項目はこの日すでに予定されています。",
"already_added_other_days": "他の日にはすでに追加されています",
"already_added_other_days_desc": "これらのアイテムは別の日付にスケジュールされます。\nここに追加すると、日付が更新されるか、そのまま追加されます。",
"items_available": "{count} 個のアイテムをリンクできます",
"items_on_other_days": "その他の日のアイテム",
"items_on_other_days_desc": "これらの項目には日付が異なります。\nそれらを追加し、必要に応じてそれらの日付を一致するように更新できます。",
"items_on_this_day": "この日のアイテム",
"no_unscheduled_items": "予定外の商品はありません",
"no_unscheduled_items_desc": "すべての項目が旅程に追加されているか、追加する項目がありません。",
"title": "アイテムを {date} にリンクする"
},
"link_copied": "リンクがコピーされました",
"lists": "リスト",
"location_search_mode": "位置検索モード",
"locations_visited": "訪れた場所",
"lodging_not_found": "宿泊施設が見つかりませんでした",
"lodging_types": "宿泊施設の種類",
"more_details": "さらに詳しく",
"my_locations": "私の場所",
"nights": "夜",
"no_linkable_locations": "このコレクションにリンクできる場所が見つかりません。",
"of_locations": "場所の",
"on_this_trip": "今回の旅では",
"overnight": "一晩",
"physical_activities": "身体活動",
"pins": "ピン",
"places": "場所",
"regions": "地域",
"reservation": "予約",
"reset_filters": "リセット",
"route": "ルート",
"route_selected": "選択されたルート",
"routes_and_activities": "ルート",
"saving": "保存",
"search_end_location": "検索終了位置",
"search_start_end_locations": "開始位置と終了位置の検索",
"search_start_location": "検索開始位置",
"segments": "セグメント",
"select": "選択",
"show_filters": "フィルターを表示",
"start_location": "開始場所",
"status_filter": "ステータスフィルター",
"stays": "宿泊",
"tasks_done": "完了したタスク",
"total_days": "合計日数",
"total_visits": "合計訪問数",
"transport_activity_paths": "輸送",
"transportation_gpx_tip": "GPX ファイルをここにアップロードして地図上に表示します",
"traveled": "旅行した",
"travelers": "旅行者",
"trip_timeline": "旅行のタイムライン",
"trip_window": "トリップウィンドウ",
"upcoming": "今後の予定",
"view": "ビュー",
"wiki_results_found": "ウィキペディアの結果",
"with_activities": "アクティビティあり",
"written": "書かれた",
"export_failed": "エクスポートに失敗しました",
"export_success": "エクスポートされたコレクション",
"export_zip": "ZIP をエクスポート",
"import_failed": "インポートに失敗しました",
"import_from_file": "ファイルからインポート",
"import_success": "インポート成功"
},
"auth": {
"confirm_password": "パスワードを認証する",
@@ -440,7 +450,6 @@
"or_3rd_party": "または、サードパーティのサービスでログインします",
"profile_picture": "プロフィール写真",
"public_profile": "パブリックプロフィール",
"public_tooltip": "パブリックプロフィールを使用すると、ユーザーはコレクションを共有して、ユーザーページでプロフィールを表示できます。",
"registration_disabled": "登録は現在無効になっています。",
"signup": "サインアップ",
"user_collections": "ユーザーコレクション",
@@ -450,7 +459,8 @@
"enter_password": "パスワードを入力してください",
"enter_username": "ユーザー名を入力します",
"logging_in": "ログインします",
"totp": "二因子コード"
"totp": "二因子コード",
"user_email_verification_required": "メール認証が必要です。\nメールに確認用のリンクがあるかどうかを確認してください。"
},
"calendar": {
"all_day_event": "終日イベント",
@@ -461,7 +471,9 @@
"month": "月",
"today": "今日",
"total_events": "総イベント",
"week": "週"
"week": "週",
"event timezone": "イベントのタイムゾーン",
"your timezone": "あなたのタイムゾーン"
},
"categories": {
"add_new_category": "新しいカテゴリを追加します",
@@ -514,10 +526,23 @@
"no_shared_collections": "共有コレクションはありません。",
"public_collection": "パブリックコレクション",
"shared_collections": "共有コレクション",
"try_different_search": "別の検索またはフィルターを試してください。"
"try_different_search": "別の検索またはフィルターを試してください。",
"changing_date_title": "日付の変更は旅程項目に影響します",
"changing_date_warning": "新しい日付範囲外の旅程アイテムは旅程から削除され、コレクションの日付のないアイテムに戻されます。",
"clear_cover": "クリアカバー",
"collaborators": "協力者",
"cover": "カバー",
"cover_image": "表紙画像",
"cover_image_hint": "このコレクションの画像から表紙を選択してください。",
"create_new_collection": "新しいコレクションを作成する",
"enter_collection_name": "コレクション名を入力してください",
"location_primary": "ロケーションカバー",
"no_images_available": "リンクされた場所から利用できる画像はまだありません。",
"public_collection_description": "リンクを知っている人なら誰でも閲覧できるようにする",
"set_cover": "セットカバー",
"update_collection_details": "コレクションの詳細を更新"
},
"dashboard": {
"add_some": "次の冒険の計画を始めてみませんか?\n下のボタンをクリックして、新しい冒険を追加できます。",
"countries_visited": "訪問した国",
"document_some_adventures": "旅行の文書化を開始し、個人的なアドベンチャーマップを構築してください!",
"no_recent_adventures": "最近の冒険はありませんか?",
@@ -587,8 +612,6 @@
"loading_albums": "アルバムのロード",
"no_images": "画像は見つかりません",
"select_album": "アルバムを選択します",
"select_album_first": "最初にアルバムを選択してください",
"select_date": "[日付]を選択します",
"try_different_date": "別の日付を試してください"
},
"invites": {
@@ -628,16 +651,12 @@
"villa": "ヴィラ",
"create_new_lodging": "新しい宿泊",
"enter_lodging_name": "宿泊名を入力します",
"enter_price": "価格を入力します",
"enter_reservation_number": "予約番号を入力します",
"update_lodging_details": "宿泊の詳細を更新します"
},
"map": {
"add_adventure": "新しい冒険を追加します",
"add_adventure_at_marker": "マーカーに新しい冒険を追加します",
"add_location": "新しい場所を追加します",
"add_location_at_marker": "マーカーに新しい場所を追加します",
"adventure_map": "アドベンチャーマップ",
"adventure_stats": "冒険の統計",
"clear_marker": "クリアマーカー",
"completion": "完了",
@@ -645,19 +664,16 @@
"location_map": "ロケーションマップ",
"locations_shown": "表示されている場所",
"map_controls": "マップコントロール",
"map_options": "マップオプション",
"marker_placed_on_map": "マップ上に配置されたマーカー",
"place_marker_desc_location": "マップをクリックしてマーカーを配置します。",
"regions": "地域",
"show_visited_regions": "訪問した地域を表示します",
"view_details": "詳細を表示します",
"show_activities": "アクティビティを表示します",
"show_visited_cities": "訪問した都市"
"show_visited_cities": "訪問した都市",
"search_locations": "場所を検索..."
},
"navbar": {
"about": "AdventureLogについて",
"admin_panel": "管理パネル",
"adventures": "冒険",
"calendar": "カレンダー",
"collections": "コレクション",
"documentation": "ドキュメント",
@@ -665,14 +681,11 @@
"language_selection": "言語",
"logout": "ログアウト",
"map": "地図",
"my_adventures": "私の冒険",
"my_tags": "私のタグ",
"profile": "プロフィール",
"search": "検索",
"settings": "設定",
"shared_with_me": "私と共有しました",
"support": "サポート",
"tag": "タグ",
"theme_selection": "テーマの選択",
"themes": {
"aestheticDark": "審美的な暗い",
@@ -686,11 +699,10 @@
"northernLights": "オーロラ"
},
"users": "ユーザー",
"worldtravel": "世界旅行",
"navigation": "ナビゲーション"
"navigation": "ナビゲーション",
"worldtravel": "世界旅行"
},
"notes": {
"add_a_link": "リンクを追加します",
"content": "コンテンツ",
"editing_note": "編集ノート",
"failed_to_save": "メモを保存できませんでした",
@@ -716,7 +728,6 @@
"planned_trips": "計画された旅行",
"public_location_experiences": "パブリックロケーションエクスペリエンス",
"travel_statistics": "旅行統計",
"user_stats": "ユーザーの統計",
"visited_cities": "訪問した都市",
"visited_countries": "訪問した国",
"visited_regions": "訪問した地域",
@@ -724,18 +735,35 @@
},
"recomendations": {
"food": "食べ物",
"location_recommendations": "場所の推奨事項",
"recommendation": "おすすめ",
"recommendations": "推奨事項",
"tourism": "観光"
"tourism": "観光",
"any": "どれでも",
"average_rating": "平均評価",
"discover_places": "場所を発見する",
"lodging": "ホテル",
"map_view": "マップビュー",
"minimum_rating": "最低評価",
"minimum_reviews": "最小限のレビュー",
"no_results_yet": "まだ結果はありません",
"open_now_only": "今だけオープン",
"search_around_location": "現在地周辺を検索",
"search_by_address": "住所から探す",
"search_radius_label": "検索範囲:",
"searching": "検索中...",
"select_location_or_query": "場所を選択するか、検索クエリを入力して、近くの素晴らしい場所を見つけてください。",
"total_results": "合計結果",
"use_search_instead": "代わりに検索を使用してください",
"add_location": "場所を追加",
"add_lodging": "宿泊施設を追加する",
"away": "離れて",
"hours": "営業時間",
"open": "開ける",
"your_location": "あなたの所在地"
},
"search": {
"adventurelog_results": "AdventureLogの結果",
"cities": "都市",
"countries": "国",
"found": "見つかった",
"online_results": "オンライン結果",
"public_adventures": "パブリックアドベンチャー",
"result": "結果",
"results": "結果",
"try_searching_desc": "冒険、コレクション、国、地域、都市、またはユーザーを探してみてください。"
@@ -890,14 +918,10 @@
"settings_download_backup": "バックアップをダウンロードします",
"share": {
"available": "利用可能",
"go_to_settings": "設定に移動します",
"no_shared_found": "あなたと共有されるコレクションは見つかりませんでした。",
"no_users_shared": "共有するユーザーはいません",
"not_shared_with": "共有されていません",
"pending": "保留中",
"revoke_invite": "招待状を取り消します",
"send_invite": "招待状を送信します",
"set_public": "ユーザーがお客様と共有できるようにするには、プロフィールセットが公開される必要があります。",
"share_desc": "このコレクションを他のユーザーと共有します。",
"shared": "共有",
"shared_with": "共有",
@@ -911,15 +935,11 @@
"unshare_failed": "UNSHAREは失敗しました"
},
"strava": {
"account_connected": "接続されたアカウント",
"admin_setup_required": "サーバー管理者は、グローバルに有効にする必要があります",
"authorization_error": "STRAVA Authorization URLへのエラーリダイレクト",
"connect_account": "アカウントを接続します",
"disconnect": "切断します",
"disconnect_error": "Stravaからのエラー切断",
"disconnected": "Stravaから正常に切断されました",
"not_configured": "Stravaが構成されていません",
"ready_to_connect": "接続する準備ができました",
"strava_integration_desc": "Stravaに接続して、アクティビティを場所や訪問に簡単にインポートする",
"gpx_required": "GPXファイルをアップロードして、STRAVAインポートを完了してください",
"not_enabled": "このインスタンスでは、STRAVA統合は有効になりません。"
@@ -927,8 +947,6 @@
"transportation": {
"edit": "編集",
"edit_transportation": "交通機関を編集します",
"ending_airport_desc": "エンディング空港コードlaxを入力してください",
"fetch_location_information": "位置情報を取得します",
"flight_number": "フライト番号",
"from_location": "場所から",
"modes": {
@@ -942,7 +960,6 @@
"walking": "歩く"
},
"new_transportation": "新しい輸送",
"starting_airport_desc": "開始空港コードJFKを入力します",
"to_location": "場所へ",
"transportation_delete_error": "輸送を削除するエラー",
"transportation_deleted": "輸送が正常に削除されました!",
@@ -954,7 +971,13 @@
"enter_to_location": "場所に入ります",
"enter_transportation_name": "交通名を入力してください",
"select_type": "[タイプ]を選択します",
"update_transportation_details": "交通機関の詳細を更新します"
"update_transportation_details": "交通機関の詳細を更新します",
"arrival_code": "到着コード",
"arrival_date": "到着日",
"arrival_timezone": "到着時間帯",
"departure_code": "出発コード",
"departure_date": "出発日",
"departure_timezone": "出発時間帯"
},
"users": {
"no_users_found": "パブリックプロファイルで見つかったユーザーは見つかりませんでした。"
@@ -965,18 +988,14 @@
"wanderer_integration_desc": "ワンダラーに接続して、簡単にインポートしてトレイルを場所に表示します"
},
"worldtravel": {
"all": "全て",
"all_regions": "すべての地域",
"all_subregions": "すべてのサブリージョン",
"available_to_explore": "探索することができます",
"cities": "都市",
"cities_in": "都市",
"clear_all": "すべてをクリアします",
"clear_all_filters": "すべてのフィルターをクリアします",
"clear_filters": "フィルターをクリアします",
"clear_search": "クリア検索",
"complete": "完了",
"completely_visited": "完全に訪問されました",
"countries": "国",
"country_completed": "国が完成しました",
"country_list": "カントリーリスト",
@@ -988,19 +1007,14 @@
"hide_map_labels": "マップラベルを非表示にします",
"interactive_map": "インタラクティブマップ",
"marked_visited": "訪問としてマークされています",
"newest_first": "最新の最初",
"no_cities_found": "都市は見つかりません",
"no_countries_found": "国は見つかりませんでした",
"no_countries_found_desc": "探している国を見つけるために、検索用語またはフィルターを調整してみてください。",
"no_country_data_available": "利用可能な国のデータはありません",
"no_country_data_available_desc": "地域データの更新については、ドキュメントを確認してください。",
"no_regions_found": "地域は見つかりません",
"not_visited": "訪問されていません",
"num_countries": "発見された国",
"of": "の",
"oldest_first": "最も古い最初",
"partial": "部分的",
"partially_visited": "部分的に訪問",
"progress": "進捗",
"progress_and_stats": "進捗",
"region_completed": "地域が完成しました",
@@ -1012,13 +1026,10 @@
"show_map_labels": "マップラベルを表示します",
"total_cities": "都市全体",
"total_countries": "総国",
"total_items": "合計アイテム",
"total_regions": "総地域",
"unvisited_first": "最初に訪問されていません",
"view_cities": "都市を見る",
"visit_remove_failed": "訪問を削除できませんでした",
"visit_to": "訪問",
"visited_first": "最初に訪問しました",
"getting_location_details": "場所の詳細を取得します",
"cities_available": "利用可能な都市",
"destination_revealed": "目的地が明らかに!",
@@ -1038,6 +1049,84 @@
"about_country": "国について",
"about_region": "地域について",
"show_less": "表示を減らす",
"show_more": "もっと見る",
"all_locations_visited": "全ての場所を訪問しました!"
},
"collections": {
"all_items": "すべてのアイテム",
"currencies": "通貨",
"currency": "通貨",
"event_timezone": "イベントのタイムゾーン",
"event_timezone_desc": "イベントのタイムゾーンは、使用可能な場合は場所またはアイテムのタイムゾーンを使用します。\n私のタイムゾーンは",
"events": "イベント",
"local_timezone": "私のタイムゾーン",
"no_calendar_events": "このコレクションにはまだ訪問の予定はありません。",
"no_priced_items": "場所、宿泊施設、または交通機関の価格を追加すると、通貨ごとの旅行の合計が表示されます。",
"not_found": "コレクションが見つかりません",
"statistics": "統計",
"times_shown_in": "で示されている時間",
"trip_costs": "旅行費用"
},
"common": {
"show_less": "詳細を隠す",
"show_more": "もっと見る"
},
"currencies": {
"AED": "アラブ首長国連邦ディルハム",
"AUD": "オーストラリアドル",
"BRL": "ブラジルレアル",
"CAD": "カナダドル",
"CHF": "スイスフラン",
"CNY": "中国人民元",
"DKK": "デンマーククローネ",
"EUR": "ユーロ",
"GBP": "英国ポンド",
"HKD": "香港ドル",
"INR": "インドルピー",
"JPY": "日本円",
"MXN": "メキシコペソ",
"NOK": "ノルウェー クローネ",
"NZD": "ニュージーランドドル",
"SEK": "スウェーデン クローナ",
"SGD": "シンガポールドル",
"TRY": "トルコリラ",
"USD": "米ドル",
"ZAR": "南アフリカランド",
"no_matches": "一致しません",
"search": "通貨の検索",
"select_currency": "通貨を選択してください"
},
"itinerary": {
"add_description": "説明を追加",
"add_to_day": "日に追加",
"add_to_trip_context": "旅行コンテキストを追加する",
"added_to_trip_context": "旅行のコンテキストに追加されました",
"auto_generate": "自動生成",
"auto_generate_itinerary": "旅程の自動生成",
"auto_generate_itinerary_desc": "このコレクションには日付が記載されたアイテムが含まれていますが、旅程はまだありません。\n日付ごとに自動的に整理しますか?",
"change_day": "変更日",
"drag_to_reorder": "ドラッグして並べ替えます",
"failed_to_add_to_trip_context": "トリップコンテキストに項目を追加できませんでした",
"failed_to_move_to_trip_context": "トリップコンテキストに移動できませんでした",
"generating": "生成中",
"item_already_in_trip_context": "すでに旅行コンテキストに含まれているアイテム",
"item_not_found": "アイテムが見つかりません",
"item_remove_error": "旅程から項目を削除中にエラーが発生しました",
"item_remove_success": "旅程から項目が削除されました",
"link_existing_item": "既存のアイテムをリンクする",
"move_to_trip_context": "トリップコンテキストに移動",
"moved_to_trip_context": "トリップコンテキストに移動",
"multi_day": "複数日",
"no_itinerary_yet": "まだ旅程はありません",
"no_plans_for_day": "この日は予定がありません",
"no_trip_context_items": "旅行コンテキスト項目はまだありません。",
"remove_from_itinerary": "日から削除",
"remove_from_trip_context": "コンテキストから削除",
"start_planning": "特定の日にアイテムを追加して旅行の計画を始めましょう。",
"staying_overnight": "宿泊",
"trip_context": "旅行のコンテキスト",
"trip_context_info": "旅行コンテキスト項目は、旅行全体に適用されます。たとえば、目的地そのものである場所、一般的なメモ、旅行全体にとって重要な持ち物リストなどです。",
"unscheduled_items": "予定外の項目",
"unscheduled_items_desc": "これらのアイテムはこの旅行にリンクされていますが、まだ特定の日に追加されていません。"
}
}

View File

@@ -5,10 +5,7 @@
"license": "GPL-3.0 라이선스 적용.",
"message": "미국에서 ❤️로 제작되었습니다.",
"nominatim_1": "위치 검색 및 지오코딩 제공",
"nominatim_2": "데이터는 ODbL 라이선스가 적용됩니다.",
"oss_attributions": "오픈 소스 속성",
"other_attributions": "추가 속성은 README 파일에서 찾을 수 있습니다.",
"source_code": "소스 코드",
"generic_attributions": "Adventurelog에 로그인하여 활성화 된 통합 및 서비스에 대한 속성을보십시오.",
"attributions": "속성",
"developer": "개발자",
@@ -20,16 +17,10 @@
"view_license": "라이센스보기"
},
"adventures": {
"actions": "행동",
"activities": {},
"activity_types": "활동 유형",
"add": "추가",
"add_a_tag": "태그를 추가하세요",
"add_new": "새로 추가...",
"add_notes": "메모 추가",
"add_to_collection": "컬렉션에 추가하세요",
"adventure": "모험",
"adventure_calendar": "모험 달력",
"adventure_not_found": "표시할 모험이 없습니다. 오른쪽 하단의 플러스 버튼을 사용하여 추가하거나 필터를 변경하세요!",
"all": "모두",
"archive": "보관",
@@ -41,28 +32,19 @@
"attachment_delete_success": "첨부 파일이 성공적으로 삭제되었습니다!",
"attachment_name": "첨부 파일 이름",
"attachment_update_error": "첨부 파일 업데이트 실패",
"attachment_update_success": "첨부 파일이 성공적으로 업데이트되었습니다!",
"attachment_upload_error": "첨부 파일 업로드 실패",
"attachment_upload_success": "첨부 파일이 성공적으로 업로드되었습니다!",
"attachments": "첨부 파일",
"basic_information": "기본 정보",
"cancel": "취소",
"category": "카테고리",
"category_fetch_error": "카테고리 불러오기 실패",
"category_filter": "카테고리 필터",
"checklist": "체크리스트",
"checklist_delete_confirm": "이 체크리스트를 삭제 하시겠습니까? 이 행동은 취소할 수 없습니다.",
"clear_location": "장소 초기화",
"clear_map": "지도 초기화",
"collection": "컬렉션",
"collection_adventures": "컬렉션 모험을 추가하세요",
"collection_archived": "이 컬렉션은 보관되었습니다.",
"collection_completed": "이 컬렉션을 완성했습니다!",
"collection_stats": "컬렉션 통계",
"copied_to_clipboard": "클립 보드에 복사됨!",
"copy_failed": "복사 실패",
"copy_link": "링크 복사",
"count_txt": "검색과 일치하는 결과",
"create_new": "새로 만들기...",
"date": "일자",
"date_constrain": "컬렉션 일자로 제한",
@@ -80,61 +62,37 @@
"description": "설명",
"download_calendar": "캘린더 다운로드",
"duration": "기간",
"edit_adventure": "모험 편집",
"edit_collection": "컬렉션 편집",
"emoji_picker": "이모티콘 선택",
"end": "끝",
"end_date": "종료일",
"ending_airport": "도착 공항",
"error_updating_regions": "지역 업데이트 오류",
"fetch_image": "이미지 가져오기",
"filter": "필터",
"finding_recommendations": "다음 모험을 위해 숨겨진 보물을 찾아보세요",
"flight_information": "항공편 정보",
"from": "출발",
"generate_desc": "설명을 적으세요",
"gpx_tip": "GPX 파일을 첨부 파일에 업로드하면 지도에서 볼 수 있습니다!",
"hide": "숨기기",
"homepage": "홈페이지",
"image": "이미지",
"image_fetch_failed": "이미지를 가져오지 못했습니다",
"image_removed_error": "이미지 삭제 오류",
"image_removed_success": "이미지가 성공적으로 삭제되었습니다!",
"image_upload_error": "이미지 업로드 오류",
"image_upload_success": "이미지가 성공적으로 업로드되었습니다!",
"images": "이미지",
"itineary_by_date": "날짜 순 일정표",
"keep_exploring": "계속 탐험하세요!",
"latitude": "위도",
"link": "링크",
"link_new": "새로운 링크...",
"linked_adventures": "링크된 모험",
"links": "링크",
"location": "위치",
"location_information": "위치 정보",
"longitude": "경도",
"mark_visited": "방문함으로 표시",
"md_instructions": "여기에 마크다운으로 작성할 수 있습니다...",
"my_adventures": "내 모험",
"my_collections": "내 컬렉션",
"my_images": "내 이미지",
"name": "이름",
"no_adventures_found": "모험이 없습니다",
"no_description_found": "설명이 없습니다",
"no_image_found": "이미지가 없습니다",
"no_image_url": "해당 URL에 이미지가 없습니다.",
"no_images": "이미지가 없습니다",
"no_linkable_adventures": "이 컬렉션에 연결할 수 있는 모험이 없습니다.",
"no_location": "위치를 입력하세요",
"no_location_found": "위치가 없습니다",
"no_results": "결과가 없습니다",
"not_visited": "방문하지 않음",
"note": "노트",
"note_delete_confirm": "이 노트를 삭제 하시겠습니까? 이 행동은 취소 할 수 없습니다.",
"notes": "노트",
"nothing_planned": "이 날에 계획된 것이 없습니다. 즐거운 여행 되세요!",
"open_details": "상세 내용 보기",
"open_filters": "필터 열기",
"order_by": "정렬 기준",
"order_direction": "정렬 순서",
"out_of_range": "여정 날짜 범위 내에 없습니다",
@@ -146,19 +104,14 @@
"regions_updated": "지역이 업데이트되었습니다",
"remove": "제거",
"remove_from_collection": "컬렉션에서 제거",
"save_next": "저장 & 다음",
"search_for_location": "위치 검색",
"search_results": "검색 결과",
"see_adventures": "모험 보기",
"set_to_pin": "고정하기",
"share": "공유",
"show": "보기",
"sort": "정렬",
"sources": "출처",
"start": "시작",
"start_before_end_error": "시작일은 종료일 이전이어야 합니다",
"start_date": "시작일",
"starting_airport": "출발 공항",
"tags": "태그",
"to": "도착",
"transportation": "교통수단",
@@ -167,18 +120,11 @@
"unarchive": "보관 취소",
"unarchived_collection_message": "컬렉션이 성공적으로 보관 취소되었습니다!",
"update_visited_regions": "방문 지역 업데이트",
"update_visited_regions_disclaimer": "방문한 모험의 수에 따라 시간이 걸릴 수 있습니다.",
"updated": "업데이트됨",
"upload": "업로드",
"upload_image": "이미지 업로드",
"url": "URL",
"visit": "방문",
"visit_link": "링크 방문",
"visited": "방문함",
"visited_region_check": "방문 지역 확인",
"visited_region_check_desc": "이것을 선택하면 서버는 방문한 모든 모험을 확인하고 그 모험의 지역을 표시하여 세계 여행에서 방문 여부를 표시합니다.",
"visits": "방문",
"warning": "경고",
"wiki_image_error": "위키백과 이미지 가져오기 오류",
"wikipedia": "위키백과",
"checklists": "체크리스트",
@@ -186,27 +132,16 @@
"clear": "초기화",
"city": "도시",
"delete_lodging": "숙박을 삭제하십시오",
"display_name": "표시 이름",
"location_details": "위치 세부 사항",
"lodging": "하숙",
"lodging_delete_confirm": "이 숙소 위치를 삭제 하시겠습니까? \n이 조치는 취소 할 수 없습니다.",
"lodging_information": "숙박 정보",
"price": "가격",
"region": "지역",
"reservation_number": "예약 번호",
"open_in_maps": "지도에서 열립니다",
"all_day": "하루 종일",
"collection_no_start_end_date": "컬렉션에 시작 및 종료 날짜를 추가하면 컬렉션 페이지에서 여정 계획 기능이 잠금 해제됩니다.",
"date_itinerary": "날짜 일정",
"no_ordered_items": "컬렉션에 날짜가있는 항목을 추가하여 여기에서 확인하십시오.",
"ordered_itinerary": "주문한 여정",
"invalid_date_range": "잘못된 날짜 범위",
"timezone": "시간대",
"no_visits": "방문 없음",
"arrival_timezone": "도착 시간대",
"departure_timezone": "출발 시간대",
"arrival_date": "도착 날짜",
"departure_date": "출발 날짜",
"coordinates": "좌표",
"copy_coordinates": "좌표를 복사하십시오",
"sun_times": "태양 시간",
@@ -214,7 +149,6 @@
"sunset": "일몰",
"timed": "시간이 정해졌습니다",
"distance": "거리",
"all_linked_items": "모든 링크 된 항목",
"itinerary": "여정",
"joined": "가입",
"view_profile": "프로필을 봅니다",
@@ -223,15 +157,11 @@
"filters_and_stats": "필터",
"no_adventures_message": "모험을 문서화하고 새로운 모험을 계획하십시오. \n모든 여정에는 말할 가치가있는 이야기가 있습니다.",
"travel_progress": "여행 진행",
"adventures_available": "이용 가능",
"all_adventures_already_linked": "모든 모험은 이미이 컬렉션과 연결되어 있습니다.",
"collections_linked": "컬렉션 링크",
"create_collection_first": "먼저 모험과 추억을 조직하기 위해 먼저 컬렉션을 만드십시오.",
"delete_collection_warning": "이 컬렉션을 삭제 하시겠습니까? \n이 조치는 취소 할 수 없습니다.",
"done": "완료",
"loading_adventures": "적재 모험 ...",
"name_location": "이름, 위치",
"collection_contents": "수집 내용",
"check_in": "체크인",
"check_out": "체크 아웃",
"collection_link_location_error": "오류 연결 위치 컬렉션",
@@ -242,22 +172,14 @@
"create_location": "위치를 만듭니다",
"delete_location": "위치 삭제",
"edit_location": "위치 편집",
"location_create_error": "위치를 만들지 못했습니다",
"location_created": "생성 된 위치",
"location_delete_confirm": "이 위치를 삭제 하시겠습니까? \n이 조치는 취소 할 수 없습니다.",
"location_delete_success": "위치가 성공적으로 삭제되었습니다!",
"location_not_found": "위치를 찾을 수 없습니다",
"location_not_found_desc": "당신이 찾고 있던 위치는 찾을 수 없습니다. \n다른 위치를 시도하거나 나중에 다시 확인하십시오.",
"location_update_error": "위치를 업데이트하지 못했습니다",
"location_updated": "위치 업데이트",
"new_location": "새로운 위치",
"no_collections_to_add_location": "이 위치를 추가하는 컬렉션은 없습니다.",
"no_locations_to_recommendations": "발견 된 위치는 없습니다. \n권장 사항을 얻으려면 하나 이상의 위치를 ​​추가하십시오.",
"public_location": "공개 위치",
"share_location": "이 위치를 공유하십시오!",
"visit_calendar": "캘린더를 방문하십시오",
"wiki_location_desc": "위치 이름과 일치하는 Wikipedia 기사에서 발췌 한 내용을 가져옵니다.",
"will_be_marked_location": "위치가 저장되면 방문한대로 표시됩니다.",
"no_locations_found": "발견 된 위치는 없습니다",
"image_modal_navigate": "화살표 키를 사용하거나 클릭하여 탐색하십시오",
"details": "세부",
@@ -269,7 +191,6 @@
"quick_start": "빠른 시작",
"achievements": "업적",
"active_duration": "활성 기간",
"activities_name": "활동",
"activity_name": "활동 이름",
"activity_name_placeholder": "아침 달리기",
"activity_name_required": "활동 이름이 필요합니다",
@@ -361,13 +282,11 @@
"select_on_map": "지도에서 선택하십시오",
"select_wanderer_trail": "방랑자 계정에서 트레일을 선택하십시오",
"sport_type": "스포츠 유형",
"sport_type_placeholder": "트레일 러닝",
"start_lat": "위도를 시작하십시오",
"start_lng": "경도를 시작하십시오",
"strava_activities_during_visit": "방문 중 Strava 활동",
"strava_activity_ready": "Strava 활동 준비",
"time": "시간",
"total_covered": "총 커버",
"total_recorded": "기록 된 총",
"trail": "자취",
"trail_created_successfully": "트레일이 성공적으로 만들어졌습니다",
@@ -404,19 +323,7 @@
"low": "낮은",
"rest": "나머지",
"total": "총",
"attachment_removed_error": "첨부 파일 제거 오류",
"attachment_removed_success": "첨부 파일이 성공적으로 제거되었습니다",
"attachments_upload_info": "저장 후 첨부 파일이 업로드됩니다",
"image_upload_info": "저장 후 이미지가 업로드됩니다",
"linked_locations": "연결된 위치",
"lodging_save_error": "오류 저축 숙박",
"my_attachments": "내 첨부 파일",
"no_attachments": "첨부 파일이 없습니다",
"no_attachments_desc": "시작하려면 파일을 업로드하십시오",
"no_images_desc": "시작하려면 이미지를 업로드하십시오",
"route_map": "경로지도",
"selected_attachments": "선택된 첨부 파일",
"selected_images": "선택된 이미지",
"activities_text": "활동",
"activity_breakdown_by_category": "카테고리 별 활동 분해",
"distance_covered": "거리는",
@@ -425,7 +332,109 @@
"total_climbed": "총계가 올라 갔다",
"total_distance": "총 거리",
"dates_not_saved": "아직 추가되지 않았습니다",
"dates_not_saved_description": "저장을 위해 방문 추가를 클릭하십시오"
"dates_not_saved_description": "저장을 위해 방문 추가를 클릭하십시오",
"active_days": "활동일수",
"add_here": "여기에 추가하세요",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "공항 검색 모드",
"all_locations_already_linked": "모든 위치가 이미 이 컬렉션에 연결되어 있습니다.",
"arrival_airport": "도착 공항",
"avg_rating": "평균 평점",
"burned": "화상",
"categories": "카테고리",
"cities": "도시",
"clear_search": "검색 지우기",
"click_map_add_marker": "지도를 클릭하여 마커를 놓은 다음 여기에 추가하세요.",
"completed": "완전한",
"content_media": "콘텐츠",
"countries": "국가",
"country": "국가",
"departure_airport": "출발 공항",
"distance_traveled": "이동 거리",
"end_location": "종료 위치",
"enter_location_display_name": "위치 표시 이름을 입력하세요.",
"files": "파일",
"flight": "비행",
"folder": "접는 사람",
"folder_view": "폴더 보기 - 모든 데이터 표시",
"footprints": "발자취",
"gained": "얻은",
"geographic_breakdown": "지리적 분석",
"gpx_routes": "GPX 노선",
"hide_filters": "필터 숨기기",
"images_captured": "캡처된 이미지",
"in": "~에",
"in_progress": "진행 중",
"items": "아이템",
"itinerary_link_modal": {
"add_here": "여기에 추가",
"add_here_keep_date": "추가(날짜 유지)",
"add_to_itinerary": "여행 일정에 추가",
"already_added": "이미 추가됨",
"already_added_on_this_day": "이 날 이미 추가되었습니다.",
"already_added_on_this_day_desc": "해당 항목은 해당 날짜에 이미 예약되어 있습니다.",
"already_added_other_days": "다른 날에 이미 추가됨",
"already_added_other_days_desc": "이 항목은 다른 날짜에 예약되어 있습니다. \n여기에 추가하면 날짜가 업데이트되거나 있는 그대로 추가됩니다.",
"items_available": "링크할 수 있는 항목 {count}개",
"items_on_other_days": "다른 날의 품목",
"items_on_other_days_desc": "이 항목의 날짜는 다릅니다. \n이를 추가하고 선택적으로 일치하도록 날짜를 업데이트할 수 있습니다.",
"items_on_this_day": "이날 물건",
"no_unscheduled_items": "예정되지 않은 항목을 사용할 수 없습니다.",
"no_unscheduled_items_desc": "모든 항목이 여행 일정에 추가되었거나 추가할 항목이 없습니다.",
"title": "항목을 {date}에 연결"
},
"link_copied": "링크가 복사되었습니다",
"lists": "기울기",
"location_search_mode": "위치 검색 모드",
"locations_visited": "방문한 장소",
"lodging_not_found": "숙박 시설을 찾을 수 없습니다",
"lodging_types": "숙박 유형",
"more_details": "자세한 내용",
"my_locations": "내 위치",
"nights": "밤",
"no_linkable_locations": "이 컬렉션에 연결할 수 있는 위치를 찾을 수 없습니다.",
"of_locations": "위치의",
"on_this_trip": "이번 여행에서는",
"overnight": "밤새",
"physical_activities": "신체 활동",
"pins": "다리",
"places": "장소",
"regions": "지역",
"reservation": "예약",
"reset_filters": "다시 놓기",
"route": "노선",
"route_selected": "선택한 경로",
"routes_and_activities": "노선",
"saving": "절약",
"search_end_location": "검색 종료 위치",
"search_start_end_locations": "시작 및 종료 위치 검색",
"search_start_location": "검색 시작 위치",
"segments": "세그먼트",
"select": "선택하다",
"show_filters": "필터 표시",
"start_location": "시작 위치",
"status_filter": "상태 필터",
"stays": "숙박",
"tasks_done": "완료된 작업",
"total_days": "총 일수",
"total_visits": "총 방문수",
"transport_activity_paths": "수송",
"transportation_gpx_tip": "지도에 표시하려면 여기에 GPX 파일을 업로드하세요.",
"traveled": "여행했다",
"travelers": "여행자",
"trip_timeline": "여행 일정",
"trip_window": "여행 창구",
"upcoming": "예정",
"view": "보다",
"wiki_results_found": "위키피디아 결과",
"with_activities": "활동 포함",
"written": "쓴",
"export_failed": "내보내기 실패",
"export_success": "내보낸 컬렉션",
"export_zip": "우편번호 내보내기",
"import_failed": "가져오기 실패",
"import_from_file": "파일에서 가져오기",
"import_success": "가져오기 성공"
},
"auth": {
"confirm_password": "비밀번호 확인",
@@ -440,7 +449,6 @@
"password": "비밀번호",
"profile_picture": "프로필 사진",
"public_profile": "공개 프로필",
"public_tooltip": "공개 프로필을 사용하면 당신에게 다른 사용자가 컬렉션을 공유할 수 있으며, 사용자 페이지에서 프로필이 노출됩니다.",
"registration_disabled": "현재 등록할 수 없습니다.",
"signup": "가입",
"username": "사용자 이름",
@@ -451,7 +459,8 @@
"enter_password": "비밀번호를 입력하십시오",
"enter_username": "사용자 이름을 입력하십시오",
"logging_in": "로그인",
"totp": "2 단계 코드"
"totp": "2 단계 코드",
"user_email_verification_required": "이메일 인증이 필요합니다. \n확인 링크가 있는지 이메일을 확인하세요."
},
"categories": {
"category_name": "카테고리 이름",
@@ -504,10 +513,23 @@
"shared_collections": "공유 컬렉션",
"available": "사용 가능",
"linked": "연결되어 있습니다",
"try_different_search": "다른 검색 또는 필터를 사용해보십시오."
"try_different_search": "다른 검색 또는 필터를 사용해보십시오.",
"changing_date_title": "날짜를 변경하면 여행 일정에 영향을 미칩니다",
"changing_date_warning": "새 날짜 범위를 벗어난 여행 일정 항목은 일정에서 제거되고 날짜가 없는 컬렉션 항목에 다시 배치됩니다.",
"clear_cover": "투명 커버",
"collaborators": "협력자",
"cover": "씌우다",
"cover_image": "표지 이미지",
"cover_image_hint": "이 컬렉션의 이미지에서 표지를 선택하세요.",
"create_new_collection": "새 컬렉션 만들기",
"enter_collection_name": "컬렉션 이름을 입력하세요.",
"location_primary": "위치 표지",
"no_images_available": "아직 연결된 위치에서 사용할 수 있는 이미지가 없습니다.",
"public_collection_description": "링크가 있는 모든 사람이 볼 수 있도록 허용",
"set_cover": "커버 세트",
"update_collection_details": "업데이트 컬렉션 세부정보"
},
"dashboard": {
"add_some": "다음 모험을 계획해 보는게 어떨까요? 아래 버튼을 클릭하여 새로운 모험을 추가할 수 있습니다.",
"countries_visited": "방문한 국가",
"no_recent_adventures": "최근 모험이 없나요?",
"recent_adventures": "최근 모험",
@@ -573,17 +595,10 @@
"loading_albums": "앨범로드",
"no_images": "이미지가 없습니다",
"select_album": "앨범을 선택하십시오",
"select_album_first": "먼저 앨범을 선택하십시오",
"select_date": "날짜를 선택하십시오",
"try_different_date": "다른 날짜를 시도하십시오"
},
"map": {
"add_adventure": "새로운 모험 추가",
"add_adventure_at_marker": "마커에 새로운 모험 추가",
"adventure_map": "모험 지도",
"clear_marker": "마커 초기화",
"map_options": "지도 옵션",
"show_visited_regions": "방문한 지역 보기",
"view_details": "상세 보기",
"adventure_stats": "모험 통계",
"completion": "완성",
@@ -596,12 +611,11 @@
"location_map": "위치지도",
"locations_shown": "표시된 위치",
"place_marker_desc_location": "지도를 클릭하여 마커를 배치하십시오.",
"show_activities": "활동을 보여줍니다",
"show_visited_cities": "도시를 방문했습니다"
"show_visited_cities": "도시를 방문했습니다",
"search_locations": "위치 검색..."
},
"navbar": {
"about": "Adventurelog 소개",
"adventures": "모험",
"calendar": "달력",
"collections": "컬렉션",
"documentation": "문서",
@@ -609,14 +623,11 @@
"language_selection": "언어",
"logout": "로그아웃",
"map": "지도",
"my_adventures": "내 모험",
"my_tags": "내 태그",
"profile": "프로필",
"search": "검색",
"settings": "설정",
"shared_with_me": "나와 공유함",
"support": "지원",
"tag": "태그",
"theme_selection": "테마 선택",
"themes": {
"aestheticDark": "미적 어둠",
@@ -630,12 +641,11 @@
"northernLights": "북극광"
},
"users": "사용자",
"worldtravel": "세계 여행",
"admin_panel": "관리자 패널",
"navigation": "항해"
"navigation": "항해",
"worldtravel": "세계여행"
},
"notes": {
"add_a_link": "링크 추가",
"content": "콘텐츠",
"editing_note": "노트 편집",
"failed_to_save": "메모 저장 실패",
@@ -654,7 +664,6 @@
},
"profile": {
"member_since": "가입 시점",
"user_stats": "사용자 통계",
"visited_cities": "방문한 도시",
"visited_countries": "방문한 국가",
"visited_regions": "방문한 지역",
@@ -668,16 +677,33 @@
"public_location_experiences": "공개 위치 경험"
},
"recomendations": {
"recommendation": "추천",
"recommendations": "권장 사항",
"food": "음식",
"tourism": "관광 여행",
"location_recommendations": "위치 권장 사항"
"any": "어느",
"average_rating": "평균 평점",
"discover_places": "장소 탐색",
"lodging": "호텔",
"map_view": "지도 보기",
"minimum_rating": "최소 등급",
"minimum_reviews": "최소 리뷰",
"no_results_yet": "아직 결과가 없습니다",
"open_now_only": "지금만 열기",
"search_around_location": "위치 주변 검색",
"search_by_address": "주소로 검색",
"search_radius_label": "검색 반경:",
"searching": "수색...",
"select_location_or_query": "위치를 선택하거나 검색어를 입력하여 근처의 놀라운 장소를 찾아보세요!",
"total_results": "총 결과",
"use_search_instead": "대신 검색을 사용하세요",
"add_location": "위치 추가",
"add_lodging": "숙박 추가",
"away": "떨어져 있는",
"hours": "시간",
"open": "열려 있는",
"your_location": "귀하의 위치"
},
"search": {
"adventurelog_results": "Adventurelog 결과",
"online_results": "온라인 결과",
"public_adventures": "공개 모험",
"cities": "도시",
"countries": "국가",
"found": "설립하다",
@@ -833,11 +859,7 @@
"use_imperial_desc": "메트릭 단위 대신 황실 단위 (피트, 인치, 파운드)를 사용하십시오."
},
"share": {
"go_to_settings": "설정으로 이동",
"no_shared_found": "공유받은 컬렉션이 없습니다.",
"no_users_shared": "공유한 사용자가 없습니다",
"not_shared_with": "공유하지 않음",
"set_public": "다른 사람에게 공유하려면, 프로필을 공개해야 합니다.",
"share_desc": "이 컬렉션을 다른 사용자와 공유하세요.",
"shared": "공유됨",
"shared_with": "공유한 사용자",
@@ -874,9 +896,6 @@
"transportation_delete_error": "교통수단 삭제 오류",
"transportation_deleted": "교통수단이 성공적으로 삭제되었습니다!",
"type": "유형",
"ending_airport_desc": "엔드 공항 코드 입력 (예 : LAX)",
"fetch_location_information": "위치 정보를 가져 오십시오",
"starting_airport_desc": "공항 시작 코드 입력 (예 : JFK)",
"create_new_transportation": "새로운 교통",
"enter_flight_number": "비행 번호를 입력하십시오",
"enter_from_location": "위치에서 입력하십시오",
@@ -884,26 +903,25 @@
"enter_to_location": "위치에 입력하십시오",
"enter_transportation_name": "운송 이름을 입력하십시오",
"select_type": "유형을 선택하십시오",
"update_transportation_details": "전송 세부 사항을 업데이트하십시오"
"update_transportation_details": "전송 세부 사항을 업데이트하십시오",
"arrival_code": "도착 코드",
"arrival_date": "도착 날짜",
"arrival_timezone": "도착 시간대",
"departure_code": "출발 코드",
"departure_date": "출발 날짜",
"departure_timezone": "출발 시간대"
},
"users": {
"no_users_found": "공개 프로필인 사용자가 없습니다."
},
"worldtravel": {
"all": "모두",
"all_subregions": "모든 하위 지역",
"cities": "도시",
"clear_search": "검색 초기화",
"completely_visited": "모두 방문함",
"country_list": "국가 목록",
"failed_to_mark_visit": "방문함으로 표시 중 오류",
"failed_to_remove_visit": "방문함으로 표시 제거 중 오류",
"marked_visited": "방문으로 표시",
"no_cities_found": "도시가 없습니다",
"no_countries_found": "국가가 없습니다",
"not_visited": "방문하지 않음",
"num_countries": "개 국가 검색",
"partially_visited": "일부 방문함",
"region_failed_visited": "지역을 방문함으로 표시 중 실패",
"regions_in": "소속 지역",
"removed": "제거됨",
@@ -939,11 +957,6 @@
"total_cities": "총 도시",
"total_countries": "총 국가",
"total_regions": "총 지역",
"newest_first": "최신 첫 번째",
"oldest_first": "가장 오래된 첫 번째",
"unvisited_first": "먼저 방문하지 않습니다",
"visited_first": "먼저 방문했습니다",
"total_items": "총 항목",
"getting_location_details": "위치 세부 정보 얻기",
"dive_deeper": "더 깊이 다이빙하십시오",
"exploration_progress": "탐사 진행",
@@ -963,7 +976,8 @@
"about_country": "국가 소개",
"about_region": "지역정보",
"show_less": "간략히 표시",
"show_more": "더보기"
"show_more": "더보기",
"all_locations_visited": "모든 장소를 방문했습니다!"
},
"lodging": {
"apartment": "아파트",
@@ -983,7 +997,6 @@
"villa": "별장",
"create_new_lodging": "새로운 숙박",
"enter_lodging_name": "숙박 이름을 입력하십시오",
"enter_price": "가격을 입력하십시오",
"enter_reservation_number": "예약 번호를 입력하십시오",
"update_lodging_details": "숙박 세부 사항을 업데이트하십시오"
},
@@ -1000,7 +1013,9 @@
"month": "월",
"today": "오늘",
"total_events": "총 이벤트",
"week": "주"
"week": "주",
"event timezone": "이벤트 시간대",
"your timezone": "귀하의 시간대"
},
"locations": {
"location": "위치",
@@ -1023,15 +1038,11 @@
"title": "초대"
},
"strava": {
"account_connected": "계정이 연결되어 있습니다",
"admin_setup_required": "서버 관리자는 전 세계적으로 활성화해야합니다",
"authorization_error": "Strava Authorization URL로 오류를 방향으로 리디렉션합니다",
"connect_account": "계정을 연결하십시오",
"disconnect": "연결을 끊습니다",
"disconnect_error": "Strava에서 오류 분리",
"disconnected": "Strava에서 성공적으로 분리되었습니다",
"not_configured": "Strava는 구성되지 않았습니다",
"ready_to_connect": "연결 준비",
"strava_integration_desc": "Strava에 연결하여 액티브를 위치 및 방문으로 쉽게 가져 오십시오.",
"gpx_required": "Strava 가져 오기를 완료하려면 GPX 파일을 업로드하십시오.",
"not_enabled": "이 인스턴스에서는 Strava 통합이 활성화되지 않습니다."
@@ -1040,5 +1051,82 @@
"connected": "Wanderer에 성공적으로 연결되었습니다",
"connection_error": "방랑자에 연결하는 오류",
"wanderer_integration_desc": "Wanderer에 연결하여 위치에서 트레일을 쉽게 가져오고 볼 수 있습니다."
},
"collections": {
"all_items": "모든 품목",
"currencies": "통화",
"currency": "통화",
"event_timezone": "이벤트 시간대",
"event_timezone_desc": "이벤트 시간대는 가능한 경우 위치 또는 항목 시간대를 사용합니다. \n내 시간대는 다음과 같습니다.",
"events": "이벤트",
"local_timezone": "내 시간대",
"no_calendar_events": "아직 이 컬렉션에 대한 방문 일정이 없습니다.",
"no_priced_items": "위치, 숙박, 교통수단에 가격을 추가하여 통화별 여행 총액을 확인하세요.",
"not_found": "컬렉션을 찾을 수 없습니다",
"statistics": "통계",
"times_shown_in": "표시된 시간",
"trip_costs": "여행 비용"
},
"common": {
"show_less": "세부정보 숨기기",
"show_more": "더 보기"
},
"currencies": {
"AED": "UAE 디르함",
"AUD": "호주 달러",
"BRL": "브라질 레알",
"CAD": "캐나다 달러",
"CHF": "스위스 프랑",
"CNY": "중국 위안",
"DKK": "덴마크 크로네",
"EUR": "유로",
"GBP": "영국 파운드",
"HKD": "홍콩 달러",
"INR": "인도 루피",
"JPY": "일본 엔",
"MXN": "멕시코 페소",
"NOK": "노르웨이 크로네",
"NZD": "뉴질랜드 달러",
"SEK": "스웨덴 크로나",
"SGD": "싱가포르 달러",
"TRY": "터키 리라",
"USD": "미국 달러",
"ZAR": "남아프리카 랜드",
"no_matches": "일치하는 항목 없음",
"search": "통화 검색",
"select_currency": "통화 선택"
},
"itinerary": {
"add_description": "설명 추가",
"add_to_day": "날짜에 추가",
"add_to_trip_context": "여행 맥락 추가",
"added_to_trip_context": "여행 컨텍스트에 추가됨",
"auto_generate": "자동 생성",
"auto_generate_itinerary": "여행 일정 자동 생성",
"auto_generate_itinerary_desc": "이 컬렉션에는 날짜가 있는 항목이 있지만 아직 여행 일정이 없습니다. \n날짜별로 자동으로 정리하시겠습니까?",
"change_day": "변경일",
"drag_to_reorder": "드래그하여 재정렬하세요.",
"failed_to_add_to_trip_context": "여행 컨텍스트에 항목을 추가하지 못했습니다.",
"failed_to_move_to_trip_context": "여행 컨텍스트로 이동하지 못했습니다.",
"generating": "생성 중",
"item_already_in_trip_context": "이미 여행 컨텍스트에 있는 항목",
"item_not_found": "항목을 찾을 수 없습니다",
"item_remove_error": "여행 일정에서 항목을 삭제하는 중에 오류가 발생했습니다.",
"item_remove_success": "여행 일정에서 항목이 제거되었습니다.",
"link_existing_item": "기존 항목 연결",
"move_to_trip_context": "여행 컨텍스트로 이동",
"moved_to_trip_context": "여행 컨텍스트로 이동됨",
"multi_day": "수일간",
"no_itinerary_yet": "아직 일정이 없습니다",
"no_plans_for_day": "오늘은 계획이 없어요",
"no_trip_context_items": "아직 여행 컨텍스트 항목이 없습니다.",
"remove_from_itinerary": "일에서 제거",
"remove_from_trip_context": "컨텍스트에서 제거",
"start_planning": "특정 날짜에 항목을 추가하여 여행 계획을 시작해 보세요.",
"staying_overnight": "하룻밤 숙박",
"trip_context": "여행 상황",
"trip_context_info": "여행 컨텍스트 항목은 전체 여행에 적용됩니다. 예를 들어 목적지 자체인 위치, 일반 참고 사항, 전체 여행에 중요한 짐 목록 등이 있습니다.",
"unscheduled_items": "예정되지 않은 품목",
"unscheduled_items_desc": "이 항목은 이 여행에 연결되어 있지만 아직 특정 날짜에 추가되지 않았습니다."
}
}

View File

@@ -5,10 +5,7 @@
"license": "Gelicentieerd onder de GPL-3.0-licentie.",
"message": "Met ❤️ gemaakt in de Verenigde Staten.",
"nominatim_1": "Locatie zoeken en geocodering wordt verzorgd door",
"nominatim_2": "Hun gegevens zijn in licentie gegeven onder de ODbL-licentie.",
"oss_attributions": "Open source gebruik",
"other_attributions": "Aanvullende vermeldingen zijn te vinden in het README-bestand.",
"source_code": "Broncode",
"generic_attributions": "Log in op AdventUrelog om attributies te bekijken voor ingeschakelde integraties en services.",
"attributions": "Attributies",
"developer": "Ontwikkelaar",
@@ -20,9 +17,7 @@
"view_license": "Bekijk licentie"
},
"adventures": {
"activities": {},
"add_to_collection": "Toevoegen aan collectie",
"adventure": "Avontuur",
"archive": "Archiveer",
"archived": "Gearchiveerd",
"archived_collection_message": "Collectie succesvol gearchiveerd!",
@@ -32,15 +27,12 @@
"category_filter": "Categoriefilter",
"clear": "Leegmaken",
"collection": "Collectie",
"collection_adventures": "Inclusief collectie-avonturen",
"count_txt": "resultaten die overeenkomen met uw zoekopdracht",
"create_new": "Maak nieuw...",
"date": "Datum",
"delete": "Verwijderen",
"delete_collection": "Collectie verwijderen",
"delete_collection_success": "Collectie succesvol verwijderd!",
"descending": "Aflopend",
"edit_adventure": "Avontuur bewerken",
"edit_collection": "Collectie bewerken",
"filter": "Filter",
"homepage": "Startpagina",
@@ -48,9 +40,7 @@
"longitude": "Lengtegraad",
"my_collections": "Mijn collecties",
"name": "Naam",
"no_image_found": "Geen afbeelding gevonden",
"open_details": "Details openen",
"open_filters": "Filters openen",
"order_by": "Sorteer op",
"order_direction": "Sorteervolgorde",
"private": "Privé",
@@ -67,8 +57,6 @@
"visits": "Bezoeken",
"dates": "Datums",
"duration": "Duur",
"image_removed_error": "Fout bij het verwijderen van de afbeelding",
"image_removed_success": "Afbeelding succesvol verwijderd!",
"image_upload_error": "Fout bij het uploaden van de afbeelding",
"image_upload_success": "Afbeelding succesvol geüpload!",
"no_image_url": "Er is geen afbeelding gevonden op die URL.",
@@ -76,108 +64,66 @@
"start_before_end_error": "De startdatum moet vóór de einddatum liggen",
"visited": "Bezocht",
"wiki_image_error": "Fout bij het ophalen van afbeelding van Wikipedia",
"actions": "Acties",
"activity_types": "Activiteitstypen",
"add": "Toevoegen",
"add_notes": "Voeg opmerkingen toe",
"basic_information": "Basisinformatie",
"category": "Categorie",
"clear_map": "Kaart leegmaken",
"copy_link": "Kopieer link",
"date_constrain": "Beperk tot de datums van de collectie",
"description": "Beschrijving",
"end_date": "Einddatum",
"fetch_image": "Afbeelding ophalen",
"generate_desc": "Beschrijving genereren",
"image": "Afbeelding",
"image_fetch_failed": "Kan afbeelding niet ophalen",
"link": "Link",
"location": "Locatie",
"location_information": "Informatie over de locatie",
"my_images": "Mijn afbeeldingen",
"no_description_found": "Geen beschrijving gevonden",
"no_images": "Geen afbeeldingen",
"no_location": "Voer een locatie in",
"no_results": "Geen resultaten gevonden",
"remove": "Verwijderen",
"save_next": "Opslaan & Volgende",
"search_for_location": "Zoek een locatie",
"search_results": "Zoekresultaten",
"see_adventures": "Zie Avonturen",
"start_date": "Startdatum",
"upload_image": "Afbeelding uploaden",
"url": "URL",
"warning": "Waarschuwing",
"wikipedia": "Wikipedia",
"adventure_not_found": "Er zijn geen avonturen om weer te geven. \nVoeg er een paar toe via de plusknop rechtsonder of probeer de filters te wijzigen!",
"all": "Alle",
"error_updating_regions": "Fout bij het wijzigen van regio's",
"mark_visited": "Markeer als bezocht",
"my_adventures": "Mijn avonturen",
"no_adventures_found": "Geen avonturen gevonden",
"no_linkable_adventures": "Er zijn geen avonturen gevonden die aan deze collectie kunnen worden gekoppeld.",
"not_visited": "Niet bezocht",
"regions_updated": "regio's bijgewerkt",
"update_visited_regions": "Werk bezochte regio's bij",
"update_visited_regions_disclaimer": "Dit kan even duren, afhankelijk van het aantal avondturen dat je hebt beleefd.",
"visited_region_check": "Controleer bezochte regio's",
"visited_region_check_desc": "Door dit te selecteren, controleert de server alle avonturen die je hebt beleefd en markeert hun regio's als bezocht in de wereldreizen.",
"add_new": "Nieuw toevoegen...",
"checklist": "Checklist",
"checklists": "Checklists",
"collection_archived": "Deze collectie is gearchiveerd.",
"collection_completed": "Je hebt deze collectie voltooid!",
"collection_stats": "Collectiestatistieken",
"days": "dagen",
"itineary_by_date": "Reisplan op datum",
"keep_exploring": "Blijf ontdekken!",
"link_new": "Nieuwe link...",
"linked_adventures": "Gekoppelde avonturen",
"links": "Koppelingen",
"note": "Opmerking",
"notes": "Opmerkingen",
"nothing_planned": "Niets gepland voor deze dag. \nGeniet van de reis!",
"transportation": "Vervoer",
"transportations": "Vervoer",
"visit_link": "Bezoek Link",
"day": "Dag",
"add_a_tag": "Voeg een label toe",
"tags": "Labels",
"set_to_pin": "Stel in op pin",
"category_fetch_error": "Fout bij ophalen van categorieën",
"copied_to_clipboard": "Gekopieerd naar klembord!",
"copy_failed": "Kopiëren mislukt",
"adventure_calendar": "Avonturenkalender",
"emoji_picker": "Emoji-kiezer",
"hide": "Verbergen",
"show": "Toon",
"download_calendar": "Agenda downloaden",
"md_instructions": "Schrijf hier in markdown...",
"preview": "Voorbeeld",
"checklist_delete_confirm": "Weet u zeker dat u deze checklist wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.",
"clear_location": "Locatie wissen",
"date_information": "Datuminformatie",
"delete_checklist": "Checklist verwijderen",
"delete_note": "Notitie verwijderen",
"delete_transportation": "Transport verwijderen",
"end": "Einde",
"flight_information": "Vluchtinformatie",
"from": "Van",
"no_location_found": "Geen locatie gevonden",
"note_delete_confirm": "Weet u zeker dat u deze notitie wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.",
"out_of_range": "Niet binnen het datumbereik van het reisplan",
"start": "Begin",
"starting_airport": "Luchthaven van vertrek",
"to": "Naar",
"transportation_delete_confirm": "Weet u zeker dat u dit transport wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.",
"ending_airport": "Luchthaven van aankomst",
"cities_updated": "steden bijgewerkt",
"finding_recommendations": "Ontdek verborgen juweeltjes voor je volgende avontuur",
"attachment": "Bijlage",
"attachment_delete_success": "Bijlage succesvol verwijderd!",
"attachment_name": "Naam van bijlage",
"attachment_update_error": "Fout bij het bijwerken van de bijlage",
"attachment_update_success": "Bijlage succesvol bijgewerkt!",
"attachment_upload_error": "Fout bij het uploaden van de bijlage",
"attachment_upload_success": "Bijlage succesvol geüpload!",
"attachments": "Bijlagen",
@@ -186,27 +132,16 @@
"upload": "Uploaden",
"city": "Stad",
"delete_lodging": "Verwijder accommodatie",
"display_name": "Weergavenaam",
"location_details": "Locatiegegevens",
"lodging": "Accomodatie",
"reservation_number": "Reserveringsnummer",
"lodging_delete_confirm": "Weet u zeker dat u deze accommodatie wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.",
"lodging_information": "Accomodatie-informatie",
"price": "Prijs",
"region": "Regio",
"open_in_maps": "Open in kaarten",
"all_day": "De hele dag",
"collection_no_start_end_date": "Als u een start- en einddatum aan de collectie toevoegt, ontgrendelt u de functies van de planning van de route ontgrendelen in de verzamelpagina.",
"date_itinerary": "Datum reisschema",
"no_ordered_items": "Voeg items met datums toe aan de collectie om ze hier te zien.",
"ordered_itinerary": "Geordend reisschema",
"invalid_date_range": "Ongeldige datumbereik",
"timezone": "Tijdzone",
"no_visits": "Geen bezoeken",
"arrival_timezone": "Aankomsttijdzone",
"departure_timezone": "Vertrektijdzone",
"arrival_date": "Aankomstdatum",
"departure_date": "Vertrekdatum",
"coordinates": "Coördinaten",
"copy_coordinates": "Kopieer coördinaten",
"sun_times": "Zonnetijden",
@@ -214,7 +149,6 @@
"sunset": "Zonsondergang",
"timed": "Getimed",
"distance": "Afstand",
"all_linked_items": "Alle gekoppelde items",
"itinerary": "Routebeschrijving",
"joined": "Samengevoegd",
"view_profile": "Bekijk profiel",
@@ -223,15 +157,11 @@
"filters_and_stats": "Filters & Statistieken",
"no_adventures_message": "Begin met het documenteren van uw avonturen en het plannen van nieuwe avonturen. \nElke reis heeft een verhaal dat het vertellen waard is.",
"travel_progress": "Reisvoortgang",
"adventures_available": "Avonturen beschikbaar",
"all_adventures_already_linked": "Alle avonturen zijn al gekoppeld aan deze collectie.",
"collections_linked": "Collecties gekoppeld",
"create_collection_first": "Maak eerst een collectie om je avonturen en herinneringen te organiseren.",
"delete_collection_warning": "Weet u zeker dat u deze collectie wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.",
"done": "Klaar",
"loading_adventures": "Avonturen laden ...",
"name_location": "naam, locatie",
"collection_contents": "Collectie-inhoud",
"check_in": "Inchecken",
"check_out": "Uitchecken",
"collection_link_location_error": "Foutkoppelingslocatie naar verzameling",
@@ -242,22 +172,14 @@
"create_location": "Locatie maken",
"delete_location": "Verwijder locatie",
"edit_location": "Locatie bewerken",
"location_create_error": "Kan locatie niet maken",
"location_created": "Locatie gemaakt",
"location_delete_confirm": "Weet u zeker dat u deze locatie wilt verwijderen? \nDeze actie kan niet ongedaan worden gemaakt.",
"location_delete_success": "Locatie verwijderd met succes!",
"location_not_found": "Locatie niet gevonden",
"location_not_found_desc": "De locatie waarnaar u op zoek was, kon niet worden gevonden. \nProbeer een andere locatie of kom later terug.",
"location_update_error": "De locatie niet bijwerken",
"location_updated": "Locatie bijgewerkt",
"new_location": "Nieuwe locatie",
"no_collections_to_add_location": "Geen collecties gevonden om deze locatie toe te voegen aan.",
"no_locations_to_recommendations": "Geen locaties gevonden. \nVoeg minstens één locatie toe om aanbevelingen te krijgen.",
"public_location": "Openbare locatie",
"share_location": "Deel deze locatie!",
"visit_calendar": "Bezoek de agenda",
"wiki_location_desc": "Haalt fragment uit het Wikipedia -artikel dat overeenkomt met de naam van de locatie.",
"will_be_marked_location": "wordt gemarkeerd als bezocht zodra de locatie is opgeslagen.",
"no_locations_found": "Geen locaties gevonden",
"image_modal_navigate": "Gebruik pijltoetsen of klik om te navigeren",
"details": "Details",
@@ -269,7 +191,6 @@
"quick_start": "Snel begin",
"achievements": "Prestaties",
"active_duration": "Actieve duur",
"activities_name": "Activiteiten",
"activity_name": "Activiteitennaam",
"activity_name_placeholder": "Ochtendrun",
"activity_name_required": "Activiteitennaam is vereist",
@@ -361,13 +282,11 @@
"select_on_map": "Selecteer op kaart",
"select_wanderer_trail": "Selecteer een spoor van uw Wanderer -account",
"sport_type": "Sporttype",
"sport_type_placeholder": "Trail lopen",
"start_lat": "Start Latitude",
"start_lng": "Begin lengtegraad",
"strava_activities_during_visit": "Strava -activiteiten tijdens bezoek",
"strava_activity_ready": "Strava -activiteit klaar",
"time": "Tijd",
"total_covered": "Totaal bedekt",
"total_recorded": "Totaal geregistreerd",
"trail": "Pad",
"trail_created_successfully": "Trail met succes gemaakt",
@@ -404,19 +323,7 @@
"low": "Laag",
"rest": "Rest",
"total": "Totaal",
"attachment_removed_error": "Fout bij het verwijderen van bijlage",
"attachment_removed_success": "Bevestiging is succesvol verwijderd",
"attachments_upload_info": "Bijlagen worden geüpload na het opslaan van de",
"image_upload_info": "Afbeeldingen worden geüpload na het opslaan van de",
"linked_locations": "Gekoppelde locaties",
"lodging_save_error": "Error Saving accommodatie",
"my_attachments": "Mijn bijlagen",
"no_attachments": "Geen bijlagen",
"no_attachments_desc": "Upload bestanden om te beginnen",
"no_images_desc": "Upload afbeeldingen om te beginnen",
"route_map": "Routekaart",
"selected_attachments": "Geselecteerde bijlagen",
"selected_images": "Geselecteerde afbeeldingen",
"activities_text": "activiteiten",
"activity_breakdown_by_category": "Activiteitsafbraak per categorie",
"distance_covered": "Afstand afgevaardigd",
@@ -425,7 +332,109 @@
"total_climbed": "Totaal geklommen",
"total_distance": "Totale afstand",
"dates_not_saved": "Bezoek nog niet toegevoegd",
"dates_not_saved_description": "Klik op Bezoek toevoegen om op te slaan"
"dates_not_saved_description": "Klik op Bezoek toevoegen om op te slaan",
"active_days": "Actieve dagen",
"add_here": "Voeg hier toe",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Luchthavenzoekmodus",
"all_locations_already_linked": "Alle locaties zijn al aan deze collectie gekoppeld.",
"arrival_airport": "Aankomst luchthaven",
"avg_rating": "Gemiddelde beoordeling",
"burned": "verbrand",
"categories": "Categorieën",
"cities": "Steden",
"clear_search": "Duidelijke zoekopdracht",
"click_map_add_marker": "Klik op de kaart om een markering neer te zetten en voeg deze hier toe.",
"completed": "Voltooid",
"content_media": "Inhoud",
"countries": "Landen",
"country": "land",
"departure_airport": "Vertrek luchthaven",
"distance_traveled": "Afgelegde afstand",
"end_location": "Eindlocatie",
"enter_location_display_name": "Voer de weergavenaam van de locatie in",
"files": "Bestanden",
"flight": "Vlucht",
"folder": "Map",
"folder_view": "Mapweergave - toont alle gegevens",
"footprints": "Voetafdrukken",
"gained": "gewonnen",
"geographic_breakdown": "Geografische uitsplitsing",
"gpx_routes": "GPX-routes",
"hide_filters": "Filters verbergen",
"images_captured": "Beelden vastgelegd",
"in": "in",
"in_progress": "In uitvoering",
"items": "artikelen",
"itinerary_link_modal": {
"add_here": "Voeg hier toe",
"add_here_keep_date": "Toevoegen (datum behouden)",
"add_to_itinerary": "Voeg toe aan reisplan",
"already_added": "Al toegevoegd",
"already_added_on_this_day": "Vandaag al toegevoegd",
"already_added_on_this_day_desc": "Deze items staan al gepland voor deze dag.",
"already_added_other_days": "Op andere dagen al toegevoegd",
"already_added_other_days_desc": "Deze items staan gepland op verschillende data. \nAls u ze hier toevoegt, wordt de datum bijgewerkt of worden ze toegevoegd zoals ze zijn.",
"items_available": "{count} items beschikbaar om te linken",
"items_on_other_days": "Artikelen op andere dagen",
"items_on_other_days_desc": "Deze items hebben verschillende data. \nU kunt ze toevoegen en optioneel de datum ervan bijwerken.",
"items_on_this_day": "Artikelen op deze dag",
"no_unscheduled_items": "Geen ongeplande items beschikbaar",
"no_unscheduled_items_desc": "Alle items zijn aan het reisschema toegevoegd of er zijn geen items om toe te voegen.",
"title": "Koppel items aan {date}"
},
"link_copied": "Link gekopieerd",
"lists": "Lijsten",
"location_search_mode": "Locatiezoekmodus",
"locations_visited": "Bezochte locaties",
"lodging_not_found": "Accommodatie niet gevonden",
"lodging_types": "Accommodatietypes",
"more_details": "Meer details",
"my_locations": "Mijn locaties",
"nights": "Nachten",
"no_linkable_locations": "Er zijn geen locaties gevonden die aan deze collectie kunnen worden gekoppeld.",
"of_locations": "van locaties",
"on_this_trip": "Op deze reis",
"overnight": "Overnachting",
"physical_activities": "Fysieke activiteiten",
"pins": "pinnen",
"places": "Plaatsen",
"regions": "Regio's",
"reservation": "Reservering",
"reset_filters": "Opnieuw instellen",
"route": "Route",
"route_selected": "Route geselecteerd",
"routes_and_activities": "Routes",
"saving": "Besparing",
"search_end_location": "Zoek eindlocatie",
"search_start_end_locations": "Zoek start- en eindlocaties",
"search_start_location": "Zoek startlocatie",
"segments": "Segmenten",
"select": "Selecteer",
"show_filters": "Filters weergeven",
"start_location": "Begin locatie",
"status_filter": "Statusfilter",
"stays": "Verblijven",
"tasks_done": "Taken voltooid",
"total_days": "Totaal aantal dagen",
"total_visits": "Totaal aantal bezoeken",
"transport_activity_paths": "Vervoer",
"transportation_gpx_tip": "Upload hier GPX-bestanden om ze op de kaart te laten weergeven",
"traveled": "gereisd",
"travelers": "Reizigers",
"trip_timeline": "Reistijdlijn",
"trip_window": "Reisvenster",
"upcoming": "Aankomend",
"view": "Weergave",
"wiki_results_found": "Wikipedia-resultaten",
"with_activities": "Met activiteiten",
"written": "Geschreven",
"export_failed": "Exporteren is mislukt",
"export_success": "Geëxporteerde collectie",
"export_zip": "ZIP exporteren",
"import_failed": "Importeren mislukt",
"import_from_file": "Importeren uit bestand",
"import_success": "Succes importeren"
},
"home": {
"desc_1": "Ontdek, plan en verken met gemak",
@@ -447,13 +456,11 @@
},
"navbar": {
"about": "Over AdventureLog",
"adventures": "Avonturen",
"collections": "Collecties",
"documentation": "Documentatie",
"greeting": "Hoi",
"logout": "Uitloggen",
"map": "Kaart",
"my_adventures": "Mijn avonturen",
"profile": "Profiel",
"search": "Zoekopdracht",
"settings": "Instellingen",
@@ -471,14 +478,12 @@
"northernLights": "Noorderlicht"
},
"users": "Gebruikers",
"worldtravel": "Wereldreizen",
"my_tags": "Mijn labels",
"tag": "Label",
"language_selection": "Taal",
"support": "Steun",
"calendar": "Kalender",
"admin_panel": "Admin -paneel",
"navigation": "Navigatie"
"navigation": "Navigatie",
"worldtravel": "Wereldreizen"
},
"auth": {
"confirm_password": "Bevestig wachtwoord",
@@ -494,7 +499,6 @@
"username": "Gebruikersnaam",
"profile_picture": "Profielfoto",
"public_profile": "Openbaar profiel",
"public_tooltip": "Met een openbaar profiel kunnen gebruikers collecties met u delen en uw profiel bekijken op de gebruikerspagina.",
"new_password": "Nieuw wachtwoord",
"or_3rd_party": "Of log in met een service van derden",
"no_public_collections": "Geen openbare collecties gevonden",
@@ -504,21 +508,15 @@
"enter_password": "Voer uw wachtwoord in",
"enter_username": "Voer uw gebruikersnaam in",
"logging_in": "Inloggen",
"totp": "Tweefactorcode"
"totp": "Tweefactorcode",
"user_email_verification_required": "E-mailverificatie vereist. \nControleer uw e-mail voor een verificatielink."
},
"users": {
"no_users_found": "Er zijn geen gebruikers gevonden met openbare profielen."
},
"worldtravel": {
"all": "Alle",
"all_subregions": "Alle subregio's",
"clear_search": "Zoekopdracht wissen",
"completely_visited": "Volledig bezocht",
"country_list": "Landenlijst",
"no_countries_found": "Geen landen gevonden",
"not_visited": "Niet bezocht",
"num_countries": "landen gevonden",
"partially_visited": "Gedeeltelijk bezocht",
"cities": "steden",
"failed_to_mark_visit": "Kan bezoek aan niet markeren",
"failed_to_remove_visit": "Kan bezoek aan niet verwijderen",
@@ -559,11 +557,6 @@
"total_cities": "Totale steden",
"total_countries": "Totale landen",
"total_regions": "Totaal aantal regio's",
"newest_first": "Nieuwste eerste",
"oldest_first": "Oudste eerste",
"unvisited_first": "Eerst niet bezocht",
"visited_first": "Eerst bezocht",
"total_items": "Totale items",
"getting_location_details": "Locatiegegevens krijgen",
"cities_available": "Steden beschikbaar",
"destination_revealed": "Bestemming onthuld!",
@@ -583,7 +576,8 @@
"about_country": "Over land",
"about_region": "Over Regio",
"show_less": "Toon minder",
"show_more": "Toon meer"
"show_more": "Toon meer",
"all_locations_visited": "Alle locaties bezocht!"
},
"settings": {
"account_settings": "Gebruikersaccount instellingen",
@@ -772,10 +766,23 @@
"shared_collections": "Gedeelde collecties",
"available": "Beschikbaar",
"linked": "Gekoppeld",
"try_different_search": "Probeer een andere zoekopdracht of filter."
"try_different_search": "Probeer een andere zoekopdracht of filter.",
"changing_date_title": "Het wijzigen van datums heeft gevolgen voor de reisplanitems",
"changing_date_warning": "Alle reisplanitems buiten het nieuwe datumbereik worden uit het reisplan verwijderd en teruggeplaatst in de ongedateerde items van de collectie.",
"clear_cover": "Duidelijke dekking",
"collaborators": "Medewerkers",
"cover": "Omslag",
"cover_image": "Omslagafbeelding",
"cover_image_hint": "Kies een omslag uit afbeeldingen in deze collectie.",
"create_new_collection": "Nieuwe collectie maken",
"enter_collection_name": "Voer de collectienaam in",
"location_primary": "Locatie dekking",
"no_images_available": "Er zijn nog geen afbeeldingen beschikbaar van gekoppelde locaties.",
"public_collection_description": "Laat iedereen met de link kijken",
"set_cover": "Deksel instellen",
"update_collection_details": "Verzamelgegevens bijwerken"
},
"notes": {
"add_a_link": "Voeg een link toe",
"content": "Inhoud",
"editing_note": "Opmerking bewerken",
"failed_to_save": "Kan opmerking niet opslaan",
@@ -812,9 +819,6 @@
"new_transportation": "Nieuw vervoer",
"transportation_delete_error": "Fout bij verwijderen vervoer",
"transportation_deleted": "Vervoer succesvol verwijderd!",
"ending_airport_desc": "Voer aankomst luchthavencode in (bijv. LAX)",
"fetch_location_information": "Locatie-informatie ophalen",
"starting_airport_desc": "Voer de vertrek luchthavencode in (bijv. JFK)",
"create_new_transportation": "Nieuw transport",
"enter_flight_number": "Voer het vluchtnummer in",
"enter_from_location": "Voer vanaf de locatie in",
@@ -822,12 +826,15 @@
"enter_to_location": "Ga naar de locatie",
"enter_transportation_name": "Voer de transportnaam in",
"select_type": "Selecteer type",
"update_transportation_details": "Update transportdetails"
"update_transportation_details": "Update transportdetails",
"arrival_code": "Aankomstcode",
"arrival_date": "Aankomstdatum",
"arrival_timezone": "Aankomst tijdzone",
"departure_code": "Vertrekcode",
"departure_date": "Vertrekdatum",
"departure_timezone": "Vertrektijdzone"
},
"search": {
"adventurelog_results": "AdventureLog resultaten",
"online_results": "Online resultaten",
"public_adventures": "Openbare avonturen",
"cities": "Steden",
"countries": "Landen",
"found": "gevonden",
@@ -836,12 +843,7 @@
"try_searching_desc": "Probeer op zoek naar avonturen, collecties, landen, regio's, steden of gebruikers."
},
"map": {
"add_adventure": "Voeg nieuw avontuur toe",
"add_adventure_at_marker": "Voeg een nieuw avontuur toe bij de marker",
"adventure_map": "Avonturenkaart",
"clear_marker": "Verwijder marker",
"map_options": "Kaartopties",
"show_visited_regions": "Toon bezochte regio's",
"view_details": "Details bekijken",
"adventure_stats": "Avontuurstatistieken",
"completion": "Voltooiing",
@@ -854,21 +856,16 @@
"location_map": "Locatiekaart",
"locations_shown": "Getoonde locaties",
"place_marker_desc_location": "Klik op de kaart om een marker te plaatsen.",
"show_activities": "Toon activiteiten",
"show_visited_cities": "Bezochte steden"
"show_visited_cities": "Bezochte steden",
"search_locations": "Locaties zoeken..."
},
"languages": {},
"share": {
"no_users_shared": "Er zijn geen gebruikers gedeeld",
"not_shared_with": "Niet gedeeld met",
"share_desc": "Deel deze collectie met andere gebruikers.",
"shared": "Gedeeld",
"shared_with": "Gedeeld met",
"unshared": "Niet gedeeld",
"with": "met",
"go_to_settings": "Ga naar instellingen",
"no_shared_found": "Er zijn geen collecties gevonden die met u zijn gedeeld.",
"set_public": "Om ervoor te zorgen dat gebruikers met u kunnen delen, moet uw profiel op openbaar zijn ingesteld.",
"available": "Beschikbaar",
"pending": "In behandeling",
"revoke_invite": "Revoke uitnodigen",
@@ -882,7 +879,6 @@
},
"profile": {
"member_since": "Lid sinds",
"user_stats": "Gebruikersstatistieken",
"visited_countries": "Bezochte landen",
"visited_regions": "Bezochte regio's",
"visited_cities": "Steden bezocht",
@@ -907,7 +903,6 @@
"location_update_after_refresh": "De locatiekaarten worden bijgewerkt zodra u de pagina vernieuwt."
},
"dashboard": {
"add_some": "Waarom begint u niet met het plannen van uw volgende avontuur? \nJe kunt een nieuw avontuur toevoegen door op de onderstaande knop te klikken.",
"countries_visited": "Bezochte landen",
"no_recent_adventures": "Geen recente avonturen?",
"recent_adventures": "Recente avonturen",
@@ -955,16 +950,34 @@
"loading_albums": "Albums laden",
"no_images": "Geen afbeeldingen gevonden",
"select_album": "Selecteer album",
"select_album_first": "Selecteer eerst een album",
"select_date": "Selecteer datum",
"try_different_date": "Probeer een andere datum"
},
"recomendations": {
"recommendation": "Aanbeveling",
"recommendations": "Aanbevelingen",
"food": "Voedsel",
"tourism": "Toerisme",
"location_recommendations": "Locatieaanbevelingen"
"any": "Elk",
"average_rating": "Gemiddelde beoordeling",
"discover_places": "Ontdek plaatsen",
"lodging": "Hotels",
"map_view": "Kaartweergave",
"minimum_rating": "Minimale beoordeling",
"minimum_reviews": "Minimale beoordelingen",
"no_results_yet": "Nog geen resultaten",
"open_now_only": "Alleen nu geopend",
"search_around_location": "Zoek rond locatie",
"search_by_address": "Zoek op adres",
"search_radius_label": "Zoekradius:",
"searching": "Zoeken...",
"select_location_or_query": "Selecteer een locatie of voer een zoekopdracht in om geweldige plekken in de buurt te ontdekken!",
"total_results": "Totale resultaten",
"use_search_instead": "Gebruik in plaats daarvan de zoekfunctie",
"add_location": "Locatie toevoegen",
"add_lodging": "Voeg accommodatie toe",
"away": "weg",
"hours": "Uur",
"open": "Open",
"your_location": "Uw locatie"
},
"lodging": {
"apartment": "Appartement",
@@ -984,7 +997,6 @@
"villa": "Villa",
"create_new_lodging": "Nieuwe accommodatie",
"enter_lodging_name": "Voer een accommodatie in",
"enter_price": "De prijs binnenkomen",
"enter_reservation_number": "Voer het reserveringsnummer in",
"update_lodging_details": "Update Lodging -details"
},
@@ -1001,7 +1013,9 @@
"month": "Maand",
"today": "Vandaag",
"total_events": "Totale gebeurtenissen",
"week": "Week"
"week": "Week",
"event timezone": "Tijdzone van evenement",
"your timezone": "Jouw tijdzone"
},
"locations": {
"location": "Locatie",
@@ -1024,15 +1038,11 @@
"title": "Uitnodigen"
},
"strava": {
"account_connected": "Account verbonden",
"admin_setup_required": "De serverbeheerder moet het wereldwijd inschakelen",
"authorization_error": "Fout omleidend naar Strava Authorization URL",
"connect_account": "Verbind account",
"disconnect": "Loskoppelen",
"disconnect_error": "Fout bij het loskoppelen van Strava",
"disconnected": "Met succes losgekoppeld van Strava",
"not_configured": "Strava niet geconfigureerd",
"ready_to_connect": "Klaar om verbinding te maken",
"strava_integration_desc": "Maak verbinding met Strava om uw activties eenvoudig te importeren in locaties en bezoeken",
"gpx_required": "Upload het GPX -bestand om de strava -import te voltooien",
"not_enabled": "Strava -integratie is niet ingeschakeld in deze instantie."
@@ -1041,5 +1051,82 @@
"connected": "Succesvol verbonden met Wanderer",
"connection_error": "Fout die verbinding maakt met Wanderer",
"wanderer_integration_desc": "Maak verbinding met Wanderer om eenvoudig uw paden op locaties te importeren en te bekijken"
},
"collections": {
"all_items": "Alle artikelen",
"currencies": "Valuta's",
"currency": "Munteenheid",
"event_timezone": "Tijdzone van evenement",
"event_timezone_desc": "De tijdzone van de gebeurtenis gebruikt de tijdzone van de locatie of het item, indien beschikbaar. \nMijn tijdzone gebruikt",
"events": "evenementen",
"local_timezone": "Mijn tijdzone",
"no_calendar_events": "Voor deze collectie zijn nog geen bezoeken gepland.",
"no_priced_items": "Voeg prijzen toe aan locaties, accommodatie of vervoer om de reistotalen per valuta te bekijken.",
"not_found": "Collectie niet gevonden",
"statistics": "Statistieken",
"times_shown_in": "Tijden weergegeven in",
"trip_costs": "Reiskosten"
},
"common": {
"show_less": "Details verbergen",
"show_more": "Laat meer zien"
},
"currencies": {
"AED": "VAE Dirham",
"AUD": "Australische dollar",
"BRL": "Braziliaanse real",
"CAD": "Canadese dollar",
"CHF": "Zwitserse Frank",
"CNY": "Chinese Yuan",
"DKK": "Deense kroon",
"EUR": "Euro",
"GBP": "Brits pond",
"HKD": "Hong Kong-dollar",
"INR": "Indiase Roepie",
"JPY": "Japanse Yen",
"MXN": "Mexicaanse peso",
"NOK": "Noorse kroon",
"NZD": "Nieuw-Zeelandse dollar",
"SEK": "Zweedse kroon",
"SGD": "Singaporese dollar",
"TRY": "Turkse Lira",
"USD": "Amerikaanse dollar",
"ZAR": "Zuid-Afrikaanse rand",
"no_matches": "Geen overeenkomsten",
"search": "Zoek valuta",
"select_currency": "Selecteer valuta"
},
"itinerary": {
"add_description": "Beschrijving toevoegen",
"add_to_day": "Voeg toe aan dag",
"add_to_trip_context": "Voeg reiscontext toe",
"added_to_trip_context": "Toegevoegd aan reiscontext",
"auto_generate": "Automatisch genereren",
"auto_generate_itinerary": "Automatisch reisplan genereren",
"auto_generate_itinerary_desc": "Deze collectie bevat gedateerde items, maar nog geen reisroute. \nWilt u ze automatisch op datum ordenen?",
"change_day": "Verander de dag",
"drag_to_reorder": "Sleep om de volgorde te wijzigen",
"failed_to_add_to_trip_context": "Kan item niet toevoegen aan reiscontext",
"failed_to_move_to_trip_context": "Kan niet naar de reiscontext gaan",
"generating": "Genereren",
"item_already_in_trip_context": "Items die al in reiscontext staan",
"item_not_found": "Artikel niet gevonden",
"item_remove_error": "Fout bij verwijderen van item uit reisplan",
"item_remove_success": "Item verwijderd uit reisschema",
"link_existing_item": "Koppel bestaand artikel",
"move_to_trip_context": "Ga naar Reiscontext",
"moved_to_trip_context": "Verplaatst naar reiscontext",
"multi_day": "Meerdaags",
"no_itinerary_yet": "Nog geen reisplan",
"no_plans_for_day": "Geen plannen voor deze dag",
"no_trip_context_items": "Nog geen reiscontextitems.",
"remove_from_itinerary": "Verwijderen uit dag",
"remove_from_trip_context": "Verwijderen uit context",
"start_planning": "Begin met het plannen van uw reis door items aan specifieke dagen toe te voegen.",
"staying_overnight": "Overnachten",
"trip_context": "Reiscontext",
"trip_context_info": "Reiscontextitems zijn van toepassing op de hele reis, bijvoorbeeld locaties die de bestemming zelf vormen, algemene opmerkingen of paklijsten die belangrijk zijn voor de hele reis.",
"unscheduled_items": "Niet-geplande items",
"unscheduled_items_desc": "Deze items zijn gekoppeld aan deze reis, maar nog niet toegevoegd aan een specifieke dag."
}
}

View File

@@ -1,16 +1,11 @@
{
"navbar": {
"adventures": "Eventyr",
"collections": "Samlinger",
"worldtravel": "Verden",
"map": "Kart",
"users": "Brukere",
"search": "Søk",
"profile": "Profil",
"greeting": "Hei",
"my_adventures": "Mine Eventyr",
"my_tags": "Mine Tags",
"tag": "Tag",
"shared_with_me": "Delt med meg",
"settings": "Innstillinger",
"logout": "Logg ut",
@@ -32,16 +27,14 @@
"night": "Natt",
"northernLights": "Nordlys"
},
"navigation": "Navigasjon"
"navigation": "Navigasjon",
"worldtravel": "Verdensreise"
},
"about": {
"about": "Om",
"license": "Lisensiert under GPL-3.0-lisensen.",
"source_code": "Kildekode",
"message": "Laget med ❤️ i USA.",
"oss_attributions": "Open Source-attribusjoner",
"nominatim_1": "Stedsøk og geokoding leveres av",
"nominatim_2": "Deres data er lisensiert under ODbL-lisensen.",
"other_attributions": "Ytterligere attribusjoner finnes i README-filen.",
"close": "Lukk",
"generic_attributions": "Logg inn på Adventurelog for å se attribusjoner for aktiverte integrasjoner og tjenester.",
@@ -73,7 +66,6 @@
"start_your_journey": "Start reisen"
},
"adventures": {
"no_image_found": "Ingen bilde funnet",
"checklist_delete_confirm": "Er du sikker på at du vil slette denne sjekklisten? Denne handlingen kan ikke angres.",
"note_delete_confirm": "Er du sikker på at du vil slette dette notatet? Denne handlingen kan ikke angres.",
"transportation_delete_confirm": "Er du sikker på at du vil slette dette transportmiddelet? Denne handlingen kan ikke angres.",
@@ -83,7 +75,6 @@
"delete_transportation": "Slett transport",
"delete_lodging": "Slett overnatting",
"open_details": "Åpne detaljer",
"edit_adventure": "Rediger eventyr",
"remove_from_collection": "Fjern fra samling",
"add_to_collection": "Legg til i samling",
"delete": "Slett",
@@ -94,8 +85,6 @@
"visit": "Besøk",
"visits": "Besøk",
"create_new": "Opprett nytt...",
"adventure": "Eventyr",
"count_txt": "resultater som samsvarer med søket ditt",
"sort": "Sorter",
"order_by": "Sorter etter",
"order_direction": "Sorteringsretning",
@@ -104,50 +93,35 @@
"updated": "Oppdatert",
"name": "Navn",
"date": "Dato",
"activity_types": "Aktivitetstyper",
"tags": "Tags",
"add_a_tag": "Legg til en tag",
"date_constrain": "Begrens til samlingsdatoer",
"rating": "Vurdering",
"my_images": "Mine bilder",
"no_images": "Ingen bilder",
"copy_link": "Kopier lenke",
"image": "Bilde",
"upload_image": "Last opp bilde",
"open_in_maps": "Åpne i kart",
"url": "URL",
"fetch_image": "Hent bilde",
"wikipedia": "Wikipedia",
"add_notes": "Legg til notater",
"warning": "Advarsel",
"my_adventures": "Mine eventyr",
"no_linkable_adventures": "Ingen eventyr funnet som kan legges til denne samlingen.",
"add": "Legg til",
"save_next": "Lagre og fortsett",
"end_date": "Sluttdato",
"start_date": "Startdato",
"remove": "Fjern",
"location": "Plassering",
"search_for_location": "Søk etter sted",
"clear_map": "Tøm kart",
"search_results": "Søkeresultater",
"no_results": "Ingen resultater funnet",
"attachments": "Vedlegg",
"attachment": "Vedlegg",
"images": "Bilder",
"generate_desc": "Generer beskrivelse",
"location_information": "Plasseringsinformasjon",
"link": "Lenke",
"links": "Lenker",
"description": "Beskrivelse",
"sources": "Kilder",
"collection_adventures": "Inkluder eventyr i samlinger",
"filter": "Filter",
"category_filter": "Kategorifilter",
"category": "Kategori",
"clear": "Tøm",
"my_collections": "Mine samlinger",
"open_filters": "Åpne filtre",
"archived_collections": "Arkiverte samlinger",
"share": "Del",
"private": "Privat",
@@ -166,72 +140,40 @@
"planned": "Planlagt",
"duration": "Varighet",
"all": "Alle",
"image_removed_success": "Bilde ble fjernet!",
"image_removed_error": "Feil ved fjerning av bilde",
"no_image_url": "Finner ikke bilde på den oppgitte URL-en.",
"image_upload_success": "Bilde opplastet!",
"image_upload_error": "Feil ved opplasting av bilde",
"dates": "Datoer",
"wiki_image_error": "Feil ved henting av bilde fra Wikipedia",
"start_before_end_error": "Startdato må være før sluttdato",
"actions": "Handlinger",
"see_adventures": "Se eventyr",
"image_fetch_failed": "Kunne ikke hente bilde",
"no_location": "Vennligst angi et sted",
"no_description_found": "Fant ingen beskrivelse",
"lodging": "Overnatting",
"set_to_pin": "Fest",
"category_fetch_error": "Feil ved henting av kategorier",
"basic_information": "Grunnleggende informasjon",
"display_name": "Visningsnavn",
"adventure_not_found": "Det finnes ingen eventyr å vise. Legg til noen ved å trykke på plusstegnet nederst til høyre, eller prøv å endre filtre!",
"no_adventures_found": "Ingen eventyr funnet",
"mark_visited": "Merk som besøkt",
"error_updating_regions": "Feil ved oppdatering av regioner",
"regions_updated": "regioner oppdatert",
"cities_updated": "byer oppdatert",
"visited_region_check": "Sjekk besøkte regioner",
"visited_region_check_desc": "Ved å markere denne, vil serveren sjekke alle dine besøkte eventyr og markere regionene de befinner seg i som besøkt i verdensreiser.",
"update_visited_regions": "Oppdater besøkte regioner",
"update_visited_regions_disclaimer": "Dette kan ta litt tid avhengig av hvor mange eventyr du har besøkt.",
"link_new": "Lenk ny...",
"add_new": "Legg til ny...",
"transportation": "Transport",
"note": "Notat",
"checklist": "Sjekkliste",
"collection_archived": "Denne samlingen er arkivert.",
"visit_link": "Besøk lenke",
"collection_completed": "Du har fullført denne samlingen!",
"collection_stats": "Samlingsstatistikk",
"keep_exploring": "Fortsett å utforske!",
"linked_adventures": "Lenkede eventyr",
"notes": "Notater",
"checklists": "Sjekklister",
"transportations": "Transportmidler",
"adventure_calendar": "Eventyrkalender",
"day": "Dag",
"itineary_by_date": "Reiseplan etter dato",
"nothing_planned": "Ingenting planlagt denne dagen. Nyt reisen!",
"copied_to_clipboard": "Kopiert til utklippstavlen!",
"copy_failed": "Kopiering mislyktes",
"show": "Vis",
"hide": "Skjul",
"clear_location": "Fjern sted",
"starting_airport": "Avreiseflyplass",
"ending_airport": "Ankomsflyplass",
"no_location_found": "Ingen sted funnet",
"from": "Fra",
"to": "Til",
"start": "Start",
"end": "Slutt",
"emoji_picker": "Emoji-velger",
"download_calendar": "Last ned kalender",
"date_information": "Dato-informasjon",
"flight_information": "Flyinformasjon",
"out_of_range": "Ikke i reiseplandatoer",
"preview": "Forhåndsvisning",
"finding_recommendations": "Oppdager skjulte perler for ditt neste eventyr",
"location_details": "Stedsdetaljer",
"city": "By",
"region": "Region",
"md_instructions": "Skriv markdown her...",
@@ -240,25 +182,15 @@
"attachment_upload_error": "Feil ved opplasting av vedlegg",
"upload": "Last opp",
"attachment_delete_success": "Vedlegg slettet!",
"attachment_update_success": "Vedlegg oppdatert!",
"attachment_name": "Vedleggsnavn",
"gpx_tip": "Last opp GPX-filer i vedlegg for å se dem på kartet!",
"attachment_update_error": "Feil ved oppdatering av vedlegg",
"lodging_information": "Overnattingsinformasjon",
"price": "Pris",
"reservation_number": "Reservasjonsnummer",
"all_day": "Hele dagen",
"collection_no_start_end_date": "Å legge til en start- og sluttdato til samlingen vil låse opp reiseruteplanleggingsfunksjoner på innsamlingssiden.",
"date_itinerary": "Dato reiserute",
"invalid_date_range": "Ugyldig datoområde",
"no_ordered_items": "Legg til varer med datoer i samlingen for å se dem her.",
"ordered_itinerary": "Bestilt reiserute",
"timezone": "Tidssone",
"no_visits": "Ingen besøk",
"arrival_timezone": "Ankomst tidssone",
"departure_timezone": "Avgangstidssone",
"arrival_date": "Ankomstdato",
"departure_date": "Avgangsdato",
"coordinates": "Koordinater",
"copy_coordinates": "Kopier koordinater",
"sun_times": "Soltider",
@@ -266,7 +198,6 @@
"sunset": "Solnedgang",
"timed": "Tidsbestemt",
"distance": "Avstand",
"all_linked_items": "Alle koblede varer",
"itinerary": "Reiserute",
"joined": "Ble med",
"view_profile": "Vis profil",
@@ -275,15 +206,11 @@
"filters_and_stats": "Filtre",
"no_adventures_message": "Begynn å dokumentere eventyrene dine og planlegge nye. \nHver reise har en historie som er verdt å fortelle.",
"travel_progress": "Reisefremgang",
"adventures_available": "Eventyr tilgjengelig",
"all_adventures_already_linked": "Alle eventyr er allerede knyttet til denne samlingen.",
"collections_linked": "Samlinger koblet",
"create_collection_first": "Lag en samling først for å organisere dine eventyr og minner.",
"delete_collection_warning": "Er du sikker på at du vil slette denne samlingen? \nDenne handlingen kan ikke angres.",
"done": "Ferdig",
"loading_adventures": "Laster opp eventyr ...",
"name_location": "Navn, plassering",
"collection_contents": "Samlingsinnhold",
"check_in": "Sjekk inn",
"check_out": "Sjekk ut",
"collection_link_location_error": "Feil koblingssted til samling",
@@ -294,22 +221,14 @@
"create_location": "Skape sted",
"delete_location": "Slett plassering",
"edit_location": "Rediger plassering",
"location_create_error": "Kunne ikke skape sted",
"location_created": "Plassering opprettet",
"location_delete_confirm": "Er du sikker på at du vil slette dette stedet? \nDenne handlingen kan ikke angres.",
"location_delete_success": "Plassering slettet vellykket!",
"location_not_found": "Plasseringen ikke funnet",
"location_not_found_desc": "Plasseringen du lette etter ble ikke funnet. \nPrøv et annet sted eller sjekk tilbake senere.",
"location_update_error": "Kunne ikke oppdatere plasseringen",
"location_updated": "Plassering oppdatert",
"new_location": "Ny beliggenhet",
"no_collections_to_add_location": "Ingen samlinger funnet å legge dette stedet til.",
"no_locations_to_recommendations": "Ingen steder funnet. \nLegg til minst ett sted for å få anbefalinger.",
"public_location": "Offentlig beliggenhet",
"share_location": "Del dette stedet!",
"visit_calendar": "Besøk kalenderen",
"wiki_location_desc": "Trekker utdrag fra Wikipedia -artikkelen som samsvarer med navnet på stedet.",
"will_be_marked_location": "vil bli merket som besøkt når stedet er lagret.",
"no_locations_found": "Ingen steder funnet",
"image_modal_navigate": "Bruk piltastene eller klikk for å navigere",
"details": "Detaljer",
@@ -321,7 +240,6 @@
"quick_start": "Rask start",
"achievements": "Prestasjoner",
"active_duration": "Aktiv varighet",
"activities_name": "Aktiviteter",
"activity_name": "Aktivitetsnavn",
"activity_name_placeholder": "Morgenløp",
"activity_name_required": "Aktivitetsnavn er påkrevd",
@@ -413,13 +331,11 @@
"select_on_map": "Velg på MAP",
"select_wanderer_trail": "Velg en sti fra Wanderer -kontoen din",
"sport_type": "Sportstype",
"sport_type_placeholder": "Løypekjøring",
"start_lat": "Start breddegrad",
"start_lng": "Start lengdegrad",
"strava_activities_during_visit": "Strava -aktiviteter under besøket",
"strava_activity_ready": "Strava -aktivitet klar",
"time": "Tid",
"total_covered": "Total dekket",
"total_recorded": "Totalt registrert",
"trail": "Sti",
"trail_created_successfully": "Løype opprettet med hell",
@@ -456,19 +372,7 @@
"low": "Lav",
"rest": "Hvile",
"total": "Total",
"attachment_removed_error": "Feil fjerning av vedlegg",
"attachment_removed_success": "Vedlegget fjernet suksessfullt",
"attachments_upload_info": "Vedlegg vil bli lastet opp etter å ha lagret",
"image_upload_info": "Bilder blir lastet opp etter å ha lagret",
"linked_locations": "Koblede steder",
"lodging_save_error": "Feil lagring av losji",
"my_attachments": "Mine vedlegg",
"no_attachments": "Ingen vedlegg",
"no_attachments_desc": "Last opp filer for å komme i gang",
"no_images_desc": "Last opp bilder for å komme i gang",
"route_map": "Rutekart",
"selected_attachments": "Utvalgte vedlegg",
"selected_images": "Utvalgte bilder",
"activities_text": "aktiviteter",
"activity_breakdown_by_category": "Aktivitetsfordeling etter kategori",
"distance_covered": "Avstand dekket",
@@ -477,17 +381,112 @@
"total_climbed": "Totalt klatret",
"total_distance": "Total avstand",
"dates_not_saved": "Besøk ikke lagt til ennå",
"dates_not_saved_description": "Klikk Legg til besøk for å lagre"
"dates_not_saved_description": "Klikk Legg til besøk for å lagre",
"active_days": "Aktive dager",
"add_here": "Legg til her",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Flyplasssøkemodus",
"all_locations_already_linked": "Alle steder er allerede knyttet til denne samlingen.",
"arrival_airport": "Ankomst flyplass",
"avg_rating": "Gjennomsnittlig vurdering",
"burned": "brent",
"categories": "Kategorier",
"cities": "Byer",
"clear_search": "Tøm søk",
"click_map_add_marker": "Klikk på kartet for å slippe en markør, og legg den til her.",
"completed": "Fullført",
"content_media": "Innhold",
"countries": "Land",
"country": "land",
"departure_airport": "Avreise flyplass",
"distance_traveled": "Tilbakelagt avstand",
"end_location": "Sluttsted",
"enter_location_display_name": "Skriv inn stedsvisningsnavn",
"files": "Filer",
"flight": "Flyvning",
"folder": "Mappe",
"folder_view": "Mappevisning - viser alle data",
"footprints": "Fotspor",
"gained": "vunnet",
"geographic_breakdown": "Geografisk fordeling",
"gpx_routes": "GPX-ruter",
"hide_filters": "Skjul filtre",
"images_captured": "Bilder tatt",
"in": "i",
"in_progress": "Pågår",
"items": "gjenstander",
"itinerary_link_modal": {
"add_here": "Legg til her",
"add_here_keep_date": "Legg til (Behold dato)",
"add_to_itinerary": "Legg til reiserute",
"already_added": "Allerede lagt til",
"already_added_on_this_day": "Allerede lagt til denne dagen",
"already_added_on_this_day_desc": "Disse elementene er allerede planlagt denne dagen.",
"already_added_other_days": "Allerede lagt til andre dager",
"already_added_other_days_desc": "Disse elementene er planlagt på forskjellige datoer. \nHvis du legger dem til her, oppdateres datoen eller legge dem til som de er.",
"items_available": "{count} elementer tilgjengelig for kobling",
"items_on_other_days": "Varer på andre dager",
"items_on_other_days_desc": "Disse elementene har forskjellige datoer. \nDu kan legge dem til og eventuelt oppdatere datoen for å matche.",
"items_on_this_day": "Varer på denne dagen",
"no_unscheduled_items": "Ingen uplanlagte varer tilgjengelig",
"no_unscheduled_items_desc": "Alle elementer er lagt til i reiseruten eller det er ingen elementer å legge til.",
"title": "Koble elementer til {date}"
},
"link_copied": "Link kopiert",
"lists": "Lister",
"location_search_mode": "Stedssøkemodus",
"locations_visited": "Besøkte steder",
"lodging_not_found": "Overnatting ikke funnet",
"lodging_types": "Overnattingstyper",
"more_details": "Flere detaljer",
"my_locations": "Mine plasseringer",
"nights": "Netter",
"no_linkable_locations": "Fant ingen steder som kan kobles til denne samlingen.",
"of_locations": "av lokasjoner",
"on_this_trip": "På denne turen",
"overnight": "Over natten",
"physical_activities": "Fysiske aktiviteter",
"pins": "pinner",
"places": "Steder",
"regions": "Regioner",
"reservation": "Reservasjon",
"reset_filters": "Tilbakestill",
"route": "Rute",
"route_selected": "Rute valgt",
"routes_and_activities": "Ruter",
"saving": "Lagrer",
"search_end_location": "Søk sluttsted",
"search_start_end_locations": "Søk start- og sluttplasseringer",
"search_start_location": "Søk startsted",
"segments": "Segmenter",
"select": "Velge",
"show_filters": "Vis filtre",
"start_location": "Startsted",
"status_filter": "Statusfilter",
"stays": "Opphold",
"tasks_done": "Oppgaver utført",
"total_days": "Totalt antall dager",
"total_visits": "Totalt antall besøk",
"transport_activity_paths": "Transportere",
"transportation_gpx_tip": "Last opp GPX-filer her for å få dem vist på kartet",
"traveled": "reiste",
"travelers": "Reisende",
"trip_timeline": "Turens tidslinje",
"trip_window": "Turvindu",
"upcoming": "Kommende",
"view": "Utsikt",
"wiki_results_found": "Wikipedia-resultater",
"with_activities": "Med aktiviteter",
"written": "Skrevet",
"export_failed": "Eksporten mislyktes",
"export_success": "Eksportert samling",
"export_zip": "Eksporter ZIP",
"import_failed": "Import mislyktes",
"import_from_file": "Importer fra fil",
"import_success": "Import suksess"
},
"worldtravel": {
"country_list": "Liste over land",
"num_countries": "land funnet",
"all": "Alle",
"partially_visited": "Delvis besøkt",
"not_visited": "Ikke besøkt",
"completely_visited": "Fullstendig besøkt",
"all_subregions": "Alle underregioner",
"clear_search": "Tøm søk",
"no_countries_found": "Ingen land funnet",
"view_cities": "Vis byer",
"no_cities_found": "Ingen byer funnet",
@@ -529,11 +528,6 @@
"total_cities": "Totalt byer",
"total_countries": "Totalt land",
"total_regions": "Totale regioner",
"newest_first": "Nyeste først",
"oldest_first": "Eldste først",
"unvisited_first": "Uvisitert først",
"visited_first": "Besøkte først",
"total_items": "Totalt gjenstander",
"getting_location_details": "Få stedsdetaljer",
"cities_available": "Byer tilgjengelig",
"destination_revealed": "Destinasjon avslørt!",
@@ -553,7 +547,8 @@
"about_country": "Om landet",
"about_region": "Om regionen",
"show_less": "Vis mindre",
"show_more": "Vis mer"
"show_more": "Vis mer",
"all_locations_visited": "Alle steder besøkt!"
},
"auth": {
"username": "Brukernavn",
@@ -569,7 +564,6 @@
"registration_disabled": "Registrering er for øyeblikket deaktivert.",
"profile_picture": "Profilbilde",
"public_profile": "Offentlig profil",
"public_tooltip": "Med en offentlig profil kan brukere dele samlinger med deg og se profilen din på brukersiden.",
"new_password": "Nytt passord (6+ tegn)",
"or_3rd_party": "Eller logg inn med en tredjepartstjeneste",
"no_public_collections": "Ingen offentlige samlinger funnet",
@@ -579,7 +573,8 @@
"enter_password": "Skriv inn passordet ditt",
"enter_username": "Skriv inn brukernavnet ditt",
"logging_in": "Logger inn",
"totp": "To-faktorkode"
"totp": "To-faktorkode",
"user_email_verification_required": "E-postbekreftelse kreves. \nVennligst sjekk e-posten din for en bekreftelseslenke."
},
"users": {
"no_users_found": "Ingen brukere med offentlig profil funnet."
@@ -749,7 +744,21 @@
"shared_collections": "Delte samlinger",
"available": "Tilgjengelig",
"linked": "Koblet",
"try_different_search": "Prøv et annet søk eller filter."
"try_different_search": "Prøv et annet søk eller filter.",
"changing_date_title": "Endring av datoer vil påvirke reiseruteelementer",
"changing_date_warning": "Eventuelle reiseruter utenfor den nye datoperioden vil bli fjernet fra reiseruten og plassert tilbake i samlingens udaterte elementer.",
"clear_cover": "Gjennomsiktig deksel",
"collaborators": "Samarbeidspartnere",
"cover": "Dekke",
"cover_image": "Forsidebilde",
"cover_image_hint": "Velg et omslag fra bildene i denne samlingen.",
"create_new_collection": "Opprett ny samling",
"enter_collection_name": "Skriv inn samlingens navn",
"location_primary": "Plasseringsdeksel",
"no_images_available": "Ingen bilder tilgjengelig fra tilknyttede steder ennå.",
"public_collection_description": "Tillat alle med linken å se",
"set_cover": "Sett deksel",
"update_collection_details": "Oppdater samlingsdetaljer"
},
"notes": {
"note_deleted": "Notat slettet!",
@@ -762,7 +771,6 @@
"content": "Innhold",
"save": "Lagre",
"note_public": "Dette notatet er offentlig fordi det er i en offentlig samling.",
"add_a_link": "Legg til en lenke",
"invalid_url": "Ugyldig URL",
"create_new_note": "Lag ny merknad",
"enter_note_title": "Skriv inn notattittel",
@@ -799,9 +807,6 @@
"flight_number": "Flynummer",
"from_location": "Fra sted",
"to_location": "Til sted",
"fetch_location_information": "Hent stedsinformasjon",
"starting_airport_desc": "Skriv inn avreiseflyplasskode (f.eks. JFK)",
"ending_airport_desc": "Skriv inn ankomsflyplasskode (f.eks. LAX)",
"edit": "Rediger",
"modes": {
"car": "Bil",
@@ -821,7 +826,13 @@
"enter_to_location": "Gå til stedet",
"enter_transportation_name": "Skriv inn transportnavn",
"select_type": "Velg Type",
"update_transportation_details": "Oppdater transportdetaljer"
"update_transportation_details": "Oppdater transportdetaljer",
"arrival_code": "Ankomstkode",
"arrival_date": "Ankomstdato",
"arrival_timezone": "Tidssone for ankomst",
"departure_code": "Avreisekode",
"departure_date": "Avreisedato",
"departure_timezone": "Tidssone for avgang"
},
"lodging": {
"new_lodging": "Ny overnatting",
@@ -841,14 +852,10 @@
"reservation_number": "Reservasjonsnummer",
"create_new_lodging": "Ny losji",
"enter_lodging_name": "Skriv inn losji -navn",
"enter_price": "Angi pris",
"enter_reservation_number": "Angi reservasjonsnummer",
"update_lodging_details": "Oppdater innleveringsdetaljer"
},
"search": {
"adventurelog_results": "AdventureLog-resultater",
"public_adventures": "Offentlige eventyr",
"online_results": "Nettresultater",
"cities": "Byer",
"countries": "Land",
"found": "funnet",
@@ -858,12 +865,7 @@
},
"map": {
"view_details": "Vis detaljer",
"adventure_map": "Eventyrkart",
"map_options": "Kartalternativer",
"show_visited_regions": "Vis besøkte regioner",
"add_adventure_at_marker": "Legg til nytt eventyr ved markøren",
"clear_marker": "Fjern markør",
"add_adventure": "Legg til nytt eventyr",
"adventure_stats": "Eventyrstatistikk",
"completion": "Fullføring",
"display_options": "Vis alternativer",
@@ -875,8 +877,8 @@
"location_map": "Stedskart",
"locations_shown": "steder vist",
"place_marker_desc_location": "Klikk på kartet for å plassere en markør.",
"show_activities": "Vis aktiviteter",
"show_visited_cities": "Besøkte byer"
"show_visited_cities": "Besøkte byer",
"search_locations": "Søk etter steder..."
},
"share": {
"shared": "Delt",
@@ -885,10 +887,6 @@
"share_desc": "Del denne samlingen med andre brukere.",
"shared_with": "Delt med",
"no_users_shared": "Ingen brukere delt med",
"not_shared_with": "Ikke delt med",
"no_shared_found": "Ingen samlinger funnet som er delt med deg.",
"set_public": "For å la brukere dele med deg, må profilen din være offentlig.",
"go_to_settings": "Gå til innstillinger",
"available": "Tilgjengelig",
"pending": "I påvente av",
"revoke_invite": "Revoke Inviter",
@@ -902,7 +900,6 @@
},
"profile": {
"member_since": "Medlem siden",
"user_stats": "Brukerstatistikk",
"visited_countries": "Besøkte land",
"visited_regions": "Besøkte regioner",
"visited_cities": "Besøkte byer",
@@ -934,7 +931,6 @@
"total_visited_cities": "Totalt antall besøkte byer",
"recent_adventures": "Nylige eventyr",
"no_recent_adventures": "Ingen nylige eventyr?",
"add_some": "Hvorfor ikke begynne å planlegge ditt neste eventyr? Du kan legge til et nytt eventyr ved å klikke på knappen nedenfor.",
"document_some_adventures": "Begynn å dokumentere dine reiser og bygg ditt personlige eventyrkart!",
"view_all": "Se alle",
"welcome_text_1": "Du har vært på",
@@ -975,16 +971,34 @@
"loading_albums": "Laster inn album",
"no_images": "Ingen bilder funnet",
"select_album": "Velg album",
"select_album_first": "Velg et album først",
"select_date": "Velg dato",
"try_different_date": "Prøv en annen dato"
},
"recomendations": {
"recommendation": "Anbefaling",
"recommendations": "Anbefalinger",
"food": "Mat",
"tourism": "Turisme",
"location_recommendations": "Stedsanbefalinger"
"any": "Noen",
"average_rating": "Gjennomsnittlig vurdering",
"discover_places": "Oppdag steder",
"lodging": "Hoteller",
"map_view": "Kartvisning",
"minimum_rating": "Minimumsvurdering",
"minimum_reviews": "Minimum anmeldelser",
"no_results_yet": "Ingen resultater ennå",
"open_now_only": "Åpne kun nå",
"search_around_location": "Søk rundt plassering",
"search_by_address": "Søk på adresse",
"search_radius_label": "Søkeradius:",
"searching": "Søker...",
"select_location_or_query": "Velg et sted eller skriv inn et søkeord for å oppdage fantastiske steder i nærheten!",
"total_results": "Totale resultater",
"use_search_instead": "Bruk søk i stedet",
"add_location": "Legg til plassering",
"add_lodging": "Legg til overnatting",
"away": "borte",
"hours": "Timer",
"open": "Åpne",
"your_location": "Din plassering"
},
"google_maps": {
"google_maps_integration_desc": "Koble til Google Maps-kontoen din for å få søkeresultater og anbefalinger av høy kvalitet.",
@@ -999,7 +1013,9 @@
"month": "Måned",
"today": "I dag",
"total_events": "Total hendelser",
"week": "Uke"
"week": "Uke",
"event timezone": "Tidssone for hendelsen",
"your timezone": "Din tidssone"
},
"locations": {
"location": "Sted",
@@ -1022,15 +1038,11 @@
"title": "Inviterer"
},
"strava": {
"account_connected": "Konto tilkoblet",
"admin_setup_required": "Serveradministratoren må aktivere den globalt",
"authorization_error": "Feil omdirigere til URL -URL for Strava",
"connect_account": "Koble til konto",
"disconnect": "Frakople",
"disconnect_error": "Feil fra å koble fra Strava",
"disconnected": "Vellykket koblet fra Strava",
"not_configured": "Strava ikke konfigurert",
"ready_to_connect": "Klar til å koble til",
"strava_integration_desc": "Koble til Strava for enkelt å importere aktivitetene dine til steder og besøk",
"gpx_required": "Last opp GPX -filen for å fullføre Strava -importen",
"not_enabled": "Strava -integrasjon er ikke aktivert på denne forekomsten."
@@ -1039,5 +1051,82 @@
"connected": "Vellykket koblet til vandrer",
"connection_error": "Feil tilkobling til vandrer",
"wanderer_integration_desc": "Koble til Wanderer for enkelt å importere og se løypene dine på steder"
},
"collections": {
"all_items": "Alle varer",
"currencies": "Valutaer",
"currency": "Valuta",
"event_timezone": "Tidssone for hendelsen",
"event_timezone_desc": "Tidssonen for hendelsen bruker tidssonen for stedet eller elementet når det er tilgjengelig. \nTidssonen min bruker",
"events": "hendelser",
"local_timezone": "Min tidssone",
"no_calendar_events": "Ingen besøk er planlagt for denne samlingen ennå.",
"no_priced_items": "Legg til priser på steder, overnatting eller transport for å se reisetotaler etter valuta.",
"not_found": "Finner ikke samlingen",
"statistics": "Statistikk",
"times_shown_in": "Tider vist i",
"trip_costs": "Reisekostnader"
},
"common": {
"show_less": "Skjul detaljer",
"show_more": "Vis mer"
},
"currencies": {
"AED": "UAE Dirham",
"AUD": "australske dollar",
"BRL": "Brasiliansk real",
"CAD": "kanadiske dollar",
"CHF": "sveitsiske franc",
"CNY": "kinesisk yuan",
"DKK": "danske kroner",
"EUR": "Euro",
"GBP": "britiske pund",
"HKD": "Hong Kong Dollar",
"INR": "Indisk Rupee",
"JPY": "japansk yen",
"MXN": "meksikansk peso",
"NOK": "Norske kroner",
"NZD": "New Zealand Dollar",
"SEK": "svenske kroner",
"SGD": "Singapore dollar",
"TRY": "tyrkiske lira",
"USD": "amerikanske dollar",
"ZAR": "sørafrikansk rand",
"no_matches": "Ingen treff",
"search": "Søk valuta",
"select_currency": "Velg valuta"
},
"itinerary": {
"add_description": "Legg til beskrivelse",
"add_to_day": "Legg til dag",
"add_to_trip_context": "Legg til turkontekst",
"added_to_trip_context": "Lagt til turkontekst",
"auto_generate": "Auto-generer",
"auto_generate_itinerary": "Autogenerer reiserute",
"auto_generate_itinerary_desc": "Denne samlingen har daterte elementer, men ingen reiserute ennå. \nVil du automatisk organisere dem etter dato?",
"change_day": "Byttedag",
"drag_to_reorder": "Dra for å omorganisere",
"failed_to_add_to_trip_context": "Kunne ikke legge til elementet i turkonteksten",
"failed_to_move_to_trip_context": "Kunne ikke flytte til turkontekst",
"generating": "Genererer",
"item_already_in_trip_context": "Elementer som allerede er i reisesammenheng",
"item_not_found": "Varen ble ikke funnet",
"item_remove_error": "Feil under fjerning av element fra reiseruten",
"item_remove_success": "Element fjernet fra reiseruten",
"link_existing_item": "Koble til eksisterende element",
"move_to_trip_context": "Flytt til turkontekst",
"moved_to_trip_context": "Flyttet til tursammenheng",
"multi_day": "Flerdagers",
"no_itinerary_yet": "Ingen reiserute ennå",
"no_plans_for_day": "Ingen planer for denne dagen",
"no_trip_context_items": "Ingen reisekontekstelementer ennå.",
"remove_from_itinerary": "Fjern fra dag",
"remove_from_trip_context": "Fjern fra kontekst",
"start_planning": "Begynn å planlegge reisen ved å legge til varer på bestemte dager.",
"staying_overnight": "Overnatter",
"trip_context": "Turkontekst",
"trip_context_info": "Turkontekstelementer gjelder for hele turen for eksempel steder som er selve destinasjonen, generelle notater eller pakkelister som er viktige for hele turen.",
"unscheduled_items": "Ikke-planlagte elementer",
"unscheduled_items_desc": "Disse elementene er knyttet til denne turen, men har ikke blitt lagt til en bestemt dag ennå."
}
}

View File

@@ -1,16 +1,11 @@
{
"navbar": {
"adventures": "Podróże",
"collections": "Kolekcje",
"worldtravel": "Podróże po świecie",
"map": "Mapa",
"users": "Użytkownicy",
"search": "Szukaj",
"profile": "Profil",
"greeting": "Cześć",
"my_adventures": "Moje podróże",
"my_tags": "Moje tagi",
"tag": "Tag",
"shared_with_me": "Udostępnione ze mną",
"settings": "Ustawienia",
"logout": "Wyloguj się",
@@ -32,16 +27,14 @@
},
"calendar": "Kalendarz",
"admin_panel": "Panel administracyjny",
"navigation": "Nawigacja"
"navigation": "Nawigacja",
"worldtravel": "Światowa podróż"
},
"about": {
"about": "O aplikacji",
"license": "Licencjonowane na licencji GPL-3.0.",
"source_code": "Kod źródłowy",
"message": "Stworzone z ❤️ w Stanach Zjednoczonych.",
"oss_attributions": "Atrybucje Open Source",
"nominatim_1": "Wyszukiwanie lokalizacji i geokodowanie zapewnia",
"nominatim_2": "Ich dane są licencjonowane na licencji ODbL.",
"other_attributions": "Dodatkowe atrybucje można znaleźć w pliku README.",
"close": "Zamknij",
"generic_attributions": "Zaloguj się do Adventurelog, aby wyświetlić atrybucje dla włączonych integracji i usług.",
@@ -73,9 +66,7 @@
"start_your_journey": "Rozpocznij swoją podróż"
},
"adventures": {
"no_image_found": "Nie znaleziono obrazu",
"open_details": "Otwórz szczegóły",
"edit_adventure": "Edytuj podróż",
"remove_from_collection": "Usuń z kolekcji",
"add_to_collection": "Dodaj do kolekcji",
"delete": "Usuń",
@@ -86,8 +77,6 @@
"visit": "Odwiedź",
"visits": "Odwiedziny",
"create_new": "Utwórz nową...",
"adventure": "Podróż",
"count_txt": "wyniki pasujące do Twojego wyszukiwania",
"sort": "Sortuj",
"order_by": "Sortuj według",
"order_direction": "Kierunek sortowania",
@@ -96,46 +85,31 @@
"updated": "Zaktualizowano",
"name": "Nazwa",
"date": "Data",
"activity_types": "Rodzaje aktywności",
"tags": "Tagi",
"add_a_tag": "Dodaj tag",
"date_constrain": "Ogranicz do dat kolekcji",
"rating": "Ocena",
"my_images": "Moje obrazy",
"no_images": "Brak obrazów",
"copy_link": "Kopiuj link",
"image": "Obraz",
"upload_image": "Prześlij obraz",
"url": "URL",
"fetch_image": "Pobierz obraz",
"wikipedia": "Wikipedia",
"add_notes": "Dodaj notatki",
"warning": "Ostrzeżenie",
"my_adventures": "Moje podróże",
"no_linkable_adventures": "Nie znaleziono podróży, które można połączyć z tą kolekcją.",
"add": "Dodaj",
"save_next": "Zapisz i następny",
"end_date": "Data zakończenia",
"start_date": "Data rozpoczęcia",
"remove": "Usuń",
"location": "Lokalizacja",
"search_for_location": "Szukaj lokalizacji",
"clear_map": "Wyczyść mapę",
"search_results": "Wyniki wyszukiwania",
"no_results": "Nie znaleziono wyników",
"generate_desc": "Generuj opis",
"location_information": "Informacje o lokalizacji",
"link": "Link",
"links": "Linki",
"description": "Opis",
"sources": "Źródła",
"collection_adventures": "Uwzględnij podróże z kolekcji",
"filter": "Filtr",
"category_filter": "Filtr kategorii",
"category": "Kategoria",
"clear": "Wyczyść",
"my_collections": "Moje kolekcje",
"open_filters": "Otwórz filtry",
"archived_collections": "Zarchiwizowane kolekcje",
"share": "Podziel się",
"private": "Prywatne",
@@ -154,83 +128,51 @@
"planned": "Planowana",
"duration": "Czas trwania",
"all": "Wszystkie",
"image_removed_success": "Obraz został pomyślnie usunięty!",
"image_removed_error": "Błąd podczas usuwania obrazu",
"no_image_url": "Nie znaleziono obrazu pod tym URL.",
"image_upload_success": "Obraz został pomyślnie przesłany!",
"image_upload_error": "Błąd podczas przesyłania obrazu",
"dates": "Daty",
"wiki_image_error": "Błąd podczas pobierania obrazu z Wikipedii",
"start_before_end_error": "Data rozpoczęcia musi być przed datą zakończenia",
"actions": "Akcje",
"see_adventures": "Zobacz podróże",
"image_fetch_failed": "Nie udało się pobrać obrazu",
"no_location": "Proszę podać lokalizację",
"no_description_found": "Nie znaleziono opisu",
"set_to_pin": "Ustaw jako przypiętą",
"category_fetch_error": "Błąd podczas pobierania kategorii",
"basic_information": "Podstawowe informacje",
"adventure_not_found": "Brak podróży do wyświetlenia. Dodaj je za pomocą przycisku plus w prawym dolnym rogu lub spróbuj zmienić filtry!",
"no_adventures_found": "Brak podróży",
"mark_visited": "Oznacz jako odwiedzone",
"error_updating_regions": "Błąd podczas aktualizacji regionów",
"regions_updated": "Regiony zaktualizowane",
"visited_region_check": "Sprawdzenie odwiedzonych regionów",
"visited_region_check_desc": "Wybierając tę opcję, serwer sprawdzi wszystkie Twoje odwiedzone miejsca i oznaczy regiony, w których się znajdują, jako odwiedzone w podróży po świecie.",
"update_visited_regions": "Aktualizuj odwiedzone regiony",
"update_visited_regions_disclaimer": "Może to potrwać, w zależności od liczby odwiedzonych miejsc.",
"link_new": "Powiąż nową...",
"add_new": "Dodaj nową...",
"transportation": "Transport",
"note": "Notatka",
"checklist": "Lista kontrolna",
"collection_archived": "Ta kolekcja została zarchiwizowana.",
"visit_link": "Link do podróży",
"collection_completed": "Zakończyłeś tę kolekcję!",
"collection_stats": "Statystyki kolekcji",
"keep_exploring": "Kontynuuj odkrywanie!",
"linked_adventures": "Powiązane podróże",
"notes": "Notatki",
"checklists": "Listy kontrolne",
"transportations": "Transport",
"day": "Dzień",
"itineary_by_date": "Plan podróży według daty",
"nothing_planned": "Nic nie zaplanowane na ten dzień. Ciesz się podróżą!",
"days": "dni",
"activities": {},
"copied_to_clipboard": "Skopiowano do schowka!",
"copy_failed": "Kopiowanie nie powiodło się",
"adventure_calendar": "Kalendarz przygód",
"emoji_picker": "Wybór emoji",
"hide": "Ukrywać",
"show": "Pokazywać",
"download_calendar": "Pobierz Kalendarz",
"md_instructions": "Napisz tutaj swoją przecenę...",
"preview": "Zapowiedź",
"checklist_delete_confirm": "Czy na pewno chcesz usunąć tę listę kontrolną? \nTej akcji nie można cofnąć.",
"clear_location": "Wyczyść lokalizację",
"date_information": "Informacje o dacie",
"delete_checklist": "Usuń listę kontrolną",
"delete_note": "Usuń notatkę",
"delete_transportation": "Usuń transport",
"end": "Koniec",
"ending_airport": "Kończy się lotnisko",
"flight_information": "Informacje o locie",
"from": "Z",
"no_location_found": "Nie znaleziono lokalizacji",
"note_delete_confirm": "Czy na pewno chcesz usunąć tę notatkę? \nTej akcji nie można cofnąć.",
"out_of_range": "Nie mieści się w zakresie dat planu podróży",
"start": "Start",
"starting_airport": "Początkowe lotnisko",
"to": "Do",
"transportation_delete_confirm": "Czy na pewno chcesz usunąć ten transport? \nTej akcji nie można cofnąć.",
"cities_updated": "miasta zaktualizowane",
"finding_recommendations": "Odkrywanie ukrytych klejnotów na następną przygodę",
"attachment": "Załącznik",
"attachment_delete_success": "Załącznik został pomyślnie usunięty!",
"attachment_name": "Nazwa załącznika",
"attachment_update_error": "Błąd podczas aktualizacji załącznika",
"attachment_update_success": "Załącznik został pomyślnie zaktualizowany!",
"attachment_upload_error": "Błąd podczas przesyłania załącznika",
"attachment_upload_success": "Załącznik przesłany pomyślnie!",
"attachments": "Załączniki",
@@ -239,27 +181,16 @@
"upload": "Wgrywać",
"city": "Miasto",
"delete_lodging": "Usunąć zakwaterowanie",
"display_name": "Nazwa wyświetlania",
"location_details": "Szczegóły lokalizacji",
"lodging": "Kwatera",
"lodging_delete_confirm": "Czy na pewno chcesz usunąć tę lokalizację zakwaterowania? \nTego działania nie można cofnąć.",
"lodging_information": "Informacje o zakwaterowaniu",
"price": "Cena",
"region": "Region",
"reservation_number": "Numer rezerwacji",
"open_in_maps": "Otwarte w mapach",
"all_day": "Cały dzień",
"collection_no_start_end_date": "Dodanie daty rozpoczęcia i końca do kolekcji odblokuje funkcje planowania planu podróży na stronie kolekcji.",
"date_itinerary": "Trasa daty",
"no_ordered_items": "Dodaj przedmioty z datami do kolekcji, aby je zobaczyć tutaj.",
"ordered_itinerary": "Zamówiono trasę",
"invalid_date_range": "Niepoprawny zakres dat",
"timezone": "Strefa czasowa",
"no_visits": "Brak wizyt",
"arrival_timezone": "Strefa czasowa przyjazdu",
"departure_timezone": "Strefa czasowa odlotu",
"arrival_date": "Data przyjazdu",
"departure_date": "Data wyjazdu",
"coordinates": "Współrzędne",
"copy_coordinates": "Kopiuj współrzędne",
"sun_times": "Czasy słońca",
@@ -267,7 +198,6 @@
"sunset": "Zachód słońca",
"timed": "Czas",
"distance": "Dystans",
"all_linked_items": "Wszystkie połączone elementy",
"itinerary": "Trasa",
"joined": "Dołączył",
"view_profile": "Zobacz profil",
@@ -276,15 +206,11 @@
"filters_and_stats": "Filtry",
"no_adventures_message": "Zacznij dokumentować swoje przygody i planować nowe. \nKażda podróż ma historię, którą warto opowiedzieć.",
"travel_progress": "Postęp podróży",
"adventures_available": "Dostępne przygody",
"all_adventures_already_linked": "Wszystkie przygody są już powiązane z tą kolekcją.",
"collections_linked": "Połączone kolekcje",
"create_collection_first": "Utwórz kolekcję najpierw, aby zorganizować swoje przygody i wspomnienia.",
"done": "Zrobione",
"loading_adventures": "Ładowanie przygód ...",
"name_location": "Nazwa, lokalizacja",
"delete_collection_warning": "Czy na pewno chcesz usunąć tę kolekcję? \nTego działania nie można cofnąć.",
"collection_contents": "Zawartość kolekcji",
"check_in": "Zameldować się",
"check_out": "Wymeldować się",
"collection_link_location_error": "Błąd łączący lokalizację z kolekcją",
@@ -295,22 +221,14 @@
"create_location": "Utwórz lokalizację",
"delete_location": "Usuń lokalizację",
"edit_location": "Edytuj lokalizację",
"location_create_error": "Nie udało się utworzyć lokalizacji",
"location_created": "Utworzona lokalizacja",
"location_delete_confirm": "Czy na pewno chcesz usunąć tę lokalizację? \nTego działania nie można cofnąć.",
"location_delete_success": "Lokalizacja pomyślnie usunięta!",
"location_not_found": "Nie znaleziono lokalizacji",
"location_not_found_desc": "Nie można było znaleźć lokalizacji. \nWypróbuj inną lokalizację lub sprawdź później.",
"location_update_error": "Nie udało się zaktualizować lokalizacji",
"location_updated": "Zaktualizowana lokalizacja",
"new_location": "Nowa lokalizacja",
"no_collections_to_add_location": "Brak kolekcji dodawania tej lokalizacji do.",
"no_locations_to_recommendations": "Nie znaleziono żadnych lokalizacji. \nDodaj co najmniej jedną lokalizację, aby uzyskać zalecenia.",
"public_location": "Lokalizacja publiczna",
"share_location": "Udostępnij tę lokalizację!",
"visit_calendar": "Odwiedź kalendarz",
"wiki_location_desc": "Wyciąga fragment artykułu Wikipedii pasujący do nazwy lokalizacji.",
"will_be_marked_location": "zostanie oznaczone jako odwiedzone po zapisaniu lokalizacji.",
"no_locations_found": "Nie znaleziono żadnych lokalizacji",
"image_modal_navigate": "Użyj klawiszy strzałek lub kliknij, aby nawigować",
"details": "Bliższe dane",
@@ -322,7 +240,6 @@
"quick_start": "Szybki start",
"achievements": "Osiągnięcia",
"active_duration": "Aktywny czas trwania",
"activities_name": "Zajęcia",
"activity_name": "Nazwa aktywności",
"activity_name_placeholder": "Poranny bieg",
"activity_name_required": "Nazwa aktywności jest wymagana",
@@ -414,13 +331,11 @@
"select_on_map": "Wybierz na mapie",
"select_wanderer_trail": "Wybierz szlak z konta Wanderer",
"sport_type": "Typ sportu",
"sport_type_placeholder": "Bieganie szlaku",
"start_lat": "Rozpocznij szerokość geograficzną",
"start_lng": "Rozpocznij długość geograficzną",
"strava_activities_during_visit": "Zajęcia Strava podczas wizyty",
"strava_activity_ready": "Gotowa aktywność Strava",
"time": "Czas",
"total_covered": "Całkowity objęty",
"total_recorded": "Całkowity zarejestrowany",
"trail": "Ścieżka",
"trail_created_successfully": "Szlak stworzony z powodzeniem",
@@ -457,19 +372,7 @@
"low": "Niski",
"rest": "Odpoczynek",
"total": "Całkowity",
"attachment_removed_error": "Błąd usuwanie załącznika",
"attachment_removed_success": "Załączanie usunięte z fucsid",
"attachments_upload_info": "Załączniki zostaną przesłane po zapisaniu",
"image_upload_info": "Obrazy zostaną przesłane po zapisaniu",
"lodging_save_error": "Zapisywanie błędów",
"my_attachments": "Moje załączniki",
"no_attachments": "Brak załączników",
"no_attachments_desc": "Prześlij pliki na początek",
"no_images_desc": "Prześlij obrazy na początek",
"route_map": "Mapa trasy",
"selected_attachments": "Wybrane załączniki",
"selected_images": "Wybrane obrazy",
"linked_locations": "Połączone lokalizacje",
"activities_text": "zajęcia",
"activity_breakdown_by_category": "Awaria aktywności według kategorii",
"distance_covered": "Ochrony odległości",
@@ -478,17 +381,112 @@
"total_climbed": "Całkowita wspinana",
"total_distance": "Całkowita odległość",
"dates_not_saved": "Wizyta jeszcze nie dodana",
"dates_not_saved_description": "Kliknij Dodaj wizytę, aby zapisać"
"dates_not_saved_description": "Kliknij Dodaj wizytę, aby zapisać",
"active_days": "Aktywne dni",
"add_here": "Dodaj tutaj",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Tryb wyszukiwania lotniska",
"all_locations_already_linked": "Wszystkie lokalizacje są już powiązane z tą kolekcją.",
"arrival_airport": "Lotnisko przylotu",
"avg_rating": "Średnia ocena",
"burned": "spalony",
"categories": "Kategorie",
"cities": "Miasta",
"clear_search": "Wyczyść wyszukiwanie",
"click_map_add_marker": "Kliknij mapę, aby upuścić znacznik, a następnie dodaj go tutaj.",
"completed": "Zakończony",
"content_media": "Treść",
"countries": "Kraje",
"country": "kraj",
"departure_airport": "Lotnisko odlotu",
"distance_traveled": "Przebyty dystans",
"end_location": "Lokalizacja końcowa",
"enter_location_display_name": "Wprowadź wyświetlaną nazwę lokalizacji",
"files": "Akta",
"flight": "Lot",
"folder": "Falcówka",
"folder_view": "Widok folderu - pokazujący wszystkie dane",
"footprints": "Ślady",
"gained": "zdobyte",
"geographic_breakdown": "Podział geograficzny",
"gpx_routes": "Trasy GPX",
"hide_filters": "Ukryj filtry",
"images_captured": "Zdjęcia zrobione",
"in": "W",
"in_progress": "W toku",
"items": "rzeczy",
"itinerary_link_modal": {
"add_here": "Dodaj tutaj",
"add_here_keep_date": "Dodaj (zachowaj datę)",
"add_to_itinerary": "Dodaj do planu podróży",
"already_added": "Już dodano",
"already_added_on_this_day": "Już dodano tego dnia",
"already_added_on_this_day_desc": "Te pozycje są już zaplanowane na ten dzień.",
"already_added_other_days": "Już dodano w inne dni",
"already_added_other_days_desc": "Pozycje te są zaplanowane w różnych terminach. \nDodanie ich tutaj spowoduje zaktualizowanie ich daty lub dodanie ich w niezmienionej postaci.",
"items_available": "Liczba elementów dostępnych do połączenia",
"items_on_other_days": "Przedmioty w inne dni",
"items_on_other_days_desc": "Elementy te mają różne daty. \nMożesz je dodać i opcjonalnie zaktualizować ich datę, aby pasowała.",
"items_on_this_day": "Przedmioty tego dnia",
"no_unscheduled_items": "Brak dostępnych niezaplanowanych pozycji",
"no_unscheduled_items_desc": "Wszystkie elementy zostały dodane do planu podróży lub nie ma żadnych elementów do dodania.",
"title": "Połącz elementy z {date}"
},
"link_copied": "Link skopiowany",
"lists": "Listy",
"location_search_mode": "Tryb wyszukiwania lokalizacji",
"locations_visited": "Odwiedzone lokalizacje",
"lodging_not_found": "Nie znaleziono zakwaterowania",
"lodging_types": "Rodzaje zakwaterowania",
"more_details": "Więcej szczegółów",
"my_locations": "Moje lokalizacje",
"nights": "Noce",
"no_linkable_locations": "Nie znaleziono lokalizacji, które można powiązać z tą kolekcją.",
"of_locations": "lokalizacji",
"on_this_trip": "W tej podróży",
"overnight": "Nocny",
"physical_activities": "Aktywność fizyczna",
"pins": "szpilki",
"places": "Miejsca",
"regions": "Regiony",
"reservation": "Rezerwacja",
"reset_filters": "Nastawić",
"route": "Trasa",
"route_selected": "Trasa wybrana",
"routes_and_activities": "Trasy",
"saving": "Oszczędność",
"search_end_location": "Wyszukaj lokalizację końcową",
"search_start_end_locations": "Wyszukaj lokalizacje początkowe i końcowe",
"search_start_location": "Wyszukaj lokalizację początkową",
"segments": "Segmenty",
"select": "Wybierać",
"show_filters": "Pokaż filtry",
"start_location": "Rozpocznij lokalizację",
"status_filter": "Filtr stanu",
"stays": "Gorset",
"tasks_done": "Zadania wykonane",
"total_days": "Całkowita liczba dni",
"total_visits": "Łączna liczba wizyt",
"transport_activity_paths": "Transport",
"transportation_gpx_tip": "Prześlij tutaj pliki GPX, aby wyświetlić je na mapie",
"traveled": "bywały",
"travelers": "Podróżnicy",
"trip_timeline": "Kalendarium podróży",
"trip_window": "Okno wycieczki",
"upcoming": "Nadchodzące",
"view": "Pogląd",
"wiki_results_found": "Wyniki Wikipedii",
"with_activities": "Z zajęciami",
"written": "Pisemny",
"export_failed": "Eksport nie powiódł się",
"export_success": "Eksportowana kolekcja",
"export_zip": "Eksportuj ZIP",
"import_failed": "Import nie powiódł się",
"import_from_file": "Importuj z pliku",
"import_success": "Sukces importu"
},
"worldtravel": {
"country_list": "Lista krajów",
"num_countries": "znalezione kraje",
"all": "Wszystkie",
"partially_visited": "Częściowo odwiedzone",
"not_visited": "Nieodwiedzone",
"completely_visited": "Całkowicie odwiedzone",
"all_subregions": "Wszystkie podregiony",
"clear_search": "Wyczyść wyszukiwanie",
"no_countries_found": "Nie znaleziono krajów",
"cities": "miasta",
"failed_to_mark_visit": "Nie udało się oznaczyć wizyty w",
@@ -530,11 +528,6 @@
"total_regions": "Regiony ogółem",
"all_regions": "Wszystkie regiony",
"cities_in": "Miasta w",
"newest_first": "Najnowszy pierwszy",
"oldest_first": "Najstarszy pierwszy",
"unvisited_first": "Najpierw niewidziane",
"visited_first": "Odwiedziłem pierwszy",
"total_items": "Całkowite przedmioty",
"getting_location_details": "Uzyskanie szczegółów lokalizacji",
"cities_available": "Dostępne miasta",
"destination_revealed": "Ujawnione miejsce docelowe!",
@@ -554,7 +547,8 @@
"about_country": "O kraju",
"about_region": "O Regionie",
"show_less": "Pokaż mniej",
"show_more": "Pokaż więcej"
"show_more": "Pokaż więcej",
"all_locations_visited": "Wszystkie lokalizacje odwiedzone!"
},
"auth": {
"username": "Nazwa użytkownika",
@@ -570,7 +564,6 @@
"registration_disabled": "Rejestracja jest obecnie wyłączona.",
"profile_picture": "Zdjęcie profilowe",
"public_profile": "Publiczny profil",
"public_tooltip": "Dzięki publicznemu profilowi użytkownicy mogą dzielić się z Tobą kolekcjami i oglądać Twój profil na stronie użytkowników.",
"new_password": "Nowe hasło",
"or_3rd_party": "Lub zaloguj się za pomocą usługi strony trzeciej",
"no_public_collections": "Nie znaleziono publicznych kolekcji",
@@ -580,7 +573,8 @@
"enter_password": "Wprowadź swoje hasło",
"enter_username": "Wprowadź swoją nazwę użytkownika",
"logging_in": "Logowanie",
"totp": "Kod dwuskładnikowy"
"totp": "Kod dwuskładnikowy",
"user_email_verification_required": "Wymagana weryfikacja e-mailowa. \nSprawdź swoją skrzynkę e-mail, gdzie znajduje się link weryfikacyjny."
},
"users": {
"no_users_found": "Nie znaleziono użytkowników z publicznymi profilami."
@@ -750,7 +744,21 @@
"shared_collections": "Wspólne kolekcje",
"available": "Dostępny",
"linked": "Połączony",
"try_different_search": "Wypróbuj inne wyszukiwanie lub filtr."
"try_different_search": "Wypróbuj inne wyszukiwanie lub filtr.",
"changing_date_title": "Zmiana dat będzie miała wpływ na elementy planu podróży",
"changing_date_warning": "Wszelkie elementy planu podróży spoza nowego zakresu dat zostaną usunięte z planu podróży i umieszczone z powrotem w niedatowanych elementach kolekcji.",
"clear_cover": "Przezroczysta osłona",
"collaborators": "Współpracownicy",
"cover": "Okładka",
"cover_image": "Obraz na okładce",
"cover_image_hint": "Wybierz okładkę spośród obrazów w tej kolekcji.",
"create_new_collection": "Utwórz nową kolekcję",
"enter_collection_name": "Wpisz nazwę kolekcji",
"location_primary": "Pokrywa lokalizacji",
"no_images_available": "Nie są jeszcze dostępne żadne obrazy z połączonych lokalizacji.",
"public_collection_description": "Zezwól na oglądanie każdemu, kto ma link",
"set_cover": "Ustaw osłonę",
"update_collection_details": "Zaktualizuj szczegóły kolekcji"
},
"notes": {
"note_deleted": "Notatka została pomyślnie usunięta!",
@@ -762,7 +770,6 @@
"content": "Treść",
"save": "Zapisz",
"note_public": "Ta notatka jest publiczna, ponieważ znajduje się w publicznej kolekcji.",
"add_a_link": "Dodaj link",
"invalid_url": "Nieprawidłowy URL",
"note_viewer": "Przeglądarka notatek",
"create_new_note": "Utwórz nową notatkę",
@@ -812,9 +819,6 @@
"other": "Inne"
},
"edit_transportation": "Edytuj transport",
"ending_airport_desc": "Wprowadź końcowe kod lotniska (np. LAX)",
"fetch_location_information": "Pobierać informacje o lokalizacji",
"starting_airport_desc": "Wprowadź początkowy kod lotniska (np. JFK)",
"create_new_transportation": "Nowy transport",
"enter_flight_number": "Wprowadź numer lotu",
"enter_from_location": "Wprowadź z lokalizacji",
@@ -822,12 +826,15 @@
"enter_to_location": "Wprowadź do lokalizacji",
"enter_transportation_name": "Wprowadź nazwę transportu",
"select_type": "Wybierz Typ",
"update_transportation_details": "Zaktualizuj szczegóły transportu"
"update_transportation_details": "Zaktualizuj szczegóły transportu",
"arrival_code": "Kod przyjazdu",
"arrival_date": "Data przyjazdu",
"arrival_timezone": "Strefa czasowa przybycia",
"departure_code": "Kod wyjazdu",
"departure_date": "Data wyjazdu",
"departure_timezone": "Strefa czasowa wyjazdu"
},
"search": {
"adventurelog_results": "Wyniki AdventureLog",
"public_adventures": "Publiczne podróże",
"online_results": "Wyniki online",
"cities": "Miasta",
"countries": "Kraje",
"found": "znaleziony",
@@ -837,12 +844,7 @@
},
"map": {
"view_details": "Zobacz szczegóły",
"adventure_map": "Mapa podróży",
"map_options": "Opcje mapy",
"show_visited_regions": "Pokaż odwiedzone regiony",
"add_adventure_at_marker": "Dodaj nową podróż w miejscu zaznaczenia",
"clear_marker": "Usuń znacznik",
"add_adventure": "Dodaj nową podróż",
"adventure_stats": "Statystyki przygodowe",
"completion": "Ukończenie",
"display_options": "Opcje wyświetlania",
@@ -854,8 +856,8 @@
"location_map": "Mapa lokalizacji",
"locations_shown": "Pokazane lokalizacje",
"place_marker_desc_location": "Kliknij mapę, aby umieścić znacznik.",
"show_activities": "Pokaż działania",
"show_visited_cities": "Odwiedzone miasta"
"show_visited_cities": "Odwiedzone miasta",
"search_locations": "Wyszukaj lokalizacje..."
},
"share": {
"shared": "Udostępnione",
@@ -864,10 +866,6 @@
"share_desc": "Udostępnij tę kolekcję innym użytkownikom.",
"shared_with": "Współdzielone z",
"no_users_shared": "Brak użytkowników, którym udostępniono",
"not_shared_with": "Brak udostępnionych",
"no_shared_found": "Brak kolekcji udostępnionych Tobie.",
"set_public": "Aby umożliwić użytkownikom udostępnianie Tobie, musisz ustawić swój profil jako publiczny.",
"go_to_settings": "Przejdź do ustawień",
"available": "Dostępny",
"pending": "Aż do",
"revoke_invite": "Cofnij zaproszenie",
@@ -879,10 +877,8 @@
"revoke_failed": "Revoke nie powiodło się",
"unshare_failed": "Unhare nie powiodło się"
},
"languages": {},
"profile": {
"member_since": "Użytkownik od",
"user_stats": "Statystyki użytkownika",
"visited_countries": "Odwiedzone kraje",
"visited_regions": "Odwiedzone regiony",
"visited_cities": "Odwiedzone miasta",
@@ -907,7 +903,6 @@
"location_update_after_refresh": "Karty lokalizacji zostaną zaktualizowane po odświeżeniu strony."
},
"dashboard": {
"add_some": "Dlaczego nie zacząć planować kolejnej przygody? \nMożesz dodać nową przygodę, klikając przycisk poniżej.",
"countries_visited": "Odwiedzone kraje",
"no_recent_adventures": "Brak nowych przygód?",
"recent_adventures": "Ostatnie przygody",
@@ -955,16 +950,34 @@
"loading_albums": "Ładowanie albumów",
"no_images": "Nie znaleziono zdjęć",
"select_album": "Wybierz album",
"select_album_first": "Najpierw wybierz album",
"select_date": "Wybierz datę",
"try_different_date": "Wypróbuj inną datę"
},
"recomendations": {
"recommendation": "Zalecenie",
"recommendations": "Zalecenia",
"food": "Żywność",
"tourism": "Turystyka",
"location_recommendations": "Zalecenia dotyczące lokalizacji"
"any": "Każdy",
"average_rating": "Średnia ocena",
"discover_places": "Odkrywaj miejsca",
"lodging": "Hotele",
"map_view": "Widok mapy",
"minimum_rating": "Minimalna ocena",
"minimum_reviews": "Minimalne recenzje",
"no_results_yet": "Brak wyników",
"open_now_only": "Otwórz tylko teraz",
"search_around_location": "Wyszukaj w okolicy lokalizacji",
"search_by_address": "Szukaj według adresu",
"search_radius_label": "Promień wyszukiwania:",
"searching": "Badawczy...",
"select_location_or_query": "Wybierz lokalizację lub wprowadź zapytanie, aby odkryć niesamowite miejsca w pobliżu!",
"total_results": "Wyniki ogółem",
"use_search_instead": "Zamiast tego użyj wyszukiwania",
"add_location": "Dodaj lokalizację",
"add_lodging": "Dodaj zakwaterowanie",
"away": "z dala",
"hours": "Godziny",
"open": "Otwarte",
"your_location": "Twoja lokalizacja"
},
"lodging": {
"apartment": "Apartament",
@@ -984,7 +997,6 @@
"resort": "Uciec",
"create_new_lodging": "Nowe zakwaterowanie",
"enter_lodging_name": "Wprowadź nazwę lodowania",
"enter_price": "Wprowadź cenę",
"enter_reservation_number": "Wprowadź numer rezerwacji",
"update_lodging_details": "Zaktualizuj szczegóły lodowania"
},
@@ -1001,7 +1013,9 @@
"month": "Miesiąc",
"today": "Dzisiaj",
"total_events": "Całkowite zdarzenia",
"week": "Tydzień"
"week": "Tydzień",
"event timezone": "Strefa czasowa wydarzenia",
"your timezone": "Twoja strefa czasowa"
},
"locations": {
"location": "Lokalizacja",
@@ -1024,15 +1038,11 @@
"title": "Zaprasza"
},
"strava": {
"account_connected": "Podłączone konto",
"admin_setup_required": "Administrator serwera musi go włączyć na całym świecie",
"authorization_error": "Przekierowanie błędów do URL autoryzacji Strava",
"connect_account": "Połącz konto",
"disconnect": "Odłączyć",
"disconnect_error": "Odłączenie błędów od Strava",
"disconnected": "Pomyślnie odłączony od Strava",
"not_configured": "Strava nie skonfigurowana",
"ready_to_connect": "Gotowy do połączenia",
"strava_integration_desc": "Połącz się z Stravą, aby łatwo zaimportować swoje czynności do lokalizacji i wizyt",
"gpx_required": "Prześlij plik GPX, aby wypełnić import Strava",
"not_enabled": "Integracja Strava nie jest włączona w tej instancji."
@@ -1041,5 +1051,82 @@
"connected": "Pomyślnie związany z Wandererem",
"connection_error": "Błąd łączący się z Wandererem",
"wanderer_integration_desc": "Połącz się z Wandererem, aby łatwo importować i przeglądać szlaki w lokalizacjach"
},
"collections": {
"all_items": "Wszystkie przedmioty",
"currencies": "Waluty",
"currency": "Waluta",
"event_timezone": "Strefa czasowa wydarzenia",
"event_timezone_desc": "Strefa czasowa wydarzenia korzysta z lokalizacji lub strefy czasowej elementu, jeśli jest dostępna. \nUżywa mojej strefy czasowej",
"events": "wydarzenia",
"local_timezone": "Moja strefa czasowa",
"no_calendar_events": "Dla tej kolekcji nie zaplanowano jeszcze żadnych wizyt.",
"no_priced_items": "Dodaj ceny lokalizacji, zakwaterowania lub transportu, aby zobaczyć sumę podróży według waluty.",
"not_found": "Nie znaleziono kolekcji",
"statistics": "Statystyka",
"times_shown_in": "Czasy pokazane w",
"trip_costs": "Koszty podróży"
},
"common": {
"show_less": "Ukryj szczegóły",
"show_more": "Pokaż więcej"
},
"currencies": {
"AED": "Dirham Zjednoczonych Emiratów Arabskich",
"AUD": "Dolar australijski",
"BRL": "Real brazylijski",
"CAD": "Dolar kanadyjski",
"CHF": "Frank szwajcarski",
"CNY": "Chiński Yuan",
"DKK": "korona duńska",
"EUR": "Euro",
"GBP": "Funt brytyjski",
"HKD": "Dolar Hongkongu",
"INR": "Rupia indyjska",
"JPY": "Japoński jen",
"MXN": "Peso meksykańskie",
"NOK": "korona norweska",
"NZD": "Dolar nowozelandzki",
"SEK": "Korona szwedzka",
"SGD": "Dolar Singapurski",
"TRY": "Lira turecka",
"USD": "Dolar amerykański",
"ZAR": "Rand południowoafrykański",
"no_matches": "Brak dopasowań",
"search": "Wyszukaj walutę",
"select_currency": "Wybierz walutę"
},
"itinerary": {
"add_description": "Dodaj opis",
"add_to_day": "Dodaj do dnia",
"add_to_trip_context": "Dodaj kontekst podróży",
"added_to_trip_context": "Dodano do kontekstu podróży",
"auto_generate": "Generuj automatycznie",
"auto_generate_itinerary": "Automatyczne generowanie planu podróży",
"auto_generate_itinerary_desc": "Ta kolekcja zawiera przestarzałe elementy, ale nie ma jeszcze planu podróży. \nCzy chcesz automatycznie uporządkować je według dat?",
"change_day": "Dzień zmiany",
"drag_to_reorder": "Przeciągnij, aby zmienić kolejność",
"failed_to_add_to_trip_context": "Nie udało się dodać elementu do kontekstu podróży",
"failed_to_move_to_trip_context": "Nie udało się przejść do kontekstu podróży",
"generating": "Generowanie",
"item_already_in_trip_context": "Elementy już w kontekście podróży",
"item_not_found": "Nie znaleziono elementu",
"item_remove_error": "Błąd podczas usuwania elementu z planu podróży",
"item_remove_success": "Element usunięty z planu podróży",
"link_existing_item": "Połącz istniejący element",
"move_to_trip_context": "Przejdź do kontekstu podróży",
"moved_to_trip_context": "Przeniesiono do kontekstu podróży",
"multi_day": "Wielodniowe",
"no_itinerary_yet": "Nie ma jeszcze planu podróży",
"no_plans_for_day": "Brak planów na ten dzień",
"no_trip_context_items": "Brak jeszcze elementów kontekstu podróży.",
"remove_from_itinerary": "Usuń z dnia",
"remove_from_trip_context": "Usuń z kontekstu",
"start_planning": "Zacznij planować swoją podróż, dodając pozycje do konkretnych dni.",
"staying_overnight": "Zostaję na noc",
"trip_context": "Kontekst podróży",
"trip_context_info": "Elementy kontekstu podróży dotyczą całej podróży — na przykład lokalizacje będące samym celem podróży, uwagi ogólne lub listy rzeczy do spakowania ważne dla całej podróży.",
"unscheduled_items": "Niezaplanowane pozycje",
"unscheduled_items_desc": "Te elementy są powiązane z tą podróżą, ale nie zostały jeszcze dodane do konkretnego dnia."
}
}

View File

@@ -9,10 +9,7 @@
"license_info": "Licença",
"message": "Feito com ❤️ nos Estados Unidos.",
"nominatim_1": "A pesquisa e a geocodificação de localização são fornecidos por",
"nominatim_2": "Os dados estão licenciados sob a licença ODBL.",
"oss_attributions": "Atribuições de Código Aberto",
"other_attributions": "Atribuições adicionais podem ser encontradas no arquivo ReadMe.",
"source_code": "Código-fonte",
"sponsor": "Patrocinador",
"thank_you": "Obrigado por usar o AdventureLog!",
"version": "Versão",
@@ -20,33 +17,22 @@
"view_license": "Visualizar Licença"
},
"adventures": {
"actions": "Ações",
"activity_types": "Tipos de Atividade",
"add": "Adicionar",
"add_a_tag": "Adicione um Marcador",
"add_new": "Adicionar Novo ...",
"add_notes": "Adicionar Notas",
"add_to_collection": "Adicione à Coleção",
"adventure": "Aventura",
"adventure_calendar": "Calendário da Aventura",
"adventure_not_found": "Nenhuma aventura para exibir. Toque no botão + no canto inferior direito para adicionar uma nova ou tente ajustar os filtros!",
"adventures_available": "Aventuras Disponíveis",
"all": "Todos",
"all_adventures_already_linked": "Todas as aventuras já estão vinculadas a esta coleção.",
"all_day": "O dia todo",
"all_linked_items": "Todos os itens vinculados",
"archive": "Arquivar",
"archived": "Arquivado",
"archived_collection_message": "Coleção arquivada com sucesso!",
"archived_collections": "Coleções Arquivadas",
"arrival_date": "Data de chegada",
"arrival_timezone": "Fuso Horário de chegada",
"ascending": "Crescente",
"attachment": "Anexo",
"attachment_delete_success": "Anexo excluído com sucesso!",
"attachment_name": "Nome do Anexo",
"attachment_update_error": "Erro ao atualizar o anexo",
"attachment_update_success": "Anexo atualizado com sucesso!",
"attachment_upload_error": "Erro ao enviar o arquivo",
"attachment_upload_success": "Anexo enviado com sucesso!",
"attachments": "Anexos",
@@ -54,7 +40,6 @@
"basic_information": "Informações Básicas",
"cancel": "Cancelar",
"category": "Categoria",
"category_fetch_error": "Erro ao obter categorias",
"category_filter": "Filtro de Categoria",
"check_in": "Check-in",
"check_out": "Check Out",
@@ -64,21 +49,14 @@
"cities_updated": "Cidades atualizadas",
"city": "Cidade",
"clear": "Limpar",
"clear_location": "Limpar Localização",
"clear_map": "Limpar Mapa",
"click_map": "Clique no mapa para selecionar um local",
"click_on_map": "Clique no mapa para selecionar um local",
"collection": "Coleção",
"collection_adventures": "Incluir Aventuras a Coleção",
"collection_archived": "Esta coleção foi arquivada.",
"collection_completed": "Você completou esta coleção!",
"collection_contents": "Conteúdo da Coleção",
"collection_link_location_error": "Erro ao vincular a localização à coleção",
"collection_link_location_success": "Localização unida à coleção com sucesso!",
"collection_locations": "Incluir Locais a Coleção",
"collection_remove_location_error": "Erro ao remover a localização da coleção",
"collection_remove_location_success": "Localização removida da coleção com sucesso!",
"collection_stats": "Estatísticas da Coleção",
"collections_linked": "Coleções Vinculadas",
"continue": "Continuar",
"coordinates": "Coordenadas",
@@ -86,7 +64,6 @@
"copy_coordinates": "Copiar Coordenadas",
"copy_failed": "Falha ao copiar",
"copy_link": "Copiar Link",
"count_txt": "Resultados da sua pesquisa",
"create_collection_first": "Crie uma coleção antes para poder organizar suas aventuras e memórias.",
"create_location": "Criar Localização",
"create_new": "Criar Novo...",
@@ -94,7 +71,6 @@
"date": "Data",
"date_constrain": "Restringir datas das coleções",
"date_information": "Informações da Data",
"date_itinerary": "Data do Itinerário",
"dates": "Datas",
"day": "Dia",
"days": "dias",
@@ -107,49 +83,35 @@
"delete_lodging": "Excluir Hospedagem",
"delete_note": "Excluir Nota",
"delete_transportation": "Excluir Transporte",
"departure_date": "Data de partida",
"departure_timezone": "Fuso Horário de partida",
"descending": "Descrescente",
"description": "Descrição",
"details": "Detalhes",
"display_name": "Nome de Exibição",
"distance": "Distância",
"done": "Concluído",
"download_calendar": "Baixar Calendário",
"duration": "Duração",
"edit_adventure": "Editar Aventura",
"edit_collection": "Editar Coleção",
"edit_location": "Editar Local",
"emoji_picker": "Selecionar Emoji",
"end": "Final",
"end_date": "Data Final",
"ending_airport": "Aeroporto Final",
"error_updating_regions": "Erro ao atualizar as regiões",
"fetch_image": "Buscar Imagem",
"filter": "Filtro",
"filters_and_sort": "Filtros e Ordenação",
"filters_and_stats": "Filtros e Estatísticas",
"finding_recommendations": "Descobrindo jóias escondidas para sua próxima aventura",
"flight_information": "Informações de voo",
"from": "Origem",
"generate_desc": "Gerar Descrição",
"getting_location_details": "Obtendo detalhes da localização",
"gpx_tip": "Envie arquivos GPX nos anexos para visualizá-los no mapa!",
"hide": "Ocultar",
"homepage": "Página Inicial",
"image": "Imagem",
"image_fetch_failed": "Falha ao obter a imagem",
"image_modal_navigate": "Use as setas no teclado ou clique para navegar",
"image_removed_error": "Erro ao remover a imagem",
"image_removed_success": "Imagem removida com sucesso!",
"image_upload_error": "Erro ao enviar a imagem",
"image_upload_success": "Imagem enviada com sucesso!",
"images": "Imagens",
"invalid_date_range": "Intervalo de data inválido",
"itineary_by_date": "Itinerário por Data",
"itinerary": "Itinerário",
"joined": "Cadastrado",
"keep_exploring": "Continue Explorando!",
"latitude": "Latitude",
"leave": "Sair",
"leave_collection": "Fechar Coleção",
@@ -157,63 +119,40 @@
"left_collection_message": "Coleção deixada com sucesso",
"link": "Link",
"link_new": "Novo Link...",
"linked_adventures": "Aventuras Vinculadas",
"links": "Links",
"loading_adventures": "Carregando as Aventuras...",
"loading_collections": "Carregando coleções...",
"location": "Localização",
"location_create_error": "Falha ao criar localização",
"location_created": "Localização criada",
"location_delete_confirm": "Tem certeza de que deseja excluir este local? Esta ação não pode ser desfeita.",
"location_delete_success": "Localização excluída com sucesso!",
"location_details": "Detalhes da Localização",
"location_display_name": "Nome de Exibição da Localização",
"location_information": "Informações do Local",
"location_map": "Localização e Mapa",
"location_not_found": "Localização não encontrada",
"location_not_found_desc": "O local que você procura não foi encontrado. Por favor, tente um local diferente ou novamente mais tarde.",
"location_selected": "Localização Selecionada",
"location_update_error": "Falha ao atualizar o local",
"location_updated": "Localização atualizada",
"lodging": "Alojamento",
"lodging_delete_confirm": "Tem certeza de que deseja excluir este local de hospedagem? Esta ação não pode ser desfeita.",
"lodging_information": "Informações sobre Hospedagem",
"longitude": "Longitude",
"mark_visited": "Marcar como Visitado",
"md_instructions": "Escreva suas notas aqui...",
"my_adventures": "Minhas Aventuras",
"my_collections": "Minhas Coleções",
"my_images": "Minhas Imagens",
"name": "Nome",
"name_location": "nome, local",
"new_location": "Nova Localização",
"no_adventures_found": "Nenhuma aventura encontrada",
"no_adventures_message": "Comece a documentar suas aventuras e a sonhar com as próximas. Cada jornada guarda uma história que merece ser compartilhada.",
"no_collections_to_add_location": "Não foram encontradas coleções para adicionar este local.",
"no_description_found": "Nenhuma descrição encontrada",
"no_image_found": "Nenhuma imagem encontrada",
"no_image_url": "Nenhuma imagem encontrada nessa URL.",
"no_images": "Sem Imagens",
"no_linkable_adventures": "Não foi possivel encontrar aventuras que podem ser ligadas a esta coleção.",
"no_location": "Por favor, insira um local",
"no_location_found": "Nenhum local encontrado",
"no_locations_found": "Nenhum local encontrado",
"no_locations_to_recommendations": "Nenhum local encontrado. Adicione pelo menos um local para receber recomendações.",
"no_ordered_items": "Adicione itens com datas à coleção para vê-los aqui.",
"no_results": "Nenhum resultado encontrado",
"no_visits": "Sem visitas",
"not_visited": "Não Visitado",
"note": "Nota",
"note_delete_confirm": "Tem certeza de que deseja excluir esta nota? Esta ação não pode ser desfeita.",
"notes": "Notas",
"nothing_planned": "Nada planejado para este dia. Aproveite a jornada!",
"open_details": "Abrir Detalhes",
"open_filters": "Abrir filtros",
"open_in_maps": "Abrir Mapa",
"or": "OU",
"order_by": "Ordenar por",
"order_direction": "Direção da Ordenagem",
"ordered_itinerary": "Itinerário Ordenado",
"out_of_range": "Fora do intervalo de data",
"planned": "Planejado",
"preview": "Pré-visualização",
@@ -226,26 +165,19 @@
"regions_updated": "Regiões atualizadas",
"remove": "Remover",
"remove_from_collection": "Remover da Coleção",
"reservation_number": "Número da Reserva",
"save_next": "Salvar e Avançar",
"search_for_location": "Procure por um local",
"search_location": "Pesquisar por um local",
"search_placeholder": "Digite uma cidade, localização ou marco...",
"search_results": "Resultados da Pesquisa",
"searching": "Pesquisando",
"see_adventures": "Ver Aventuras",
"select_on_map": "Selecionar no mapa",
"set_to_pin": "Fixar",
"share": "Compartilhar",
"share_collection": "Compartilhe esta Coleção!",
"share_location": "Compartilhe este Local!",
"show": "Mostrar",
"sort": "Organizar",
"sources": "Fontes",
"start": "Começo",
"start_before_end_error": "A data inicial deve ser antes da data final",
"start_date": "Data de Início",
"starting_airport": "Aeroporto Inicial",
"sun_times": "Horários de verão",
"sunrise": "Nascer do Sol",
"sunset": "Pôr do sol",
@@ -261,29 +193,19 @@
"unarchived_collection_message": "Coleção desarquivada com sucesso!",
"update_location_details": "Atualizar detalhes da localização",
"update_visited_regions": "Atualizar Regiões Visitadas",
"update_visited_regions_disclaimer": "Isso pode levar algum tempo, dependendo da quantidade de aventuras que você já visitou.",
"updated": "Atualizado",
"upload": "Inserir",
"upload_image": "Enviar Imagem",
"url": "URL",
"use_current_location": "Usar a localização atual",
"view_profile": "Ver Perfil",
"visit": "Visite",
"visit_calendar": "Calendário de visitas",
"visit_link": "Link de Visita",
"visited": "Visitado",
"visited_region_check": "Verificar região visitada",
"visited_region_check_desc": "Ao selecionar esta opção, o servidor verificará todas as suas aventuras visitadas e marcará as regiões onde elas estão localizadas como visitadas no mapa de Viagens Mundiais.",
"visits": "Visitas",
"warning": "Aviso",
"wiki_image_error": "Erro ao baixar a imagem da Wikipedia",
"wiki_location_desc": "Insere trechos de artigos da Wikipedia correspondendo ao nome da localização.",
"wikipedia": "Wikipedia",
"wikipedia_error": "Falha ao gerar descrição da Wikipédia",
"will_be_marked_location": "será marcado como visitado assim que a localização for salva.",
"achievements": "Conquistas",
"active_duration": "Duração ativa",
"activities_name": "Atividades",
"activity_name": "Nome da Atividade",
"activity_name_placeholder": "Corrida Matinal",
"activity_options": "Opções da atividade",
@@ -356,12 +278,10 @@
"search_trails_placeholder": "Pesquisar trilhas por nome",
"select_wanderer_trail": "Selecione uma trilha da sua conta Wanderer",
"sport_type": "Tipo de Esporte",
"sport_type_placeholder": "Corrida em Trilhas",
"start_lat": "Latitude Inicial",
"start_lng": "Longitude Inicial",
"strava_activity_ready": "Atividade de Strava Pronta",
"time": "Horário",
"total_covered": "Total abrangido",
"total_recorded": "Total registrado",
"trail": "Trilha",
"trail_created_successfully": "Trilha criada com sucesso",
@@ -403,19 +323,7 @@
"low": "Baixo",
"rest": "Descansar",
"total": "Total",
"attachment_removed_error": "Erro removendo o anexo",
"attachment_removed_success": "Anexo removido com sucesso",
"attachments_upload_info": "Os anexos serão enviados após salvar o",
"image_upload_info": "As imagens serão enviadas após salvar o",
"linked_locations": "Locais Vinculados",
"lodging_save_error": "Erro ao salvar o alojamento",
"my_attachments": "Meus Anexos",
"no_attachments": "Sem Anexos",
"no_attachments_desc": "Envie arquivos para começar",
"no_images_desc": "Envie alguma(s) imagen(s) para começar",
"route_map": "Mapa de Rota",
"selected_attachments": "Anexos Selecionados",
"selected_images": "Imagens Selecionadas",
"activities_text": "atividades",
"activity_breakdown_by_category": "Distribuição das atividades por categoria",
"distance_covered": "Distância percorrida",
@@ -424,7 +332,109 @@
"total_climbed": "Total escalado",
"total_distance": "Distância Total",
"dates_not_saved": "Visita ainda não adicionada",
"dates_not_saved_description": "Clique em adicionar visita para salvar"
"dates_not_saved_description": "Clique em adicionar visita para salvar",
"active_days": "Dias Ativos",
"add_here": "Adicione aqui",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Modo de pesquisa de aeroporto",
"all_locations_already_linked": "Todos os locais já estão vinculados a esta coleção.",
"arrival_airport": "Aeroporto de chegada",
"avg_rating": "Avaliação média",
"burned": "queimado",
"categories": "Categorias",
"cities": "Cidades",
"clear_search": "Limpar pesquisa",
"click_map_add_marker": "Clique no mapa para colocar um marcador e adicione-o aqui.",
"completed": "Concluído",
"content_media": "Contente",
"countries": "Países",
"country": "país",
"departure_airport": "Aeroporto de partida",
"distance_traveled": "Distância percorrida",
"end_location": "Localização final",
"enter_location_display_name": "Insira o nome de exibição do local",
"files": "Arquivos",
"flight": "Voo",
"folder": "Pasta",
"folder_view": "Visualização de pasta - mostrando todos os dados",
"footprints": "Pegadas",
"gained": "ganhou",
"geographic_breakdown": "Divisão geográfica",
"gpx_routes": "Rotas GPX",
"hide_filters": "Ocultar filtros",
"images_captured": "Imagens capturadas",
"in": "em",
"in_progress": "Em andamento",
"items": "Unid",
"itinerary_link_modal": {
"add_here": "Adicione aqui",
"add_here_keep_date": "Adicionar (manter data)",
"add_to_itinerary": "Adicionar ao itinerário",
"already_added": "Já adicionado",
"already_added_on_this_day": "Já adicionado neste dia",
"already_added_on_this_day_desc": "Esses itens já estão agendados para este dia.",
"already_added_other_days": "Já adicionado em outros dias",
"already_added_other_days_desc": "Esses itens estão programados em datas diferentes. \nAdicioná-los aqui atualizará sua data ou os adicionará como estão.",
"items_available": "{count} itens disponíveis para vinculação",
"items_on_other_days": "Itens em outros dias",
"items_on_other_days_desc": "Esses itens têm datas diferentes. \nVocê pode adicioná-los e, opcionalmente, atualizar a data para corresponder.",
"items_on_this_day": "Itens neste dia",
"no_unscheduled_items": "Nenhum item não programado disponível",
"no_unscheduled_items_desc": "Todos os itens foram adicionados ao itinerário ou não há itens a serem adicionados.",
"title": "Vincular itens a {data}"
},
"link_copied": "Link copiado",
"lists": "Listas",
"location_search_mode": "Modo de pesquisa de localização",
"locations_visited": "Locais visitados",
"lodging_not_found": "Hospedagem não encontrada",
"lodging_types": "Tipos de hospedagem",
"more_details": "Mais detalhes",
"my_locations": "Meus locais",
"nights": "Noites",
"no_linkable_locations": "Não foram encontrados locais que possam ser vinculados a esta coleção.",
"of_locations": "de locais",
"on_this_trip": "Nesta viagem",
"overnight": "Pernoite",
"physical_activities": "Atividades Físicas",
"pins": "alfinetes",
"places": "Lugares",
"regions": "Regiões",
"reservation": "Reserva",
"reset_filters": "Reiniciar",
"route": "Rota",
"route_selected": "Rota selecionada",
"routes_and_activities": "Rotas",
"saving": "Salvando",
"search_end_location": "Localização final da pesquisa",
"search_start_end_locations": "Pesquise locais de início e término",
"search_start_location": "Local de início da pesquisa",
"segments": "Segmentos",
"select": "Selecione",
"show_filters": "Mostrar filtros",
"start_location": "Localização inicial",
"status_filter": "Filtro de status",
"stays": "Estadias",
"tasks_done": "Tarefas concluídas",
"total_days": "Total de dias",
"total_visits": "Total de visitas",
"transport_activity_paths": "Transporte",
"transportation_gpx_tip": "Carregue os arquivos GPX aqui para exibi-los no mapa",
"traveled": "viajou",
"travelers": "Viajantes",
"trip_timeline": "Cronograma da viagem",
"trip_window": "Janela de viagem",
"upcoming": "Por vir",
"view": "Visualizar",
"wiki_results_found": "Resultados da Wikipédia",
"with_activities": "Com atividades",
"written": "Escrito",
"export_failed": "Falha na exportação",
"export_success": "Coleção exportada",
"export_zip": "Exportar ZIP",
"import_failed": "Falha na importação",
"import_from_file": "Importar do arquivo",
"import_success": "Sucesso na importação"
},
"auth": {
"confirm_password": "Confirme a sua senha",
@@ -441,7 +451,6 @@
"password": "Senha",
"profile_picture": "Imagem de Perfil",
"public_profile": "Perfil Público",
"public_tooltip": "Com um perfil público, os usuários podem compartilhar coleções com você e visualizar seu perfil na página de usuários.",
"registration_disabled": "O registro está desativado no momento.",
"signup": "Inscrever-se",
"user_collections": "Coleções de Usuários",
@@ -450,7 +459,8 @@
"enter_password": "Digite a sua senha",
"enter_username": "Digite o seu nome de usuário",
"logging_in": "Registrar",
"totp": "Autenticação de dois fatores"
"totp": "Autenticação de dois fatores",
"user_email_verification_required": "Verificação de e-mail necessária. \nVerifique seu e-mail para obter um link de verificação."
},
"calendar": {
"all_day_event": "Evento durante o dia todo",
@@ -461,7 +471,9 @@
"month": "Mês",
"today": "Hoje",
"total_events": "Eventos totais",
"week": "Semana"
"week": "Semana",
"event timezone": "Fuso horário do evento",
"your timezone": "Seu fuso horário"
},
"categories": {
"add_new_category": "Adicionar Nova Categoria",
@@ -514,10 +526,23 @@
"no_shared_collections": "Nenhuma coleção compartilhada.",
"public_collection": "Coleção Pública",
"shared_collections": "Coleções Compartilhadas",
"try_different_search": "Tente uma pesquisa ou filtro diferente."
"try_different_search": "Tente uma pesquisa ou filtro diferente.",
"changing_date_title": "A alteração de datas afetará os itens do itinerário",
"changing_date_warning": "Quaisquer itens do itinerário fora do novo intervalo de datas serão removidos do itinerário e colocados de volta nos itens sem data da coleção.",
"clear_cover": "Capa transparente",
"collaborators": "Colaboradores",
"cover": "Cobrir",
"cover_image": "Imagem da capa",
"cover_image_hint": "Escolha uma capa entre as imagens desta coleção.",
"create_new_collection": "Criar nova coleção",
"enter_collection_name": "Insira o nome da coleção",
"location_primary": "Cobertura de localização",
"no_images_available": "Ainda não há imagens disponíveis de locais vinculados.",
"public_collection_description": "Permitir que qualquer pessoa com o link visualize",
"set_cover": "Definir capa",
"update_collection_details": "Detalhes da coleção atualizada"
},
"dashboard": {
"add_some": "Por que não começar a planejar sua próxima aventura? Você pode adicionar uma nova aventura clicando no botão abaixo.",
"countries_visited": "Países Visitados",
"document_some_adventures": "Comece a documentar suas viagens e crie seu mapa pessoal de aventuras!",
"no_recent_adventures": "Nenhuma aventura recente?",
@@ -587,8 +612,6 @@
"loading_albums": "Carregando álbuns",
"no_images": "Nenhuma imagem encontrada",
"select_album": "Selecionar Álbum",
"select_album_first": "Selecione primeiro um álbum",
"select_date": "Selecione a Data",
"try_different_date": "Tente uma data diferente"
},
"invites": {
@@ -628,16 +651,12 @@
"villa": "Vila",
"create_new_lodging": "Nova Hospedagem",
"enter_lodging_name": "Digite o nome da Hospedagem",
"enter_price": "Insira o preço",
"enter_reservation_number": "Digite o número de Reserva",
"update_lodging_details": "Atualizar detalhes da Hospedagem"
},
"map": {
"add_adventure": "Adicionar Nova Aventura",
"add_adventure_at_marker": "Adicionar nova aventura no marcador",
"add_location": "Adicionar Nova Localização",
"add_location_at_marker": "Adicionar novo local no marcador",
"adventure_map": "Mapa de Aventura",
"adventure_stats": "Estatísticas da Aventura",
"clear_marker": "Limpar Marcador",
"completion": "Conclusão",
@@ -645,19 +664,16 @@
"location_map": "Mapa de Localização",
"locations_shown": "Locais mostrados",
"map_controls": "Controles do Mapa",
"map_options": "Opções do Mapa",
"marker_placed_on_map": "Marcador colocado no mapa",
"place_marker_desc_location": "Clique no mapa para colocar um marcador.",
"regions": "Regiões",
"show_visited_regions": "Mostrar Regiões Visitadas",
"view_details": "Ver Detalhes",
"show_activities": "Mostrar Atividades",
"show_visited_cities": "Cidades Visitadas"
"show_visited_cities": "Cidades Visitadas",
"search_locations": "Pesquisar locais..."
},
"navbar": {
"about": "Sobre AdventureLog",
"admin_panel": "Painel de Administração",
"adventures": "Aventuras",
"calendar": "Calendário",
"collections": "Coleções",
"documentation": "Documentação",
@@ -665,14 +681,11 @@
"language_selection": "Linguagem",
"logout": "Sair",
"map": "Mapa",
"my_adventures": "Minhas Aventuras",
"my_tags": "Minhas Marcações",
"profile": "Perfil",
"search": "Procurar",
"settings": "Configurações",
"shared_with_me": "Compartilhado Comigo",
"support": "Apoiar",
"tag": "Marcação",
"theme_selection": "Seleção de Temas",
"themes": {
"aestheticDark": "Escuro Estético",
@@ -686,11 +699,10 @@
"northernLights": "Luzes do Norte"
},
"users": "Usuários",
"worldtravel": "Viagens mundiais",
"navigation": "Navegação"
"navigation": "Navegação",
"worldtravel": "Viagens pelo mundo"
},
"notes": {
"add_a_link": "Adicionar um link",
"content": "Conteúdo",
"editing_note": "Edição de Notas",
"failed_to_save": "Falha ao salvar nota",
@@ -716,7 +728,6 @@
"planned_trips": "Viagens Planejadas",
"public_location_experiences": "Experiências em locais públicos",
"travel_statistics": "Estatísticas da Viagem",
"user_stats": "Estatísticas do Usuário",
"visited_cities": "Cidades Visitadas",
"visited_countries": "Países Visitados",
"visited_regions": "Regiões Visitadas",
@@ -724,18 +735,35 @@
},
"recomendations": {
"food": "Comida",
"location_recommendations": "Recomendações de Localização",
"recommendation": "Recomendação",
"recommendations": "Recomendações",
"tourism": "Turismo"
"tourism": "Turismo",
"any": "Qualquer",
"average_rating": "Avaliação média",
"discover_places": "Descubra lugares",
"lodging": "Hotéis",
"map_view": "Visualização do mapa",
"minimum_rating": "Classificação Mínima",
"minimum_reviews": "Avaliações mínimas",
"no_results_yet": "Ainda sem resultados",
"open_now_only": "Abra somente agora",
"search_around_location": "Pesquise no local",
"search_by_address": "Pesquisar por endereço",
"search_radius_label": "Raio de pesquisa:",
"searching": "Procurando...",
"select_location_or_query": "Selecione um local ou digite uma consulta de pesquisa para descobrir lugares incríveis próximos!",
"total_results": "Resultados totais",
"use_search_instead": "Use a pesquisa",
"add_location": "Adicionar local",
"add_lodging": "Adicionar hospedagem",
"away": "ausente",
"hours": "Horas",
"open": "Abrir",
"your_location": "Sua localização"
},
"search": {
"adventurelog_results": "Resultados da AdventureLog",
"cities": "Cidades",
"countries": "Países",
"found": "encontrado(s)",
"online_results": "Resultados Online",
"public_adventures": "Aventuras Públicas",
"result": "Resultado",
"results": "Resultados",
"try_searching_desc": "Tente procurar por aventuras, coleções, países, regiões, cidades ou usuários."
@@ -890,14 +918,10 @@
"settings_download_backup": "Baixar Backup",
"share": {
"available": "Disponível",
"go_to_settings": "Vá para as configurações",
"no_shared_found": "Não foram encontradas coleções compartilhadas com você.",
"no_users_shared": "Nenhum usuário compartilhado com",
"not_shared_with": "Não compartilhado com",
"pending": "Pendente",
"revoke_invite": "Revogar o convite",
"send_invite": "Enviar Convite",
"set_public": "Para permitir que os usuários compartilhem com você, você precisa do seu perfil definido para o público.",
"share_desc": "Compartilhe esta coleção com outros usuários.",
"shared": "Compartilhado",
"shared_with": "Compartilhado com",
@@ -911,15 +935,11 @@
"unshare_failed": "Falha ao cancelar compartilhamento"
},
"strava": {
"account_connected": "Conta Conectada",
"admin_setup_required": "O administrador do servidor deve habilitá-lo globalmente",
"authorization_error": "Erro ao redirecionar para a URL de autorização do Strava",
"connect_account": "Conectar conta",
"disconnect": "Desconectar",
"disconnect_error": "Erro ao desconectar do Strava",
"disconnected": "Desconexão bem-sucedida do Strava",
"not_configured": "Strava não configurado",
"ready_to_connect": "Pronto para conectar",
"strava_integration_desc": "Conecte-se ao Strava para importar facilmente suas atividades para locais e visitas",
"gpx_required": "Carregue o arquivo GPX para concluir a importação do Strava",
"not_enabled": "A integração com o Strava não está habilitada nesta instância."
@@ -927,8 +947,6 @@
"transportation": {
"edit": "Editar",
"edit_transportation": "Editar meio de Transporte",
"ending_airport_desc": "Insira o código do aeroporto de destino (por exemplo, JFK)",
"fetch_location_information": "Obter informações de localização",
"flight_number": "Número do Voo",
"from_location": "A partir da localização",
"modes": {
@@ -942,7 +960,6 @@
"walking": "Andando"
},
"new_transportation": "Novo Transporte",
"starting_airport_desc": "Insira o código do aeroporto de origem (por exemplo, JFK)",
"to_location": "Para",
"transportation_delete_error": "Erro ao excluir o transporte",
"transportation_deleted": "Transporte excluído com sucesso!",
@@ -954,7 +971,13 @@
"enter_to_location": "Insira o local de destino",
"enter_transportation_name": "Digite o nome do meio de transporte",
"select_type": "Selecione o Tipo",
"update_transportation_details": "Atualizar os detalhes do transporte"
"update_transportation_details": "Atualizar os detalhes do transporte",
"arrival_code": "Código de chegada",
"arrival_date": "Data de chegada",
"arrival_timezone": "Fuso horário de chegada",
"departure_code": "Código de partida",
"departure_date": "Data de partida",
"departure_timezone": "Fuso horário de partida"
},
"users": {
"no_users_found": "Não foram encontrados usuários com perfis públicos."
@@ -965,18 +988,14 @@
"wanderer_integration_desc": "Conecte-se ao Wanderer para importar e visualizar facilmente suas trilhas em locais"
},
"worldtravel": {
"all": "Todos",
"all_regions": "Todas as Regiões",
"all_subregions": "Todas as sub-regiões",
"available_to_explore": "Disponíveis para explorar",
"cities": "cidades",
"cities_in": "Cidades em",
"clear_all": "Limpar Tudo",
"clear_all_filters": "Limpar todos os filtros",
"clear_filters": "Limpar Filtros",
"clear_search": "Limpar Pesquisa",
"complete": "Completo",
"completely_visited": "Totalmente visitado",
"countries": "países",
"country_completed": "Países concluídos",
"country_list": "Lista dos Países",
@@ -989,19 +1008,14 @@
"hide_map_labels": "Ocultar Legendas do mapa",
"interactive_map": "Mapa Interativo",
"marked_visited": "marcado/a como visitado/a",
"newest_first": "Mais recente primeiro",
"no_cities_found": "Nenhuma cidade encontrada",
"no_countries_found": "Nenhum país encontrado",
"no_countries_found_desc": "Tente ajustar seus critérios de pesquisa ou filtros para encontrar os países que você está procurando.",
"no_country_data_available": "Não há dados disponíveis para este país",
"no_country_data_available_desc": "Verifique a documentação para atualizar os dados da região.",
"no_regions_found": "Nenhuma região encontrada",
"not_visited": "Não visitado",
"num_countries": "países encontrados",
"of": "de",
"oldest_first": "Mais antigo primeiro",
"partial": "Parcial",
"partially_visited": "Parcialmente visitado",
"progress": "Progresso",
"progress_and_stats": "Progresso e Estatísticas",
"region_completed": "Região concluída",
@@ -1013,13 +1027,10 @@
"show_map_labels": "Mostrar Legendas do Mapa",
"total_cities": "Cidades Totais",
"total_countries": "Total de Países",
"total_items": "Total de itens",
"total_regions": "Regiões Totais",
"unvisited_first": "Não visitado primeiro",
"view_cities": "Ver cidades",
"visit_remove_failed": "Falha ao remover a visita",
"visit_to": "Visita a",
"visited_first": "Visitado primeiro",
"about_country": "Sobre o país",
"about_region": "Sobre a região",
"cities_available": "Cidades disponíveis",
@@ -1038,6 +1049,84 @@
"spin_again": "Gire novamente",
"spinning_globe": "Globo giratório",
"try_again": "Tente novamente",
"your_random_adventure_awaits": "Sua aventura aleatória o aguarda!"
"your_random_adventure_awaits": "Sua aventura aleatória o aguarda!",
"all_locations_visited": "Todos os locais visitados!"
},
"collections": {
"all_items": "Todos os itens",
"currencies": "Moedas",
"currency": "Moeda",
"event_timezone": "Fuso horário do evento",
"event_timezone_desc": "O fuso horário do evento usa o local ou o fuso horário do item, quando disponível. \nMeu fuso horário usa",
"events": "eventos",
"local_timezone": "Meu fuso horário",
"no_calendar_events": "Ainda não há visitas agendadas para esta coleção.",
"no_priced_items": "Adicione preços a locais, hospedagem ou transporte para ver o total de viagens por moeda.",
"not_found": "Coleção não encontrada",
"statistics": "Estatísticas",
"times_shown_in": "Tempos mostrados em",
"trip_costs": "Custos de viagem"
},
"common": {
"show_less": "Ocultar detalhes",
"show_more": "Mostrar mais"
},
"currencies": {
"AED": "Dirham dos Emirados Árabes Unidos",
"AUD": "Dólar Australiano",
"BRL": "real brasileiro",
"CAD": "Dólar canadense",
"CHF": "Franco Suíço",
"CNY": "Yuan Chinês",
"DKK": "Coroa Dinamarquesa",
"EUR": "Euro",
"GBP": "Libra britânica",
"HKD": "Dólar de Hong Kong",
"INR": "Rupia Indiana",
"JPY": "Iene Japonês",
"MXN": "Peso Mexicano",
"NOK": "Coroa Norueguesa",
"NZD": "Dólar da Nova Zelândia",
"SEK": "Coroa Sueca",
"SGD": "Dólar de Singapura",
"TRY": "Lira turca",
"USD": "Dólar americano",
"ZAR": "Rand sul-africano",
"no_matches": "Nenhuma correspondência",
"search": "Moeda de pesquisa",
"select_currency": "Selecione a moeda"
},
"itinerary": {
"add_description": "Adicionar descrição",
"add_to_day": "Adicionar ao dia",
"add_to_trip_context": "Adicionar contexto de viagem",
"added_to_trip_context": "Adicionado ao contexto da viagem",
"auto_generate": "Gerar automaticamente",
"auto_generate_itinerary": "Gerar itinerário automaticamente",
"auto_generate_itinerary_desc": "Esta coleção tem itens datados, mas ainda não tem itinerário. \nGostaria de organizá-los automaticamente por data?",
"change_day": "Dia da mudança",
"drag_to_reorder": "Arraste para reordenar",
"failed_to_add_to_trip_context": "Falha ao adicionar item ao contexto da viagem",
"failed_to_move_to_trip_context": "Falha ao mover para o contexto da viagem",
"generating": "Gerando",
"item_already_in_trip_context": "Itens já no contexto da viagem",
"item_not_found": "Item não encontrado",
"item_remove_error": "Erro ao remover item do itinerário",
"item_remove_success": "Item removido do itinerário",
"link_existing_item": "Vincular item existente",
"move_to_trip_context": "Mover para o contexto da viagem",
"moved_to_trip_context": "Movido para o contexto da viagem",
"multi_day": "Vários dias",
"no_itinerary_yet": "Ainda não há itinerário",
"no_plans_for_day": "Sem planos para este dia",
"no_trip_context_items": "Ainda não há itens de contexto de viagem.",
"remove_from_itinerary": "Remover do dia",
"remove_from_trip_context": "Remover do contexto",
"start_planning": "Comece a planejar sua viagem adicionando itens em dias específicos.",
"staying_overnight": "Passar a noite",
"trip_context": "Contexto da viagem",
"trip_context_info": "Os itens de contexto da viagem aplicam-se a toda a viagem — por exemplo, locais que são o próprio destino, notas gerais ou listas de embalagem que são importantes para toda a viagem.",
"unscheduled_items": "Itens não programados",
"unscheduled_items_desc": "Esses itens estão vinculados a esta viagem, mas ainda não foram adicionados a um dia específico."
}
}

View File

@@ -1,16 +1,11 @@
{
"navbar": {
"adventures": "Приключения",
"collections": "Коллекции",
"worldtravel": "Мировые путешествия",
"map": "Карта",
"users": "Пользователи",
"search": "Поиск",
"profile": "Профиль",
"greeting": "Привет",
"my_adventures": "Мои приключения",
"my_tags": "Мои теги",
"tag": "Тег",
"shared_with_me": "Поделились со мной",
"settings": "Настройки",
"logout": "Выйти",
@@ -32,16 +27,14 @@
"night": "Ночь",
"northernLights": "Северное сияние"
},
"navigation": "Навигация"
"navigation": "Навигация",
"worldtravel": "Путешествие по миру"
},
"about": {
"about": "О программе",
"license": "Лицензировано под лицензией GPL-3.0.",
"source_code": "Исходный код",
"message": "Сделано с ❤️ в США.",
"oss_attributions": "Атрибуции открытого исходного кода",
"nominatim_1": "Поиск местоположений и геокодирование предоставляется",
"nominatim_2": "Их данные лицензированы под лицензией ODbL.",
"other_attributions": "Дополнительные атрибуции можно найти в файле README.",
"generic_attributions": "Войдите в AdventureLog, чтобы просмотреть атрибуции для включённых интеграций и сервисов.",
"close": "Закрыть",
@@ -76,11 +69,6 @@
"invalid_date_range": "Недопустимый диапазон дат",
"timezone": "Часовой пояс",
"no_visits": "Нет посещений",
"departure_timezone": "Часовой пояс отправления",
"arrival_timezone": "Часовой пояс прибытия",
"departure_date": "Дата отправления",
"arrival_date": "Дата прибытия",
"no_image_found": "Изображение не найдено",
"checklist_delete_confirm": "Вы уверены, что хотите удалить этот контрольный список? Это действие нельзя отменить.",
"note_delete_confirm": "Вы уверены, что хотите удалить эту заметку? Это действие нельзя отменить.",
"transportation_delete_confirm": "Вы уверены, что хотите удалить этот транспорт? Это действие нельзя отменить.",
@@ -90,7 +78,6 @@
"delete_transportation": "Удалить транспорт",
"delete_lodging": "Удалить жильё",
"open_details": "Открыть детали",
"edit_adventure": "Редактировать приключение",
"remove_from_collection": "Убрать из коллекции",
"add_to_collection": "Добавить в коллекцию",
"delete": "Удалить",
@@ -104,8 +91,6 @@
"copy_coordinates": "Копировать координаты",
"visits": "Посещения",
"create_new": "Создать новое...",
"adventure": "Приключение",
"count_txt": "результатов соответствуют вашему поиску",
"sort": "Сортировка",
"order_by": "Сортировать по",
"order_direction": "Направление сортировки",
@@ -114,36 +99,24 @@
"updated": "Обновлено",
"name": "Название",
"date": "Дата",
"activity_types": "Типы активности",
"tags": "Теги",
"add_a_tag": "Добавить тег",
"date_constrain": "Ограничить датами коллекции",
"rating": "Рейтинг",
"my_images": "Мои изображения",
"no_images": "Нет изображений",
"distance": "Расстояние",
"copy_link": "Копировать ссылку",
"sun_times": "Время солнца",
"sunrise": "Восход",
"sunset": "Закат",
"image": "Изображение",
"upload_image": "Загрузить изображение",
"open_in_maps": "Открыть в картах",
"url": "URL",
"fetch_image": "Получить изображение",
"wikipedia": "Википедия",
"add_notes": "Добавить заметки",
"warning": "Предупреждение",
"my_adventures": "Мои приключения",
"no_linkable_adventures": "Не найдено приключений, которые можно связать с этой коллекцией.",
"add": "Добавить",
"save_next": "Сохранить и далее",
"end_date": "Дата окончания",
"start_date": "Дата начала",
"remove": "Удалить",
"location": "Локация",
"search_for_location": "Поиск местоположения",
"clear_map": "Очистить карту",
"search_results": "Результаты поиска",
"collection_no_start_end_date": "Добавление дат начала и окончания коллекции разблокирует функции планирования маршрута на странице коллекции.",
"no_results": "Результаты не найдены",
@@ -151,18 +124,15 @@
"attachment": "Вложение",
"images": "Изображения",
"generate_desc": "Сгенерировать описание",
"location_information": "Информация о местоположении",
"link": "Ссылка",
"links": "Ссылки",
"description": "Описание",
"sources": "Источники",
"collection_adventures": "Включить приключения из коллекций",
"filter": "Фильтр",
"category_filter": "Фильтр категории",
"category": "Категория",
"clear": "Очистить",
"my_collections": "Мои коллекции",
"open_filters": "Открыть фильтры",
"archived_collections": "Архивные коллекции",
"share": "Поделиться",
"private": "Приватное",
@@ -181,80 +151,44 @@
"planned": "Запланировано",
"duration": "Продолжительность",
"all": "Все",
"image_removed_success": "Изображение успешно удалено!",
"image_removed_error": "Ошибка удаления изображения",
"no_image_url": "Изображение по этому URL не найдено.",
"image_upload_success": "Изображение успешно загружено!",
"image_upload_error": "Ошибка загрузки изображения",
"dates": "Даты",
"wiki_image_error": "Ошибка получения изображения из Википедии",
"start_before_end_error": "Дата начала должна быть раньше даты окончания",
"actions": "Действия",
"see_adventures": "Посмотреть приключения",
"image_fetch_failed": "Не удалось получить изображение",
"no_location": "Пожалуйста, введите локацию",
"no_description_found": "Описание не найдено",
"lodging": "Жильё",
"set_to_pin": "Установить как булавку",
"category_fetch_error": "Ошибка получения категорий",
"basic_information": "Основная информация",
"display_name": "Отображаемое имя",
"adventure_not_found": "Нет приключений для отображения. Добавьте их, используя кнопку плюс в правом нижнем углу, или попробуйте изменить фильтры!",
"no_adventures_found": "Приключения не найдены",
"mark_visited": "Отметить как посещённое",
"error_updating_regions": "Ошибка обновления регионов",
"regions_updated": "регионов обновлено",
"cities_updated": "городов обновлено",
"visited_region_check": "Проверка посещённых регионов",
"visited_region_check_desc": "Выбрав это, сервер проверит все ваши посещённые приключения и отметит регионы, в которых они находятся, как посещённые в мировых путешествиях.",
"update_visited_regions": "Обновить посещённые регионы",
"update_visited_regions_disclaimer": "Это может занять некоторое время в зависимости от количества ваших посещённых приключений.",
"link_new": "Связать новое...",
"add_new": "Добавить новое...",
"transportation": "Транспорт",
"note": "Заметка",
"checklist": "Контрольный список",
"collection_archived": "Эта коллекция была архивирована.",
"visit_link": "Перейти по ссылке",
"collection_completed": "Вы завершили эту коллекцию!",
"collection_stats": "Статистика коллекции",
"keep_exploring": "Продолжайте исследовать!",
"linked_adventures": "Связанные приключения",
"notes": "Заметки",
"checklists": "Контрольные списки",
"transportations": "Транспорт",
"adventure_calendar": "Календарь приключений",
"day": "День",
"itineary_by_date": "Маршрут по дате",
"nothing_planned": "На этот день ничего не запланировано. Наслаждайтесь путешествием!",
"copied_to_clipboard": "Скопировано в буфер обмена!",
"copy_failed": "Копирование не удалось",
"show": "Показать",
"hide": "Скрыть",
"clear_location": "Очистить локацию",
"starting_airport": "Аэропорт отправления",
"view_profile": "Просмотреть профиль",
"joined": "Присоединился",
"ending_airport": "Аэропорт прибытия",
"no_location_found": "Локация не найдена",
"from": "От",
"to": "До",
"start": "Начало",
"end": "Конец",
"emoji_picker": "Выбор эмодзи",
"download_calendar": "Скачать календарь",
"all_day": "Весь день",
"ordered_itinerary": "Упорядоченный маршрут",
"itinerary": "Маршрут",
"all_linked_items": "Все связанные элементы",
"date_itinerary": "Маршрут по дате",
"no_ordered_items": "Добавьте элементы с датами в коллекцию, чтобы увидеть их здесь.",
"date_information": "Информация о дате",
"flight_information": "Информация о рейсе",
"out_of_range": "Не в диапазоне дат маршрута",
"preview": "Предварительный просмотр",
"finding_recommendations": "Поиск скрытых жемчужин для вашего следующего приключения",
"location_details": "Детали местоположения",
"city": "Город",
"region": "Регион",
"md_instructions": "Напишите ваш markdown здесь...",
@@ -263,28 +197,20 @@
"attachment_upload_error": "Ошибка загрузки вложения",
"upload": "Загрузить",
"attachment_delete_success": "Вложение успешно удалено!",
"attachment_update_success": "Вложение успешно обновлено!",
"attachment_name": "Название вложения",
"gpx_tip": "Загрузите GPX-файлы во вложения, чтобы просматривать их на карте!",
"attachment_update_error": "Ошибка обновления вложения",
"activities": {},
"lodging_information": "Информация о жилье",
"price": "Цена",
"reservation_number": "Номер бронирования",
"share_collection": "Поделитесь этой коллекцией!",
"filters_and_sort": "Фильтры",
"filters_and_stats": "Фильтры",
"no_adventures_message": "Начните документировать ваши приключения и планировать новые. \nУ каждого путешествия есть история, которую стоит рассказать.",
"travel_progress": "Прогресс путешествий",
"adventures_available": "Приключения доступны",
"all_adventures_already_linked": "Все приключения уже связаны с этой коллекцией.",
"collections_linked": "Коллекции связаны",
"create_collection_first": "Сначала создайте коллекцию, чтобы организовать ваши приключения и воспоминания.",
"delete_collection_warning": "Вы уверены, что хотите удалить эту коллекцию? \nЭто действие не может быть отменено.",
"done": "Готово",
"loading_adventures": "Загрузка приключений ...",
"name_location": "имя, локация",
"collection_contents": "Содержание коллекции",
"check_in": "Регистрация",
"check_out": "Выезд",
"collection_link_location_error": "Ошибка связывания локации с коллекцией",
@@ -295,22 +221,14 @@
"create_location": "Создать локацию",
"delete_location": "Удалить локацию",
"edit_location": "Редактировать локацию",
"location_create_error": "Не удалось создать локацию",
"location_created": "Локация создана",
"location_delete_confirm": "Вы уверены, что хотите удалить это место? \nЭто действие не может быть отменено.",
"location_delete_success": "Локация успешно удалена!",
"location_not_found": "Локация не найдена",
"location_not_found_desc": "Локация, которую вы искали, не найдена. \nПожалуйста, попробуйте другую локацию или попробуйте позже.",
"location_update_error": "Не удалось обновить локацию",
"location_updated": "Локация обновлена",
"new_location": "Новая локация",
"no_collections_to_add_location": "Коллекции для добавления этой локации не нейдены.",
"no_locations_to_recommendations": "Локаций не найдено. \nДобавьте хотя бы одну локацию, чтобы получить рекомендации.",
"public_location": "Общественная локация",
"share_location": "Поделитесь этой локацией!",
"visit_calendar": "Календарь посещений",
"wiki_location_desc": "Вытягивает отрывок из статьи Википедии, соответствующей названию места.",
"will_be_marked_location": "будет отмечен как посещенынй при сохранении.",
"no_locations_found": "Локации не найдены",
"image_modal_navigate": "Используйте клавиши со стрелками или нажмите, чтобы перемещаться",
"details": "Подробности",
@@ -322,7 +240,6 @@
"quick_start": "Быстрый старт",
"achievements": "Достижения",
"active_duration": "Активная продолжительность",
"activities_name": "Активности",
"activity_name": "Название активности",
"activity_name_placeholder": "Утренняя пробежка",
"activity_name_required": "Требуется имя активности",
@@ -414,13 +331,11 @@
"select_on_map": "Выберите на карте",
"select_wanderer_trail": "Выберите маршрут из своей учетной записи Wanderer",
"sport_type": "Вид спорта",
"sport_type_placeholder": "Бег по пересечённой местности",
"start_lat": "Широта старта",
"start_lng": "Долгота старта",
"strava_activities_during_visit": "Мероприятия Strava во время посещения",
"strava_activity_ready": "Strava готова",
"time": "Время",
"total_covered": "Всего охвачено",
"total_recorded": "Всего записано",
"trail": "Маршрут",
"trail_created_successfully": "Маршрут успешно создан",
@@ -457,19 +372,7 @@
"low": "Низкий",
"rest": "Осталось",
"total": "Всего",
"attachment_removed_error": "Ошибка удаления вложения",
"attachment_removed_success": "Вложение успешно удалено",
"attachments_upload_info": "Вложения будут загружены после сохранения",
"image_upload_info": "Изображения будут загружены после сохранения",
"linked_locations": "Связанные локации",
"lodging_save_error": "Ошибка сохранения жилья",
"my_attachments": "Мои вложения",
"no_attachments": "Нет вложений",
"no_attachments_desc": "Загрузить файлы, чтобы начать",
"no_images_desc": "Загрузить изображения, чтобы начать",
"route_map": "Маршрутная карта",
"selected_attachments": "Выбранные вложения",
"selected_images": "Выбранные изображения",
"activities_text": "активность",
"activity_breakdown_by_category": "Распределение активностей по категориям",
"distance_covered": "Расстояние",
@@ -478,17 +381,112 @@
"total_climbed": "Общий набор высоты",
"total_distance": "Общее расстояние",
"dates_not_saved": "Посещение еще не добавлено",
"dates_not_saved_description": "Нажмите «Добавить посещение», чтобы сохранить"
"dates_not_saved_description": "Нажмите «Добавить посещение», чтобы сохранить",
"active_days": "Активные дни",
"add_here": "Добавить сюда",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Режим поиска аэропорта",
"all_locations_already_linked": "Все локации уже связаны с этой коллекцией.",
"arrival_airport": "Аэропорт прибытия",
"avg_rating": "Средний рейтинг",
"burned": "сожженный",
"categories": "Категории",
"cities": "Города",
"clear_search": "Очистить поиск",
"click_map_add_marker": "Нажмите на карту, чтобы разместить маркер, а затем добавьте его сюда.",
"completed": "Завершенный",
"content_media": "Содержание",
"countries": "Страны",
"country": "страна",
"departure_airport": "Аэропорт вылета",
"distance_traveled": "Пройденное расстояние",
"end_location": "Конечная локация",
"enter_location_display_name": "Введите отображаемое название местоположения",
"files": "Файлы",
"flight": "Полет",
"folder": "Папка",
"folder_view": "Просмотр папки — отображение всех данных",
"footprints": "Следы",
"gained": "получил",
"geographic_breakdown": "Географическая разбивка",
"gpx_routes": "GPX-маршруты",
"hide_filters": "Скрыть фильтры",
"images_captured": "Изображения сняты",
"in": "в",
"in_progress": "В ходе выполнения",
"items": "предметы",
"itinerary_link_modal": {
"add_here": "Добавить сюда",
"add_here_keep_date": "Добавить (Сохранить дату)",
"add_to_itinerary": "Добавить в маршрут",
"already_added": "Уже добавлено",
"already_added_on_this_day": "Уже добавлено в этот день",
"already_added_on_this_day_desc": "Эти предметы уже запланированы на этот день.",
"already_added_other_days": "Уже добавлено в другие дни",
"already_added_other_days_desc": "Эти предметы запланированы на разные даты. \nЕсли вы добавите их сюда, их дата обновится или они будут добавлены как есть.",
"items_available": "{count} элементов, доступных для ссылки",
"items_on_other_days": "Товары в другие дни",
"items_on_other_days_desc": "Эти предметы имеют разные даты. \nВы можете добавить их и при необходимости обновить их дату, чтобы она соответствовала.",
"items_on_this_day": "Предметы в этот день",
"no_unscheduled_items": "Нет незапланированных товаров",
"no_unscheduled_items_desc": "Все объекты добавлены в маршрут или нет элементов для добавления.",
"title": "Связать элементы с {date}"
},
"link_copied": "Ссылка скопирована",
"lists": "Списки",
"location_search_mode": "Режим поиска местоположения",
"locations_visited": "Посещенные места",
"lodging_not_found": "Жилье не найдено",
"lodging_types": "Типы проживания",
"more_details": "Подробнее",
"my_locations": "Мои местоположения",
"nights": "Ночи",
"no_linkable_locations": "Не найдено мест, которые можно было бы связать с этой коллекцией.",
"of_locations": "мест",
"on_this_trip": "В этой поездке",
"overnight": "Ночевка",
"physical_activities": "Физическая активность",
"pins": "булавки",
"places": "Места",
"regions": "Регионы",
"reservation": "Бронирование",
"reset_filters": "Перезагрузить",
"route": "Маршрут",
"route_selected": "Маршрут выбран",
"routes_and_activities": "Маршруты",
"saving": "Сохранение",
"search_end_location": "Искать конечное местоположение",
"search_start_end_locations": "Поиск начального и конечного местоположений",
"search_start_location": "Место начала поиска",
"segments": "Сегменты",
"select": "Выбирать",
"show_filters": "Показать фильтры",
"start_location": "Начальное местоположение",
"status_filter": "Фильтр статуса",
"stays": "Остается",
"tasks_done": "Задачи выполнены",
"total_days": "Всего дней",
"total_visits": "Всего посещений",
"transport_activity_paths": "Транспорт",
"transportation_gpx_tip": "Загрузите сюда файлы GPX, чтобы они отображались на карте.",
"traveled": "путешествовал",
"travelers": "Путешественники",
"trip_timeline": "График поездки",
"trip_window": "Окно поездки",
"upcoming": "Предстоящие",
"view": "Вид",
"wiki_results_found": "Результаты Википедии",
"with_activities": "С деятельностью",
"written": "Написано",
"export_failed": "Экспорт не удался",
"export_success": "Экспортированная коллекция",
"export_zip": "Экспортировать ZIP-файл",
"import_failed": "Импорт не выполнен",
"import_from_file": "Импорт из файла",
"import_success": "Импортировать успех"
},
"worldtravel": {
"country_list": "Список стран",
"num_countries": "стран найдено",
"all": "Все",
"partially_visited": "Частично посещённые",
"not_visited": "Не посещённые",
"completely_visited": "Полностью посещённые",
"all_subregions": "Все субрегионы",
"clear_search": "Очистить поиск",
"no_countries_found": "Страны не найдены",
"view_cities": "Просмотреть города",
"no_cities_found": "Города не найдены",
@@ -530,11 +528,6 @@
"total_cities": "Всего город",
"total_countries": "Всего стран",
"total_regions": "Всего регионов",
"newest_first": "Сначала новые",
"oldest_first": "Сначала старые",
"unvisited_first": "Сначала не посещенные",
"visited_first": "Сначала посещенные",
"total_items": "Общие предметы",
"getting_location_details": "Получение деталей локации",
"cities_available": "Города доступны",
"destination_revealed": "Открыто место!",
@@ -554,7 +547,8 @@
"about_country": "О стране",
"about_region": "О регионе",
"show_less": "Показать меньше",
"show_more": "Показать больше"
"show_more": "Показать больше",
"all_locations_visited": "Все локации посещены!"
},
"auth": {
"username": "Имя пользователя",
@@ -570,7 +564,6 @@
"registration_disabled": "Регистрация в настоящее время отключена.",
"profile_picture": "Фото профиля",
"public_profile": "Публичный профиль",
"public_tooltip": "С публичным профилем пользователи могут делиться с вами коллекциями и просматривать ваш профиль на странице пользователей.",
"new_password": "Новый пароль (6+ символов)",
"or_3rd_party": "Или войти через сторонний сервис",
"no_public_collections": "Публичные коллекции не найдены",
@@ -580,7 +573,8 @@
"enter_password": "Введите свой пароль",
"enter_username": "Введите свое имя пользователя",
"logging_in": "Вход в систему",
"totp": "Двухфакторный код"
"totp": "Двухфакторный код",
"user_email_verification_required": "Требуется подтверждение электронной почты. \nПожалуйста, проверьте свою электронную почту на наличие ссылки для подтверждения."
},
"users": {
"no_users_found": "Пользователи с публичными профилями не найдены."
@@ -750,7 +744,21 @@
"shared_collections": "Общие коллекции",
"available": "Доступный",
"linked": "Связанный",
"try_different_search": "Попробуйте другой поиск или фильтр."
"try_different_search": "Попробуйте другой поиск или фильтр.",
"changing_date_title": "Изменение дат повлияет на пункты маршрута.",
"changing_date_warning": "Любые элементы маршрута за пределами нового диапазона дат будут удалены из маршрута и возвращены в недатированные элементы коллекции.",
"clear_cover": "Прозрачная крышка",
"collaborators": "Соавторы",
"cover": "Крышка",
"cover_image": "Обложка",
"cover_image_hint": "Выберите обложку из изображений в этой коллекции.",
"create_new_collection": "Создать новую коллекцию",
"enter_collection_name": "Введите название коллекции",
"location_primary": "Крышка локации",
"no_images_available": "Из связанных мест пока нет доступных изображений.",
"public_collection_description": "Разрешить всем, у кого есть ссылка, просматривать",
"set_cover": "Установить крышку",
"update_collection_details": "Обновить информацию о коллекции"
},
"notes": {
"note_deleted": "Заметка успешно удалена!",
@@ -763,7 +771,6 @@
"content": "Содержание",
"save": "Сохранить",
"note_public": "Эта заметка публична, потому что находится в публичной коллекции.",
"add_a_link": "Добавить ссылку",
"invalid_url": "Неверный URL",
"create_new_note": "Создайте новую ноту",
"enter_note_title": "Введите заголовок",
@@ -800,9 +807,6 @@
"flight_number": "Номер рейса",
"from_location": "Откуда",
"to_location": "Куда",
"fetch_location_information": "Получить информацию о местоположении",
"starting_airport_desc": "Введите код аэропорта отправления (например, SVO)",
"ending_airport_desc": "Введите код аэропорта прибытия (например, LED)",
"edit": "Редактировать",
"modes": {
"car": "Автомобиль",
@@ -822,7 +826,13 @@
"enter_to_location": "Укажите место прибытия",
"enter_transportation_name": "Введите название транспорта",
"select_type": "Выберите тип",
"update_transportation_details": "Обновите детали транспорта"
"update_transportation_details": "Обновите детали транспорта",
"arrival_code": "Код прибытия",
"arrival_date": "Дата прибытия",
"arrival_timezone": "Часовой пояс прибытия",
"departure_code": "Код отправления",
"departure_date": "Дата отъезда",
"departure_timezone": "Часовой пояс отправления"
},
"lodging": {
"new_lodging": "Новое жилье",
@@ -842,14 +852,10 @@
"reservation_number": "Номер бронирования",
"create_new_lodging": "Новое жилье",
"enter_lodging_name": "Введите имя жилья",
"enter_price": "Введите цену",
"enter_reservation_number": "Введите номер бронирования",
"update_lodging_details": "Обновить детали жилья"
},
"search": {
"adventurelog_results": "Результаты AdventureLog",
"public_adventures": "Публичные приключения",
"online_results": "Онлайн результаты",
"cities": "Города",
"countries": "Страны",
"found": "найденный",
@@ -859,12 +865,7 @@
},
"map": {
"view_details": "Подробности",
"adventure_map": "Карта приключений",
"map_options": "Настройки карты",
"show_visited_regions": "Показать посещенные регионы",
"add_adventure_at_marker": "Добавить новое приключение в отмеченном месте",
"clear_marker": "Очистить маркер",
"add_adventure": "Добавить новое приключение",
"adventure_stats": "Приключенческая статистика",
"completion": "Завершение",
"display_options": "Параметры отображения",
@@ -876,8 +877,8 @@
"location_map": "Карта местоположения",
"locations_shown": "Места показаны",
"place_marker_desc_location": "Нажмите на карту, чтобы разместить маркер.",
"show_activities": "Показать активности",
"show_visited_cities": "Посещенные города"
"show_visited_cities": "Посещенные города",
"search_locations": "Поиск мест..."
},
"share": {
"shared": "Поделился",
@@ -886,10 +887,6 @@
"share_desc": "Поделитесь этой коллекцией с другими пользователями.",
"shared_with": "Поделился с",
"no_users_shared": "Ни с кем не поделился",
"not_shared_with": "Не поделился с",
"no_shared_found": "Не найдено коллекций, которыми с вами поделились.",
"set_public": "Чтобы пользователи могли делиться с вами, вам нужно сделать ваш профиль публичным.",
"go_to_settings": "Перейти к настройкам",
"available": "Доступный",
"pending": "В ожидании",
"revoke_invite": "Отменить приглашение",
@@ -901,10 +898,8 @@
"revoke_failed": "Отмена не удалась",
"unshare_failed": "UNSHARE не удалось"
},
"languages": {},
"profile": {
"member_since": "Участник с",
"user_stats": "Статистика пользователя",
"visited_countries": "Посещенные страны",
"visited_regions": "Посещенные регионы",
"visited_cities": "Посещенные города",
@@ -936,7 +931,6 @@
"total_visited_cities": "Всего посещенных городов",
"recent_adventures": "Недавние приключения",
"no_recent_adventures": "Нет недавних приключений?",
"add_some": "Почему бы не начать планировать ваше следующее приключение? Вы можете добавить новое приключение, нажав на кнопку ниже.",
"document_some_adventures": "Начните документировать свои путешествия и создать свою личную карту приключений!",
"view_all": "Просмотреть все",
"welcome_text_1": "Вы были на",
@@ -976,8 +970,6 @@
"loading": "Загрузка",
"loading_albums": "Загрузка альбомов",
"no_images": "Не было найдено изображений",
"select_album_first": "Сначала выберите альбом",
"select_date": "Выберите дату",
"try_different_date": "Попробуйте другую дату",
"select_album": "Выберите альбом"
},
@@ -986,11 +978,31 @@
"google_maps_integration_desc_no_staff": "Эта интеграция должна сначала быть включена администратором на этом сервере."
},
"recomendations": {
"recommendation": "Рекомендация",
"recommendations": "Рекомендации",
"food": "Еда",
"tourism": "Туризм",
"location_recommendations": "Рекомендации местоположения"
"any": "Любой",
"average_rating": "Средний рейтинг",
"discover_places": "Откройте для себя места",
"lodging": "Отели",
"map_view": "Просмотр карты",
"minimum_rating": "Минимальный рейтинг",
"minimum_reviews": "Минимум отзывов",
"no_results_yet": "Пока нет результатов",
"open_now_only": "Открыть только сейчас",
"search_around_location": "Поиск вокруг местоположения",
"search_by_address": "Поиск по адресу",
"search_radius_label": "Радиус поиска:",
"searching": "Идет поиск...",
"select_location_or_query": "Выберите местоположение или введите поисковый запрос, чтобы открыть для себя удивительные места поблизости!",
"total_results": "Общие результаты",
"use_search_instead": "Вместо этого используйте поиск",
"add_location": "Добавить местоположение",
"add_lodging": "Добавить жилье",
"away": "прочь",
"hours": "Часы",
"open": "Открыть",
"your_location": "Ваше местоположение"
},
"calendar": {
"all_day_event": "Событие на весь день",
@@ -1001,7 +1013,9 @@
"month": "Месяц",
"today": "Сегодня",
"total_events": "Общее количество событий",
"week": "Неделя"
"week": "Неделя",
"event timezone": "Часовой пояс события",
"your timezone": "Ваш часовой пояс"
},
"locations": {
"location": "Локация",
@@ -1024,15 +1038,11 @@
"title": "Приглашения"
},
"strava": {
"account_connected": "Учетная запись подключена",
"admin_setup_required": "Администратор сервера должен включить его во всем мире",
"authorization_error": "Перенаправление ошибки на URL авторизации Strava",
"connect_account": "Подключить учетную запись",
"disconnect": "Отключить",
"disconnect_error": "Ошибка отключения от Strava",
"disconnected": "Успешно отключен от Strava",
"not_configured": "Страва не настроен",
"ready_to_connect": "Готов к подключению",
"strava_integration_desc": "Подключитесь к Strava, чтобы легко импортировать ваши активации в места и посещения",
"gpx_required": "Пожалуйста, загрузите файл GPX, чтобы завершить импорт Strava",
"not_enabled": "Интеграция Strava не включена в этом случае."
@@ -1041,5 +1051,82 @@
"connected": "Успешно связанный с Wanderer",
"connection_error": "Ошибка подключения к Wanderer",
"wanderer_integration_desc": "Подключитесь к Wanderer, чтобы легко импортировать и просмотреть ваши маршруты в локациях"
},
"collections": {
"all_items": "Все предметы",
"currencies": "Валюты",
"currency": "Валюта",
"event_timezone": "Часовой пояс события",
"event_timezone_desc": "Часовой пояс события использует часовой пояс местоположения или элемента, если он доступен. \nМой часовой пояс использует",
"events": "события",
"local_timezone": "Мой часовой пояс",
"no_calendar_events": "Посещения этой коллекции пока не запланированы.",
"no_priced_items": "Добавьте цены к местам, проживанию или транспорту, чтобы увидеть общую сумму поездок в разных валютах.",
"not_found": "Коллекция не найдена",
"statistics": "Статистика",
"times_shown_in": "Время показано в",
"trip_costs": "Стоимость поездки"
},
"common": {
"show_less": "Скрыть детали",
"show_more": "Показать больше"
},
"currencies": {
"AED": "Дирхам ОАЭ",
"AUD": "Австралийский доллар",
"BRL": "Бразильский реал",
"CAD": "Канадский доллар",
"CHF": "Швейцарский франк",
"CNY": "Китайский юань",
"DKK": "Датская крона",
"EUR": "Евро",
"GBP": "Британский фунт",
"HKD": "Гонконгский доллар",
"INR": "Индийская рупия",
"JPY": "Японская иена",
"MXN": "Мексиканское песо",
"NOK": "Норвежская крона",
"NZD": "Новозеландский доллар",
"SEK": "Шведская крона",
"SGD": "Сингапурский доллар",
"TRY": "Турецкая лира",
"USD": "Доллар США",
"ZAR": "Южноафриканский рэнд",
"no_matches": "Нет совпадений",
"search": "Поиск валюты",
"select_currency": "Выберите валюту"
},
"itinerary": {
"add_description": "Добавить описание",
"add_to_day": "Добавить в день",
"add_to_trip_context": "Добавить контекст поездки",
"added_to_trip_context": "Добавлено в контекст поездки.",
"auto_generate": "Автогенерация",
"auto_generate_itinerary": "Автоматическое создание маршрута",
"auto_generate_itinerary_desc": "В этой коллекции есть датированные предметы, но пока нет маршрута. \nХотите автоматически упорядочить их по дате?",
"change_day": "День перемен",
"drag_to_reorder": "Перетащите, чтобы изменить порядок",
"failed_to_add_to_trip_context": "Не удалось добавить элемент в контекст поездки.",
"failed_to_move_to_trip_context": "Не удалось перейти к контексту поездки.",
"generating": "Создание",
"item_already_in_trip_context": "Товары уже в контексте поездки",
"item_not_found": "Товар не найден",
"item_remove_error": "Ошибка удаления объекта из маршрута.",
"item_remove_success": "Пункт удален из маршрута",
"move_to_trip_context": "Перейти к контексту поездки",
"moved_to_trip_context": "Перенесено в контекст поездки.",
"multi_day": "Многодневный",
"no_itinerary_yet": "Маршрута пока нет",
"no_plans_for_day": "Никаких планов на этот день",
"no_trip_context_items": "Элементов контекста поездки пока нет.",
"remove_from_itinerary": "Удалить из дня",
"remove_from_trip_context": "Удалить из контекста",
"start_planning": "Начните планировать поездку, добавляя пункты к определенным дням.",
"staying_overnight": "Ночевка",
"trip_context": "Контекст поездки",
"trip_context_info": "Элементы контекста поездки применяются ко всей поездке — например, места, которые являются пунктом назначения, общие заметки или упаковочные листы, важные для всей поездки.",
"unscheduled_items": "Незапланированные предметы",
"unscheduled_items_desc": "Эти элементы связаны с этой поездкой, но еще не добавлены к определенному дню.",
"link_existing_item": "Связать существующий элемент"
}
}

View File

@@ -1,16 +1,11 @@
{
"navbar": {
"adventures": "Dobrodružstvá",
"collections": "Zbierky",
"worldtravel": "Cestovanie po svete",
"map": "Mapa",
"users": "Používatelia",
"search": "Hľadať",
"profile": "Profil",
"greeting": "Ahoj",
"my_adventures": "Moje dobrodružstvá",
"my_tags": "Moje značky",
"tag": "Značka",
"shared_with_me": "Zdieľané so mnou",
"settings": "Nastavenia",
"logout": "Odhlásiť sa",
@@ -32,16 +27,14 @@
"northernLights": "Polárna žiara",
"dim": "Tlmená"
},
"navigation": "Navigácia"
"navigation": "Navigácia",
"worldtravel": "Svetové cestovanie"
},
"about": {
"about": "O aplikácii",
"license": "Licencované pod licenciou GPL-3.0.",
"source_code": "Zdrojový kód",
"message": "Vytvorené s ❤️ v Spojených štátoch.",
"oss_attributions": "Open Source Atribúcie",
"nominatim_1": "Vyhľadávanie polohy a geokódovanie poskytuje",
"nominatim_2": "Ich dáta sú licencované pod licenciou ODbL.",
"other_attributions": "Ďalšie poďakovania možno nájsť v súbore README.",
"generic_attributions": "Prihláste sa do AdventureLog pre zobrazenie poďakovaní za povolené integrácie a služby.",
"close": "Zavrieť",
@@ -79,11 +72,6 @@
"invalid_date_range": "Neplatný rozsah dátumov",
"timezone": "Časové pásmo",
"no_visits": "Žiadne návštevy",
"departure_timezone": "Časové pásmo odchodu",
"arrival_timezone": "Časové pásmo príchodu",
"departure_date": "Dátum odchodu",
"arrival_date": "Dátum príchodu",
"no_image_found": "Nenašiel sa žiadny obrázok",
"collection_link_location_error": "Chyba pri prepájaní miesta so zbierkou",
"location_delete_confirm": "Naozaj chcete odstrániť toto miesto? Táto akcia sa nedá vrátiť späť.",
"checklist_delete_confirm": "Naozaj chcete odstrániť tento checklist? Táto akcia sa nedá vrátiť späť.",
@@ -95,7 +83,6 @@
"delete_transportation": "Odstrániť dopravu",
"delete_lodging": "Odstrániť ubytovanie",
"open_details": "Otvoriť detaily",
"edit_adventure": "Upraviť dobrodružstvo",
"edit_location": "Upraviť miesto",
"remove_from_collection": "Odstrániť zo zbierky",
"add_to_collection": "Pridať do zbierky",
@@ -114,8 +101,6 @@
"copy_coordinates": "Kopírovať súradnice",
"visits": "Návštevy",
"create_new": "Vytvoriť nové...",
"adventure": "Dobrodružstvo",
"count_txt": "výsledkov zodpovedajúcich vášmu vyhľadávaniu",
"sort": "Zoradiť",
"order_by": "Zoradiť podľa",
"order_direction": "Smer zoradenia",
@@ -124,76 +109,56 @@
"updated": "Zmenené",
"name": "Názov",
"date": "Dátum",
"activity_types": "Typy aktivít",
"tags": "Značky",
"add_a_tag": "Pridať značku",
"date_constrain": "Obmedziť na dátumy zbierky",
"rating": "Hodnotenie",
"my_images": "Moje obrázky",
"no_images": "Žiadne obrázky",
"distance": "Vzdialenosť",
"share_location": "Zdieľať toto miesto!",
"share_collection": "Zdieľať túto zbierku!",
"copy_link": "Kopírovať odkaz",
"sun_times": "Časy východu a západu slnka",
"sunrise": "Východ slnka",
"sunset": "Západ slnka",
"image": "Obrázok",
"upload_image": "Nahrať obrázok",
"open_in_maps": "Otvoriť v mapách",
"url": "URL",
"fetch_image": "Načítať obrázok",
"wikipedia": "Wikipédia",
"add_notes": "Pridať poznámky",
"warning": "Upozornenie",
"my_adventures": "Moje dobrodružstvá",
"no_linkable_adventures": "Nenašli sa žiadne dobrodružstvá, ktoré by sa dali prepojiť s touto zbierkou.",
"add": "Pridať",
"save_next": "Uložiť a ďalší",
"end_date": "Dátum ukončenia",
"start_date": "Dátum začiatku",
"remove": "Odstrániť",
"location": "Miesto",
"search_for_location": "Vyhľadať miesto",
"clear_map": "Vyčistiť mapu",
"search_results": "Výsledky vyhľadávania",
"collection_no_start_end_date": "Pridaním dátumu začiatku a konca do zbierky odomknete funkcie plánovania itinerára na stránke zbierky.",
"no_results": "Nenašli sa žiadne výsledky",
"wiki_location_desc": "Načíta úryvok z článku na Wikipédii, ktorý zodpovedá názvu miesta.",
"attachments": "Prílohy",
"attachment": "Príloha",
"images": "Obrázky",
"image_modal_navigate": "Na navigáciu použite šípky alebo kliknutie",
"generate_desc": "Generovať popis",
"public_location": "Verejné miesto",
"location_information": "Informácie o mieste",
"link": "Odkaz",
"links": "Odkazy",
"description": "Popis",
"sources": "Zdroje",
"collection_adventures": "Zahrnúť dobrodružstvá zo zbierky",
"collection_locations": "Zahrnúť miesta zo zbierky",
"filter": "Filter",
"category_filter": "Filter kategórií",
"category": "Kategória",
"clear": "Vyčistiť",
"my_collections": "Moje zbierky",
"open_filters": "Otvoriť filtre",
"archived_collections": "Archivované zbierky",
"share": "Zdieľať",
"private": "Súkromné",
"public": "Verejné",
"archived": "Archivované",
"name_location": "názov, miesto",
"loading_adventures": "Načítavajú sa dobrodružstvá...",
"all_adventures_already_linked": "Všetky dobrodružstvá sú už prepojené s touto zbierkou.",
"edit_collection": "Upraviť zbierku",
"unarchive": "Vyňať z archívu",
"archive": "Archivovať",
"no_collections_to_add_location": "Nenašli sa žiadne zbierky, do ktorých by sa dalo pridať toto miesto.",
"create_collection_first": "Najprv vytvorte zbierku, aby ste mohli organizovať svoje dobrodružstvá a spomienky.",
"done": "Hotovo",
"adventures_available": "Dostupné dobrodružstvá",
"collections_linked": "Prepojené zbierky",
"not_visited": "Nenavštívené",
"archived_collection_message": "Zbierka bola úspešne archivovaná!",
@@ -208,92 +173,49 @@
"planned": "Plánované",
"duration": "Trvanie",
"all": "Všetky",
"image_removed_success": "Obrázok bol úspešne odstránený!",
"image_removed_error": "Chyba pri odstraňovaní obrázka",
"no_image_url": "Na danej URL adrese sa nenašiel žiadny obrázok.",
"image_upload_success": "Obrázok bol úspešne nahraný!",
"image_upload_error": "Chyba pri nahrávaní obrázka",
"dates": "Dátumy",
"wiki_image_error": "Chyba pri načítavaní obrázka z Wikipédie",
"start_before_end_error": "Dátum začiatku musí byť pred dátumom konca",
"actions": "Akcie",
"see_adventures": "Zobraziť dobrodružstvá",
"image_fetch_failed": "Načítanie obrázka zlyhalo",
"no_location": "Zadajte prosím miesto",
"no_description_found": "Nenašiel sa žiadny popis",
"location_created": "Miesto vytvorené",
"location_create_error": "Vytvorenie miesta zlyhalo",
"lodging": "Ubytovanie",
"create_location": "Vytvoriť miesto",
"location_updated": "Miesto aktualizované",
"location_update_error": "Aktualizácia miesta zlyhala",
"set_to_pin": "Nastaviť na špendlík",
"category_fetch_error": "Chyba pri načítavaní kategórií",
"new_location": "Nové miesto",
"basic_information": "Základné informácie",
"no_locations_to_recommendations": "Nenašli sa žiadne miesta. Pridajte aspoň jedno miesto, aby ste dostali odporúčania.",
"display_name": "Zobrazovaný názov",
"adventure_not_found": "Nenašli sa žiadne dobrodružstvá na zobrazenie. Pridajte nejaké pomocou tlačidla plus vpravo dole alebo skúste zmeniť filtre!",
"collection_contents": "Obsah zbierky",
"no_adventures_found": "Nenašli sa žiadne dobrodružstvá",
"no_locations_found": "Nenašli sa žiadne miesta",
"no_adventures_message": "Začnite dokumentovať svoje dobrodružstvá a plánovať nové. Každá cesta má príbeh, ktorý stojí za to vyrozprávať.",
"mark_visited": "Označiť ako navštívené",
"error_updating_regions": "Chyba pri aktualizácii regiónov",
"regions_updated": "regióny aktualizované",
"cities_updated": "mestá aktualizované",
"visited_region_check": "Kontrola navštívených regiónov",
"visited_region_check_desc": "Výberom tejto možnosti server skontroluje všetky vaše navštívené dobrodružstvá a označí regióny, v ktorých sa nachádzajú, ako navštívené v rámci cestovania po svete.",
"update_visited_regions": "Aktualizovať navštívené regióny",
"update_visited_regions_disclaimer": "Môže to chvíľu trvať v závislosti od počtu navštívených dobrodružstiev.",
"link_new": "Prepojiť nové...",
"add_new": "Pridať nové...",
"transportation": "Doprava",
"note": "Poznámka",
"checklist": "Checklist",
"collection_archived": "Táto zbierka bola archivovaná.",
"visit_link": "Navštíviť odkaz",
"collection_completed": "Dokončili ste túto zbierku!",
"collection_stats": "Štatistiky zbierky",
"keep_exploring": "Pokračujte v objavovaní!",
"linked_adventures": "Prepojené dobrodružstvá",
"notes": "Poznámky",
"checklists": "Checklisty",
"transportations": "Doprava",
"adventure_calendar": "Kalendár dobrodružstiev",
"visit_calendar": "Navštíviť Kalendár",
"day": "Deň",
"itineary_by_date": "Itinerár podľa dátumu",
"nothing_planned": "Na tento deň nie je nič naplánované. Užite si cestu!",
"copied_to_clipboard": "Skopírované do schránky!",
"copy_failed": "Kopírovanie zlyhalo",
"show": "Ukázať",
"hide": "Skryť",
"clear_location": "Vymazať miesto",
"starting_airport": "Letisko odletu",
"view_profile": "Zobraziť profil",
"joined": "Pripojený",
"ending_airport": "Letisko príletu",
"no_location_found": "Nenašlo sa žiadne miesto",
"from": "Od",
"to": "Do",
"will_be_marked_location": "bude označené ako navštívené po uložení miesta.",
"start": "Začiatok",
"end": "Koniec",
"emoji_picker": "Výber emoji",
"download_calendar": "Stiahnuť kalendár",
"all_day": "Celý deň",
"ordered_itinerary": "Zoradený itinerár",
"itinerary": "Itinerár",
"all_linked_items": "Všetky prepojené položky",
"date_itinerary": "Itinerár podľa dátumu",
"no_ordered_items": "Pridajte položky s dátumami do zbierky, aby ste ich tu videli.",
"date_information": "Informácie o dátume",
"flight_information": "Informácie o lete",
"out_of_range": "Mimo rozsahu dátumov itinerára",
"preview": "Náhľad",
"finding_recommendations": "Objavovanie skrytých pokladov pre vaše ďalšie dobrodružstvo",
"location_details": "Detaily miesta",
"city": "Mesto",
"region": "Región",
"md_instructions": "Napíšte svoj markdown tu...",
@@ -302,13 +224,10 @@
"attachment_upload_error": "Chyba pri nahrávaní prílohy",
"upload": "Nahrať",
"attachment_delete_success": "Príloha bola úspešne odstránená!",
"attachment_update_success": "Príloha bola úspešne aktualizovaná!",
"attachment_name": "Názov prílohy",
"gpx_tip": "Nahrajte súbory GPX do príloh, aby ste ich mohli zobraziť na mape!",
"attachment_update_error": "Chyba pri aktualizácii prílohy",
"lodging_information": "Informácie o ubytovaní",
"price": "Cena",
"reservation_number": "Číslo rezervácie",
"filters_and_sort": "Filtre a triedenie",
"filters_and_stats": "Filtre a štatistiky",
"travel_progress": "Pokrok v cestovaní",
@@ -415,7 +334,6 @@
"activity_name": "Názov aktivity",
"activity_name_placeholder": "Ranný beh",
"sport_type": "Typ športu",
"sport_type_placeholder": "Trailový beh",
"elapsed_time": "Uplynutý čas",
"elevation_gain": "Stúpanie",
"elevation_loss": "Klesanie",
@@ -439,9 +357,7 @@
"connect_to_wanderer": "Pripojiť sa k Wanderer",
"activity_statistics": "Štatistiky aktivít",
"activity_statistics_description": "Vaše fitness a úspechy v aktivitách",
"activities_name": "Aktivity",
"total_recorded": "Celkovo zaznamenané",
"total_covered": "Celková prejdená vzdialenosť",
"active_duration": "Trvanie aktivity",
"activity_name_required": "Názov aktivity je povinný",
"confirm_delete_activity": "Naozaj chcete odstrániť túto aktivitu?",
@@ -456,19 +372,7 @@
"rest": "Odpočinok",
"high": "Vysoká",
"low": "Nízka",
"route_map": "Mapa trasy",
"selected_images": "Vybrané obrázky",
"selected_attachments": "Vybrané prílohy",
"my_attachments": "Moje prílohy",
"linked_locations": "Prepojené miesta",
"lodging_save_error": "Chyba pri ukladaní ubytovania",
"attachment_removed_success": "Príloha bola úspešne odstránená",
"attachment_removed_error": "Chyba pri odstraňovaní prílohy",
"no_attachments": "Žiadne prílohy",
"no_attachments_desc": "Začnite nahrávaním súborov",
"attachments_upload_info": "Prílohy budú nahrané po uložení",
"image_upload_info": "Obrázky budú nahrané po uložení",
"no_images_desc": "Začnite nahrávaním obrázkov",
"activities_text": "aktivity",
"total_climbed": "Celkové stúpanie",
"distance_covered": "Prejdená vzdialenosť",
@@ -477,18 +381,113 @@
"recorded_sessions": "Zaznamenané relácie",
"activity_breakdown_by_category": "Rozpis aktivít podľa kategórie",
"dates_not_saved": "Návšteva ešte nepridaná",
"dates_not_saved_description": "Klikni na Pridať navštevu pre uloženie"
"dates_not_saved_description": "Klikni na Pridať navštevu pre uloženie",
"active_days": "Aktívne dni",
"add_here": "Pridajte sem",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Režim vyhľadávania letiska",
"all_locations_already_linked": "Všetky miesta sú už prepojené s touto zbierkou.",
"arrival_airport": "Príletové letisko",
"avg_rating": "Priem. hodnotenie",
"burned": "spálený",
"categories": "kategórie",
"cities": "Mestá",
"clear_search": "Vymazať vyhľadávanie",
"click_map_add_marker": "Kliknutím na mapu umiestnite značku a potom ju sem pridajte.",
"completed": "Dokončené",
"content_media": "Obsah",
"countries": "krajiny",
"country": "krajiny",
"departure_airport": "Odletové letisko",
"distance_traveled": "Prejdená vzdialenosť",
"end_location": "Koniec Poloha",
"enter_location_display_name": "Zadajte zobrazovaný názov miesta",
"files": "Súbory",
"flight": "Let",
"folder": "Priečinok",
"folder_view": "Zobrazenie priečinkov - zobrazenie všetkých údajov",
"footprints": "Stopy",
"gained": "získal",
"geographic_breakdown": "Geografické členenie",
"gpx_routes": "GPX trasy",
"hide_filters": "Skryť filtre",
"images_captured": "Zachytené obrázky",
"in": "v",
"in_progress": "Prebieha",
"items": "položky",
"itinerary_link_modal": {
"add_here": "Pridať sem",
"add_here_keep_date": "Pridať (zachovať dátum)",
"add_to_itinerary": "Pridať do itinerára",
"already_added": "Už pridané",
"already_added_on_this_day": "Už pridané v tento deň",
"already_added_on_this_day_desc": "Tieto položky sú už naplánované na tento deň.",
"already_added_other_days": "Už pridané v iné dni",
"already_added_other_days_desc": "Tieto položky sú naplánované na rôzne dátumy. \nAk ich pridáte sem, aktualizuje sa ich dátum alebo sa pridá tak, ako je.",
"items_available": "{count} položiek dostupných na prepojenie",
"items_on_other_days": "Položky v iné dni",
"items_on_other_days_desc": "Tieto položky majú rôzne dátumy. \nMôžete ich pridať a prípadne aktualizovať ich dátum, aby sa zhodoval.",
"items_on_this_day": "Položky v tento deň",
"no_unscheduled_items": "Nie sú k dispozícii žiadne neplánované položky",
"no_unscheduled_items_desc": "Všetky položky boli pridané do itinerára alebo neexistujú žiadne položky na pridanie.",
"title": "Prepojiť položky s {date}"
},
"link_copied": "Odkaz bol skopírovaný",
"lists": "zoznamy",
"location_search_mode": "Režim vyhľadávania polohy",
"locations_visited": "Navštívené miesta",
"lodging_not_found": "Ubytovanie sa nenašlo",
"lodging_types": "Typy ubytovania",
"more_details": "Viac podrobností",
"my_locations": "Moje polohy",
"nights": "Noci",
"no_linkable_locations": "Nenašli sa žiadne miesta, ktoré možno prepojiť s touto zbierkou.",
"of_locations": "miest",
"on_this_trip": "Na tomto výlete",
"overnight": "Cez noc",
"physical_activities": "Fyzické aktivity",
"pins": "špendlíky",
"places": "Miesta",
"regions": "regióny",
"reservation": "Rezervácia",
"reset_filters": "Resetovať",
"route": "Trasa",
"route_selected": "Vybraná trasa",
"routes_and_activities": "Trasy",
"saving": "Ukladanie",
"search_end_location": "Hľadať koncové miesto",
"search_start_end_locations": "Vyhľadajte miesta začiatku a konca",
"search_start_location": "Miesto začiatku vyhľadávania",
"segments": "Segmenty",
"select": "Vyberte",
"show_filters": "Zobraziť filtre",
"start_location": "Miesto začiatku",
"status_filter": "Stavový filter",
"stays": "Pobyty",
"tasks_done": "Úlohy dokončené",
"total_days": "Celkový počet dní",
"total_visits": "Celkový počet návštev",
"transport_activity_paths": "Doprava",
"transportation_gpx_tip": "Nahrajte sem súbory GPX, aby sa zobrazili na mape",
"traveled": "cestoval",
"travelers": "Cestovatelia",
"trip_timeline": "Časová os cesty",
"trip_window": "Výletné okno",
"upcoming": "Nadchádzajúce",
"view": "Zobraziť",
"wiki_results_found": "Výsledky z Wikipédie",
"with_activities": "S aktivitami",
"written": "Napísané",
"export_failed": "Export zlyhal",
"export_success": "Exportovaná kolekcia",
"export_zip": "Exportovať ZIP",
"import_failed": "Import zlyhal",
"import_from_file": "Importovať zo súboru",
"import_success": "Import bol úspešný"
},
"worldtravel": {
"country_list": "Zoznam krajín",
"num_countries": "krajín nájdených",
"cities_in": "Mestá v",
"all": "Všetky",
"partially_visited": "Čiastočne navštívené",
"not_visited": "Nenavštívené",
"completely_visited": "Úplne navštívené",
"all_subregions": "Všetky podregióny",
"clear_search": "Vymazať vyhľadávanie",
"no_countries_found": "Nenašli sa žiadne krajiny",
"no_countries_found_desc": "Skúste upraviť svoje vyhľadávacie výrazy alebo filtre, aby ste našli krajiny, ktoré hľadáte.",
"clear_filters": "Vymazať filtre",
@@ -519,7 +518,6 @@
"filter_by_region": "Filtrovať podľa regiónu",
"all_regions": "Všetky regióny",
"clear_all_filters": "Vymazať všetky filtre",
"total_items": "Celkový počet položiek",
"filter_by": "Filtrovať podľa",
"interactive_map": "Interaktívna mapa",
"no_regions_found": "Nenašli sa žiadne regióny",
@@ -530,10 +528,6 @@
"hide_map_labels": "Skryť popisky na mape",
"total_cities": "Celkový počet miest",
"region_completed": "Región dokončený",
"newest_first": "Najnovšie najprv",
"oldest_first": "Najstaršie najprv",
"visited_first": "Navštívené najprv",
"unvisited_first": "Nenavštívené najprv",
"getting_location_details": "Získavajú sa detaily miesta",
"cities_available": "Mestá k dispozícii",
"destination_revealed": "Destinácia odhalená!",
@@ -553,7 +547,8 @@
"about_country": "O krajine",
"about_region": "O regióne",
"show_less": "Zobraziť menej",
"show_more": "Zobraziť viac"
"show_more": "Zobraziť viac",
"all_locations_visited": "Všetky navštívené miesta!"
},
"auth": {
"username": "Používateľské meno",
@@ -569,7 +564,6 @@
"registration_disabled": "Registrácia je momentálne zakázaná.",
"profile_picture": "Profilový obrázok",
"public_profile": "Verejný profil",
"public_tooltip": "S verejným profilom môžu ostatní používatelia s vami zdieľať zbierku a zobraziť váš profil na stránke používateľov.",
"new_password": "Nové heslo (6+ znakov)",
"or_3rd_party": "Alebo sa prihláste pomocou služby tretej strany",
"no_public_locations": "Nenašli sa žiadne verejné miesta",
@@ -579,7 +573,8 @@
"enter_username": "Zadajte vaše používateľské meno",
"enter_password": "Zadajte vaše heslo",
"totp": "Dvojfaktorový kód",
"logging_in": "Prihlasovanie"
"logging_in": "Prihlasovanie",
"user_email_verification_required": "Vyžaduje sa overenie e-mailom. \nSkontrolujte svoj e-mail, kde nájdete overovací odkaz."
},
"users": {
"no_users_found": "Nenašli sa žiadni používatelia s verejnými profilmi."
@@ -749,7 +744,21 @@
"archived_appear_here": "Archivované zbierky sa zobrazia tu.",
"linked": "Prepojené",
"available": "Dostupné",
"try_different_search": "Skúste iné vyhľadávanie alebo filter."
"try_different_search": "Skúste iné vyhľadávanie alebo filter.",
"changing_date_title": "Zmena dátumov ovplyvní položky itinerára",
"changing_date_warning": "Všetky položky itinerára mimo nového rozsahu dátumov budú odstránené z itinerára a umiestnené späť do položiek kolekcie bez dátumu.",
"clear_cover": "Priehľadný kryt",
"collaborators": "Spolupracovníci",
"cover": "Kryt",
"cover_image": "Titulný obrázok",
"cover_image_hint": "Vyberte si obal z obrázkov v tejto kolekcii.",
"create_new_collection": "Vytvorte novú kolekciu",
"enter_collection_name": "Zadajte názov zbierky",
"location_primary": "Kryt miesta",
"no_images_available": "Zatiaľ nie sú dostupné žiadne obrázky z prepojených miest.",
"public_collection_description": "Povoliť zobrazenie komukoľvek s odkazom",
"set_cover": "Nastaviť kryt",
"update_collection_details": "Aktualizujte podrobnosti zbierky"
},
"notes": {
"note_deleted": "Poznámka bola úspešne odstránená!",
@@ -762,7 +771,6 @@
"content": "Obsah",
"save": "Uložiť",
"note_public": "Táto poznámka je verejná, pretože je vo verejnej zbierke.",
"add_a_link": "Pridať odkaz",
"invalid_url": "Neplatná URL",
"enter_note_title": "Zadajte názov poznámky",
"update_note_details": "Úprava poznámky",
@@ -799,9 +807,6 @@
"flight_number": "Číslo letu",
"from_location": "Miesto odletu",
"to_location": "Miesto príletu",
"fetch_location_information": "Načítať informácie o mieste",
"starting_airport_desc": "Zadajte kód letiska odletu (napr. JFK)",
"ending_airport_desc": "Zadajte kód letiska príletu (napr. LAX)",
"edit": "Upraviť",
"modes": {
"car": "Auto",
@@ -821,7 +826,13 @@
"enter_link": "Zadajte odkaz",
"enter_flight_number": "Zadajte číslo letu",
"enter_from_location": "Zadajte miesto odletu",
"enter_to_location": "Zadajte miesto príletu"
"enter_to_location": "Zadajte miesto príletu",
"arrival_code": "Kód príchodu",
"arrival_date": "Dátum príchodu",
"arrival_timezone": "Časové pásmo príchodu",
"departure_code": "Kód odchodu",
"departure_date": "Dátum odchodu",
"departure_timezone": "Časové pásmo odletu"
},
"lodging": {
"new_lodging": "Nové ubytovanie",
@@ -842,13 +853,9 @@
"update_lodging_details": "Aktualizovať detaily ubytovania",
"create_new_lodging": "Nové ubytovanie",
"enter_lodging_name": "Zadajte názov ubytovania",
"enter_reservation_number": "Zadajte číslo rezervácie",
"enter_price": "Zadajte cenu"
"enter_reservation_number": "Zadajte číslo rezervácie"
},
"search": {
"adventurelog_results": "Výsledky AdventureLog",
"public_adventures": "Verejné dobrodružstvá",
"online_results": "Online výsledky",
"result": "Výsledok",
"results": "Výsledky",
"found": "nájdené",
@@ -858,14 +865,9 @@
},
"map": {
"view_details": "Zobraziť detaily",
"adventure_map": "Mapa dobrodružstiev",
"location_map": "Mapa miesta",
"map_options": "Možnosti mapy",
"show_visited_regions": "Zobraziť navštívené regióny",
"add_adventure_at_marker": "Pridať nové dobrodružstvo na značke",
"add_location_at_marker": "Pridať nové miesto na značke",
"clear_marker": "Vymazať značku",
"add_adventure": "Pridať nové dobrodružstvo",
"add_location": "Pridať nové miesto",
"adventure_stats": "Štatistiky dobrodružstiev",
"map_controls": "Ovládanie mapy",
@@ -875,8 +877,8 @@
"marker_placed_on_map": "Značka umiestnená na mape",
"place_marker_desc_location": "Kliknite na mapu pre umiestnenie značky.",
"locations_shown": "zobrazených miest",
"show_activities": "Zobraziť aktivity",
"show_visited_cities": "Navštívené mestá"
"show_visited_cities": "Navštívené mestá",
"search_locations": "Hľadať miesta..."
},
"share": {
"shared": "Zdieľané",
@@ -885,10 +887,6 @@
"share_desc": "Zdieľajte túto zbierku s ostatnými používateľmi.",
"shared_with": "Zdieľané s",
"no_users_shared": "Žiadni používatelia, s ktorými sa zdieľa",
"not_shared_with": "Nezdieľané s",
"no_shared_found": "Nenašli sa žiadne zbierky, ktoré sú s vami zdieľané.",
"set_public": "Aby vám mohli ostatní používatelia zdieľať, musíte mať svoj profil nastavený ako verejný.",
"go_to_settings": "Prejsť do nastavení",
"revoke_invite": "Zrušiť pozvánku",
"send_invite": "Odoslať pozvánku",
"available": "Dostupné",
@@ -902,7 +900,6 @@
},
"profile": {
"member_since": "Člen od",
"user_stats": "Štatistiky používateľa",
"visited_countries": "Navštívené krajiny",
"visited_regions": "Navštívené regióny",
"visited_cities": "Navštívené mestá",
@@ -934,7 +931,6 @@
"total_visited_cities": "Celkový počet navštívených miest",
"recent_adventures": "Nedávne dobrodružstvá",
"no_recent_adventures": "Žiadne nedávne dobrodružstvá?",
"add_some": "Prečo nezačať plánovať svoje ďalšie dobrodružstvo? Nové dobrodružstvo môžete pridať kliknutím na tlačidlo nižšie.",
"document_some_adventures": "Začnite dokumentovať svoje cesty a vytvorte si svoju osobnú mapu dobrodružstiev!",
"view_all": "Zobraziť všetko",
"welcome_text_1": "Boli ste na",
@@ -971,24 +967,42 @@
"by_date": "Podľa dátumu",
"by_album": "Podľa albumu",
"image_search_placeholder": "Hľadať pomocou Immich",
"select_date": "Vyberte dátum",
"select_album": "Vyberte album",
"loading_albums": "Načítavajú sa albumy",
"loading": "Načítava sa",
"no_images": "Nenašli sa žiadne obrázky",
"try_different_date": "Skúste iný dátum",
"select_album_first": "Najprv vyberte album"
"try_different_date": "Skúste iný dátum"
},
"google_maps": {
"google_maps_integration_desc": "Pripojte svoj účet Google Maps, aby ste získali vysokokvalitné výsledky vyhľadávania miest a odporúčania.",
"google_maps_integration_desc_no_staff": "Túto integráciu musí najprv povoliť administrátor na tomto serveri."
},
"recomendations": {
"recommendation": "Odporúčanie",
"recommendations": "Odporúčania",
"location_recommendations": "Odporúčania miest",
"food": "Jedlo",
"tourism": "Turizmus"
"tourism": "Turizmus",
"any": "Akékoľvek",
"average_rating": "Priemerné hodnotenie",
"discover_places": "Objavte miesta",
"lodging": "hotely",
"map_view": "Zobrazenie mapy",
"minimum_rating": "Minimálne hodnotenie",
"minimum_reviews": "Minimálne recenzie",
"no_results_yet": "Zatiaľ žiadne výsledky",
"open_now_only": "Otvoriť iba teraz",
"search_around_location": "Hľadať v okolí",
"search_by_address": "Hľadať podľa adresy",
"search_radius_label": "Polomer vyhľadávania:",
"searching": "Hľadá sa...",
"select_location_or_query": "Vyberte miesto alebo zadajte vyhľadávací dopyt a objavte úžasné miesta v okolí!",
"total_results": "Celkové výsledky",
"use_search_instead": "Namiesto toho použite vyhľadávanie",
"add_location": "Pridať polohu",
"add_lodging": "Pridať ubytovanie",
"away": "preč",
"hours": "Hodiny",
"open": "OTVORENÉ",
"your_location": "Vaša poloha"
},
"calendar": {
"today": "Dnes",
@@ -999,7 +1013,9 @@
"total_events": "Celkový počet udalostí",
"calendar_overview": "Prehľad kalendára",
"filtered_results": "Filtrované výsledky",
"all_day_event": "Celodenná udalosť"
"all_day_event": "Celodenná udalosť",
"event timezone": "Časové pásmo udalosti",
"your timezone": "Vaše časové pásmo"
},
"locations": {
"location": "Miesto",
@@ -1023,11 +1039,7 @@
},
"strava": {
"strava_integration_desc": "Pripojte sa k Strava pre jednoduchý import vašich aktivít do miest a návštev",
"not_configured": "Strava nie je nakonfigurovaná",
"admin_setup_required": "Administrátor servera ju musí povoliť globálne",
"ready_to_connect": "Pripravené na pripojenie",
"connect_account": "Pripojiť účet",
"account_connected": "Účet pripojený",
"disconnect": "Odpojiť",
"authorization_error": "Chyba pri presmerovaní na autorizačnú URL Strava",
"disconnected": "Úspešne odpojené od Strava",
@@ -1039,5 +1051,82 @@
"wanderer_integration_desc": "Pripojte sa k Wanderer pre jednoduchý import a zobrazenie vašich trás v miestach",
"connection_error": "Chyba pri pripájaní k Wanderer",
"connected": "Úspešne pripojené k Wanderer"
},
"collections": {
"all_items": "Všetky položky",
"currencies": "Meny",
"currency": "mena",
"event_timezone": "Časové pásmo udalosti",
"event_timezone_desc": "Časové pásmo udalosti používa miesto alebo časové pásmo položky, ak je k dispozícii. \nMoje časové pásmo používa",
"events": "udalosti",
"local_timezone": "Moje časové pásmo",
"no_calendar_events": "Pre túto kolekciu zatiaľ nie sú naplánované žiadne návštevy.",
"no_priced_items": "Pridajte ceny k miestam, ubytovaniu alebo doprave, aby ste videli celkové počty ciest podľa meny.",
"not_found": "Zbierka sa nenašla",
"statistics": "Štatistiky",
"times_shown_in": "Časy uvedené v",
"trip_costs": "Cestovné náklady"
},
"common": {
"show_less": "Skryť podrobnosti",
"show_more": "Ukáž viac"
},
"currencies": {
"AED": "Dirham SAE",
"AUD": "Austrálsky dolár",
"BRL": "Brazílsky real",
"CAD": "Kanadský dolár",
"CHF": "Švajčiarsky frank",
"CNY": "čínsky jüan",
"DKK": "dánska koruna",
"EUR": "eur",
"GBP": "Britská libra",
"HKD": "hongkonský dolár",
"INR": "indická rupia",
"JPY": "japonský jen",
"MXN": "Mexické peso",
"NOK": "Nórska koruna",
"NZD": "Novozélandský dolár",
"SEK": "švédska koruna",
"SGD": "Singapurský dolár",
"TRY": "Turecká líra",
"USD": "americký dolár",
"ZAR": "juhoafrický Rand",
"no_matches": "Žiadne zápasy",
"search": "Vyhľadajte menu",
"select_currency": "Vyberte menu"
},
"itinerary": {
"add_description": "Pridajte popis",
"add_to_day": "Pridať do dňa",
"add_to_trip_context": "Pridajte kontext cesty",
"added_to_trip_context": "Pridané do kontextu cesty",
"auto_generate": "Automaticky generovať",
"auto_generate_itinerary": "Automaticky generovať itinerár",
"auto_generate_itinerary_desc": "Táto zbierka obsahuje položky s dátumom, ale zatiaľ žiadny itinerár. \nChcete ich automaticky usporiadať podľa dátumu?",
"change_day": "Deň zmeny",
"drag_to_reorder": "Presunutím zmeníte poradie",
"failed_to_add_to_trip_context": "Nepodarilo sa pridať položku do kontextu cesty",
"failed_to_move_to_trip_context": "Nepodarilo sa presunúť do kontextu cesty",
"generating": "Generovanie",
"item_already_in_trip_context": "Položky už v kontexte cesty",
"item_not_found": "Položka sa nenašla",
"item_remove_error": "Chyba pri odstraňovaní položky z itinerára",
"item_remove_success": "Položka bola odstránená z itinerára",
"link_existing_item": "Prepojiť existujúcu položku",
"move_to_trip_context": "Presunúť sa do kontextu cesty",
"moved_to_trip_context": "Presunuté do kontextu cesty",
"multi_day": "Viacdňové",
"no_itinerary_yet": "Zatiaľ bez itinerára",
"no_plans_for_day": "Žiadne plány na tento deň",
"no_trip_context_items": "Zatiaľ žiadne kontextové položky cesty.",
"remove_from_itinerary": "Odstrániť zo dňa",
"remove_from_trip_context": "Odstrániť z kontextu",
"start_planning": "Začnite plánovať cestu pridaním položiek do konkrétnych dní.",
"staying_overnight": "Zostať cez noc",
"trip_context": "Kontext cesty",
"trip_context_info": "Kontextové položky cesty sa vzťahujú na celú cestu napríklad miesta, ktoré sú samotným cieľom, všeobecné poznámky alebo zoznamy balíkov, ktoré sú dôležité pre celú cestu.",
"unscheduled_items": "Neplánované položky",
"unscheduled_items_desc": "Tieto položky sú spojené s touto cestou, ale zatiaľ neboli pridané ku konkrétnemu dňu."
}
}

View File

@@ -5,10 +5,7 @@
"license": "Licensierad under GPL-3.0-licensen.",
"message": "Skapat med ❤️ i USA.",
"nominatim_1": "Platssökning och geokodning tillhandahålls av",
"nominatim_2": "Deras data är licensierad under ODbL-licensen.",
"oss_attributions": "Tillskrivningar med öppen källkod",
"other_attributions": "Ytterligare attributioner finns i README-filen.",
"source_code": "Källkod",
"generic_attributions": "Logga in på AdventureLog för att visa attribut för aktiverade integrationer och tjänster.",
"attributions": "Tillskrivningar",
"developer": "Utvecklare",
@@ -21,7 +18,6 @@
},
"adventures": {
"add_to_collection": "Lägg till i samling",
"adventure": "Äventyr",
"archive": "Arkiv",
"archived": "Arkiverad",
"archived_collection_message": "Samlingen har arkiverats!",
@@ -31,8 +27,6 @@
"category_filter": "Kategorifilter",
"clear": "Rensa",
"collection": "Samling",
"collection_adventures": "Inkludera samlingsäventyr",
"count_txt": "resultat som matchar din sökning",
"create_new": "Skapa nytt...",
"date": "Datum",
"dates": "Datum",
@@ -41,7 +35,6 @@
"delete_collection_success": "Samlingen har raderats!",
"descending": "Fallande",
"duration": "Varaktighet",
"edit_adventure": "Redigera äventyr",
"edit_collection": "Redigera samling",
"filter": "Filtrera",
"homepage": "Hemsida",
@@ -49,9 +42,7 @@
"longitude": "Longitud",
"my_collections": "Mina samlingar",
"name": "Namn",
"no_image_found": "Ingen bild hittades",
"open_details": "Öppna detaljer",
"open_filters": "Öppna filter",
"order_by": "Sortera efter",
"order_direction": "Sorteringsriktning",
"planned": "Planerade",
@@ -67,116 +58,72 @@
"visit": "Besök",
"visited": "Besökta",
"visits": "Besök",
"image_removed_error": "Det gick inte att ta bort bilden",
"image_removed_success": "Bilden har tagits bort!",
"image_upload_error": "Det gick inte att ladda upp bilden",
"image_upload_success": "Bilden har laddats upp!",
"no_image_url": "Ingen bild hittades på den webbadressen.",
"start_before_end_error": "Startdatumet måste vara före slutdatumet",
"updated": "Uppdaterad",
"wiki_image_error": "Det gick inte att hämta bilden från Wikipedia",
"actions": "Åtgärder",
"activity_types": "Aktivitetstyper",
"add": "Lägg till",
"add_notes": "Lägg till anteckningar",
"basic_information": "Grundläggande information",
"category": "Kategori",
"clear_map": "Rensa karta",
"copy_link": "Kopiera länk",
"date_constrain": "Begränsa till datum i samlingen",
"description": "Beskrivning",
"end_date": "Slutdatum",
"fetch_image": "Hämta bild",
"generate_desc": "Generera beskrivning",
"image": "Bild",
"image_fetch_failed": "Det gick inte att hämta bilden",
"link": "Länk",
"location": "Plats",
"location_information": "Platsinformation",
"my_images": "Mina bilder",
"no_description_found": "Ingen beskrivning hittades",
"no_images": "Inga bilder",
"no_location": "Vänligen ange en plats",
"no_results": "Inga resultat hittades",
"remove": "Ta bort",
"save_next": "Spara & gå vidare",
"search_for_location": "Sök efter en plats",
"search_results": "Sökresultat",
"see_adventures": "Se äventyr",
"start_date": "Startdatum",
"upload_image": "Ladda upp bild",
"url": "URL",
"warning": "Varning",
"adventure_not_found": "Det finns inga äventyr att visa upp. \nLägg till några med hjälp av plusknappen längst ner till höger eller prova att byta filter!",
"all": "Alla",
"error_updating_regions": "Fel vid uppdatering av regioner",
"mark_visited": "Markera som besökt",
"my_adventures": "Mina äventyr",
"no_adventures_found": "Inga äventyr hittades",
"no_linkable_adventures": "Inga äventyr hittades som kan länkas till den här samlingen.",
"not_visited": "Ej besökta",
"regions_updated": "regioner uppdaterade",
"update_visited_regions": "Uppdatera besökta regioner",
"update_visited_regions_disclaimer": "Detta kan ta ett tag beroende på antalet äventyr du har besökt.",
"visited_region_check": "Besökte Region Check",
"visited_region_check_desc": "Genom att välja detta kommer servern att kontrollera alla dina besökta äventyr och markera de regioner de befinner sig i som besökta i världsresor.",
"wikipedia": "Wikipedia",
"add_new": "Lägg till ny...",
"checklist": "Checklista",
"checklists": "Checklistor",
"collection_archived": "Denna samling har arkiverats.",
"collection_completed": "Du har slutfört den här samlingen!",
"collection_stats": "Insamlingsstatistik",
"days": "dagar",
"itineary_by_date": "Resplan efter datum",
"keep_exploring": "Fortsätt utforska!",
"link_new": "Länk Ny...",
"linked_adventures": "Länkade äventyr",
"links": "Länkar",
"note": "Notera",
"notes": "Anteckningar",
"nothing_planned": "Inget planerat för denna dag. \nNjut av resan!",
"transportation": "Transport",
"transportations": "Transporter",
"visit_link": "Besök länken",
"day": "Dag",
"add_a_tag": "Lägg till en tagg",
"tags": "Taggar",
"set_to_pin": "Ställ in på Pin",
"category_fetch_error": "Det gick inte att hämta kategorier",
"copied_to_clipboard": "Kopierat till urklipp!",
"copy_failed": "Kopieringen misslyckades",
"adventure_calendar": "Äventyrskalender",
"emoji_picker": "Emoji-väljare",
"hide": "Dölja",
"show": "Visa",
"download_calendar": "Ladda ner kalender",
"md_instructions": "Skriv din avskrivning här...",
"preview": "Förhandsvisning",
"checklist_delete_confirm": "Är du säker på att du vill ta bort den här checklistan? Denna åtgärd kan inte ångras.",
"clear_location": "Rensa plats",
"date_information": "Datuminformation",
"delete_checklist": "Ta bort checklista",
"delete_note": "Ta bort anteckning",
"delete_transportation": "Ta bort transport",
"end": "Avsluta",
"ending_airport": "Slutar flygplats",
"flight_information": "Flyginformation",
"from": "Från",
"no_location_found": "Ingen plats hittades",
"note_delete_confirm": "Är du säker på att du vill ta bort den här anteckningen? Denna åtgärd kan inte ångras.",
"out_of_range": "Inte inom resplanens datumintervall",
"start": "Start",
"starting_airport": "Startar flygplats",
"to": "Till",
"transportation_delete_confirm": "Är du säker på att du vill ta bort den här transporten? Denna åtgärd kan inte ångras.",
"cities_updated": "städer uppdaterade",
"finding_recommendations": "Upptäck dolda pärlor för ditt nästa äventyr",
"attachment": "Bilaga",
"attachment_delete_success": "Bilagan har raderats!",
"attachment_name": "Bilagans namn",
"attachment_update_error": "Fel vid uppdatering av bilaga",
"attachment_update_success": "Bilagan har uppdaterats!",
"attachment_upload_error": "Det gick inte att ladda upp bilagan",
"attachment_upload_success": "Bilagan har laddats upp!",
"attachments": "Bilagor",
@@ -185,27 +132,16 @@
"upload": "Ladda upp",
"city": "Stad",
"delete_lodging": "Ta bort boende",
"display_name": "Visningsnamn",
"location_details": "Platsinformation",
"lodging": "Logi",
"lodging_delete_confirm": "Är du säker på att du vill ta bort det här boendet? Denna åtgärd kan inte ångras.",
"lodging_information": "Logi information",
"price": "Pris",
"region": "Område",
"reservation_number": "Bokningsnummer",
"open_in_maps": "Öppna i Maps",
"all_day": "Hela dagen",
"collection_no_start_end_date": "Att lägga till ett start- och slutdatum till samlingen kommer att låsa upp planeringsfunktioner för resplan på samlingssidan.",
"date_itinerary": "Datum resplan",
"no_ordered_items": "Lägg till objekt med datum i samlingen för att se dem här.",
"ordered_itinerary": "Beställd resplan",
"invalid_date_range": "Ogiltigt datumintervall",
"timezone": "Tidszon",
"no_visits": "Inga besök",
"arrival_timezone": "Ankomsttidszon",
"departure_timezone": "Avgångstidszon",
"arrival_date": "Ankomstdatum",
"departure_date": "Avgångsdatum",
"coordinates": "Koordinater",
"copy_coordinates": "Kopiera koordinater",
"sun_times": "Soltider",
@@ -213,7 +149,6 @@
"sunset": "Solnedgång",
"timed": "Tidsinställd",
"distance": "Avstånd",
"all_linked_items": "Alla länkade objekt",
"itinerary": "Resväg",
"joined": "Gick med i",
"view_profile": "Visa profil",
@@ -222,15 +157,11 @@
"filters_and_stats": "Filter",
"no_adventures_message": "Börja dokumentera dina äventyr och planera nya. \nVarje resa har en historia som är värd att berätta.",
"travel_progress": "Reseframsteg",
"adventures_available": "Äventyr tillgängliga",
"all_adventures_already_linked": "Alla äventyr är redan kopplade till denna samling.",
"collections_linked": "Samlingar kopplade",
"create_collection_first": "Skapa en samling först för att organisera dina äventyr och minnen.",
"delete_collection_warning": "Är du säker på att du vill ta bort den här samlingen? \nDenna åtgärd kan inte ångras.",
"done": "Gjort",
"loading_adventures": "Laddar äventyr...",
"name_location": "namn, plats",
"collection_contents": "Insamlingsinnehåll",
"check_in": "Checka in",
"check_out": "Checka ut",
"collection_link_location_error": "Ett fel uppstod när platsen länkades till samlingen",
@@ -241,22 +172,14 @@
"create_location": "Skapa plats",
"delete_location": "Radera plats",
"edit_location": "Redigera plats",
"location_create_error": "Det gick inte att skapa plats",
"location_created": "Plats skapad",
"location_delete_confirm": "Är du säker på att du vill ta bort den här platsen? Denna åtgärd kan inte ångras.",
"location_delete_success": "Plats raderas framgångsrikt!",
"location_not_found": "Plats hittades inte",
"location_not_found_desc": "Platsen du letade efter kunde inte hittas. Vänligen pröva en annan plats eller försök igen senare.",
"location_update_error": "Det gick inte att uppdatera platsen",
"location_updated": "Plats uppdaterad",
"new_location": "Ny plats",
"no_collections_to_add_location": "Inga samlingar som hittats för att lägga till den här platsen till.",
"no_locations_to_recommendations": "Inga platser hittades. \nLägg till minst en plats för att få rekommendationer.",
"public_location": "Offentlig plats",
"share_location": "Dela den här platsen!",
"visit_calendar": "Besök kalendern",
"wiki_location_desc": "Hämtar utdrag från Wikipedia-artikeln som matchar namnet på platsen.",
"will_be_marked_location": "kommer att markeras som besöks när platsen har sparats.",
"no_locations_found": "Inga platser hittades",
"image_modal_navigate": "Använd piltangenterna eller klicka för att navigera",
"details": "Information",
@@ -268,7 +191,6 @@
"quick_start": "Snabbstart",
"achievements": "Framsteg",
"active_duration": "Aktiv varaktighet",
"activities_name": "Aktiviteter",
"activity_name": "Aktivitetsnamn",
"activity_name_placeholder": "Morgonsörning",
"activity_name_required": "Aktivitetsnamn krävs",
@@ -360,13 +282,11 @@
"select_on_map": "Välj på kartan",
"select_wanderer_trail": "Välj ett spår från ditt Wanderer -konto",
"sport_type": "Sporttyp",
"sport_type_placeholder": "Spårlöpning",
"start_lat": "Börja latitud",
"start_lng": "Starta longitud",
"strava_activities_during_visit": "Strava -aktiviteter under besöket",
"strava_activity_ready": "Strava -aktivitet redo",
"time": "Tid",
"total_covered": "Total täckt",
"total_recorded": "Total inspelad",
"trail": "Spår",
"trail_created_successfully": "Spår skapades framgångsrikt",
@@ -403,19 +323,7 @@
"low": "Låg",
"rest": "Vila",
"total": "Total",
"attachment_removed_error": "Fel att ta bort bilaga",
"attachment_removed_success": "Bilaget tas bort framgångsrikt",
"attachments_upload_info": "Bilagor kommer att laddas upp efter att ha sparat",
"image_upload_info": "Bilder kommer att laddas upp efter att ha sparat",
"linked_locations": "Länkade platser",
"lodging_save_error": "Felbesparande logi",
"my_attachments": "Mina bilagor",
"no_attachments": "Inga bilagor",
"no_attachments_desc": "Ladda upp filer för att komma igång",
"no_images_desc": "Ladda upp bilder för att komma igång",
"route_map": "Ruttkarta",
"selected_attachments": "Valda bilagor",
"selected_images": "Valda bilder",
"activities_text": "aktiviteter",
"activity_breakdown_by_category": "Aktivitetsfördelning efter kategori",
"distance_covered": "Täckt avstånd",
@@ -424,7 +332,109 @@
"total_climbed": "Total stigning",
"total_distance": "Totalt avstånd",
"dates_not_saved": "Besök ännu inte tillagd",
"dates_not_saved_description": "Klicka på Lägg till Besök för att spara"
"dates_not_saved_description": "Klicka på Lägg till Besök för att spara",
"active_days": "Aktiva dagar",
"add_here": "Lägg till här",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Flygplatssökningsläge",
"all_locations_already_linked": "Alla platser är redan länkade till den här samlingen.",
"arrival_airport": "Ankomst flygplats",
"avg_rating": "Genomsnittligt betyg",
"burned": "bränt",
"categories": "Kategorier",
"cities": "Städer",
"clear_search": "Rensa sökning",
"click_map_add_marker": "Klicka på kartan för att släppa en markör och lägg sedan till den här.",
"completed": "Avslutad",
"content_media": "Innehåll",
"countries": "Länder",
"country": "land",
"departure_airport": "Avgångsflygplats",
"distance_traveled": "Tillryggalagd sträcka",
"end_location": "Slutplats",
"enter_location_display_name": "Ange platsvisningsnamn",
"files": "Filer",
"flight": "Flyg",
"folder": "Mapp",
"folder_view": "Mappvy - visar alla data",
"footprints": "Fotspår",
"gained": "vunnit",
"geographic_breakdown": "Geografisk uppdelning",
"gpx_routes": "GPX-rutter",
"hide_filters": "Dölj filter",
"images_captured": "Bilder tagna",
"in": "i",
"in_progress": "Pågår",
"items": "föremål",
"itinerary_link_modal": {
"add_here": "Lägg till här",
"add_here_keep_date": "Lägg till (Behåll datum)",
"add_to_itinerary": "Lägg till resplan",
"already_added": "Redan lagt till",
"already_added_on_this_day": "Redan lagt till denna dag",
"already_added_on_this_day_desc": "Dessa objekt är redan schemalagda för denna dag.",
"already_added_other_days": "Redan lagt till andra dagar",
"already_added_other_days_desc": "Dessa poster är schemalagda på olika datum. \nOm du lägger till dem här uppdateras deras datum eller läggs till som de är.",
"items_available": "{count} objekt tillgängliga att länka",
"items_on_other_days": "Varor andra dagar",
"items_on_other_days_desc": "Dessa föremål har olika datum. \nDu kan lägga till dem och eventuellt uppdatera deras datum för att matcha.",
"items_on_this_day": "Föremål denna dag",
"no_unscheduled_items": "Inga oplanerade objekt tillgängliga",
"no_unscheduled_items_desc": "Alla objekt har lagts till i resplanen eller så finns det inga objekt att lägga till.",
"title": "Länka objekt till {date}"
},
"link_copied": "Länk kopierad",
"lists": "Listor",
"location_search_mode": "Läge för platssökning",
"locations_visited": "Besökta platser",
"lodging_not_found": "Logi ej hittad",
"lodging_types": "Typer av boende",
"more_details": "Fler detaljer",
"my_locations": "Mina platser",
"nights": "Nätter",
"no_linkable_locations": "Inga platser hittades som kan länkas till den här samlingen.",
"of_locations": "av platser",
"on_this_trip": "På denna resa",
"overnight": "Över natten",
"physical_activities": "Fysiska aktiviteter",
"pins": "stift",
"places": "Platser",
"regions": "Regioner",
"reservation": "Bokning",
"reset_filters": "Återställa",
"route": "Rutt",
"route_selected": "Rutt vald",
"routes_and_activities": "Rutter",
"saving": "Sparande",
"search_end_location": "Sök slutplats",
"search_start_end_locations": "Sök efter start- och slutplatser",
"search_start_location": "Sök startplats",
"segments": "Segment",
"select": "Välja",
"show_filters": "Visa filter",
"start_location": "Startplats",
"status_filter": "Statusfilter",
"stays": "Står kvar",
"tasks_done": "Uppgifter gjorda",
"total_days": "Totalt antal dagar",
"total_visits": "Totalt antal besök",
"transport_activity_paths": "Transport",
"transportation_gpx_tip": "Ladda upp GPX-filer här för att få dem att visas på kartan",
"traveled": "reste",
"travelers": "Resenärer",
"trip_timeline": "Resans tidslinje",
"trip_window": "Resefönster",
"upcoming": "Kommande",
"view": "Se",
"wiki_results_found": "Wikipedia resultat",
"with_activities": "Med aktiviteter",
"written": "Skriftlig",
"export_failed": "Exporten misslyckades",
"export_success": "Exporterad samling",
"export_zip": "Exportera ZIP",
"import_failed": "Importen misslyckades",
"import_from_file": "Importera från fil",
"import_success": "Importen lyckades"
},
"home": {
"desc_1": "Upptäck, planera och utforska med lätthet",
@@ -446,13 +456,11 @@
},
"navbar": {
"about": "Om AdventureLog",
"adventures": "Äventyr",
"collections": "Samlingar",
"documentation": "Dokumentation",
"greeting": "Hej",
"logout": "Logga ut",
"map": "Karta",
"my_adventures": "Mina Äventyr",
"profile": "Profil",
"search": "Sök",
"settings": "Inställningar",
@@ -470,25 +478,16 @@
"northernLights": "Norrsken"
},
"users": "Användare",
"worldtravel": "Världsresor",
"my_tags": "Mina Taggar",
"tag": "Tagg",
"language_selection": "Språk",
"support": "Support",
"calendar": "Kalender",
"admin_panel": "Administratör",
"navigation": "Navigering"
"navigation": "Navigering",
"worldtravel": "Världsresor"
},
"worldtravel": {
"all": "Alla",
"all_subregions": "Alla underregioner",
"clear_search": "Rensa sökning",
"completely_visited": "Fullständigt besökta",
"country_list": "Lista över länder",
"no_countries_found": "Inga länder hittades",
"not_visited": "Ej besökta",
"num_countries": "länder hittades",
"partially_visited": "Delvis besökta",
"cities": "städer",
"failed_to_mark_visit": "Det gick inte att markera besök till",
"failed_to_remove_visit": "Det gick inte att ta bort besök på",
@@ -529,11 +528,6 @@
"total_cities": "Totala städer",
"total_countries": "Totala länder",
"total_regions": "Totala regioner",
"newest_first": "Nyaste första",
"oldest_first": "Äldsta först",
"unvisited_first": "Oöverträffad först",
"visited_first": "Besökt först",
"total_items": "Totala artiklar",
"getting_location_details": "Få platsinformation",
"cities_available": "Städer tillgängliga",
"destination_revealed": "Destination avslöjad!",
@@ -553,7 +547,8 @@
"about_country": "Om Country",
"about_region": "Om regionen",
"show_less": "Visa mindre",
"show_more": "Visa mer"
"show_more": "Visa mer",
"all_locations_visited": "Alla platser besökta!"
},
"auth": {
"confirm_password": "Bekräfta lösenord",
@@ -567,7 +562,6 @@
"registration_disabled": "Registreringen är för närvarande inaktiverad.",
"signup": "Registrera dig",
"username": "Användarnamn",
"public_tooltip": "Med en offentlig profil kan användare dela samlingar med dig och se din profil på användarsidan.",
"profile_picture": "Profilbild",
"public_profile": "Offentlig profil",
"new_password": "Nytt lösenord",
@@ -579,7 +573,8 @@
"enter_password": "Ange ditt lösenord",
"enter_username": "Ange ditt användarnamn",
"logging_in": "Inloggning",
"totp": "Tvåfaktorkod"
"totp": "Tvåfaktorkod",
"user_email_verification_required": "E-postverifiering krävs. \nKontrollera din e-post för en verifieringslänk."
},
"users": {
"no_users_found": "Inga användare hittades med offentliga profiler."
@@ -771,10 +766,23 @@
"shared_collections": "Delade samlingar",
"available": "Tillgänglig",
"linked": "I samband med",
"try_different_search": "Prova en annan sökning eller filter."
"try_different_search": "Prova en annan sökning eller filter.",
"changing_date_title": "Ändring av datum kommer att påverka resplanens objekt",
"changing_date_warning": "Eventuella resplanobjekt utanför det nya datumintervallet kommer att tas bort från resplanen och placeras tillbaka i samlingens odaterade objekt.",
"clear_cover": "Klart omslag",
"collaborators": "Samarbetspartners",
"cover": "Täcka",
"cover_image": "Omslagsbild",
"cover_image_hint": "Välj ett omslag från bilder i den här samlingen.",
"create_new_collection": "Skapa ny samling",
"enter_collection_name": "Ange samlingens namn",
"location_primary": "Platsskydd",
"no_images_available": "Inga bilder tillgängliga från länkade platser ännu.",
"public_collection_description": "Tillåt alla med länken att se",
"set_cover": "Sätt lock",
"update_collection_details": "Uppdatera samlingsinformation"
},
"notes": {
"add_a_link": "Lägg till en länk",
"content": "Innehåll",
"editing_note": "Redigerar anteckning",
"failed_to_save": "Det gick inte att spara anteckningen",
@@ -811,9 +819,6 @@
"transportation_delete_error": "Det gick inte att ta bort transport",
"transportation_deleted": "Transporten har raderats!",
"type": "Typ",
"ending_airport_desc": "Ange slut på flygplatskoden (t.ex. LAX)",
"fetch_location_information": "Hämta platsinformation",
"starting_airport_desc": "Ange start av flygplatskoden (t.ex. JFK)",
"create_new_transportation": "Ny transport",
"enter_flight_number": "Ange flygnummer",
"enter_from_location": "Ange från platsen",
@@ -821,12 +826,15 @@
"enter_to_location": "Ange till platsen",
"enter_transportation_name": "Ange transportnamn",
"select_type": "Välj typ",
"update_transportation_details": "Uppdatera transportdetaljer"
"update_transportation_details": "Uppdatera transportdetaljer",
"arrival_code": "Ankomstkod",
"arrival_date": "Ankomstdatum",
"arrival_timezone": "Tidszon för ankomst",
"departure_code": "Avgångskod",
"departure_date": "Avresedatum",
"departure_timezone": "Tidszon för avgång"
},
"search": {
"adventurelog_results": "AdventureLog-resultat",
"online_results": "Online resultat",
"public_adventures": "Offentliga äventyr",
"cities": "Städer",
"countries": "Länder",
"found": "funnna",
@@ -835,12 +843,7 @@
"try_searching_desc": "Försök att söka efter äventyr, samlingar, länder, regioner, städer eller användare."
},
"map": {
"add_adventure": "Lägg till nytt äventyr",
"add_adventure_at_marker": "Lägg till nytt äventyr vid Marker",
"adventure_map": "Äventyrskarta",
"clear_marker": "Rensa markör",
"map_options": "Kartalternativ",
"show_visited_regions": "Visa besökta regioner",
"view_details": "Visa detaljer",
"adventure_stats": "Äventyrsstatistik",
"completion": "Komplettering",
@@ -853,20 +856,16 @@
"location_map": "Platskarta",
"locations_shown": "Visas",
"place_marker_desc_location": "Klicka på kartan för att placera en markör.",
"show_activities": "Visningsaktiviteter",
"show_visited_cities": "Besökta städer"
"show_visited_cities": "Besökta städer",
"search_locations": "Sök efter platser..."
},
"share": {
"no_users_shared": "Inga användare delas med",
"not_shared_with": "Inte delad med",
"share_desc": "Dela den här samlingen med andra användare.",
"shared": "Delad",
"shared_with": "Delas med",
"unshared": "Odelat",
"with": "med",
"go_to_settings": "Gå till inställningar",
"no_shared_found": "Inga samlingar hittades som delas med dig.",
"set_public": "För att tillåta användare att dela med dig måste du ha en offentlig profil.",
"available": "Tillgänglig",
"pending": "I avvaktan på",
"revoke_invite": "Återkalla inbjudan",
@@ -880,7 +879,6 @@
},
"profile": {
"member_since": "Medlem sedan",
"user_stats": "Användarstatistik",
"visited_countries": "Besökta länder",
"visited_regions": "Besökta regioner",
"visited_cities": "Besökte städer",
@@ -905,7 +903,6 @@
"location_update_after_refresh": "Platskorten kommer att uppdateras när du uppdaterar sidan."
},
"dashboard": {
"add_some": "Varför inte börja planera ditt nästa äventyr? \nDu kan lägga till ett nytt äventyr genom att klicka på knappen nedan.",
"countries_visited": "Besökta länder",
"no_recent_adventures": "Inga nya äventyr?",
"recent_adventures": "Senaste äventyr",
@@ -953,16 +950,34 @@
"loading_albums": "Laddar album",
"no_images": "Inga bilder hittades",
"select_album": "Välj album",
"select_album_first": "Välj ett album först",
"select_date": "Välj datum",
"try_different_date": "Prova ett annat datum"
},
"recomendations": {
"recommendation": "Rekommendation",
"recommendations": "Rekommendationer",
"food": "Mat",
"tourism": "Turism",
"location_recommendations": "Platsrekommendationer"
"any": "Några",
"average_rating": "Genomsnittligt betyg",
"discover_places": "Upptäck platser",
"lodging": "Hotell",
"map_view": "Kartvy",
"minimum_rating": "Minsta betyg",
"minimum_reviews": "Minsta recensioner",
"no_results_yet": "Inga resultat än",
"open_now_only": "Öppna endast nu",
"search_around_location": "Sök runt plats",
"search_by_address": "Sök på adress",
"search_radius_label": "Sökradie:",
"searching": "Sökande...",
"select_location_or_query": "Välj en plats eller ange en sökfråga för att upptäcka fantastiska platser i närheten!",
"total_results": "Totala resultat",
"use_search_instead": "Använd sök istället",
"add_location": "Lägg till plats",
"add_lodging": "Lägg till boende",
"away": "bort",
"hours": "Timmar",
"open": "Öppna",
"your_location": "Din plats"
},
"lodging": {
"apartment": "Lägenhet",
@@ -982,7 +997,6 @@
"edit_lodging": "Redigera logi",
"create_new_lodging": "Inställning",
"enter_lodging_name": "Ange logi -namn",
"enter_price": "Ange pris",
"enter_reservation_number": "Ange bokningsnummer",
"update_lodging_details": "Uppdatera logiinformation"
},
@@ -999,7 +1013,9 @@
"month": "Månad",
"today": "I dag",
"total_events": "Totala evenemang",
"week": "Vecka"
"week": "Vecka",
"event timezone": "Händelsens tidszon",
"your timezone": "Din tidszon"
},
"locations": {
"location": "Plats",
@@ -1022,15 +1038,11 @@
"title": "Inbjudning"
},
"strava": {
"account_connected": "Kontonansluten",
"admin_setup_required": "Serveradministratören måste aktivera den globalt",
"authorization_error": "Fel omdirigering till STRAVA -auktorisation URL",
"connect_account": "Anslutningskonto",
"disconnect": "Koppla av",
"disconnect_error": "Fel koppla från Strava",
"disconnected": "Framgångsrikt kopplad från Strava",
"not_configured": "Strava inte konfigurerad",
"ready_to_connect": "Redo att ansluta",
"strava_integration_desc": "Anslut till Strava för att enkelt importera dina aktiviteter till platser och besök",
"gpx_required": "Ladda upp GPX -filen för att slutföra Strava -importen",
"not_enabled": "Strava -integration är inte aktiverad i det här fallet."
@@ -1039,5 +1051,82 @@
"connected": "Framgångsrikt ansluten till vandrare",
"connection_error": "Fel som ansluter till vandrare",
"wanderer_integration_desc": "Anslut till Wanderer för att enkelt importera och se dina spår på platser"
},
"collections": {
"all_items": "Alla föremål",
"currencies": "Valutor",
"currency": "Valuta",
"event_timezone": "Händelsens tidszon",
"event_timezone_desc": "Händelsetidszon använder platsen eller objektets tidszon när den är tillgänglig. \nMin tidszon använder",
"events": "händelser",
"local_timezone": "Min tidszon",
"no_calendar_events": "Inga besök är schemalagda för denna samling ännu.",
"no_priced_items": "Lägg till priser på platser, boende eller transporter för att se resebelopp per valuta.",
"not_found": "Samlingen hittades inte",
"statistics": "Statistik",
"times_shown_in": "Tider som visas i",
"trip_costs": "Resekostnader"
},
"common": {
"show_less": "Dölj detaljer",
"show_more": "Visa mer"
},
"currencies": {
"AED": "UAE Dirham",
"AUD": "Australisk dollar",
"BRL": "brasilianska real",
"CAD": "Kanadensisk dollar",
"CHF": "schweizisk franc",
"CNY": "kinesiska yuan",
"DKK": "dansk krona",
"EUR": "Euro",
"GBP": "Brittiska pundet",
"HKD": "Hong Kong dollar",
"INR": "indiska rupier",
"JPY": "japanska yen",
"MXN": "Mexikansk peso",
"NOK": "norsk krona",
"NZD": "Nyzeeländsk dollar",
"SEK": "svenska kronor",
"SGD": "Singapore dollar",
"TRY": "turkisk lira",
"USD": "US-dollar",
"ZAR": "Sydafrikansk rand",
"no_matches": "Inga matchningar",
"search": "Sök valuta",
"select_currency": "Välj valuta"
},
"itinerary": {
"add_description": "Lägg till beskrivning",
"add_to_day": "Lägg till dagen",
"add_to_trip_context": "Lägg till resesammanhang",
"added_to_trip_context": "Läggs till i resesammanhang",
"auto_generate": "Auto-generera",
"auto_generate_itinerary": "Auto-generera resplan",
"auto_generate_itinerary_desc": "Den här samlingen har daterade föremål men ingen resplan ännu. \nVill du automatiskt organisera dem efter datum?",
"change_day": "Bytesdag",
"drag_to_reorder": "Dra för att ändra ordning",
"failed_to_add_to_trip_context": "Det gick inte att lägga till objektet i resans sammanhang",
"failed_to_move_to_trip_context": "Det gick inte att flytta till resesammanhang",
"generating": "Alstrande",
"item_already_in_trip_context": "Föremål redan i resesammanhang",
"item_not_found": "Objektet hittades inte",
"item_remove_error": "Det gick inte att ta bort objekt från resplanen",
"item_remove_success": "Objektet har tagits bort från resplanen",
"link_existing_item": "Länka befintligt objekt",
"move_to_trip_context": "Flytta till Trip Context",
"moved_to_trip_context": "Flyttade till resesammanhang",
"multi_day": "Flera dagar",
"no_itinerary_yet": "Ingen resplan än",
"no_plans_for_day": "Inga planer för denna dag",
"no_trip_context_items": "Inga resekontextobjekt ännu.",
"remove_from_itinerary": "Ta bort från dag",
"remove_from_trip_context": "Ta bort från sammanhanget",
"start_planning": "Börja planera din resa genom att lägga till föremål på specifika dagar.",
"staying_overnight": "Övernattar",
"trip_context": "Resans sammanhang",
"trip_context_info": "Resans kontextobjekt gäller för hela resan till exempel platser som är själva destinationen, allmänna anteckningar eller packlistor som är viktiga för hela resan.",
"unscheduled_items": "Oschemalagda objekt",
"unscheduled_items_desc": "Dessa objekt är länkade till denna resa men har inte lagts till en specifik dag än."
}
}

View File

@@ -1,16 +1,11 @@
{
"navbar": {
"adventures": "Maceralar",
"collections": "Koleksiyonlar",
"worldtravel": "Dünya Seyahati",
"map": "Harita",
"users": "Kullanıcılar",
"search": "Ara",
"profile": "Profil",
"greeting": "Merhaba",
"my_adventures": "Maceralarım",
"my_tags": "Etiketlerim",
"tag": "Etiket",
"shared_with_me": "Benimle Paylaşılanlar",
"settings": "Ayarlar",
"logout": ıkış",
@@ -32,16 +27,14 @@
"northernLights": "Kuzey Işıkları",
"dim": "Loş"
},
"navigation": "Navigasyon"
"navigation": "Navigasyon",
"worldtravel": "Dünya Seyahati"
},
"about": {
"about": "Hakkında",
"license": "GPL-3.0 Lisansı altında lisanslanmıştır.",
"source_code": "Kaynak Kodu",
"message": "Amerika Birleşik Devletleri'nde ❤️ ile üretilmiştir.",
"oss_attributions": "Açık Kaynak Atıfları",
"nominatim_1": "Konum Arama ve Coğrafi Kodlama sağlayıcısı",
"nominatim_2": "Verileri ODbL lisansı altında lisanslanmıştır.",
"other_attributions": "Ek atıflar README dosyasında bulunabilir.",
"generic_attributions": "Etkinleştirilmiş entegrasyonlar ve hizmetler için atıfları görüntülemek üzere AdventureLog'a giriş yapın.",
"close": "Kapat",
@@ -79,11 +72,6 @@
"invalid_date_range": "Geçersiz tarih aralığı",
"timezone": "Zaman Dilimi",
"no_visits": "Ziyaret yok",
"departure_timezone": "Kalkış Zaman Dilimi",
"arrival_timezone": "Varış Zaman Dilimi",
"departure_date": "Kalkış Tarihi",
"arrival_date": "Varış Tarihi",
"no_image_found": "Görsel bulunamadı",
"collection_link_location_error": "Konumu koleksiyona bağlarken hata oluştu",
"location_delete_confirm": "Bu konumu silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.",
"checklist_delete_confirm": "Bu kontrol listesini silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.",
@@ -95,7 +83,6 @@
"delete_transportation": "Ulaşım Kaydınız Sil",
"delete_lodging": "Konaklamayı sil",
"open_details": "Ayrıntıları Aç",
"edit_adventure": "Macera Düzenle",
"edit_location": "Konumu Düzenle",
"remove_from_collection": "Koleksiyondan Kaldır",
"add_to_collection": "Koleksiyona Ekle",
@@ -113,9 +100,7 @@
"coordinates": "Koordinatlar",
"copy_coordinates": "Koordinatları Kopyala",
"visits": "Ziyaretler",
"create_new": "Yeni Oluştur...",
"adventure": "Macera",
"count_txt": "aramanızla eşleşen sonuçlar",
"create_new": "Yeni Oluştur",
"sort": "Sıralama",
"order_by": "Sıralama Ölçütü",
"order_direction": "Sıralama Şekli",
@@ -124,103 +109,68 @@
"updated": "Güncellenme",
"name": "İsim",
"date": "Tarih",
"activity_types": "Etkinlik Türleri",
"tags": "Etiketler",
"add_a_tag": "Etiket ekle",
"date_constrain": "Koleksiyon tarihleri ile sınırla",
"rating": "Derecelendirme",
"my_images": "Fotoğraflarım",
"no_images": "Görsel yok",
"distance": "Mesafe",
"share_location": "Bu konumu paylaşın!",
"share_collection": "Bu koleksiyonu paylaşın!",
"copy_link": "Bağlantıyı Kopyala",
"sun_times": "Güneş Zamanları",
"sunrise": "Gün Doğumu",
"sunset": "Gün Batımı",
"image": "Görsel",
"upload_image": "Görsel Yükle",
"open_in_maps": "Haritada Aç",
"url": "Web Adresi",
"fetch_image": "Görseli Getir",
"wikipedia": "Vikipedi",
"add_notes": "Not ekle",
"warning": "Uyarı",
"my_adventures": "Maceralarım",
"no_linkable_adventures": "Bu koleksiyonla bağlantılı hiçbir macera bulunamadı.",
"add": "Ekle",
"save_next": "Kaydet & İleri",
"end_date": "Bitiş Tarihi",
"start_date": "Başlangıç Tarihi",
"remove": "Kaldır",
"location": "Konum",
"search_for_location": "Konum ara",
"clear_map": "Haritayı temizle",
"search_results": "Arama Sonuçları",
"collection_no_start_end_date": "Koleksiyona bir başlangıç ve bitiş tarihi eklemek, koleksiyon sayfasında gezi planlama özelliklerini kullanmanıza olanak tanır.",
"no_results": "Hiçbir sonuç bulunamadı",
"wiki_location_desc": "Bulunduğunuz konumun adıyla eşleşen Vikipedi makalesinden alıntı çeker.",
"attachments": "Ekler",
"attachment": "Ek",
"images": "Görseller",
"image_modal_navigate": "Gezinmek için ok tuşlarını kullanın",
"generate_desc": "Açıklama Oluştur",
"public_location": "Herkese Açık Konum",
"location_information": "Konum Bilgisi",
"link": "Bağlantı",
"transportation": "Ulaşım",
"note": "Not",
"checklist": "Kontrol listesi",
"collection_archived": "Bu koleksiyon arşivlenmiştir.",
"visit_link": "Bağlantıyı ziyaret edin",
"collection_completed": "Bu koleksiyonu tamamladınız!",
"collection_stats": "Koleksiyon İstatistikleri",
"keep_exploring": "Keşfetmeye devam edin!",
"linked_adventures": "Bağlantılı Maceralar",
"notes": "Notlar",
"checklists": "Kontrol listeleri",
"transportations": "Ulaşım Seçenekleri",
"adventure_calendar": "Macera Takvimi",
"visit_calendar": "Ziyaret Takvimi",
"day": "Gün",
"itineary_by_date": "Tarihe Göre Gezi Planı",
"nothing_planned": "Bugün için planlanmış bir şey yok. Yolculuğun tadını çıkar!",
"copied_to_clipboard": "Panoya kopyalandı!",
"copy_failed": "Kopyalama başarısız",
"show": "Göster",
"hide": "Gizle",
"clear_location": "Konumu Temizle",
"starting_airport": "Kalkış Havaalanı",
"view_profile": "Profili Görüntüle",
"joined": "Katıldı",
"ending_airport": "Varış Havaalanı",
"no_location_found": "Konum bulunamadı",
"links": "Bağlantılar",
"description": "Açıklama",
"sources": "Kaynaklar",
"collection_adventures": "Koleksiyon Maceralarını Dahil Et",
"collection_locations": "Koleksiyon Konumlarını Dahil Et",
"filter": "Filtre",
"category_filter": "Kategori Filtresi",
"category": "Kategori",
"clear": "Temizle",
"my_collections": "Koleksiyonlarım",
"open_filters": "Filtreleri Aç",
"archived_collections": "Arşivlenmiş Koleksiyonlar",
"share": "Paylaş",
"private": "Gizli",
"public": "Herkese Açık",
"archived": "Arşivlenmiş",
"name_location": "isim, konum",
"loading_adventures": "Maceralar yükleniyor...",
"all_adventures_already_linked": "Bu koleksiyona eklenebilecek tüm maceralar zaten bağlı.",
"edit_collection": "Koleksiyonu Düzenle",
"unarchive": "Arşivden Çıkar",
"archive": "Arşivle",
"no_collections_to_add_location": "Bu konumu ekleyecek koleksiyon bulunamadı.",
"create_collection_first": "Maceralarınızı ve anılarınızı düzenlemek için önce bir koleksiyon oluşturun.",
"done": "Bitti",
"adventures_available": "Uygun Maceralar",
"collections_linked": "Bağlı Koleksiyonlar",
"not_visited": "Ziyaret Edilmedi",
"archived_collection_message": "Koleksiyon başarıyla arşivlendi!",
@@ -235,65 +185,37 @@
"planned": "Planlandı",
"duration": "Süre",
"all": "Hepsi",
"image_removed_success": "Görsel başarıyla kaldırıldı!",
"image_removed_error": "Görseli kaldırırken hata oluştu",
"no_image_url": "Belirtilen URLde herhangi bir görsel bulunamadı.",
"image_upload_success": "Görsel başarıyla yüklendi!",
"image_upload_error": "Görsel yüklenirken hata oluştu",
"dates": "Tarihler",
"wiki_image_error": "Vikipediden görsel alınırken hata oluştu",
"start_before_end_error": "Başlangıç tarihi, bitiş tarihinden önce olmalıdır",
"actions": "Eylemler",
"see_adventures": "Maceraları Görüntüle",
"image_fetch_failed": "Görsel alınamadı",
"no_location": "Lütfen bir konum girin",
"no_description_found": "Açıklama bulunamadı",
"location_created": "Konum oluşturuldu",
"location_create_error": "Konum oluşturulamadı",
"lodging": "Konaklama",
"create_location": "Konum Oluştur",
"location_updated": "Konum güncellendi",
"location_update_error": "Konum güncellenemedi",
"set_to_pin": "Sabitle",
"category_fetch_error": "Kategoriler yüklenemedi",
"new_location": "Yeni Konum",
"basic_information": "Temel Bilgiler",
"no_locations_to_recommendations": "Hiçbir konum bulunamadı. Öneriler almak için en az bir konum ekleyin.",
"display_name": "Görünen Ad",
"adventure_not_found": "Görüntülenecek macera bulunmuyor. Sağ alttaki artı butonunu kullanarak yeni macera ekleyin veya filtreleri değiştirmeyi deneyin!",
"collection_contents": "Koleksiyon İçeriği",
"no_adventures_found": "Hiç macera bulunamadı",
"no_locations_found": "Hiç konum bulunamadı",
"no_adventures_message": "Maceralarını belgelemeye ve yenilerini planlamaya başla. Her yolculuğun anlatmaya değer bir hikayesi vardır.",
"mark_visited": "Ziyaret Edildi Olarak İşaretle",
"error_updating_regions": "Bölgeler güncellenirken hata oluştu",
"regions_updated": "bölgeler güncellendi",
"cities_updated": "şehirler güncellendi",
"visited_region_check": "Ziyaret Edilen Bölge Kontrolü",
"visited_region_check_desc": "Bunu seçerek, sunucu ziyaret ettiğiniz tüm maceraları kontrol eder ve bulundukları bölgeleri dünya seyahatinde \"ziyaret edilmiş\" olarak işaretler.",
"update_visited_regions": "Ziyaret Edilen Bölgeleri Güncelle",
"update_visited_regions_disclaimer": "Bu işlem, ziyaret ettiğiniz macera sayısına bağlı olarak biraz zaman alabilir.",
"link_new": "Yeni Bağlantı Ekle...",
"add_new": "Yeni Ekle...",
"from": "Nereden",
"to": "Nereye",
"will_be_marked_location": "Konum kaydedildiğinde ziyaret edilmiş olarak işaretlenecek.",
"start": "Başlat",
"end": "Bitir",
"emoji_picker": "Emoji Seçici",
"download_calendar": "Takvimi İndir",
"all_day": "Tüm Gün",
"ordered_itinerary": "Sıralı Gezi Planı",
"itinerary": "Seyahat Programı",
"all_linked_items": "Tüm Bağlantılı Öğeler",
"date_itinerary": "Seyahat tarihi",
"no_ordered_items": "Burada görmek için koleksiyona tarihli öğeler ekleyin.",
"date_information": "Tarih Bilgisi",
"flight_information": "Uçuş Bilgisi",
"out_of_range": "Seyahat planı tarihi aralığında değil",
"preview": "Önizle",
"finding_recommendations": "Bir sonraki maceranız için keşfedilmemiş güzellikleri buluyor",
"location_details": "Konum Detayları",
"city": "Şehir",
"region": "Bölge",
"md_instructions": "Markdown metninizi buraya yazın...",
@@ -302,13 +224,10 @@
"attachment_upload_error": "Dosya yüklenirken hata oluştu",
"upload": "Yükle",
"attachment_delete_success": "Dosya başarıyla silindi!",
"attachment_update_success": "Dosya başarıyla güncellendi!",
"attachment_name": "Dosya Adı",
"gpx_tip": "Haritada görüntülemek için GPX dosyalarını ek bölümüne yükleyin!",
"attachment_update_error": "Dosya güncellenirken hata oluştu",
"lodging_information": "Konaklama Bilgisi",
"price": "Ücret",
"reservation_number": "Rezervasyon Numarası",
"filters_and_sort": "Filtreler & Sırala",
"filters_and_stats": "Filtreler & İstatistikler",
"travel_progress": "Seyahat İlerleme Durumu",
@@ -415,7 +334,6 @@
"activity_name": "Aktivite Adı",
"activity_name_placeholder": "Sabah Koşusu",
"sport_type": "Spor Türü",
"sport_type_placeholder": "Patika Koşusu",
"elapsed_time": "Geçen Süre",
"elevation_gain": "Rakım Artışı",
"elevation_loss": "Rakım Kaybı",
@@ -439,9 +357,7 @@
"connect_to_wanderer": "Wanderer'a Bağlan",
"activity_statistics": "Aktivite İstatistikleri",
"activity_statistics_description": "Fitness ve aktivite başarımlarınız",
"activities_name": "Aktiviteler",
"total_recorded": "Toplam kayıt",
"total_covered": "Toplam kat edilen",
"active_duration": "Aktif süre",
"activity_name_required": "Aktivite adı gerekli",
"confirm_delete_activity": "Bu aktiviteyi silmek istediğinize emin misiniz?",
@@ -456,19 +372,7 @@
"rest": "Dinlenme",
"high": "Yüksek",
"low": "Alçak",
"route_map": "Rota Haritası",
"selected_images": "Seçilen Görseller",
"selected_attachments": "Seçilen Ekler",
"my_attachments": "Eklerim",
"linked_locations": "Bağlantılı Konumlar",
"lodging_save_error": "Konaklama kaydedilirken hata oluştu",
"attachment_removed_success": "Ek başarıyla kaldırıldı",
"attachment_removed_error": "Ek dosya kaldırılırken hata oluştu",
"no_attachments": "Hiç Ek Dosya Yok",
"no_attachments_desc": "Başlamak için dosya yükleyin",
"attachments_upload_info": "Ekler, kaydı kaydettikten sonra yüklenecek",
"image_upload_info": "Görseller, kayıt kaydedildikten sonra yüklenecektir",
"no_images_desc": "Başlamak için görsel yükleyin",
"activities_text": "aktiviteler",
"total_climbed": "Toplam Tırmanış",
"distance_covered": "Kat edilen mesafe",
@@ -477,18 +381,113 @@
"recorded_sessions": "Kaydedilmiş Oturumlar",
"activity_breakdown_by_category": "Kategoriye Göre Aktivite Dağılımı",
"dates_not_saved": "Henüz Ziyaret Eklenmedi",
"dates_not_saved_description": "Kaydetmek için ziyaret ekle'ye tıklayın"
"dates_not_saved_description": "Kaydetmek için ziyaret ekle'ye tıklayın",
"active_days": "Aktif Günler",
"add_here": "Buraya ekle",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Havaalanı Arama Modu",
"all_locations_already_linked": "Tüm konumlar zaten bu koleksiyona bağlı.",
"arrival_airport": "Varış Havaalanı",
"avg_rating": "Ort. Derecelendirme",
"burned": "yanmış",
"clear_search": "Aramayı temizle",
"click_map_add_marker": "Bir işaretçi bırakmak için haritayı tıklayın ve ardından buraya ekleyin.",
"completed": "Tamamlanmış",
"content_media": "İçerik",
"countries": "Ülkeler",
"country": "ülke",
"departure_airport": "Kalkış Havaalanı",
"distance_traveled": "Kat Edilen Mesafe",
"end_location": "Bitiş Konumu",
"enter_location_display_name": "Konumun görünen adını girin",
"files": "Dosyalar",
"flight": "Uçuş",
"folder": "Dosya",
"folder_view": "Klasör görünümü - tüm verileri gösterir",
"footprints": "Ayak izleri",
"gained": "kazanılmış",
"geographic_breakdown": "Coğrafi Dağılım",
"gpx_routes": "GPX Rotaları",
"hide_filters": "Filtreleri Gizle",
"images_captured": "Yakalanan görüntüler",
"in": "içinde",
"in_progress": "Devam etmekte",
"items": "öğeler",
"itinerary_link_modal": {
"add_here": "Buraya Ekle",
"add_here_keep_date": "Ekle (Tarihi Tut)",
"add_to_itinerary": "Seyahat Programına Ekle",
"already_added": "Zaten Eklendi",
"already_added_on_this_day": "Bu günde zaten eklendi",
"already_added_on_this_day_desc": "Bu öğeler zaten bu gün için planlandı.",
"already_added_other_days": "Diğer günlerde zaten eklendi",
"already_added_other_days_desc": "Bu öğeler farklı tarihlerde planlanmıştır. \nBunları buraya eklemek, tarihlerinin güncellenmesine veya olduğu gibi eklenmesine neden olur.",
"items_available": "Bağlanabilecek {count} öğe mevcut",
"items_on_other_days": "Diğer günlerdeki ürünler",
"items_on_other_days_desc": "Bu öğelerin farklı tarihleri vardır. \nBunları ekleyebilir ve isteğe bağlı olarak tarihlerini eşleşecek şekilde güncelleyebilirsiniz.",
"items_on_this_day": "Bu günkü öğeler",
"no_unscheduled_items": "Planlanmamış öğe yok",
"no_unscheduled_items_desc": "Seyahat planına tüm öğeler eklendi veya eklenecek öğe yok.",
"title": "Öğeleri {date} tarihine bağlayın"
},
"link_copied": "Bağlantı Kopyalandı",
"lists": "Listeler",
"location_search_mode": "Konum Arama Modu",
"locations_visited": "Ziyaret edilen yerler",
"lodging_not_found": "Konaklama Bulunamadı",
"lodging_types": "Konaklama Türleri",
"more_details": "Daha Fazla Detay",
"my_locations": "Konumlarım",
"nights": "Geceler",
"no_linkable_locations": "Bu koleksiyona bağlanabilecek konum bulunamadı.",
"of_locations": "konumların",
"on_this_trip": "Bu yolculukta",
"overnight": "Gecelik",
"physical_activities": "Fiziksel Aktiviteler",
"pins": "iğneler",
"places": "Yer",
"regions": "Bölgeler",
"reservation": "Rezervasyon",
"reset_filters": "Sıfırla",
"route": "Rota",
"route_selected": "Seçilen Rota",
"routes_and_activities": "Rotalar",
"saving": "Kaydediliyor",
"search_end_location": "Arama bitiş konumu",
"search_start_end_locations": "Başlangıç ve bitiş konumlarını arayın",
"search_start_location": "Arama başlangıç konumu",
"segments": "Segmentler",
"select": "Seçme",
"show_filters": "Filtreleri Göster",
"start_location": "Başlangıç Konumu",
"status_filter": "Durum Filtresi",
"stays": "Konaklamalar",
"tasks_done": "Tamamlanan Görevler",
"total_days": "Toplam Günler",
"total_visits": "Toplam ziyaret",
"transport_activity_paths": "Taşıma",
"transportation_gpx_tip": "Haritada görüntülenmesi için GPX dosyalarını buraya yükleyin",
"traveled": "seyahat etti",
"travelers": "Gezginler",
"trip_timeline": "Yolculuk Zaman Çizelgesi",
"trip_window": "Gezi penceresi",
"upcoming": "Yaklaşan",
"view": "Görüş",
"wiki_results_found": "Vikipedi Sonuçları",
"with_activities": "Faaliyetlerle",
"written": "Yazılı",
"categories": "Kategoriler",
"cities": "Şehirler",
"export_failed": "Dışa aktarma başarısız oldu",
"export_success": "Dışa aktarılan koleksiyon",
"export_zip": "ZIP'i dışa aktar",
"import_failed": "İçe Aktarma Başarısız",
"import_from_file": "Dosyadan içe aktar",
"import_success": "İçe Aktarma Başarısı"
},
"worldtravel": {
"country_list": "Ülke Listesi",
"num_countries": "ülkeler bulundu",
"cities_in": "'deki şehirler",
"all": "Hepsi",
"partially_visited": "Kısmen Ziyaret Edilmiş",
"not_visited": "Ziyaret Edilmemiş",
"completely_visited": "Tamamen Ziyaret Edilmiş",
"all_subregions": "Tüm Alt Bölgeler",
"clear_search": "Aramayı Temizle",
"no_countries_found": "Ülke bulunamadı",
"no_countries_found_desc": "Aradığınız ülkeleri bulmak için arama terimlerinizi veya filtrelerinizi ayarlamayı deneyin.",
"clear_filters": "Filtreleri Temizle",
@@ -519,7 +518,6 @@
"filter_by_region": "Bölgeye Göre Filtrele",
"all_regions": "Tüm Bölgeler",
"clear_all_filters": "Tüm Filtreleri Temizle",
"total_items": "Toplam Öğe",
"filter_by": "Şuna Göre Filtrele",
"interactive_map": "İnteraktif Harita",
"no_regions_found": "Bölge bulunamadı",
@@ -530,10 +528,6 @@
"hide_map_labels": "Harita Etiketlerini Gizle",
"total_cities": "Toplam Şehir",
"region_completed": "Bölge Tamamlandı",
"newest_first": "Önce En Yeni",
"oldest_first": "Önce En Eski",
"visited_first": "Önce Ziyaret Edilenler",
"unvisited_first": "Önce Ziyaret Edilmeyenler",
"getting_location_details": "Konum detayları alınıyor",
"hide_globe_spin": "Küre Dönüşünü Gizle",
"show_globe_spin": "Küre Dönüşünü Göster",
@@ -553,7 +547,8 @@
"about_country": "Ülke Hakkında",
"about_region": "Bölge Hakkında",
"show_less": "Daha Az Göster",
"show_more": "Daha Fazla Göster"
"show_more": "Daha Fazla Göster",
"all_locations_visited": "Ziyaret edilen tüm yerler!"
},
"auth": {
"username": "Kullanıcı Adı",
@@ -569,7 +564,6 @@
"registration_disabled": "Kayıt işlemi şu anda devre dışı.",
"profile_picture": "Profil Resmi",
"public_profile": "Herkese Açık Profil",
"public_tooltip": "Herkese açık bir profil ile, kullanıcılar koleksiyonları sizinle paylaşabilir ve profilinizi kullanıcılar sayfasında görüntüleyebilir.",
"new_password": "Yeni Şifre (6+ karakter)",
"or_3rd_party": "Veya bir üçüncü taraf hizmeti ile giriş yapın",
"no_public_locations": "Herkese açık konum bulunamadı",
@@ -579,7 +573,8 @@
"enter_username": "Kullanıcı adınızı girin",
"enter_password": "Şifrenizi girin",
"totp": "İki Aşamalı Doğrulama Kodu",
"logging_in": "Giriş yapılıyor"
"logging_in": "Giriş yapılıyor",
"user_email_verification_required": "E-posta doğrulaması gerekli. \nDoğrulama bağlantısı için lütfen e-postanızı kontrol edin."
},
"users": {
"no_users_found": "Herkese açık profili olan kullanıcı bulunamadı."
@@ -749,7 +744,21 @@
"archived_appear_here": "Arşivlenmiş koleksiyonlar burada görünecektir.",
"linked": "Bağlantılı",
"available": "Mevcut",
"try_different_search": "Farklı bir arama veya filtre deneyin."
"try_different_search": "Farklı bir arama veya filtre deneyin.",
"changing_date_title": "Tarihlerin değiştirilmesi seyahat planı öğelerini etkileyecektir",
"changing_date_warning": "Yeni tarih aralığının dışındaki tüm seyahat planı öğeleri seyahat programından kaldırılacak ve koleksiyonun tarihsiz öğelerine geri yerleştirilecektir.",
"clear_cover": "Kapağı temizle",
"collaborators": "İşbirlikçiler",
"cover": "Kapak",
"cover_image": "Kapak resmi",
"cover_image_hint": "Bu koleksiyondaki resimlerden bir kapak seçin.",
"create_new_collection": "Yeni koleksiyon oluştur",
"enter_collection_name": "Koleksiyon adını girin",
"location_primary": "Konum kapağı",
"no_images_available": "Henüz bağlantılı konumlardan resim mevcut değil.",
"public_collection_description": "Bağlantıya sahip herkesin görüntülemesine izin ver",
"set_cover": "Kapağı ayarla",
"update_collection_details": "Koleksiyon ayrıntılarını güncelleyin"
},
"notes": {
"note_deleted": "Not başarıyla silindi!",
@@ -762,7 +771,6 @@
"content": "İçerik",
"save": "Kaydet",
"note_public": "Bu not, herkese açık bir koleksiyonda olduğu için herkese açıktır.",
"add_a_link": "Bir bağlantı ekleyin",
"invalid_url": "Geçersiz URL",
"enter_note_title": "Not başlığını girin",
"update_note_details": "Not düzenleniyor",
@@ -799,9 +807,6 @@
"flight_number": "Uçuş Numarası",
"from_location": "Başlangıç Konumu",
"to_location": "Varış Konumu",
"fetch_location_information": "Konum Bilgilerini Getir",
"starting_airport_desc": "Başlangıç havaalanı kodunu girin (örn. IST)",
"ending_airport_desc": "Varış havaalanı kodunu girin (örn. BJV)",
"edit": "Düzenle",
"modes": {
"car": "Araba",
@@ -821,7 +826,13 @@
"enter_link": "Bağlantı girin",
"enter_flight_number": "Uçuş numarasını girin",
"enter_from_location": "Başlangıç konumunu girin",
"enter_to_location": "Varış konumunu girin"
"enter_to_location": "Varış konumunu girin",
"arrival_code": "Varış Kodu",
"arrival_date": "Varış Tarihi",
"arrival_timezone": "Varış Saat Dilimi",
"departure_code": "Kalkış Kodu",
"departure_date": "Ayrılış Tarihi",
"departure_timezone": "Kalkış Saat Dilimi"
},
"lodging": {
"new_lodging": "Yeni Konaklama",
@@ -842,13 +853,9 @@
"update_lodging_details": "Konaklama Detaylarını Güncelle",
"create_new_lodging": "Yeni Konaklama",
"enter_lodging_name": "Konaklama adını girin",
"enter_reservation_number": "Rezervasyon numarası girin",
"enter_price": "Fiyat girin"
"enter_reservation_number": "Rezervasyon numarası girin"
},
"search": {
"adventurelog_results": "AdventureLog Sonuçları",
"public_adventures": "Herkese Açık Maceralar",
"online_results": "Çevrimiçi Sonuçlar",
"result": "Sonuç",
"results": "Sonuçlar",
"found": "bulundu",
@@ -858,14 +865,9 @@
},
"map": {
"view_details": "Detayları Görüntüle",
"adventure_map": "Macera Haritası",
"location_map": "Konum Haritası",
"map_options": "Harita Seçenekleri",
"show_visited_regions": "Ziyaret Edilen Bölgeleri Göster",
"add_adventure_at_marker": "İşaretçide Yeni Macera Ekle",
"add_location_at_marker": "İşaretçide Yeni Konum Ekle",
"clear_marker": "İşaretçiyi Temizle",
"add_adventure": "Yeni Macera Ekle",
"add_location": "Yeni Konum Ekle",
"adventure_stats": "Macera İstatistikleri",
"map_controls": "Harita Kontrolleri",
@@ -875,8 +877,8 @@
"marker_placed_on_map": "Haritaya işaretçi yerleştirildi",
"place_marker_desc_location": "Bir işaretçi yerleştirmek için haritaya tıklayın.",
"locations_shown": "gösterilen konumlar",
"show_activities": "Aktiviteleri Göster",
"show_visited_cities": "Ziyaret Edilen Şehirler"
"show_visited_cities": "Ziyaret Edilen Şehirler",
"search_locations": "Konumları arayın..."
},
"share": {
"shared": "Paylaşılan",
@@ -885,10 +887,6 @@
"share_desc": "Bu koleksiyonu diğer kullanıcılarla paylaşın.",
"shared_with": "Paylaşıldığı Kişiler",
"no_users_shared": "Paylaşılan kullanıcı yok",
"not_shared_with": "Şunlarla Paylaşılmadı",
"no_shared_found": "Sizinle paylaşılan herhangi bir koleksiyon bulunamadı.",
"set_public": "Kullanıcıların sizinle paylaşım yapabilmesi için profilinizin herkese açık olarak ayarlanmış olması gerekir.",
"go_to_settings": "Ayarlara git",
"revoke_invite": "Daveti İptal Et",
"send_invite": "Davet Gönder",
"available": "Mevcut",
@@ -902,7 +900,6 @@
},
"profile": {
"member_since": "Üyelik tarihi",
"user_stats": "Kullanıcı İstatistikleri",
"visited_countries": "Ziyaret Edilen Ülkeler",
"visited_regions": "Ziyaret Edilen Bölgeler",
"visited_cities": "Ziyaret Edilen Şehirler",
@@ -934,7 +931,6 @@
"total_visited_cities": "Toplam Ziyaret Edilen Şehirler",
"recent_adventures": "Son Maceralar",
"no_recent_adventures": "Son zamanlarda maceranız yok mu?",
"add_some": "Neden bir sonraki maceranızı planlamaya başlamıyorsunuz? Aşağıdaki butona tıklayarak yeni bir macera ekleyebilirsiniz.",
"document_some_adventures": "Seyahatlerinizi belgelemeye başlayın ve kişisel macera haritanızı oluşturun!",
"view_all": "Tümünü Görüntüle",
"welcome_text_1": "Şu kadar süredir",
@@ -971,24 +967,42 @@
"by_date": "Tarihe Göre",
"by_album": "Albüme Göre",
"image_search_placeholder": "Immich kullanarak arama yapın",
"select_date": "Tarih Seçin",
"select_album": "Albüm Seçin",
"loading_albums": "Albümler Yükleniyor",
"loading": "Yükleniyor",
"no_images": "Hiçbir Görsel Bulunamadı",
"try_different_date": "Farklı bir tarih deneyin",
"select_album_first": "Önce Bir Albüm Seçin"
"try_different_date": "Farklı bir tarih deneyin"
},
"google_maps": {
"google_maps_integration_desc": "Yüksek kaliteli konum arama sonuçları ve öneriler almak için Google Maps hesabınızı bağlayın.",
"google_maps_integration_desc_no_staff": "Bu entegrasyon öncelikle bu sunucudaki yönetici tarafından etkinleştirilmelidir."
},
"recomendations": {
"recommendation": "Öneri",
"recommendations": "Önerilenler",
"location_recommendations": "Önerilen Konumlar",
"food": "Yemek",
"tourism": "Turizm"
"tourism": "Turizm",
"any": "Herhangi",
"average_rating": "Ortalama Derecelendirme",
"discover_places": "Yerleri Keşfet",
"lodging": "Oteller",
"map_view": "Harita Görünümü",
"minimum_rating": "Minimum Derecelendirme",
"minimum_reviews": "Minimum İncelemeler",
"no_results_yet": "Henüz Sonuç Yok",
"open_now_only": "Yalnızca Şimdi Aç",
"search_around_location": "Konum Etrafında Ara",
"search_by_address": "Adrese Göre Ara",
"search_radius_label": "Arama Yarıçapı:",
"searching": "Arama...",
"select_location_or_query": "Yakındaki harika yerleri keşfetmek için bir konum seçin veya bir arama sorgusu girin!",
"total_results": "Toplam Sonuçlar",
"use_search_instead": "Bunun yerine aramayı kullanın",
"add_location": "Konum Ekle",
"add_lodging": "Konaklama Ekle",
"away": "uzak",
"hours": "Saat",
"open": "Açık",
"your_location": "Konumunuz"
},
"calendar": {
"today": "Bugün",
@@ -999,7 +1013,9 @@
"total_events": "Toplam Etkinlikler",
"calendar_overview": "Takvim Genel Bakış",
"filtered_results": "Filtrelenmiş Sonuçlar",
"all_day_event": "Tüm Günlük Etkinlik"
"all_day_event": "Tüm Günlük Etkinlik",
"event timezone": "Etkinlik saat dilimi",
"your timezone": "Saat diliminiz"
},
"locations": {
"location": "Konum",
@@ -1023,11 +1039,7 @@
},
"strava": {
"strava_integration_desc": "Konum ve ziyaret bilgilerinize kolayca aktivite aktarmak için Strava'ya bağlanın",
"not_configured": "Strava Yapılandırılmamış",
"admin_setup_required": "Sunucu yöneticisinin bunu genel olarak etkinleştirmesi gerekir",
"ready_to_connect": "Bağlanmaya Hazır",
"connect_account": "Hesabı Bağla",
"account_connected": "Hesap Bağlandı",
"disconnect": "Bağlantıyı Kes",
"authorization_error": "Strava yetkilendirme URL'sine yönlendirilirken hata oluştu",
"disconnected": "Strava bağlantısı başarıyla kesildi",
@@ -1039,5 +1051,82 @@
"wanderer_integration_desc": "Wanderera bağlanarak patikalarınızı konumlarda kolayca aktarabilir ve görüntüleyebilirsiniz",
"connection_error": "Wanderer'a bağlanırken hata oluştu",
"connected": "Wanderer'a başarıyla bağlandı"
},
"collections": {
"all_items": "Tüm Ürünler",
"currencies": "Para birimleri",
"currency": "Para birimi",
"event_timezone": "Etkinlik saat dilimi",
"event_timezone_desc": "Etkinlik saat dilimi, mümkün olduğunda konumu veya öğenin saat dilimini kullanır. \nSaat dilimimin kullanımları",
"events": "olaylar",
"local_timezone": "Benim saat dilimim",
"no_calendar_events": "Bu koleksiyon için henüz bir ziyaret planlanmadı.",
"no_priced_items": "Seyahat toplamlarını para birimine göre görmek için konumlara, konaklamaya veya ulaşıma fiyat ekleyin.",
"not_found": "Koleksiyon Bulunamadı",
"statistics": "İstatistikler",
"times_shown_in": "Gösterilen zamanlar",
"trip_costs": "Seyahat Maliyetleri"
},
"common": {
"show_less": "Ayrıntıları gizle",
"show_more": "Daha fazlasını göster"
},
"currencies": {
"AED": "BAE Dirhemi",
"AUD": "Avustralya Doları",
"BRL": "Brezilya Reali",
"CAD": "Kanada Doları",
"CHF": "İsviçre Frangı",
"CNY": "Çin Yuanı",
"DKK": "Danimarka Kronu",
"EUR": "Euro",
"GBP": "İngiliz Sterlini",
"HKD": "Hong Kong Doları",
"INR": "Hindistan Rupisi",
"JPY": "Japon Yeni",
"MXN": "Meksika Pesosu",
"NOK": "Norveç Kronu",
"NZD": "Yeni Zelanda Doları",
"SEK": "İsveç Kronu",
"SGD": "Singapur Doları",
"TRY": "Türk Lirası",
"USD": "ABD Doları",
"ZAR": "Güney Afrika Randı",
"no_matches": "Eşleşme yok",
"search": "Para birimi ara",
"select_currency": "Para birimini seçin"
},
"itinerary": {
"add_description": "Açıklama ekle",
"add_to_day": "Güne ekle",
"add_to_trip_context": "Gezi bağlamı ekle",
"added_to_trip_context": "Gezi bağlamına eklendi",
"auto_generate": "Otomatik Oluştur",
"auto_generate_itinerary": "Otomatik Yol Oluşturma",
"auto_generate_itinerary_desc": "Bu koleksiyonda eski öğeler var ancak henüz seyahat planı yok. \nBunları tarihe göre otomatik olarak düzenlemek ister misiniz?",
"change_day": "Günü Değiştir",
"drag_to_reorder": "Yeniden sıralamak için sürükleyin",
"failed_to_add_to_trip_context": "Öğe gezi bağlamına eklenemedi",
"failed_to_move_to_trip_context": "Gezi bağlamına taşınılamadı",
"generating": "Üretiliyor",
"item_already_in_trip_context": "Zaten gezi bağlamındaki öğeler",
"item_not_found": "Öğe bulunamadı",
"item_remove_error": "Öğe seyahat programından kaldırılırken hata oluştu",
"item_remove_success": "Öğe seyahat programından kaldırıldı",
"link_existing_item": "Mevcut öğeyi bağla",
"move_to_trip_context": "Gezi İçeriğine Taşı",
"moved_to_trip_context": "Gezi bağlamına taşındı",
"multi_day": "Çok gün",
"no_itinerary_yet": "Henüz Seyahat Programı Yok",
"no_plans_for_day": "Bu gün için plan yok",
"no_trip_context_items": "Henüz gezi bağlamı öğesi yok.",
"remove_from_itinerary": "Günden Kaldır",
"remove_from_trip_context": "Bağlamdan Kaldır",
"start_planning": "Belirli günlere öğe ekleyerek seyahatinizi planlamaya başlayın.",
"staying_overnight": "Gece kalmak",
"trip_context": "Seyahat İçeriği",
"trip_context_info": "Seyahat bağlamı öğeleri seyahatin tamamı için geçerlidir; örneğin varış noktasının kendisi olan konumlar, genel notlar veya seyahatin tamamı için önemli olan paket listeleri.",
"unscheduled_items": "Planlanmamış Öğeler",
"unscheduled_items_desc": "Bu öğeler bu geziye bağlı ancak henüz belirli bir güne eklenmedi."
}
}

View File

@@ -9,10 +9,7 @@
"license_info": "Ліцензія",
"message": "Зроблено за допомогою ❤️ у Сполучених Штатах.",
"nominatim_1": "Пошук розташування та геокодування надає",
"nominatim_2": "Їхні дані ліцензуються за ліцензією ODbL.",
"oss_attributions": "Атрибуції з відкритим кодом",
"other_attributions": "Додаткові атрибути можна знайти у файлі README.",
"source_code": "Вихідний код",
"sponsor": "Спонсор",
"thank_you": "Дякуємо за використання AdventureLog!",
"version": "Версія",
@@ -21,9 +18,7 @@
},
"adventures": {
"achievements": "Досягнення",
"actions": "Дії",
"active_duration": "Активна тривалість",
"activities_name": "Діяльність",
"activities_text": "діяльності",
"activity_breakdown_by_category": "Розподіл діяльності за категоріями",
"activity_name": "Назва діяльності",
@@ -32,7 +27,6 @@
"activity_options": "Варіанти діяльності",
"activity_statistics": "Статистика діяльності",
"activity_statistics_description": "Ваші досягнення у фізичній формі та активності",
"activity_types": "Види діяльності",
"add": "додати",
"add_a_tag": "Додайте тег",
"add_activity": "Додати активність",
@@ -40,25 +34,17 @@
"add_new": "Додати новий...",
"add_new_activity": "Додати нову діяльність",
"add_new_trail": "Додати новий слід",
"add_notes": "Додайте нотатки",
"add_to_collection": "Додати до колекції",
"add_trail": "Додати слід",
"add_visit": "Додати відвідування",
"add_wanderer_trail": "Додати шлях мандрівника",
"adventure": "Пригода",
"adventure_calendar": "Календар пригод",
"adventure_not_found": "Немає пригод для відображення. \nДодайте трохи, натиснувши кнопку плюса внизу праворуч, або спробуйте змінити фільтри!",
"adventures_available": "Доступні пригоди",
"adventure_not_found": "Немає пригод для відображення. Додайте трохи, натиснувши кнопку плюса внизу праворуч, або спробуйте змінити фільтри!",
"all": "всі",
"all_adventures_already_linked": "Усі пригоди вже пов’язані з цією колекцією.",
"all_day": "Весь день",
"all_linked_items": "Усі пов’язані елементи",
"archive": "Архів",
"archived": "Архівовано",
"archived_collection_message": "Колекція успішно заархівована!",
"archived_collections": "Архівні колекції",
"arrival_date": "Дата прибуття",
"arrival_timezone": "Часовий пояс прибуття",
"ascending": "Висхідний",
"attachment": "вкладення",
"attachment_delete_success": "Вкладення успішно видалено!",
@@ -67,15 +53,11 @@
"attachment_name_required": "Потрібна назва вкладення",
"attachment_remove_error": "Під час видалення вкладення сталася помилка",
"attachment_removed": "Вкладення успішно видалено",
"attachment_removed_error": "Помилка видалення вкладення",
"attachment_removed_success": "Вкладення успішно видалено",
"attachment_update_error": "Помилка оновлення вкладення",
"attachment_update_success": "Вкладення успішно оновлено!",
"attachment_updated": "Вкладення успішно оновлено",
"attachment_upload_error": "Помилка завантаження вкладення",
"attachment_upload_success": "Вкладення успішно завантажено!",
"attachments": "Додатки",
"attachments_upload_info": "Вкладення буде завантажено після збереження",
"average_cadence": "Середня каденція",
"average_speed": "Середня швидкість",
"avg_speed": "Середня швидкість",
@@ -85,29 +67,21 @@
"calories": "Калорії",
"cancel": "Скасувати",
"category": "Категорія",
"category_fetch_error": "Помилка отримання категорій",
"category_filter": "Фільтр категорій",
"check_in": "Заїзд",
"checklists": "Контрольні списки",
"cities_updated": "міст оновлено",
"city": "Місто",
"clear": "ясно",
"clear_location": "Очистити місцезнаходження",
"clear_map": "Очистити карту",
"click_map": "Клацніть на карті, щоб вибрати місце",
"click_on_map": "Клацніть на карті, щоб вибрати місце",
"collection": "Колекція",
"collection_adventures": "Включіть колекцію пригод",
"collection_archived": "Цю колекцію заархівовано.",
"collection_completed": "Ви завершили цю колекцію!",
"collection_contents": "Зміст колекції",
"collection_link_location_error": "Помилка підключення місцезнаходження до колекції",
"collection_link_location_success": "Розташування успішно пов’язано з колекцією!",
"collection_locations": "Включіть місця колекції",
"collection_no_start_end_date": "Додавання дати початку та завершення до колекції розблокує функції планування маршруту на сторінці колекції.",
"collection_remove_location_error": "Помилка видалення місцезнаходження з колекції",
"collection_remove_location_success": "Розташування видалено з колекції!",
"collection_stats": "Статистика колекції",
"collections_linked": "Зв’язані колекції",
"complete_import": "Повний імпорт",
"complete_strava_import": "Повний імпорт Strava",
@@ -117,10 +91,9 @@
"copy_coordinates": "Копіювати координати",
"copy_failed": "Помилка копіювання",
"copy_link": "Копіювати посилання",
"count_txt": "результатів, що відповідають вашому пошуку",
"create_collection_first": "Спочатку створіть колекцію, щоб упорядкувати свої пригоди та спогади.",
"create_location": "Створити місце розташування",
"create_new": "Створити новий...",
"create_new": "Створити нове",
"create_new_location": "Створити нове місце",
"create_trail": "Створити слід",
"created": "Створено",
@@ -128,7 +101,6 @@
"date": "Дата",
"date_constrain": "Обмежтеся датами збору",
"date_information": "Інформація про дату",
"date_itinerary": "Дата Маршрут",
"date_selection": "Вибір дати",
"dates": "дати",
"dates_not_saved": "Відвідування ще не додано",
@@ -139,24 +111,20 @@
"delete_checklist": "Видалити контрольний список",
"delete_collection": "Видалити колекцію",
"delete_collection_success": "Колекцію успішно видалено!",
"delete_collection_warning": "Ви впевнені, що хочете видалити цю колекцію? \nЦю дію не можна скасувати.",
"delete_collection_warning": "Ви впевнені, що хочете видалити цю колекцію? Цю дію не можна скасувати.",
"delete_location": "Видалити місцезнаходження",
"delete_lodging": "Видалити житло",
"delete_note": "Видалити примітку",
"delete_transportation": "Видалити транспорт",
"departure_date": "Дата відправлення",
"departure_timezone": "Часовий пояс відправлення",
"descending": "Спускається",
"description": "опис",
"details": "Подробиці",
"display_name": "Відображуване ім'я",
"distance": "Відстань",
"distance_covered": "Подолана відстань",
"done": "Готово",
"download_calendar": "Завантажити календар",
"download_gpx": "Завантажити GPX",
"duration": "Тривалість",
"edit_adventure": "Редагувати пригоду",
"edit_collection": "Редагувати колекцію",
"edit_location": "Редагувати місцезнаходження",
"edit_visit": "Редагувати відвідування",
@@ -166,12 +134,10 @@
"elevation_high": "Висота Висока",
"elevation_loss": "Втрата висоти",
"elevation_low": "Висота низька",
"emoji_picker": "Вибір емодзі",
"end": "Кінець",
"end_date": "Дата закінчення",
"end_lat": "Кінцева широта",
"end_lng": "Кінцева довгота",
"ending_airport": "Кінець аеропорту",
"error_updating_regions": "Помилка оновлення регіонів",
"export_gpx": "Експорт GPX",
"export_original": "Експорт оригіналу",
@@ -180,63 +146,44 @@
"filter": "фільтр",
"filters_and_sort": "Фільтри",
"filters_and_stats": "Фільтри",
"finding_recommendations": "Відкривайте приховані перлини для вашої наступної пригоди",
"flight_information": "Інформація про рейс",
"from": "Від",
"gain": "отримати",
"generate_desc": "Створити опис",
"getting_location_details": "Отримання інформації про місцезнаходження",
"gpx_file": "Файл GPX",
"gpx_file_downloaded": "Файл GPX завантажено. \nЗавантажте його нижче, щоб завершити імпорт.",
"gpx_file_downloaded": "Файл GPX завантажено. Завантажте його нижче, щоб завершити імпорт.",
"gpx_file_required": "Потрібен файл GPX",
"gpx_tip": "Завантажуйте файли GPX у вкладення, щоб переглядати їх на карті!",
"hide": "Сховати",
"high": "Високий",
"homepage": "Домашня сторінка",
"image": "Зображення",
"image_fetch_failed": "Не вдалося отримати зображення",
"image_management": "Управління зображеннями",
"image_modal_navigate": "Використовуйте клавіші зі стрілками або клацайте для навігації",
"image_removed_error": "Помилка видалення зображення",
"image_removed_success": "Зображення видалено!",
"image_upload_error": "Помилка завантаження зображення",
"image_upload_info": "Зображення будуть завантажені після збереження",
"image_upload_success": "Зображення успішно завантажено!",
"images": "Зображення",
"import_activity": "Імпортна діяльність",
"importing": "Імпорт",
"invalid_date_range": "Недійсний діапазон дат",
"itineary_by_date": "Маршрут за датою",
"itinerary": "Маршрут",
"joined": "Приєднався",
"keep_exploring": "Продовжуйте досліджувати!",
"latitude": "Широта",
"leave": "Залиште",
"leave_collection": "Залишити колекцію",
"leave_collection_warning": "Ви впевнені, що бажаєте залишити цю колекцію? \nУсі додані вами місцезнаходження буде від’єднано та залишаться у вашому обліковому записі.",
"leave_collection_warning": "Ви впевнені, що бажаєте залишити цю колекцію? Усі додані вами місцезнаходження буде від’єднано та залишаться у вашому обліковому записі.",
"left_collection_message": "Успішно залишив колекцію",
"likes": "Лайки",
"link": "Посилання",
"link_new": "Посилання Нове...",
"linked_adventures": "Пов'язані пригоди",
"linked_locations": "Пов’язані місця",
"links": "Посилання",
"links": "Посилань",
"loading_activities": "Завантажувальні дії",
"loading_adventures": "Завантаження пригод...",
"loading_collections": "Завантаження колекцій...",
"location": "Розташування",
"location_create_error": "Не вдалося створити місцезнаходження",
"location_created": "Розташування створено",
"location_delete_confirm": "Ви впевнені, що хочете видалити це місце? \nЦю дію не можна скасувати.",
"location_delete_confirm": "Ви впевнені, що хочете видалити це місце? Цю дію не можна скасувати.",
"location_delete_success": "Розташування успішно видалено!",
"location_details": "Деталі розташування",
"location_display_name": "Відображувана назва місцезнаходження",
"location_information": "Інформація про місцезнаходження",
"location_update_error": "Не вдалося оновити місцезнаходження",
"location_updated": "Розташування оновлено",
"lodging": "Ночівля",
"lodging_delete_confirm": "Ви впевнені, що хочете видалити це місце проживання? \nЦю дію не можна скасувати.",
"lodging_information": "Інформація про проживання",
"lodging_delete_confirm": "Ви впевнені, що хочете видалити це місце проживання? Цю дію не можна скасувати.",
"lodging_save_error": "Помилка збереження житла",
"longitude": "Довгота",
"low": "Низький",
@@ -244,34 +191,19 @@
"max_speed": "Максимальна швидкість",
"md_instructions": "Напишіть свою уцінку тут...",
"moving_time": "Переміщення часу",
"my_adventures": "Мої пригоди",
"my_attachments": "Мої вкладення",
"my_collections": "Мої колекції",
"my_images": "Мої зображення",
"name": "Ім'я",
"name_location": "назва, місцезнаходження",
"new_location": "Нова локація",
"next_image": "Наступне зображення",
"no_adventures_found": ригод не знайдено",
"no_adventures_message": "Почніть документувати свої пригоди та планувати нові. \nКожна подорож має історію, яку варто розповісти.",
"no_attachments": "Без вкладень",
"no_attachments_desc": "Завантажте файли, щоб почати",
"no_adventures_message": очніть документувати свої пригоди та планувати нові. Кожна подорож має історію, яку варто розповісти.",
"no_attachments_uploaded_yet": "Ще жодного вкладення не завантажено",
"no_collections_to_add_location": "Не знайдено колекцій, до яких можна додати це місце.",
"no_description_found": "Опис не знайдено",
"no_external_link": "Зовнішнє посилання недоступне",
"no_file_selected": "Файл не вибрано",
"no_image_found": "Зображення не знайдено",
"no_image_url": "За цією URL-адресою не знайдено зображення.",
"no_images": "Немає зображень",
"no_images_desc": "Завантажте зображення, щоб почати",
"no_images_uploaded_yet": "Зображення ще не завантажено",
"no_linkable_adventures": "Не знайдено пригод, які можна пов'язати з цією колекцією.",
"no_location": "Будь ласка, введіть місцезнаходження",
"no_location_found": "Місцезнаходження не знайдено",
"no_locations_found": "Місця не знайдено",
"no_locations_to_recommendations": "Місця не знайдено. \nДодайте принаймні одне місце, щоб отримати рекомендації.",
"no_ordered_items": "Додайте елементи з датами до колекції, щоб побачити їх тут.",
"no_results": "Результатів не знайдено",
"no_strava_activities": "Під час цього візиту не виявлено жодної діяльності Strava",
"no_trails_added": "Маршрути ще не додано",
@@ -281,17 +213,14 @@
"no_visits_description": "Створіть свій перший візит, вибравши дати вище",
"not_visited": "Не відвідував",
"note": "Примітка",
"note_delete_confirm": "Ви впевнені, що бажаєте видалити цю нотатку? \nЦю дію не можна скасувати.",
"note_delete_confirm": "Ви впевнені, що бажаєте видалити цю нотатку? Цю дію не можна скасувати.",
"notes": "Примітки",
"notes_placeholder": "Додайте примітки про цей візит",
"nothing_planned": "На цей день нічого не планується. \nНасолоджуйтесь подорожжю!",
"open_details": "Відкрийте подробиці",
"open_filters": "Відкрийте фільтри",
"open_in_maps": "Відкрити в Картах",
"or": "АБО",
"order_by": "Замовити за",
"order_direction": "Напрямок замовлення",
"ordered_itinerary": "Замовлений маршрут",
"out_of_range": "Не в діапазоні дат маршруту",
"pace": "Темп",
"photos": "Фотографії",
@@ -312,41 +241,30 @@
"remove": "видалити",
"remove_from_collection": "Видалити з колекції",
"remove_visit": "Видалити візит",
"reservation_number": "Номер бронювання",
"rest": "Відпочинок",
"rest_time": "Час відпочинку",
"route_map": "Карта маршруту",
"save_next": "зберегти",
"saved_activities": "Збережені дії",
"search_for_location": "Пошук місця",
"search_location": "Пошук місця",
"search_placeholder": "Введіть місто, місцезнаходження чи орієнтир...",
"search_results": "Результати пошуку",
"search_trails_placeholder": "Пошук маршрутів за назвою",
"searching": "Пошук",
"see_adventures": "Дивіться Пригоди",
"searching": "Пошукаю",
"select_on_map": "Виберіть на карті",
"select_wanderer_trail": "Виберіть маршрут зі свого облікового запису Wanderer",
"selected_attachments": "Вибрані вкладення",
"selected_images": "Вибрані зображення",
"set_to_pin": "Встановіть на Pin",
"share": "Поділіться",
"share_collection": "Поділіться цією колекцією!",
"share_location": "Поділіться цим розташуванням!",
"show": "Показати",
"sort": "Сортувати",
"sources": "Джерела",
"sport_type": "Спортивний тип",
"sport_type_placeholder": "Біг по стежці",
"start": "старт",
"start_before_end_error": "Дата початку має передувати даті завершення",
"start_date": "Дата початку",
"start_lat": "Запустіть Latitude",
"start_lng": "Почати довготу",
"starting_airport": "Початок аеропорту",
"strava_activities_during_visit": "Заходи Strava під час візиту",
"strava_activity_ready": "Strava Activity готова",
"sun_times": "Sun Times",
"sun_times": "Сан Таймс",
"sunrise": "Схід сонця",
"sunset": "Захід сонця",
"tags": "Теги",
@@ -357,7 +275,6 @@
"total": "Всього",
"total_activities": "Загальна діяльність",
"total_climbed": "Всього піднялися",
"total_covered": "Всього покрито",
"total_distance": "Загальна відстань",
"total_recorded": "Всього записано",
"trail": "Стежка",
@@ -373,9 +290,9 @@
"trails": "Траси",
"trails_found_for": "знайдено стежки для",
"trails_management": "Керування трасами",
"trails_management_description": "Керуйте маршрутами, пов’язаними з цим місцем. \nСтежки можна прив’язувати до зовнішніх служб, таких як AllTrails, або до стежок Wanderer.",
"trails_management_description": "Керуйте маршрутами, пов’язаними з цим місцем. Стежки можна прив’язувати до зовнішніх служб, таких як AllTrails, або до стежок Wanderer.",
"transportation": "Транспорт",
"transportation_delete_confirm": "Ви впевнені, що хочете видалити цей транспорт? \nЦю дію не можна скасувати.",
"transportation_delete_confirm": "Ви впевнені, що хочете видалити цей транспорт? Цю дію не можна скасувати.",
"transportations": "Перевезення",
"travel_progress": "Прогрес подорожі",
"unarchive": "Розархівувати",
@@ -383,7 +300,6 @@
"update_location_details": "Оновіть дані про місцезнаходження",
"update_visit": "Оновити візит",
"update_visited_regions": "Оновити відвідані регіони",
"update_visited_regions_disclaimer": "Це може зайняти деякий час, залежно від кількості відвіданих вами пригод.",
"updated": "Оновлено",
"upload": "Завантажити",
"upload_activity": "Активність завантаження",
@@ -393,7 +309,6 @@
"upload_from_device": "Завантажити з пристрою",
"upload_from_url": "Завантажити з URL",
"upload_gpx_file": "Завантажте щойно завантажений файл GPX, щоб завершити імпорт Strava",
"upload_image": "Завантажити зображення",
"uploading": "Завантаження",
"use_current_location": "Використовувати поточне місцезнаходження",
"view_gpx": "Переглянути GPX",
@@ -403,28 +318,123 @@
"view_trail": "Перегляд стежки",
"visit": "Відвідайте",
"visit_calendar": "Відвідайте Календар",
"visit_link": "Перейдіть за посиланням",
"visited": "Відвідали",
"visited_region_check": "Перевірка регіону",
"visited_region_check_desc": "Вибравши цей параметр, сервер перевірить усі ваші відвідані пригоди та позначить регіони, у яких вони розташовані, як відвідані під час світових подорожей.",
"visits": "Відвідування",
"wanderer_integration_error": "Інтеграцію Wanderer не ввімкнено або її термін дії минув.",
"warning": "УВАГА",
"wiki_image_error": "Помилка отримання зображення з Вікіпедії",
"wiki_location_desc": "Витягує уривок зі статті Вікіпедії, що відповідає назві місця.",
"wikipedia": "Вікіпедія",
"wikipedia_error": "Не вдалося створити опис із Вікіпедії",
"will_be_marked_location": "буде позначено як відвідане, коли місце буде збережено.",
"check_out": "Виїзд",
"checklist": "Контрольний список",
"checklist_delete_confirm": "Ви впевнені, що хочете видалити цей контрольний список? \nЦю дію не можна скасувати.",
"checklist_delete_confirm": "Ви впевнені, що хочете видалити цей контрольний список? Цю дію не можна скасувати.",
"connect_to_wanderer": "Підключіться до Wanderer",
"continue": "Продовжити",
"location_map": "Розташування",
"location_not_found": "Розташування не знайдено",
"location_not_found_desc": "Розташування, яке ви шукали, не знайдено. \nСпробуйте інше місце або перевірте пізніше.",
"location_not_found_desc": "Розташування, яке ви шукали, не знайдено. Спробуйте інше місце або перевірте пізніше.",
"location_selected": "Розташування вибрано",
"url": "URL"
"active_days": "Активні дні",
"add_here": "Додайте сюди",
"airport_code_examples": "JFK, LAX, LHR...",
"airport_search_mode": "Режим пошуку аеропорту",
"all_locations_already_linked": "Усі місця вже пов’язані з цією колекцією.",
"arrival_airport": "Аеропорт прибуття",
"avg_rating": "Середній рейтинг",
"burned": "спалений",
"categories": "Категорії",
"cities": "Міста",
"clear_search": "Очистити пошук",
"click_map_add_marker": "Клацніть карту, щоб поставити маркер, а потім додайте його сюди.",
"completed": "Виконано",
"content_media": "Зміст",
"countries": "Країни",
"country": "країна",
"departure_airport": "Аеропорт вильоту",
"distance_traveled": "Пройдена відстань",
"end_location": "Кінцеве розташування",
"enter_location_display_name": "Введіть назву розташування",
"files": "Файли",
"flight": "політ",
"folder": "Папка",
"folder_view": "Перегляд папок - показ усіх даних",
"footprints": "Сліди ніг",
"gained": "отримано",
"geographic_breakdown": "Географічний розподіл",
"gpx_routes": "Маршрути GPX",
"hide_filters": "Приховати фільтри",
"images_captured": "Захоплені зображення",
"in": "в",
"in_progress": "В роботі",
"items": "елементи",
"itinerary_link_modal": {
"add_here": "Додати сюди",
"add_here_keep_date": "Додати (зберегти дату)",
"add_to_itinerary": "Додати до маршруту",
"already_added": "Вже додано",
"already_added_on_this_day": "Вже додано цього дня",
"already_added_on_this_day_desc": "Ці пункти вже заплановано на цей день.",
"already_added_other_days": "Вже додано в інші дні",
"already_added_other_days_desc": "Ці пункти заплановано на різні дати. Додавши їх сюди, ви оновите їхню дату або додасте їх як є.",
"items_available": "{count} елементів, доступних для посилання",
"items_on_other_days": "Товари в інші дні",
"items_on_other_days_desc": "Ці речі мають різні дати. Ви можете додати їх і, за бажанням, оновити їхню дату відповідно до відповідності.",
"items_on_this_day": "Предмети в цей день",
"no_unscheduled_items": "Немає незапланованих пунктів",
"no_unscheduled_items_desc": "Усі пункти додано до маршруту або немає пунктів для додавання.",
"title": "Пов’язати елементи з {date}"
},
"link_copied": "Посилання скопійовано",
"lists": "списки",
"location_search_mode": "Режим пошуку місцезнаходження",
"locations_visited": "Відвідані місця",
"lodging_not_found": "Житло не знайдено",
"lodging_types": "Типи розміщення",
"more_details": "Детальніше",
"my_locations": "Мої місцезнаходження",
"nights": "Ночі",
"no_linkable_locations": "Не знайдено місць, які можна пов’язати з цією колекцією.",
"of_locations": "локацій",
"on_this_trip": "У цій поїздці",
"overnight": "Ночівля",
"physical_activities": "Фізичні навантаження",
"pins": "шпильки",
"places": "Місця",
"regions": "Регіони",
"reservation": "Бронювання",
"reset_filters": "Скинути",
"route": "Маршрут",
"route_selected": "Вибраний маршрут",
"routes_and_activities": "Маршрути",
"saving": "Збереження",
"search_end_location": "Кінцеве місце пошуку",
"search_start_end_locations": "Пошук початкових і кінцевих місць",
"search_start_location": "Місце початку пошуку",
"segments": "Сегменти",
"select": "Виберіть",
"show_filters": "Показати фільтри",
"start_location": "Розташування початку",
"status_filter": "Фільтр стану",
"stays": "Залишається",
"tasks_done": "Завдання виконано",
"total_days": "Загальна кількість днів",
"total_visits": "Всього відвідувань",
"transport_activity_paths": "Транспорт",
"transportation_gpx_tip": "Завантажте файли GPX сюди, щоб вони відображалися на карті",
"traveled": "подорожував",
"travelers": "Мандрівники",
"trip_timeline": "Хронологія поїздки",
"trip_window": "Вікно подорожі",
"upcoming": "Майбутні",
"view": "Переглянути",
"wiki_results_found": "Результати Вікіпедії",
"with_activities": "З діяльністю",
"written": "Написаний",
"export_failed": "Помилка експорту",
"export_success": "Експортована колекція",
"export_zip": "Експорт ZIP",
"import_failed": "Помилка імпорту",
"import_from_file": "Імпортувати з файлу",
"import_success": "Успішний імпорт"
},
"auth": {
"confirm_password": "Підтвердьте пароль",
@@ -444,13 +454,13 @@
"password": "Пароль",
"profile_picture": "Фото профілю",
"public_profile": "Загальнодоступний профіль",
"public_tooltip": "Завдяки публічному профілю користувачі можуть ділитися з вами колекціями та переглядати ваш профіль на сторінці користувачів.",
"registration_disabled": "Реєстрація наразі відключена.",
"signup": "Реєстрація",
"totp": "Двофакторний код",
"user_collections": "Колекції користувачів",
"user_locations": "Розташування користувачів",
"username": "Ім'я користувача"
"username": "Ім'я користувача",
"user_email_verification_required": "Потрібна перевірка електронної пошти. \nБудь ласка, перевірте свою електронну пошту на наявність посилання для підтвердження."
},
"calendar": {
"all_day_event": "Подія на весь день",
@@ -461,7 +471,9 @@
"month": "місяць",
"today": "Сьогодні",
"total_events": "Загальна кількість подій",
"week": "тиждень"
"week": "тиждень",
"event timezone": "Часовий пояс події",
"your timezone": "Ваш часовий пояс"
},
"categories": {
"add_new_category": "Додати нову категорію",
@@ -514,10 +526,23 @@
"no_shared_collections": "Немає спільних колекцій.",
"public_collection": "Громадська колекція",
"shared_collections": "Спільні колекції",
"try_different_search": "Спробуйте інший пошук або фільтр."
"try_different_search": "Спробуйте інший пошук або фільтр.",
"cover": "Обкладинка",
"cover_image": "Зображення обкладинки",
"cover_image_hint": "Виберіть обкладинку із зображень у цій колекції.",
"create_new_collection": "Створити нову колекцію",
"enter_collection_name": "Введіть назву колекції",
"location_primary": "Обкладинка розташування",
"no_images_available": "Ще немає доступних зображень із пов’язаних місць.",
"public_collection_description": "Дозволити переглядати всім, хто має посилання",
"set_cover": "Набір кришки",
"update_collection_details": "Оновіть деталі колекції",
"changing_date_title": "Зміна дат вплине на пункти маршруту",
"changing_date_warning": "Будь-які елементи маршруту за межами нового діапазону дат буде видалено з маршруту та поміщено назад до елементів колекції без дати.",
"clear_cover": "Прозора кришка",
"collaborators": "Співробітники"
},
"dashboard": {
"add_some": "Чому б не почати планувати свою наступну пригоду? \nВи можете додати нову пригоду, натиснувши кнопку нижче.",
"countries_visited": "Відвідані країни",
"document_some_adventures": "Почніть документувати свої подорожі та створіть свою особисту карту пригод!",
"no_recent_adventures": "Немає останніх пригод?",
@@ -547,7 +572,7 @@
"feature_3_desc": "Переглядайте свої подорожі світом за допомогою інтерактивної карти та досліджуйте нові напрямки.",
"go_to": "Перейдіть до AdventureLog",
"hero_1": "Відкрийте для себе найзахопливіші пригоди світу",
"hero_2": "Відкрийте для себе та сплануйте свою наступну пригоду за допомогою AdventureLog. \nДосліджуйте захоплюючі напрямки, створюйте власні маршрути та залишайтеся на зв’язку в дорозі.",
"hero_2": "Відкрийте для себе та сплануйте свою наступну пригоду за допомогою AdventureLog. Досліджуйте захоплюючі напрямки, створюйте власні маршрути та залишайтеся на зв’язку в дорозі.",
"key_features": "Ключові характеристики",
"latest_travel_experiences": "Ваші останні враження від подорожей",
"of_world": "світу",
@@ -561,7 +586,7 @@
"by_date": "За датою",
"connection_error": "Помилка підключення до сервера Immich",
"copy_locally": "Копіювати зображення локально",
"copy_locally_desc": "Скопіюйте зображення на сервер для офлайн-доступу. \nВикористовує більше дискового простору.",
"copy_locally_desc": "Скопіюйте зображення на сервер для офлайн-доступу. Використовує більше дискового простору.",
"disable": "Вимкнути",
"enable_integration": "Увімкнути інтеграцію",
"error_no_object_id": "Ідентифікатор об’єкта не надано",
@@ -572,24 +597,22 @@
"immich_disabled": "Інтеграцію Immich успішно вимкнено!",
"immich_error": "Помилка оновлення інтеграції Immich",
"immich_integration_desc": "Підключіть свій сервер керування фотографіями Immich",
"integration_already_exists": "Інтеграція Immich вже існує. \nВи можете мати лише одну інтеграцію за раз.",
"integration_already_exists": "Інтеграція Immich вже існує. Ви можете мати лише одну інтеграцію за раз.",
"integration_fetch_error": "Помилка отримання даних з інтеграції Immich",
"integration_not_found": "Інтеграція Immich не знайдена. \nСтворіть нову інтеграцію.",
"integration_not_found": "Інтеграція Immich не знайдена. Створіть нову інтеграцію.",
"load_more": "Завантажити більше",
"loading": "Завантаження",
"loading_albums": "Завантаження альбомів",
"localhost_note": "Примітка: localhost, швидше за все, не працюватиме, якщо ви не налаштуєте відповідним чином мережі докерів. \nРекомендується використовувати IP-адресу сервера або доменне ім’я.",
"need_help": "Потрібна допомога з налаштуванням? \nПеревірте",
"network_error": "Помилка мережі під час підключення до сервера Immich. \nПеревірте підключення та повторіть спробу.",
"localhost_note": "Примітка: localhost, швидше за все, не працюватиме, якщо ви не налаштуєте відповідним чином мережі докерів. Рекомендується використовувати IP-адресу сервера або доменне ім’я.",
"need_help": "Потрібна допомога з налаштуванням? Перегляньте",
"network_error": "Помилка мережі під час підключення до сервера Immich. Перевірте підключення та повторіть спробу.",
"no_images": "Зображення не знайдено",
"no_items_found": "Елементів не знайдено",
"select_album": "Виберіть Альбом",
"select_album_first": "Спочатку виберіть альбом",
"select_date": "Виберіть Дата",
"server_url": "URL-адреса сервера Immich",
"try_different_date": "Спробуйте іншу дату",
"update_integration": "Інтеграція оновлення",
"validation_error": "Під час перевірки інтеграції Immich сталася помилка. \nПеревірте URL-адресу свого сервера та ключ API."
"validation_error": "Під час перевірки інтеграції Immich сталася помилка. Перевірте URL-адресу свого сервера та ключ API."
},
"invites": {
"accept": "прийняти",
@@ -619,7 +642,6 @@
"edit": "Редагувати",
"edit_lodging": "Редагувати розміщення",
"enter_lodging_name": "Введіть назву помешкання",
"enter_price": "Введіть ціну",
"enter_reservation_number": "Введіть номер резервації",
"hostel": "Хостел",
"hotel": "Готель",
@@ -633,11 +655,8 @@
"villa": "Вілла"
},
"map": {
"add_adventure": "Додати нову пригоду",
"add_adventure_at_marker": "Додати нову пригоду в Маркер",
"add_location": "Додати нове місце",
"add_location_at_marker": "Додайте нове місце на маркері",
"adventure_map": "Карта пригод",
"adventure_stats": "Статистика пригод",
"clear_marker": "Очистити маркер",
"completion": "Завершення",
@@ -645,19 +664,16 @@
"location_map": "Карта розташування",
"locations_shown": "показано розташування",
"map_controls": "Елементи керування картою",
"map_options": "Параметри карти",
"marker_placed_on_map": "Маркер розміщений на карті",
"place_marker_desc_location": "Клацніть на карті, щоб поставити маркер.",
"regions": "Регіони",
"show_activities": "Показати дії",
"show_visited_cities": "Відвідані міста",
"show_visited_regions": "Показати відвідані регіони",
"view_details": "Переглянути деталі"
"view_details": "Переглянути деталі",
"search_locations": "Пошук місць..."
},
"navbar": {
"about": "Про AdventureLog",
"admin_panel": "Панель адміністратора",
"adventures": "Пригоди",
"calendar": "Календар",
"collections": "Колекції",
"documentation": "Документація",
@@ -665,15 +681,12 @@
"language_selection": "Мова",
"logout": "Вийти",
"map": "Карта",
"my_adventures": "Мої пригоди",
"my_tags": "Мої теги",
"navigation": "Навігація",
"profile": "Профіль",
"search": "Пошук",
"settings": "Налаштування",
"shared_with_me": "Поділився зі мною",
"support": "Підтримка",
"tag": "Тег",
"theme_selection": "Вибір теми",
"themes": {
"aestheticDark": "Естетичний Темний",
@@ -690,7 +703,6 @@
"worldtravel": "Світові подорожі"
},
"notes": {
"add_a_link": "Додайте посилання",
"content": "Зміст",
"create_new_note": "Створити нову нотатку",
"editing_note": "Примітка до редагування",
@@ -716,7 +728,6 @@
"planned_trips": "Заплановані поїздки",
"public_location_experiences": "Досвід громадського розташування",
"travel_statistics": "Статистика подорожей",
"user_stats": "Статистика користувача",
"visited_cities": "Відвідані міста",
"visited_countries": "Відвідані країни",
"visited_regions": "Відвідані регіони",
@@ -724,18 +735,35 @@
},
"recomendations": {
"food": "харчування",
"location_recommendations": "Рекомендації щодо розташування",
"recommendation": "Рекомендація",
"recommendations": "Рекомендації",
"tourism": "Туризм"
"tourism": "Туризм",
"any": "Будь-який",
"average_rating": "Середній рейтинг",
"discover_places": "Відкрийте для себе місця",
"lodging": "Готелі",
"map_view": "Перегляд карти",
"minimum_rating": "Мінімальний рейтинг",
"minimum_reviews": "Мінімум відгуків",
"no_results_yet": "Результатів ще немає",
"open_now_only": "Відкрити лише зараз",
"search_around_location": "Пошук навколо розташування",
"search_by_address": "Пошук за адресою",
"search_radius_label": "Радіус пошуку:",
"searching": "Пошук...",
"select_location_or_query": "Виберіть місце або введіть пошуковий запит, щоб відкрити дивовижні місця поблизу!",
"total_results": "Загальні результати",
"use_search_instead": "Натомість використовуйте пошук",
"add_location": "Додати місцезнаходження",
"add_lodging": "Додати житло",
"away": "геть",
"hours": "години",
"open": "ВІДЧИНЕНО",
"your_location": "Ваше місцезнаходження"
},
"search": {
"adventurelog_results": "Результати AdventureLog",
"cities": "Міста",
"countries": "Країни",
"found": "знайдено",
"online_results": "Онлайн результати",
"public_adventures": "Громадські пригоди",
"result": "Результат",
"results": "Результати",
"try_searching_desc": "Спробуйте шукати пригоди, колекції, країни, регіони, міста чи користувачів."
@@ -773,7 +801,7 @@
"data_override_acknowledge": "Я визнаю, що це замінить усі мої наявні дані",
"data_override_acknowledge_desc": "Цю дію неможливо скасувати, і вона замінить усі місця, колекції та відвідування у вашому обліковому записі.",
"data_override_warning": "Попередження про перевизначення даних",
"data_override_warning_desc": "Відновлення даних повністю замінить усі існуючі дані (включені в резервну копію) у вашому обліковому записі. \nЦю дію не можна скасувати.",
"data_override_warning_desc": "Відновлення даних повністю замінить усі існуючі дані (включені в резервну копію) у вашому обліковому записі. Цю дію не можна скасувати.",
"debug_information": "Інформація про налагодження",
"disable_mfa": "Вимкнути MFA",
"disabled": "Вимкнено",
@@ -788,9 +816,9 @@
"email_set_primary": "Електронну адресу встановлено як основну!",
"email_set_primary_error": "Помилка встановлення електронної пошти як основної",
"email_verified": "Електронну пошту успішно перевірено!",
"email_verified_erorr_desc": "Вашу електронну адресу не вдалося підтвердити. \nСпробуйте ще раз.",
"email_verified_erorr_desc": "Вашу електронну адресу не вдалося підтвердити. Спробуйте ще раз.",
"email_verified_error": "Помилка перевірки електронної пошти",
"email_verified_success": "Вашу електронну адресу перевірено. \nТепер ви можете увійти.",
"email_verified_success": "Вашу електронну адресу перевірено. Тепер ви можете увійти.",
"emails": "електронні листи",
"enable_mfa": "Увімкнути MFA",
"enabled": "Увімкнено",
@@ -810,7 +838,7 @@
"integrations_settings": "Налаштування інтеграції",
"invalid_credentials": "Недійсні облікові дані",
"join_discord": "Приєднуйтесь до Discord",
"join_discord_desc": "щоб поділитися власними фотографіями. \nОпублікуйте їх у",
"join_discord_desc": "щоб поділитися власними фотографіями. Опублікуйте їх на каналі #travel-share.",
"launch_account_connections": "Запустіть Підключення облікових записів",
"launch_administration_panel": "Запустіть адміністративну панель",
"license": "Ліцензія",
@@ -835,9 +863,9 @@
"password_auth": "Автентифікація пароля",
"password_change": "Змінити пароль",
"password_change_lopout_warning": "Ви вийдете з системи після зміни пароля.",
"password_disable_warning": "На даний момент автентифікація пароля вимкнена. \nПотрібен вхід через соціальну мережу або постачальника OIDC.",
"password_disable_warning": "На даний момент автентифікація пароля вимкнена. Потрібен вхід через соціальну мережу або постачальника OIDC.",
"password_disabled": "Автентифікація пароля вимкнена",
"password_disabled_error": "Помилка вимкнення автентифікації паролем. \nПереконайтеся, що соціальна мережа або постачальник OIDC пов’язано з вашим обліковим записом.",
"password_disabled_error": "Помилка вимкнення автентифікації паролем. Переконайтеся, що соціальна мережа або постачальник OIDC пов’язано з вашим обліковим записом.",
"password_enabled": "Увімкнено автентифікацію за паролем",
"password_enabled_error": "Помилка ввімкнення автентифікації паролем.",
"password_login_disabled": "Вхід за допомогою пароля вимкнено",
@@ -850,7 +878,7 @@
"public_profile_desc": "Зробіть свій профіль видимим для інших користувачів",
"quick_actions": "Швидкі дії",
"recovery_codes": "Коди відновлення",
"recovery_codes_desc": "Це ваші коди відновлення. \nБережіть їх. \nВи більше не зможете їх побачити.",
"recovery_codes_desc": "Це ваші коди відновлення. Бережіть їх. Ви більше не зможете їх побачити.",
"region_updates": "Оновлення регіону",
"region_updates_desc": "Оновити відвідані регіони та міста",
"regular_user": "Звичайний користувач",
@@ -867,7 +895,7 @@
"settings_page": "Сторінка налаштувань",
"setup_required": "Потрібне налаштування",
"social_auth": "Соціальна автентифікація",
"social_auth_desc": "Увімкніть або вимкніть постачальників соціальних мереж і автентифікації OIDC для свого облікового запису. \nЦі з’єднання дають змогу входити за допомогою власних постачальників ідентифікаційних даних автентифікації, як-от Authentik, або сторонніх постачальників, як-от GitHub.",
"social_auth_desc": "Увімкніть або вимкніть постачальників соціальних мереж і автентифікації OIDC для свого облікового запису. Ці з’єднання дають змогу входити за допомогою власних постачальників ідентифікаційних даних автентифікації, як-от Authentik, або сторонніх постачальників, як-от GitHub.",
"social_auth_desc_1": "Керуйте параметрами входу в соціальні мережі та налаштуваннями пароля",
"social_auth_desc_2": "Керування цими налаштуваннями здійснюється на сервері AdventureLog, і адміністратор має ввімкнути їх вручну.",
"social_auth_setup": "Налаштування соціальної автентифікації",
@@ -881,7 +909,7 @@
"use_imperial_desc": "Використовуйте імперські одиниці (фути, дюйми, фунти) замість метричних",
"verified": "Перевірено",
"verify": "Підтвердити",
"verify_email_error": "Помилка перевірки електронної пошти. \nПовторіть спробу через кілька хвилин.",
"verify_email_error": "Помилка перевірки електронної пошти. Повторіть спробу через кілька хвилин.",
"verify_email_success": "Підтвердження електронної пошти успішно надіслано!",
"verify_setup": "Перевірте налаштування",
"whats_included": "Що включено",
@@ -891,18 +919,14 @@
"share": {
"available": "в наявності",
"available_users": "Доступні користувачі",
"go_to_settings": "Перейдіть до налаштувань",
"invite_failed": "Не вдалося запросити",
"invite_revoked": "Запрошення відкликано",
"invite_sent": "Запрошення надіслано",
"no_shared_found": "Не знайдено жодної колекції, до якої ви поділилися.",
"no_users_shared": "Немає користувачів, яким надано доступ",
"not_shared_with": "Не має спільного доступу",
"pending": "В очікуванні",
"revoke_failed": "Не вдалося відкликати",
"revoke_invite": "Відкликати запрошення",
"send_invite": "Надіслати запрошення",
"set_public": "Щоб дозволити користувачам ділитися з вами, ваш профіль має бути загальнодоступним.",
"share_desc": "Поділіться цією колекцією з іншими користувачами.",
"shared": "Спільний доступ",
"shared_with": "Спільно з",
@@ -911,30 +935,24 @@
"with": "з"
},
"strava": {
"account_connected": "Обліковий запис підключено",
"admin_setup_required": "Адміністратор сервера повинен увімкнути його глобально",
"authorization_error": "Помилка переспрямування на URL-адресу авторизації strava",
"connect_account": "Підключити обліковий запис",
"disconnect": "Відключити",
"disconnect_error": "Помилка відключення від Strava",
"disconnected": "Успішно відключено від Strava",
"gpx_required": "Завантажте файл GPX, щоб завершити імпорт Strava",
"not_configured": "Strava не налаштовано",
"not_enabled": "Інтеграція Strava не ввімкнена в цьому екземплярі.",
"ready_to_connect": "Готовий до підключення",
"strava_integration_desc": "Підключіться до Strava, щоб легко імпортувати свою діяльність у місця та відвідування"
},
"transportation": {
"create_new_transportation": "Новий транспорт",
"edit": "Редагувати",
"edit_transportation": "Редагувати транспорт",
"ending_airport_desc": "Введіть кінцевий код аеропорту (наприклад, LAX)",
"enter_flight_number": "Введіть номер рейсу",
"enter_from_location": "Вхід з місця",
"enter_link": "Введіть посилання",
"enter_to_location": "Введіть місце",
"enter_transportation_name": "Введіть назву транспорту",
"fetch_location_information": "Отримати інформацію про місцезнаходження",
"flight_number": "Номер рейсу",
"from_location": "Від розташування",
"modes": {
@@ -949,12 +967,17 @@
},
"new_transportation": "Новий транспорт",
"select_type": "Виберіть Тип",
"starting_airport_desc": "Введіть початковий код аеропорту (наприклад, JFK)",
"to_location": "До розташування",
"transportation_delete_error": "Помилка видалення транспорту",
"transportation_deleted": "Транспорт успішно видалено!",
"type": "Тип",
"update_transportation_details": "Оновіть відомості про транспорт"
"update_transportation_details": "Оновіть відомості про транспорт",
"arrival_code": "Код прибуття",
"arrival_date": "Дата прибуття",
"arrival_timezone": "Часовий пояс прибуття",
"departure_code": "Код відправлення",
"departure_date": "Дата відправлення",
"departure_timezone": "Часовий пояс відправлення"
},
"users": {
"no_users_found": "Не знайдено користувачів із загальнодоступними профілями."
@@ -967,9 +990,7 @@
"worldtravel": {
"about_country": "Про країну",
"about_region": "Про регіон",
"all": "всі",
"all_regions": "Всі регіони",
"all_subregions": "Усі субрегіони",
"available_to_explore": "Доступний для дослідження",
"cities": "міст",
"cities_available": "Доступні міста",
@@ -977,9 +998,7 @@
"clear_all": "Очистити все",
"clear_all_filters": "Очистити всі фільтри",
"clear_filters": "Очистити фільтри",
"clear_search": "Очистити пошук",
"complete": "Повний",
"completely_visited": "Повністю відвіданий",
"countries": "країни",
"country_completed": "Країна завершена",
"country_list": "Список країн",
@@ -1000,7 +1019,6 @@
"interactive_map": "Інтерактивна карта",
"loading_globe_spin": "Обертання глобуса завантаження",
"marked_visited": "позначено як відвідане",
"newest_first": "Спочатку найновіші",
"no_cities_found": "Міста не знайдено",
"no_countries_found": "Країни не знайдено",
"no_countries_found_desc": "Спробуйте налаштувати пошукові терміни або фільтри, щоб знайти країни, які ви шукаєте.",
@@ -1008,12 +1026,8 @@
"no_country_data_available_desc": "Будь ласка, перевірте документацію щодо оновлення даних регіону.",
"no_globe_spin_data": "Немає даних обертання глобуса",
"no_regions_found": "Регіонів не знайдено",
"not_visited": "Не відвідував",
"num_countries": "знайдено країн",
"of": "з",
"oldest_first": "Спочатку найстаріший",
"partial": "Частковий",
"partially_visited": "Частково відвідано",
"progress": "Прогрес",
"progress_and_stats": "Прогрес",
"region_completed": "Регіон завершено",
@@ -1029,15 +1043,90 @@
"spinning_globe": "Обертовий глобус",
"total_cities": "Всього міст",
"total_countries": "Всього країн",
"total_items": "Всього елементів",
"total_regions": "Всього регіонів",
"try_again": "Спробуйте знову",
"unvisited_first": "Перший невідвіданий",
"view_cities": "Переглянути міста",
"visit_remove_failed": "Не вдалося видалити відвідування",
"visit_to": "Візит до",
"visited_first": "Відвідав перший",
"your_random_adventure_awaits": "Ваша випадкова пригода чекає!",
"show_more": "Показати Більше",
"all_locations_visited": "Всі відвідані локації!"
},
"collections": {
"all_items": "Усі предмети",
"currencies": "Валюти",
"currency": "Валюта",
"event_timezone": "Часовий пояс події",
"event_timezone_desc": "Часовий пояс події використовує часовий пояс місцеположення або елемента, якщо доступний. Використовується мій часовий пояс",
"events": "події",
"local_timezone": "Мій часовий пояс",
"no_calendar_events": "Відвідування цієї колекції ще не заплановано.",
"no_priced_items": "Додайте ціни до місць, житла чи транспорту, щоб переглянути загальну суму поїздки за валютою.",
"not_found": "Колекція не знайдена",
"statistics": "Статистика",
"times_shown_in": "Час, показаний у",
"trip_costs": "Вартість поїздки"
},
"common": {
"show_less": "Приховати деталі",
"show_more": "Показати більше"
},
"currencies": {
"AED": "дирхам ОАЕ",
"AUD": "Австралійський долар",
"BRL": "бразильський реал",
"CAD": "канадський долар",
"CHF": "швейцарський франк",
"CNY": "Китайський юань",
"DKK": "датська крона",
"EUR": "євро",
"GBP": "Британський фунт",
"HKD": "Гонконгський долар",
"INR": "Індійська рупія",
"JPY": "Японська ієна",
"MXN": "Мексиканське песо",
"NOK": "Норвезька крона",
"NZD": "Новозеландський долар",
"SEK": "шведська крона",
"SGD": "Сінгапурський долар",
"TRY": "Турецька ліра",
"USD": "Долар США",
"ZAR": "південноафриканський ранд",
"no_matches": "Немає збігів",
"search": "Пошук валюти",
"select_currency": "Виберіть валюту"
},
"itinerary": {
"add_description": "Додайте опис",
"add_to_day": "Додайте до дня",
"add_to_trip_context": "Додайте контекст подорожі",
"added_to_trip_context": "Додано до контексту подорожі",
"auto_generate": "Автоматичне генерування",
"auto_generate_itinerary": "Автоматичне генерування маршруту",
"auto_generate_itinerary_desc": "У цій колекції є датовані елементи, але ще немає маршруту. Чи хочете ви автоматично впорядкувати їх за датою?",
"change_day": "День змін",
"drag_to_reorder": "Перетягніть, щоб змінити порядок",
"failed_to_add_to_trip_context": "Не вдалося додати елемент до контексту поїздки",
"failed_to_move_to_trip_context": "Не вдалося перейти до контексту поїздки",
"generating": "Генерація",
"item_already_in_trip_context": "Предмети вже в контексті подорожі",
"item_not_found": "Товар не знайдено",
"item_remove_error": "Помилка видалення пункту з маршруту",
"item_remove_success": "Пункт видалено з маршруту",
"link_existing_item": "Посилання на існуючий елемент",
"move_to_trip_context": "Перейдіть до Контексту подорожі",
"moved_to_trip_context": "Перенесено до контексту поїздки",
"multi_day": "Багатоденний",
"no_itinerary_yet": "Маршруту ще немає",
"no_plans_for_day": "Жодних планів на цей день",
"no_trip_context_items": "Елементів контексту поїздки ще немає.",
"remove_from_itinerary": "Видалити з дня",
"remove_from_trip_context": "Видалити з контексту",
"start_planning": "Почніть планувати свою подорож, додаючи речі в певні дні.",
"staying_overnight": "Ночівля",
"trip_context": "Контекст поїздки",
"trip_context_info": "Елементи контексту подорожі застосовуються до всієї подорожі — наприклад, місця, які є самим пунктом призначення, загальні примітки або пакувальні листи, важливі для всієї подорожі.",
"unscheduled_items": "Позапланові пункти",
"unscheduled_items_desc": "Ці елементи пов’язані з цією поїздкою, але ще не додані до певного дня."
}
}

View File

@@ -1,13 +1,11 @@
{
"navbar": {
"about": "关于冒险日志",
"adventures": "冒险",
"collections": "收藏",
"documentation": "文档",
"greeting": "你好",
"logout": "退出",
"map": "地图",
"my_adventures": "我的冒险",
"profile": "个人资料",
"search": "搜索",
"settings": "设置",
@@ -25,24 +23,19 @@
"northernLights": "极光"
},
"users": "用户",
"worldtravel": "环球旅行",
"my_tags": "我的标签",
"tag": "标签",
"language_selection": "语言",
"support": "支持",
"calendar": "日历",
"admin_panel": "管理面板",
"navigation": "导航"
"navigation": "导航",
"worldtravel": "环球旅行"
},
"about": {
"about": "关于",
"license": "根据 GPL-3.0 许可证授权。",
"message": "在美国用 ❤️ 制作。",
"nominatim_1": "地点搜索和地理编码由",
"nominatim_2": "提供。他们的数据根据ODbL许可证授权。",
"oss_attributions": "开源声明",
"other_attributions": "其他声明可以在 README 文件中找到。",
"source_code": "源代码",
"close": "关闭",
"generic_attributions": "登录到AdventureLog以查看启用集成和服务的归因。",
"attributions": "归因",
@@ -73,7 +66,6 @@
"start_your_journey": "开始您的旅程"
},
"adventures": {
"no_image_found": "未找到图片",
"checklist_delete_confirm": "您确定要删除此检查清单吗?此操作无法撤销。",
"note_delete_confirm": "您确定要删除此笔记吗?此操作无法撤销。",
"transportation_delete_confirm": "您确定要删除此交通工具吗?此操作无法撤销。",
@@ -83,7 +75,6 @@
"delete_transportation": "删除交通工具",
"delete_lodging": "删除住宿",
"open_details": "打开详情",
"edit_adventure": "编辑冒险",
"remove_from_collection": "从合集中移除",
"add_to_collection": "添加到合集",
"delete": "删除",
@@ -94,8 +85,6 @@
"visit": "访问",
"visits": "访问次数",
"create_new": "创建新的...",
"adventure": "冒险",
"count_txt": "与您的搜索匹配的结果",
"sort": "排序",
"order_by": "排序依据",
"order_direction": "排序方向",
@@ -104,49 +93,34 @@
"updated": "更新",
"name": "名称",
"date": "日期",
"activity_types": "活动类型",
"tags": "标签",
"add_a_tag": "添加标签",
"date_constrain": "限制在合集日期内",
"rating": "评分",
"my_images": "我的图片",
"no_images": "没有图片",
"copy_link": "复制链接",
"image": "图片",
"upload_image": "上传图片",
"url": "网址",
"fetch_image": "获取图片",
"wikipedia": "维基百科",
"add_notes": "添加笔记",
"warning": "警告",
"my_adventures": "我的冒险",
"no_linkable_adventures": "未找到可以链接到此合集的冒险。",
"add": "添加",
"save_next": "保存并继续",
"end_date": "结束日期",
"start_date": "开始日期",
"remove": "移除",
"location": "地点",
"search_for_location": "搜索地点",
"clear_map": "清除地图",
"search_results": "搜索结果",
"no_results": "未找到结果",
"attachments": "附件",
"attachment": "附件",
"images": "图片",
"generate_desc": "生成描述",
"location_information": "地点信息",
"link": "链接",
"links": "链接",
"description": "描述",
"sources": "来源",
"collection_adventures": "包含合集中的冒险",
"filter": "过滤",
"category_filter": "类别过滤器",
"category": "类别",
"clear": "清除",
"my_collections": "我的合集",
"open_filters": "打开过滤器",
"archived_collections": "已归档合集",
"share": "分享",
"private": "私密",
@@ -165,72 +139,40 @@
"planned": "计划中",
"duration": "持续时间",
"all": "全部",
"image_removed_success": "成功移除图片!",
"image_removed_error": "移除图片时出错",
"no_image_url": "在该网址找不到图片。",
"image_upload_success": "图片上传成功!",
"image_upload_error": "上传图片时出错",
"dates": "日期",
"wiki_image_error": "从维基百科获取图片时出错",
"start_before_end_error": "开始日期必须在结束日期之前",
"actions": "操作",
"see_adventures": "查看冒险",
"image_fetch_failed": "获取图片失败",
"no_location": "请输入地点",
"no_description_found": "未找到描述",
"lodging": "住宿",
"set_to_pin": "设置为图钉",
"category_fetch_error": "获取类别时出错",
"basic_information": "基本信息",
"display_name": "显示名称",
"adventure_not_found": "没找到任何冒险。使用右下角的加号按钮添加一些,或尝试更改筛选条件!",
"no_adventures_found": "未找到冒险",
"mark_visited": "标记为已访问",
"error_updating_regions": "更新地区时出错",
"regions_updated": "地区已更新",
"cities_updated": "城市已更新",
"visited_region_check": "已访问地区检查",
"visited_region_check_desc": "通过选择此项,服务器将检查您所有已访问的冒险,并将它们所在的地区标记为已访问。",
"update_visited_regions": "更新已访问地区",
"update_visited_regions_disclaimer": "根据您访问的冒险数量,这可能需要一些时间。",
"link_new": "链接新...",
"add_new": "添加新...",
"transportation": "交通",
"note": "笔记",
"checklist": "检查清单",
"collection_archived": "此合集已归档。",
"visit_link": "访问链接",
"collection_completed": "您已完成此合集!",
"collection_stats": "合集统计",
"keep_exploring": "继续探索!",
"linked_adventures": "链接的冒险",
"notes": "笔记",
"checklists": "检查清单",
"transportations": "交通方式",
"adventure_calendar": "冒险日历",
"day": "天",
"itineary_by_date": "行程(按日期",
"nothing_planned": "这一天没有计划。享受旅程!",
"copied_to_clipboard": "已复制到剪贴板!",
"copy_failed": "复制失败",
"show": "显示",
"hide": "隐藏",
"clear_location": "清除地点",
"starting_airport": "起始机场",
"ending_airport": "目的地机场",
"no_location_found": "未找到地点",
"from": "从",
"to": "到",
"start": "开始",
"end": "结束",
"emoji_picker": "表情符号选择器",
"download_calendar": "下载日历",
"date_information": "日期信息",
"flight_information": "航班信息",
"out_of_range": "不在行程日期范围内",
"preview": "预览",
"finding_recommendations": "发现你下一次冒险的隐藏宝藏",
"location_details": "地点详情",
"city": "城市",
"region": "地区",
"md_instructions": "可以使用 Markdown 在此输入您的笔记。",
@@ -239,27 +181,16 @@
"attachment_upload_error": "上传附件时出错",
"upload": "上传",
"attachment_delete_success": "附件删除成功!",
"attachment_update_success": "附件更新成功!",
"attachment_name": "附件名称",
"gpx_tip": "上传 GPX 文件到附件以便在地图上查看它们!",
"attachment_update_error": "更新附件时出错",
"activities": {},
"lodging_information": "住宿信息",
"price": "价格",
"reservation_number": "预订号",
"open_in_maps": "在地图上打开",
"all_day": "整天",
"collection_no_start_end_date": "在集合页面中添加开始日期和结束日期将在“收集”页面中解锁行程计划功能。",
"date_itinerary": "日期行程",
"no_ordered_items": "将带有日期的项目添加到集合中,以便在此处查看它们。",
"ordered_itinerary": "已安排的行程",
"invalid_date_range": "无效的日期范围",
"timezone": "时区",
"no_visits": "没有访问",
"arrival_timezone": "到达时区",
"departure_timezone": "离开时区",
"arrival_date": "到达日期",
"departure_date": "出发日期",
"coordinates": "坐标",
"copy_coordinates": "复制坐标",
"sun_times": "日照时间",
@@ -267,7 +198,6 @@
"sunset": "日落",
"timed": "时间",
"distance": "距离",
"all_linked_items": "所有链接的项目",
"itinerary": "行程",
"joined": "加入",
"view_profile": "查看个人资料",
@@ -276,15 +206,11 @@
"filters_and_stats": "过滤器",
"no_adventures_message": "开始记录您的冒险经历,并计划新的冒险。\n每个旅程都有一个值得讲述的故事。",
"travel_progress": "旅行进度",
"adventures_available": "冒险可用",
"all_adventures_already_linked": "所有冒险已经链接到此集合。",
"collections_linked": "链接的集合",
"create_collection_first": "首先创建一个集合来组织您的冒险和回忆。",
"delete_collection_warning": "您确定要删除此系列吗?\n该动作不能撤消。",
"done": "完毕",
"loading_adventures": "加载冒险...",
"name_location": "名称,地点",
"collection_contents": "收集内容",
"check_in": "报到",
"check_out": "查看",
"collection_link_location_error": "链接地点到集合的错误",
@@ -295,22 +221,14 @@
"create_location": "创建地点",
"delete_location": "删除地点",
"edit_location": "编辑地点",
"location_create_error": "无法创建地点",
"location_created": "创建的地点",
"location_delete_confirm": "您确定要删除此地点吗?\n该动作不能撤消。",
"location_delete_success": "地点成功删除了!",
"location_not_found": "找不到地点",
"location_not_found_desc": "找不到您寻找的地点。\n请尝试其他地点或稍后再检查。",
"location_update_error": "无法更新地点",
"location_updated": "地点更新",
"new_location": "新地点",
"no_collections_to_add_location": "没有发现将此地点添加到。",
"no_locations_to_recommendations": "找不到地点。\n添加至少一个地点以获取建议。",
"public_location": "公共地点",
"share_location": "分享这个地点!",
"visit_calendar": "访问日历",
"wiki_location_desc": "从Wikipedia文章中提取摘录符合该地点的名称。",
"will_be_marked_location": "保存地点后,将被标记为访问。",
"no_locations_found": "找不到地点",
"image_modal_navigate": "使用箭头键或单击以导航",
"details": "详细信息",
@@ -322,7 +240,6 @@
"quick_start": "快速开始",
"achievements": "成就",
"active_duration": "活动持续时间",
"activities_name": "活动",
"activity_name": "活动名称",
"activity_name_placeholder": "早上跑步",
"activity_name_required": "需要活动名称",
@@ -414,13 +331,11 @@
"select_on_map": "在地图上选择",
"select_wanderer_trail": "从您的流wanderer帐户中选择一条路径",
"sport_type": "运动类型",
"sport_type_placeholder": "越野跑",
"start_lat": "开始纬度",
"start_lng": "开始经度",
"strava_activities_during_visit": "访问期间的Strava活动",
"strava_activity_ready": "准备就绪",
"time": "时间",
"total_covered": "总覆盖",
"total_recorded": "记录总数",
"trail": "踪迹",
"trail_created_successfully": "路径成功创建",
@@ -457,19 +372,7 @@
"low": "低的",
"rest": "休息",
"total": "全部的",
"attachment_removed_error": "删除附件的错误",
"attachment_removed_success": "固定被吸收去除",
"attachments_upload_info": "保存后,附件将上传",
"image_upload_info": "保存后将上传图像",
"linked_locations": "链接的地点",
"lodging_save_error": "保存错误的住宿",
"my_attachments": "我的附件",
"no_attachments": "没有附件",
"no_attachments_desc": "上传文件开始",
"no_images_desc": "上传图像开始",
"route_map": "路线图",
"selected_attachments": "选定的附件",
"selected_images": "选定的图像",
"activities_text": "活动",
"activity_breakdown_by_category": "类别的活动分解",
"distance_covered": "覆盖距离",
@@ -478,7 +381,109 @@
"total_climbed": "总攀登",
"total_distance": "总距离",
"dates_not_saved": "访问尚未添加",
"dates_not_saved_description": "点击添加访问以保存"
"dates_not_saved_description": "点击添加访问以保存",
"all_locations_already_linked": "所有地点都已链接到该集合。",
"completed": "完全的",
"flight": "航班",
"folder": "文件夹",
"in_progress": "进行中",
"link_copied": "链接已复制",
"lodging_not_found": "找不到住宿",
"my_locations": "我的地点",
"nights": "夜晚",
"no_linkable_locations": "找不到可以链接到该集合的位置。",
"reservation": "预订",
"route": "路线",
"select": "选择",
"status_filter": "状态过滤器",
"transportation_gpx_tip": "在此处上传 GPX 文件以将其显示在地图上",
"upcoming": "即将推出",
"view": "看法",
"wiki_results_found": "维基百科结果",
"overnight": "过夜",
"saving": "保存",
"add_here": "添加到这里",
"categories": "类别",
"clear_search": "清除搜索",
"click_map_add_marker": "单击地图以放置标记,然后将其添加到此处。",
"gpx_routes": "GPX 路线",
"hide_filters": "隐藏过滤器",
"pins": "针脚",
"reset_filters": "重置",
"routes_and_activities": "路线",
"show_filters": "显示过滤器",
"transport_activity_paths": "运输",
"active_days": "活跃天数",
"avg_rating": "平均评分",
"burned": "烧毁",
"cities": "城市",
"content_media": "内容",
"countries": "国家",
"distance_traveled": "行驶距离",
"files": "文件",
"folder_view": "文件夹视图 - 显示所有数据",
"footprints": "足迹",
"gained": "获得",
"geographic_breakdown": "地理分布",
"images_captured": "拍摄的图像",
"items": "项目",
"lists": "列表",
"locations_visited": "访问地点",
"lodging_types": "住宿类型",
"more_details": "更多详情",
"of_locations": "地点数量",
"on_this_trip": "这次旅行",
"physical_activities": "体育活动",
"places": "地点",
"regions": "地区",
"segments": "段",
"stays": "住宿",
"tasks_done": "任务完成",
"total_days": "总天数",
"total_visits": "总访问量",
"traveled": "旅行过",
"travelers": "旅行者",
"trip_timeline": "行程时间表",
"trip_window": "出行窗口",
"with_activities": "有活动",
"written": "书面",
"country": "国家",
"in": "在",
"airport_search_mode": "机场搜索模式",
"arrival_airport": "到达机场",
"departure_airport": "出发机场",
"end_location": "结束位置",
"itinerary_link_modal": {
"add_here": "添加这里",
"add_here_keep_date": "添加(保留日期)",
"add_to_itinerary": "添加到行程",
"already_added": "已添加",
"already_added_on_this_day": "已于当天添加",
"already_added_on_this_day_desc": "这些项目已经安排在这一天。",
"already_added_other_days": "其他日子已经添加了",
"already_added_other_days_desc": "这些项目安排在不同的日期。\n在此处添加它们将更新它们的日期或按原样添加它们。",
"items_available": "{count} 项可链接",
"items_on_other_days": "其他日子的物品",
"items_on_other_days_desc": "这些项目有不同的日期。\n您可以添加它们并选择更新它们的日期以匹配。",
"items_on_this_day": "这一天的物品",
"no_unscheduled_items": "没有可用的计划外项目",
"no_unscheduled_items_desc": "所有项目已添加到行程中或没有项目可添加。",
"title": "将项目链接到{日期}"
},
"location_search_mode": "位置搜索模式",
"route_selected": "已选择路线",
"search_end_location": "搜索结束位置",
"search_start_end_locations": "搜索开始和结束位置",
"search_start_location": "搜索起始位置",
"start_location": "起始位置",
"airport_code_examples": "肯尼迪机场、洛杉矶国际机场、伦敦HR...",
"enter_location_display_name": "输入位置显示名称",
"export_failed": "导出失败",
"export_success": "导出集合",
"export_zip": "导出邮政编码",
"import_failed": "导入失败",
"import_from_file": "从文件导入",
"import_success": "导入成功"
},
"auth": {
"forgot_password": "忘记密码?",
@@ -494,7 +499,6 @@
"registration_disabled": "当前暂不开放注册。",
"profile_picture": "头像",
"public_profile": "公开资料",
"public_tooltip": "通过公开个人资料,用户可以与您共享合集,并在用户页面查看您的资料。",
"new_password": "新密码6个字符以上",
"or_3rd_party": "或使用第三方服务登录",
"no_public_collections": "未找到公开合集",
@@ -504,18 +508,12 @@
"enter_password": "输入您的密码",
"enter_username": "输入您的用户名",
"logging_in": "登录",
"totp": "二步验证代码"
"totp": "二步验证代码",
"user_email_verification_required": "需要电子邮件验证。\n请检查您的电子邮件以获取验证链接。"
},
"worldtravel": {
"all": "全部",
"all_subregions": "所有次区域",
"clear_search": "清除搜索",
"completely_visited": "已完全访问",
"country_list": "国家列表",
"no_countries_found": "没有找到国家",
"not_visited": "未访问过",
"num_countries": "找到的国家",
"partially_visited": "部分访问",
"cities": "城市",
"failed_to_mark_visit": "无法标记访问",
"failed_to_remove_visit": "无法删除对的访问",
@@ -556,11 +554,6 @@
"show_map_labels": "显示地图标签",
"total_cities": "总城市",
"total_countries": "总国家",
"newest_first": "最新优先",
"oldest_first": "最早优先",
"unvisited_first": "未访问优先",
"visited_first": "已访问优先",
"total_items": "总项目",
"getting_location_details": "获取地点详细信息",
"cities_available": "可用的城市",
"destination_revealed": "目的地揭示了!",
@@ -580,7 +573,8 @@
"about_country": "关于国家",
"about_region": "关于地区",
"show_less": "显示较少",
"show_more": "显示更多"
"show_more": "显示更多",
"all_locations_visited": "访问过的所有地点!"
},
"users": {
"no_users_found": "未找到已公开的用户。"
@@ -772,10 +766,23 @@
"shared_collections": "共享收藏",
"available": "可用的",
"linked": "链接",
"try_different_search": "尝试其他搜索或过滤器。"
"try_different_search": "尝试其他搜索或过滤器。",
"changing_date_title": "更改日期将影响行程项目",
"changing_date_warning": "新日期范围之外的任何行程项目都将从行程中删除,并放回集合中未注明日期的项目中。",
"clear_cover": "透明盖",
"cover": "覆盖",
"cover_image": "封面图片",
"cover_image_hint": "从该集合中的图像中选择一个封面。",
"create_new_collection": "创建新集合",
"enter_collection_name": "输入集合名称",
"location_primary": "地点封面",
"no_images_available": "链接位置尚无可用图像。",
"public_collection_description": "允许知道链接的任何人查看",
"set_cover": "设置封面",
"update_collection_details": "更新集合详细信息",
"collaborators": "合作者"
},
"notes": {
"add_a_link": "添加链接",
"content": "内容",
"editing_note": "编辑注释",
"failed_to_save": "保存笔记失败",
@@ -812,9 +819,6 @@
"transportation_delete_error": "删除交通信息时出错",
"transportation_deleted": "交通信息删除成功!",
"type": "类型",
"ending_airport_desc": "输入到达机场代码LAX",
"fetch_location_information": "获取地点信息",
"starting_airport_desc": "输入出发机场代码JFK",
"create_new_transportation": "新建交通信息",
"enter_flight_number": "输入航班号",
"enter_from_location": "从地点输入",
@@ -822,12 +826,15 @@
"enter_to_location": "输入地点",
"enter_transportation_name": "输入交通名称",
"select_type": "选择类型",
"update_transportation_details": "更新运输详细信息"
"update_transportation_details": "更新运输详细信息",
"arrival_code": "到达代码",
"departure_code": "出发代码",
"arrival_date": "抵达日期",
"arrival_timezone": "到达时区",
"departure_date": "出发日期",
"departure_timezone": "出发时区"
},
"search": {
"adventurelog_results": "AdventureLog 结果",
"online_results": "在线结果",
"public_adventures": "已公开的冒险",
"cities": "城市",
"countries": "国家",
"found": "成立",
@@ -836,12 +843,7 @@
"try_searching_desc": "尝试搜索冒险,收藏,国家,地区,城市或用户。"
},
"map": {
"add_adventure": "添加新冒险",
"add_adventure_at_marker": "在标记处添加新冒险",
"adventure_map": "冒险地图",
"clear_marker": "清除标记",
"map_options": "地图选项",
"show_visited_regions": "显示访问过的地区",
"view_details": "查看详情",
"adventure_stats": "冒险统计",
"completion": "完成",
@@ -854,21 +856,16 @@
"location_map": "地点图",
"locations_shown": "显示的地点",
"place_marker_desc_location": "单击地图以放置标记。",
"show_activities": "展示活动",
"show_visited_cities": "参观城市"
"show_visited_cities": "参观城市",
"search_locations": "搜索地点..."
},
"languages": {},
"share": {
"no_users_shared": "没有已共享的用户",
"not_shared_with": "不与共享",
"share_desc": "与其他用户分享此合集。",
"shared": "共享",
"shared_with": "已共享的用户",
"unshared": "未共享",
"with": "和",
"go_to_settings": "前往设置",
"no_shared_found": "未找到与您共享的合集。",
"set_public": "为了允许用户与您共享,您需要将您的个人资料设置为公开。",
"available": "可用的",
"pending": "待办的",
"revoke_invite": "撤销邀请",
@@ -882,7 +879,6 @@
},
"profile": {
"member_since": "会员自",
"user_stats": "用户统计",
"visited_countries": "访问过的国家",
"visited_regions": "访问过的地区",
"visited_cities": "访问过的城市",
@@ -907,7 +903,6 @@
"location_update_after_refresh": "刷新页面后,将更新地点卡。"
},
"dashboard": {
"add_some": "为什么不开始计划你的下一次冒险呢?\n您可以通过单击下面的按钮添加新的冒险。",
"countries_visited": "已访问国家数量",
"no_recent_adventures": "最近不去冒险吗?",
"recent_adventures": "最近的冒险",
@@ -955,16 +950,34 @@
"loading_albums": "加载专辑",
"no_images": "找不到图像",
"select_album": "选择专辑",
"select_album_first": "首先选择专辑",
"select_date": "选择日期",
"try_different_date": "尝试其他日期"
},
"recomendations": {
"recommendation": "推荐",
"recommendations": "建议",
"food": "食物",
"tourism": "旅游",
"location_recommendations": "地点建议"
"average_rating": "平均评分",
"discover_places": "探索地点",
"lodging": "酒店",
"map_view": "地图视图",
"minimum_rating": "最低评级",
"minimum_reviews": "最低评论",
"no_results_yet": "还没有结果",
"open_now_only": "仅限现在开放",
"search_around_location": "搜索周围位置",
"search_by_address": "按地址搜索",
"search_radius_label": "搜索半径:",
"searching": "正在寻找...",
"select_location_or_query": "选择一个位置或输入搜索查询来发现附近的精彩地点!",
"total_results": "总结果",
"use_search_instead": "使用搜索代替",
"any": "任何",
"add_location": "添加位置",
"add_lodging": "添加住宿",
"away": "离开",
"hours": "时间",
"open": "打开",
"your_location": "您的位置"
},
"lodging": {
"campground": "露营地",
@@ -984,7 +997,6 @@
"resort": "度假村",
"create_new_lodging": "新住宿",
"enter_lodging_name": "输入住宿名称",
"enter_price": "输入价格",
"enter_reservation_number": "输入预订号",
"update_lodging_details": "更新住宿详细信息"
},
@@ -1001,7 +1013,9 @@
"month": "月",
"today": "今天",
"total_events": "总事件",
"week": "周"
"week": "周",
"event timezone": "活动时区",
"your timezone": "您的时区"
},
"locations": {
"location": "地点",
@@ -1024,15 +1038,11 @@
"title": "邀请"
},
"strava": {
"account_connected": "帐户连接",
"admin_setup_required": "服务器管理员必须在全球范围内启用它",
"authorization_error": "错误将重定向到Strava授权URL",
"connect_account": "连接帐户",
"disconnect": "断开",
"disconnect_error": "与Strava断开连接的错误",
"disconnected": "成功与Strava断开连接",
"not_configured": "Strava未配置",
"ready_to_connect": "准备连接",
"strava_integration_desc": "连接到Strava轻松将您的活动导入到地点和访问中",
"gpx_required": "请上传GPX文件以完成Strava导入",
"not_enabled": "未启用Strava集成。"
@@ -1041,5 +1051,82 @@
"connected": "已成功连接 Wanderer",
"connection_error": "连接 Wanderer 时出错",
"wanderer_integration_desc": "连接 Wanderer可便捷导入轨迹并在地点页面查看"
},
"common": {
"show_less": "隐藏详细信息",
"show_more": "显示更多"
},
"itinerary": {
"item_remove_error": "从行程中删除项目时出错",
"item_remove_success": "项目已从行程中删除",
"remove_from_itinerary": "从当天删除",
"auto_generate": "自动生成",
"auto_generate_itinerary": "自动生成行程",
"auto_generate_itinerary_desc": "该系列已注明日期,但尚无行程。\n您想按日期自动组织它们吗",
"generating": "生成",
"item_not_found": "未找到项目",
"link_existing_item": "链接现有项目",
"multi_day": "多日",
"no_itinerary_yet": "还没有行程",
"no_plans_for_day": "这一天没有计划",
"start_planning": "通过向特定日期添加项目来开始计划您的旅行。",
"staying_overnight": "过夜",
"unscheduled_items": "计划外项目",
"unscheduled_items_desc": "这些项目与此行程相关,但尚未添加到特定日期。",
"change_day": "改变日",
"move_to_trip_context": "移至行程上下文",
"no_trip_context_items": "还没有旅行上下文项目。",
"trip_context": "旅行背景",
"trip_context_info": "旅行上下文项目适用于整个旅行 - 例如目的地本身的位置、一般注释或对整个旅行很重要的装箱单。",
"add_description": "添加描述",
"added_to_trip_context": "添加到旅行上下文",
"failed_to_add_to_trip_context": "无法将项目添加到行程上下文",
"failed_to_move_to_trip_context": "无法移至行程上下文",
"item_already_in_trip_context": "已在旅行上下文中的项目",
"moved_to_trip_context": "移至旅行上下文",
"remove_from_trip_context": "从上下文中删除",
"drag_to_reorder": "拖动以重新排序",
"add_to_day": "添加到日期",
"add_to_trip_context": "添加旅行背景"
},
"collections": {
"all_items": "所有项目",
"currencies": "货币",
"currency": "货币",
"event_timezone": "活动时区",
"event_timezone_desc": "事件时区使用位置或项目时区(如果可用)。\n我的时区使用",
"events": "事件",
"local_timezone": "我的时区",
"no_calendar_events": "目前还没有安排参观该藏品。",
"no_priced_items": "添加地点、住宿或交通的价格,以按货币查看行程总计。",
"not_found": "未找到集合",
"statistics": "统计数据",
"times_shown_in": "时间显示在",
"trip_costs": "旅行费用"
},
"currencies": {
"AED": "阿联酋迪拉姆",
"AUD": "澳元",
"BRL": "巴西雷亚尔",
"CAD": "加元",
"CHF": "瑞士法郎",
"CNY": "人民币",
"DKK": "丹麦克朗",
"EUR": "欧元",
"GBP": "英镑",
"HKD": "港元",
"INR": "印度卢比",
"JPY": "日圆",
"MXN": "墨西哥比索",
"NOK": "挪威克朗",
"NZD": "新西兰元",
"SEK": "瑞典克朗",
"SGD": "新加坡元",
"TRY": "土耳其里拉",
"USD": "美元",
"ZAR": "南非兰特",
"no_matches": "没有匹配项",
"search": "搜索货币",
"select_currency": "选择货币"
}
}