[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": "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"
}
}