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