[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

@@ -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."
}
}