From 7857b4e46480f1fe5a8725c16acf81198b95f709 Mon Sep 17 00:00:00 2001 From: sepeterson <10458078+sepeterson@users.noreply.github.com> Date: Wed, 13 May 2026 12:28:38 -0500 Subject: [PATCH 001/224] add ExploreV2 debug sheet --- .../Explore/ExploreV2/ExploreV2DebugSheet.tsx | 262 ++++++++++++++++++ .../ExploreV2/screens/ExploreResults.tsx | 3 + 2 files changed, 265 insertions(+) create mode 100644 src/components/Explore/ExploreV2/ExploreV2DebugSheet.tsx diff --git a/src/components/Explore/ExploreV2/ExploreV2DebugSheet.tsx b/src/components/Explore/ExploreV2/ExploreV2DebugSheet.tsx new file mode 100644 index 000000000..633577442 --- /dev/null +++ b/src/components/Explore/ExploreV2/ExploreV2DebugSheet.tsx @@ -0,0 +1,262 @@ +/* eslint-disable i18next/no-literal-string */ +import classnames from "classnames"; +import buildExploreV2QueryParams + from "components/Explore/ExploreV2/buildQueryParams"; +import { INatIconButton } from "components/SharedComponents"; +import Modal from "components/SharedComponents/Modal"; +import Body3 from "components/SharedComponents/Typography/Body3"; +import Heading4 from "components/SharedComponents/Typography/Heading4"; +import { + Pressable, ScrollView, Text, View, +} from "components/styledComponents"; +import { + defaultExploreV2Location, + EXPLORE_V2_ACTION, + EXPLORE_V2_PLACE_MODE, + EXPLORE_V2_SORT, + useExploreV2, +} from "providers/ExploreV2Context"; +import React, { useState } from "react"; +import { getShadow } from "styles/global"; + +const TAXA = [ + { id: 47126, name: "Plantae" }, + { id: 3, name: "Aves" }, + { id: 47158, name: "Insecta" }, +]; + +const USERS = [ + { id: 6746956, login: "seth_msp" }, +]; + +const PROJECTS = [ + { id: 42778, title: "Appropriate signs project" }, +]; + +const PLACES = [ + { id: 1, display_name: "United States" }, + { id: 6712, display_name: "Canada" }, +]; + +const SCROLL_CONTENT = { paddingBottom: 32 }; + +const DROP_SHADOW = getShadow( { + offsetHeight: 4, + elevation: 6, +} ); + +const SORT_LABELS: Record = { + [EXPLORE_V2_SORT.DATE_UPLOADED_NEWEST]: "Uploaded ↓", + [EXPLORE_V2_SORT.DATE_UPLOADED_OLDEST]: "Uploaded ↑", + [EXPLORE_V2_SORT.DATE_OBSERVED_NEWEST]: "Observed ↓", + [EXPLORE_V2_SORT.DATE_OBSERVED_OLDEST]: "Observed ↑", + [EXPLORE_V2_SORT.MOST_FAVED]: "Most faved", +}; + +interface DebugButtonProps { + label: string; + onPress: () => void; + active?: boolean; +} + +const DebugButton = ( { label, onPress, active }: DebugButtonProps ) => ( + + {label} + +); + +interface SectionProps { + title: string; + children: React.ReactNode; +} + +const Section = ( { title, children }: SectionProps ) => ( + + {title} + {children} + +); + +const ExploreV2DebugSheet = ( ) => { + const { state, dispatch } = useExploreV2(); + const [visible, setVisible] = useState( false ); + + const queryParams = buildExploreV2QueryParams( state ); + + const subjectType = state.subject?.type; + let subjectId: number | null = null; + if ( state.subject?.type === "taxon" ) subjectId = state.subject.taxon.id; + else if ( state.subject?.type === "user" ) subjectId = state.subject.user.id; + else if ( state.subject?.type === "project" ) subjectId = state.subject.project.id; + + const { placeMode } = state.location; + const placeId = placeMode === EXPLORE_V2_PLACE_MODE.PLACE + ? state.location.place.id + : null; + + const handleNearby = async () => { + const next = await defaultExploreV2Location(); + if ( next.placeMode === EXPLORE_V2_PLACE_MODE.NEARBY ) { + dispatch( { + type: EXPLORE_V2_ACTION.SET_LOCATION_NEARBY, + lat: next.lat, + lng: next.lng, + radius: next.radius, + } ); + } else { + dispatch( { type: EXPLORE_V2_ACTION.SET_LOCATION_WORLDWIDE } ); + } + }; + + const onClose = () => setVisible( false ); + + return ( + <> + setVisible( true )} + /> + + + ExploreV2 Debug + + Close + + + +
+ {TAXA.map( taxon => ( + dispatch( { + type: EXPLORE_V2_ACTION.SET_SUBJECT, + subject: { type: "taxon", taxon }, + } )} + /> + ) )} + {USERS.map( user => ( + dispatch( { + type: EXPLORE_V2_ACTION.SET_SUBJECT, + subject: { type: "user", user }, + } )} + /> + ) )} + {PROJECTS.map( project => ( + dispatch( { + type: EXPLORE_V2_ACTION.SET_SUBJECT, + subject: { type: "project", project }, + } )} + /> + ) )} + dispatch( { type: EXPLORE_V2_ACTION.CLEAR_SUBJECT } )} + /> +
+ +
+ dispatch( { type: EXPLORE_V2_ACTION.SET_LOCATION_WORLDWIDE } )} + /> + + {PLACES.map( place => ( + dispatch( { + type: EXPLORE_V2_ACTION.SET_LOCATION_PLACE, + place, + } )} + /> + ) )} +
+ +
+ {Object.values( EXPLORE_V2_SORT ).map( sort => ( + dispatch( { + type: EXPLORE_V2_ACTION.SET_SORT, + sortBy: sort, + } )} + /> + ) )} +
+ +
+ dispatch( { type: EXPLORE_V2_ACTION.RESET } )} + /> +
+ + State + + {JSON.stringify( state, null, 2 )} + + Query params + + {JSON.stringify( queryParams, null, 2 )} + +
+ + )} + /> + + ); +}; + +export default ExploreV2DebugSheet; diff --git a/src/components/Explore/ExploreV2/screens/ExploreResults.tsx b/src/components/Explore/ExploreV2/screens/ExploreResults.tsx index 199a1644b..413d9aebe 100644 --- a/src/components/Explore/ExploreV2/screens/ExploreResults.tsx +++ b/src/components/Explore/ExploreV2/screens/ExploreResults.tsx @@ -1,6 +1,8 @@ import { useNetInfo } from "@react-native-community/netinfo"; import buildExploreV2QueryParams from "components/Explore/ExploreV2/buildQueryParams"; +import ExploreV2DebugSheet + from "components/Explore/ExploreV2/ExploreV2DebugSheet"; import useInfiniteExploreScroll from "components/Explore/hooks/useInfiniteExploreScroll"; import ObservationsFlashList from "components/ObservationsFlashList/ObservationsFlashList"; @@ -47,6 +49,7 @@ const ExploreResults = ( ) => { showNoResults={!canFetch || totalResults === 0} testID="ExploreV2ObservationsList" /> + ); From c91a041eab830c8a196251fc92f43dc2bff54c2e Mon Sep 17 00:00:00 2001 From: Dan Rademacher Date: Wed, 13 May 2026 16:37:47 -0700 Subject: [PATCH 002/224] Improved issue templates, LEAD-26 Adds new links to forum from issue creation form --- .github/ISSUE_TEMPLATE/bug_report.md | 32 ----------------- .github/ISSUE_TEMPLATE/config.yml | 31 +++++++++++++++++ .../ISSUE_TEMPLATE/technical_bug_report.md | 34 +++++++++++++++++++ 3 files changed, 65 insertions(+), 32 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/technical_bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 6294c8da5..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: Bug report -about: Report a problem with expected functionality -title: '' -labels: bug -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Tap on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Context (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - App version: [e.g. 1.0.0] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..208a1dab6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,31 @@ +# This file disables blank issue creation and replaces the issue form with +# links that redirect users to the appropriate channels. +# +# Place this file at .github/ISSUE_TEMPLATE/config.yml in each repo. + +blank_issues_enabled: false + +contact_links: + - name: 🐛 Report a bug + url: https://forum.inaturalist.org/c/bug-reports + about: > + Please report bugs on the iNaturalist Forum. You're more likely to get + a response there, and other users can confirm or add context to your report. + + - name: 💡 Request a feature + url: https://forum.inaturalist.org/c/feature-requests + about: > + Please post feature requests on the iNaturalist Forum, where the + community can discuss and staff can weigh in on feasibility. + + - name: 💬 Ask a technical question about the code + url: https://github.com/inaturalist/inaturalistReactNative/discussions + about: > + If you have a question about how the code works, or you're building + an integration, open a GitHub Discussion instead of an issue. + + - name: 🔒 Report a security vulnerability + url: mailto:help+security@inaturalist.org + about: > + For security issues requiring confidential communication, + please email us directly rather than filing a public issue. diff --git a/.github/ISSUE_TEMPLATE/technical_bug_report.md b/.github/ISSUE_TEMPLATE/technical_bug_report.md new file mode 100644 index 000000000..a16b7f0d4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/technical_bug_report.md @@ -0,0 +1,34 @@ +--- +name: Report a code-level technical issue +about: Create a report to help us improve, with code-level/engineering specific concerns +title: '' +type: Bug +assignees: '' + +--- + +[//]: # (For feature requests and bug reports not specifically concerning code, please use https://forum.inaturalist.org/c/bug-reports. To request a feature, use https://forum.inaturalist.org/c/feature-requests. To ask a technical question, use https://github.com/inaturalist/inaturalist/discussions. To report a secutrity vulnerability, email help+security@inaturalist.org) + +**Describe the bug** +A clear and concise description of what the bug is, preferably with citations to the relevant code in this github repo. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Tap on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Context (please complete the following information):** + - Device: [e.g. iPhone 16] + - OS: [e.g. iOS 26.5] + - App version: [e.g. 1.0.20] + +**Additional context** +Add any other context about the problem here. \ No newline at end of file From bb2aacb0c5119e362e250c949c04c3b2c7b71133 Mon Sep 17 00:00:00 2001 From: Dan Rademacher Date: Wed, 13 May 2026 21:30:48 -0700 Subject: [PATCH 003/224] Revise contributing guidelines, LEAD-26 Shift emphasis to transparency, reduce open invitation for contributions --- CONTRIBUTING.md | 54 ++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 44 insertions(+), 10 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 307b011f2..ef05e8697 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,47 @@ # Contribution Guidelines for iNaturalistReactNative -Welcome! We're excited that you're interested in contributing to the iNaturalist React Native mobile application. Below you'll find some guidelines that will help you contribute to our project, whether you're on staff or a volunteer. + +## About this codebase + +iNaturalist's code is open source primarily for **transparency** — we want our community to be able to see how the platform works. Unlike many open source projects, we don't maintain this codebase as a general-purpose tool for forking or customization. We build it with one deployment in mind: iNaturalist.org and the iNaturalist mobile apps. + +We will probably close pull requests that don't address open issues. Again, if you want to change functionality, the discussion should start in the [Forum](https://forum.inaturalist.org/), and if staff agree something should change, we'll make an issue, label it, and then you can work on it. + +We're a small team. Our capacity to review and integrate external contributions is limited, and we can't commit to responding to every inquiry or pull request. + +## Bugs and feature requests + +**Please don't open GitHub issues for user-facing bug reports or feature requests.** + +We track our work internally and triage inbound requests through the [iNaturalist Forum](https://forum.inaturalist.org). Filing a GitHub issue is unlikely to result in action, and you're much more likely to get a response — and to hear from other community members with similar experiences — on the Forum. + +- **Bug reports:** [forum.inaturalist.org](https://forum.inaturalist.org) → Bug Reports category +- **Feature requests:** [forum.inaturalist.org](https://forum.inaturalist.org) → Feature Requests category + +If you've found a problem in the code, please supply detailed reproduction conditions, cite line numbers, include exceptions / stack traces, etc. If you can't supply this kind of information, we will probably close your issue and suggest you post to the forum links above. + +# Reporting Security Issues + +You should report security issues that require confidential communication to [help+security@inaturalist.org](mailto:help+security@inaturalist.org). We do not offer any rewards or bounties for reporting security issues, though we may offer to list your name and URL here if we act on your report. + +--- + +## Translations + +Translations are handled separately through [Crowdin](https://crowdin.com/project/inaturalistios), not through pull requests. If you'd like to help translate iNaturalist into another language, that's the place to start — and it's one of the most impactful ways to contribute to the project. + +--- + +## Code of conduct + +All contributors are expected to follow the [iNaturalist Community Guidelines](https://www.inaturalist.org/pages/community+guidelines), or at least the parts that aren't specific to using iNaturalist as a naturalist. + +--- + +## Questions about the code + +If you have a technical question about how something works — you're building an integration, you're curious about an architectural decision, or you've encountered something confusing — you can open a [GitHub Discussion](https://github.com/inaturalist/iNaturalistReactNative/discussions/3477). We can't promise a quick response, but discussions are more likely to get attention than issues, and they benefit others who have the same question. + +## Code contributions Please keep the following in mind: @@ -50,12 +92,4 @@ Please follow this guidance when committing to the main branch, including merge ## Pull Request Guidelines - Give your pull request a **clear and descriptive title** (e.g. "Remove predictions state on blur and focus in ARCamera") and a comment that includes a reference to the issue number (e.g. "Closes #123" or "Partially addresses #123" in case of an open issue) and maybe a detailed description of the changes you've made -- Please do not refer to the issue number in the PR title. Do that in the comment / body. -- If you're adding new features or functionality differing from the description in the issue, please provide a clear explanation of how this work differs from what the issue describes -- Feel free to ask any questions or raise any concerns you have - - -## Issues and Bugs -If you find an issue or bug in our application, please report it by opening a new issue in the repository. Please include a clear and detailed description of the issue, steps to reproduce the issue, and any relevant screenshots or error messages. - -Thank you for contributing to our React Native mobile application! +- Don't include new features or functionality differing from the description in the issue. \ No newline at end of file From 7319c4a9eebbe2b7de40ba73d9216d21ed800bac Mon Sep 17 00:00:00 2001 From: sepeterson <10458078+sepeterson@users.noreply.github.com> Date: Thu, 14 May 2026 15:56:30 -0500 Subject: [PATCH 004/224] ts convert useInfiniteExploreScroll --- src/api/types.d.ts | 1 + ...eScroll.js => useInfiniteExploreScroll.ts} | 57 ++++++++++++++----- 2 files changed, 43 insertions(+), 15 deletions(-) rename src/components/Explore/hooks/{useInfiniteExploreScroll.js => useInfiniteExploreScroll.ts} (55%) diff --git a/src/api/types.d.ts b/src/api/types.d.ts index 9a11e451f..a432d81b0 100644 --- a/src/api/types.d.ts +++ b/src/api/types.d.ts @@ -195,6 +195,7 @@ export interface ApiSuggestion { export interface ApiObservationsSearchResponse extends ApiResponse { results: ApiObservation[]; + total_bounds?: object; } export const ORDER_BY_CREATED_AT = "created_at"; diff --git a/src/components/Explore/hooks/useInfiniteExploreScroll.js b/src/components/Explore/hooks/useInfiniteExploreScroll.ts similarity index 55% rename from src/components/Explore/hooks/useInfiniteExploreScroll.js rename to src/components/Explore/hooks/useInfiniteExploreScroll.ts index 241f130d6..ed7783f45 100644 --- a/src/components/Explore/hooks/useInfiniteExploreScroll.js +++ b/src/components/Explore/hooks/useInfiniteExploreScroll.ts @@ -1,7 +1,10 @@ -// @flow - import { useQueryClient } from "@tanstack/react-query"; import { searchObservations } from "api/observations"; +import type { + ApiObservation, + ApiObservationsSearchParams, + ApiObservationsSearchResponse, +} from "api/types"; import flatten from "lodash/flatten"; import { useCallback, useMemo } from "react"; import Observation from "realmModels/Observation"; @@ -12,16 +15,36 @@ import { getNextPageParamForExplore, } from "../helpers/exploreParams"; -const useInfiniteExploreScroll = ( { params: newInputParams, enabled }: Object ): Object => { +interface ExcludeUser { + id: number; +} + +interface UseInfiniteExploreScrollParams { + params: ApiObservationsSearchParams & { excludeUser?: ExcludeUser }; + enabled: boolean; +} + +interface UseInfiniteExploreScrollReturn { + fetchNextPage: ( ) => void; + isLoading: boolean; + isFetchingNextPage: boolean; + handlePullToRefresh: ( ) => Promise; + observations: ApiObservation[]; + status: string; + totalBounds: object | undefined; + totalResults: number | null | undefined; +} + +const useInfiniteExploreScroll = ( + { params: newInputParams, enabled }: UseInfiniteExploreScrollParams, +): UseInfiniteExploreScrollReturn => { const queryClient = useQueryClient( ); const baseParams = useMemo( () => ( { ...newInputParams, fields: { - // the most data we display in the UI on any Observations view in Explore - // is the same amount of data we show for the Advanced list mode in MyObservations ...Observation.ADVANCED_MODE_LIST_FIELDS, - user: { // included here for "exclude by current user" in explore filters + user: { id: true, uuid: true, login: true, @@ -30,12 +53,15 @@ const useInfiniteExploreScroll = ( { params: newInputParams, enabled }: Object ) ttl: -1, } ), [newInputParams] ); - const excludedUser = newInputParams.excludeUser; + const excludedUser: ExcludeUser | undefined = newInputParams.excludeUser; const queryKey = ["useInfiniteExploreScroll", newInputParams]; const getNextPageParam = useCallback( - lastPage => getNextPageParamForExplore( lastPage, baseParams ), + ( lastPage: ApiObservationsSearchResponse ) => getNextPageParamForExplore( + lastPage, + baseParams, + ), [baseParams], ); @@ -64,14 +90,15 @@ const useInfiniteExploreScroll = ( { params: newInputParams, enabled }: Object ) await refetch( ); }; - let observations = flatten( data?.pages?.map( r => r.results ) ) || []; - let totalResults = data?.pages?.[0].total_results; - let filtered = []; + const pages = data?.pages as ApiObservationsSearchResponse[] | undefined; + + let observations: ApiObservation[] = flatten( pages?.map( r => r.results ) ) || []; + let totalResults: number | null | undefined = pages?.[0]?.total_results; - // filter out obs from excluded user and adjust count if ( excludedUser && observations ) { - filtered = observations.filter( observation => observation?.user.id !== excludedUser.id ); - observations = filtered; + observations = observations.filter( + observation => observation?.user?.id !== excludedUser.id, + ); } if ( totalResults !== 0 && !totalResults ) { @@ -85,7 +112,7 @@ const useInfiniteExploreScroll = ( { params: newInputParams, enabled }: Object ) handlePullToRefresh, observations, status, - totalBounds: data?.pages?.[0].total_bounds, + totalBounds: pages?.[0]?.total_bounds, totalResults, }; }; From dfb2655925aa4a840bd0fef00ba84e2e6fcd37f1 Mon Sep 17 00:00:00 2001 From: sepeterson <10458078+sepeterson@users.noreply.github.com> Date: Thu, 14 May 2026 16:05:12 -0500 Subject: [PATCH 005/224] type total_bounds --- src/api/types.d.ts | 9 ++++++++- src/components/Explore/hooks/useInfiniteExploreScroll.ts | 5 ++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/api/types.d.ts b/src/api/types.d.ts index a432d81b0..79ef68e3f 100644 --- a/src/api/types.d.ts +++ b/src/api/types.d.ts @@ -193,9 +193,16 @@ export interface ApiSuggestion { combined_score: number; } +export interface ApiTotalBounds { + swlat: number; + swlng: number; + nelat: number; + nelng: number; +} + export interface ApiObservationsSearchResponse extends ApiResponse { results: ApiObservation[]; - total_bounds?: object; + total_bounds?: ApiTotalBounds; } export const ORDER_BY_CREATED_AT = "created_at"; diff --git a/src/components/Explore/hooks/useInfiniteExploreScroll.ts b/src/components/Explore/hooks/useInfiniteExploreScroll.ts index ed7783f45..8fd7be8f7 100644 --- a/src/components/Explore/hooks/useInfiniteExploreScroll.ts +++ b/src/components/Explore/hooks/useInfiniteExploreScroll.ts @@ -4,6 +4,7 @@ import type { ApiObservation, ApiObservationsSearchParams, ApiObservationsSearchResponse, + ApiTotalBounds, } from "api/types"; import flatten from "lodash/flatten"; import { useCallback, useMemo } from "react"; @@ -31,7 +32,7 @@ interface UseInfiniteExploreScrollReturn { handlePullToRefresh: ( ) => Promise; observations: ApiObservation[]; status: string; - totalBounds: object | undefined; + totalBounds: ApiTotalBounds | undefined; totalResults: number | null | undefined; } @@ -43,7 +44,9 @@ const useInfiniteExploreScroll = ( const baseParams = useMemo( () => ( { ...newInputParams, fields: { + // Same fields as MyObservations advanced list mode ...Observation.ADVANCED_MODE_LIST_FIELDS, + // Included for "exclude by current user" in explore filters user: { id: true, uuid: true, From 6e566f3624d079f7b1e9fd59753f2d28c3f9f503 Mon Sep 17 00:00:00 2001 From: sepeterson <10458078+sepeterson@users.noreply.github.com> Date: Thu, 14 May 2026 16:23:38 -0500 Subject: [PATCH 006/224] narrow return types --- src/components/Explore/hooks/useInfiniteExploreScroll.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Explore/hooks/useInfiniteExploreScroll.ts b/src/components/Explore/hooks/useInfiniteExploreScroll.ts index 8fd7be8f7..409dcf647 100644 --- a/src/components/Explore/hooks/useInfiniteExploreScroll.ts +++ b/src/components/Explore/hooks/useInfiniteExploreScroll.ts @@ -31,9 +31,9 @@ interface UseInfiniteExploreScrollReturn { isFetchingNextPage: boolean; handlePullToRefresh: ( ) => Promise; observations: ApiObservation[]; - status: string; + status: "pending" | "error" | "success"; totalBounds: ApiTotalBounds | undefined; - totalResults: number | null | undefined; + totalResults: number | null; } const useInfiniteExploreScroll = ( From a6f46c7c37aef78a7fa0be2c4fcccb7b66820205 Mon Sep 17 00:00:00 2001 From: sepeterson <10458078+sepeterson@users.noreply.github.com> Date: Thu, 14 May 2026 16:37:20 -0500 Subject: [PATCH 007/224] use a QueryStatus type --- src/components/Explore/hooks/useInfiniteExploreScroll.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/components/Explore/hooks/useInfiniteExploreScroll.ts b/src/components/Explore/hooks/useInfiniteExploreScroll.ts index 409dcf647..c2863f090 100644 --- a/src/components/Explore/hooks/useInfiniteExploreScroll.ts +++ b/src/components/Explore/hooks/useInfiniteExploreScroll.ts @@ -1,3 +1,4 @@ +import type { QueryStatus } from "@tanstack/react-query"; import { useQueryClient } from "@tanstack/react-query"; import { searchObservations } from "api/observations"; import type { @@ -31,7 +32,7 @@ interface UseInfiniteExploreScrollReturn { isFetchingNextPage: boolean; handlePullToRefresh: ( ) => Promise; observations: ApiObservation[]; - status: "pending" | "error" | "success"; + status: QueryStatus; totalBounds: ApiTotalBounds | undefined; totalResults: number | null; } @@ -44,10 +45,10 @@ const useInfiniteExploreScroll = ( const baseParams = useMemo( () => ( { ...newInputParams, fields: { - // Same fields as MyObservations advanced list mode + // the most data we display in the UI on any Observations view in Explore + // is the same amount of data we show for the Advanced list mode in MyObservations ...Observation.ADVANCED_MODE_LIST_FIELDS, - // Included for "exclude by current user" in explore filters - user: { + user: { // included here for "exclude by current user" in explore filters id: true, uuid: true, login: true, From d422e8d941e1eafbf36e9b26dcb8ad56cc1cd610 Mon Sep 17 00:00:00 2001 From: sepeterson <10458078+sepeterson@users.noreply.github.com> Date: Thu, 14 May 2026 16:40:26 -0500 Subject: [PATCH 008/224] horked up another comment --- src/components/Explore/hooks/useInfiniteExploreScroll.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Explore/hooks/useInfiniteExploreScroll.ts b/src/components/Explore/hooks/useInfiniteExploreScroll.ts index c2863f090..f2caff286 100644 --- a/src/components/Explore/hooks/useInfiniteExploreScroll.ts +++ b/src/components/Explore/hooks/useInfiniteExploreScroll.ts @@ -99,6 +99,7 @@ const useInfiniteExploreScroll = ( let observations: ApiObservation[] = flatten( pages?.map( r => r.results ) ) || []; let totalResults: number | null | undefined = pages?.[0]?.total_results; + // filter out obs from excluded user and adjust count if ( excludedUser && observations ) { observations = observations.filter( observation => observation?.user?.id !== excludedUser.id, From dabe1ae6e43030e3c0744f220c018b3e3dce2490 Mon Sep 17 00:00:00 2001 From: sepeterson <10458078+sepeterson@users.noreply.github.com> Date: Thu, 14 May 2026 16:42:58 -0500 Subject: [PATCH 009/224] readd filters var to shrink diff --- src/components/Explore/hooks/useInfiniteExploreScroll.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Explore/hooks/useInfiniteExploreScroll.ts b/src/components/Explore/hooks/useInfiniteExploreScroll.ts index f2caff286..e05965a6a 100644 --- a/src/components/Explore/hooks/useInfiniteExploreScroll.ts +++ b/src/components/Explore/hooks/useInfiniteExploreScroll.ts @@ -98,12 +98,12 @@ const useInfiniteExploreScroll = ( let observations: ApiObservation[] = flatten( pages?.map( r => r.results ) ) || []; let totalResults: number | null | undefined = pages?.[0]?.total_results; + let filtered = []; // filter out obs from excluded user and adjust count if ( excludedUser && observations ) { - observations = observations.filter( - observation => observation?.user?.id !== excludedUser.id, - ); + filtered = observations.filter( observation => observation?.user?.id !== excludedUser.id ); + observations = filtered; } if ( totalResults !== 0 && !totalResults ) { From 47a8238ccbd449d555c7586b72ad2090c8fbd070 Mon Sep 17 00:00:00 2001 From: Dan Rademacher Date: Thu, 14 May 2026 17:50:04 -0700 Subject: [PATCH 010/224] Fix typo in comment --- .github/ISSUE_TEMPLATE/technical_bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/technical_bug_report.md b/.github/ISSUE_TEMPLATE/technical_bug_report.md index a16b7f0d4..60f209c29 100644 --- a/.github/ISSUE_TEMPLATE/technical_bug_report.md +++ b/.github/ISSUE_TEMPLATE/technical_bug_report.md @@ -7,7 +7,7 @@ assignees: '' --- -[//]: # (For feature requests and bug reports not specifically concerning code, please use https://forum.inaturalist.org/c/bug-reports. To request a feature, use https://forum.inaturalist.org/c/feature-requests. To ask a technical question, use https://github.com/inaturalist/inaturalist/discussions. To report a secutrity vulnerability, email help+security@inaturalist.org) +[//]: # (For feature requests and bug reports not specifically concerning code, please use https://forum.inaturalist.org/c/bug-reports. To request a feature, use https://forum.inaturalist.org/c/feature-requests. To ask a technical question, use https://github.com/inaturalist/inaturalist/discussions. To report a security vulnerability, email help+security@inaturalist.org) **Describe the bug** A clear and concise description of what the bug is, preferably with citations to the relevant code in this github repo. From f5233a7f3e8713f5e87a3f99b05d40832ba5d6df Mon Sep 17 00:00:00 2001 From: sepeterson <10458078+sepeterson@users.noreply.github.com> Date: Fri, 15 May 2026 16:43:22 -0500 Subject: [PATCH 011/224] debug sheet behind isDebug --- src/components/Explore/ExploreV2/ExploreV2DebugSheet.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Explore/ExploreV2/ExploreV2DebugSheet.tsx b/src/components/Explore/ExploreV2/ExploreV2DebugSheet.tsx index 633577442..b3d5f315a 100644 --- a/src/components/Explore/ExploreV2/ExploreV2DebugSheet.tsx +++ b/src/components/Explore/ExploreV2/ExploreV2DebugSheet.tsx @@ -17,6 +17,7 @@ import { useExploreV2, } from "providers/ExploreV2Context"; import React, { useState } from "react"; +import useDebugMode from "sharedHooks/useDebugMode"; import { getShadow } from "styles/global"; const TAXA = [ @@ -86,9 +87,12 @@ const Section = ( { title, children }: SectionProps ) => ( ); const ExploreV2DebugSheet = ( ) => { + const { isDebug } = useDebugMode( ); const { state, dispatch } = useExploreV2(); const [visible, setVisible] = useState( false ); + if ( !isDebug ) return null; + const queryParams = buildExploreV2QueryParams( state ); const subjectType = state.subject?.type; From dbf46f121bfa885893eb39e1da0120acc131f3e3 Mon Sep 17 00:00:00 2001 From: Johannes Klein Date: Sat, 16 May 2026 00:09:20 +0200 Subject: [PATCH 012/224] Reuse FollowersList as layout for news/journal screen (#3625) * Copy FollowersList into Journal * Add new screen * Send user login and number of posts as nav params * Add button to nav to journal posts on user profile * Remove everything not needed from FollowersList setup * Add subtitle string * Update strings.ftl * Add navigation type * Rename const * Add button to Journal to ProjectDetails * Add comment * Set project name as title * Refactor News item into menua array and nav to Journal * Update route params type * Fallback to News as title * Remove News from navigator * Move News code into Journal, simply move children * Replace "News" with "Blog" * Update strings.ftl --- .../{News/News.tsx => Journal/Journal.tsx} | 45 ++++++++++++++++--- src/components/{News => Journal}/PostList.tsx | 0 .../{News => Journal}/PostListItem.tsx | 0 src/components/Menu/Menu.tsx | 24 +++++----- .../ProjectDetails/ProjectDetails.js | 13 +++++- .../SharedComponents/OverviewCounts.tsx | 31 ++++++++++--- src/components/UserProfile/UserProfile.tsx | 13 ++++++ src/i18n/l10n/en.ftl | 11 ++++- src/i18n/l10n/en.ftl.json | 5 ++- src/i18n/strings.ftl | 11 ++++- .../StackNavigators/TabStackNavigator.tsx | 21 +++------ src/navigation/types.ts | 15 +++++++ src/sharedHooks/useRozenite.ts | 2 +- 13 files changed, 145 insertions(+), 46 deletions(-) rename src/components/{News/News.tsx => Journal/Journal.tsx} (89%) rename src/components/{News => Journal}/PostList.tsx (100%) rename src/components/{News => Journal}/PostListItem.tsx (100%) diff --git a/src/components/News/News.tsx b/src/components/Journal/Journal.tsx similarity index 89% rename from src/components/News/News.tsx rename to src/components/Journal/Journal.tsx index f3ab9f55e..60f3b4cc5 100644 --- a/src/components/News/News.tsx +++ b/src/components/Journal/Journal.tsx @@ -1,13 +1,43 @@ +import { useNavigation, useRoute } from "@react-navigation/native"; +import { + ViewWrapper, +} from "components/SharedComponents"; +import { View } from "components/styledComponents"; +import type { TabStackScreenProps } from "navigation/types"; +import React, { + useEffect, + useMemo, +} from "react"; +import { + useTranslation, +} from "sharedHooks"; + // import fetchUserPosts from "api/posts"; // import ActivityIndicator from "components/SharedComponents/ActivityIndicator"; -import { View } from "components/styledComponents"; -import React from "react"; - // import useAuthenticatedQuery from "sharedHooks/useAuthenticatedQuery"; // import useCurrentUser from "sharedHooks/useCurrentUser"; import PostList from "./PostList"; -const News = ( ) => { +const Journal = ( ) => { + const navigation = useNavigation["navigation"]>( ); + const { params } = useRoute["route"]>( ); + const { journalPostsCount, projectTitle, userLogin } = params || {}; + const { t } = useTranslation( ); + + const headerOptions = useMemo( + () => ( { + headerTitle: userLogin || projectTitle || t( "Blog" ), + headerSubtitle: t( "X-JOURNAL_POSTS", { + count: journalPostsCount || 0, + } ), + } ), + [journalPostsCount, t, userLogin, projectTitle], + ); + + useEffect( ( ) => { + navigation.setOptions( headerOptions ); + }, [headerOptions, navigation] ); + // https://linear.app/inaturalist/issue/MOB-1424/fetch-live-posts // const currentUser = useCurrentUser( ); // const { data: posts, isLoading: isLoadingPosts } = useAuthenticatedQuery( @@ -53,10 +83,11 @@ const News = ( ) => { // } return ( - + + - + ); }; -export default News; +export default Journal; diff --git a/src/components/News/PostList.tsx b/src/components/Journal/PostList.tsx similarity index 100% rename from src/components/News/PostList.tsx rename to src/components/Journal/PostList.tsx diff --git a/src/components/News/PostListItem.tsx b/src/components/Journal/PostListItem.tsx similarity index 100% rename from src/components/News/PostListItem.tsx rename to src/components/Journal/PostListItem.tsx diff --git a/src/components/Menu/Menu.tsx b/src/components/Menu/Menu.tsx index 3ef8c3783..49df64419 100644 --- a/src/components/Menu/Menu.tsx +++ b/src/components/Menu/Menu.tsx @@ -154,6 +154,16 @@ const Menu = ( ) => { }, }, + ...( newsEnabled + ? { + news: { + label: t( "BLOG" ), + navigation: "Journal", + icon: "leaf", + }, + } + : {} ), + ...( currentUser ? { logout: { @@ -340,20 +350,6 @@ const Menu = ( ) => { }} /> ) )} - {newsEnabled && ( - navigation.navigate( "TabNavigator", { - screen: "MenuTab", - params: { - screen: "News", - }, - } )} - /> - )} diff --git a/src/components/ProjectDetails/ProjectDetails.js b/src/components/ProjectDetails/ProjectDetails.js index f5ee89c61..03e5be867 100644 --- a/src/components/ProjectDetails/ProjectDetails.js +++ b/src/components/ProjectDetails/ProjectDetails.js @@ -22,7 +22,8 @@ import type { Node } from "react"; import React, { useCallback, useState } from "react"; import Config from "react-native-config"; import { openExternalWebBrowser } from "sharedHelpers/util"; -import { useStoredLayout, useTranslation } from "sharedHooks"; +import { useFeatureFlag, useStoredLayout, useTranslation } from "sharedHooks"; +import { FeatureFlag } from "stores/createFeatureFlagSlice"; import useStore from "stores/useStore"; import colors from "styles/tailwindColors"; @@ -47,6 +48,7 @@ type Props = { const ProjectDetails = ( { project, joinProject, leaveProject, loadingProjectMembership, }: Props ): Node => { + const newsEnabled = useFeatureFlag( FeatureFlag.NewsEnabled ); const setExploreView = useStore( state => state.setExploreView ); const { t, i18n } = useTranslation( ); @@ -93,6 +95,13 @@ const ProjectDetails = ( { [navigation, project], ); + const onJournalPostsPressed = ( ) => { + navigation.navigate( "Journal", { + projectTitle: project?.title, + journalPostsCount: project?.journal_posts_count, + } ); + }; + if ( !project ) { return null; } @@ -170,6 +179,8 @@ const ProjectDetails = ( { onObservationPressed={() => onObservationPressed( false )} onSpeciesPressed={onSpeciesPressed} onMembersPressed={onMembersPressed} + onJournalPostsPressed={onJournalPostsPressed} + newsEnabled={newsEnabled} /> {t( "ABOUT" )} {project?.description && ( diff --git a/src/components/SharedComponents/OverviewCounts.tsx b/src/components/SharedComponents/OverviewCounts.tsx index 656fb7ebd..84eaba359 100644 --- a/src/components/SharedComponents/OverviewCounts.tsx +++ b/src/components/SharedComponents/OverviewCounts.tsx @@ -19,6 +19,8 @@ interface Props { onObservationPressed: () => void; onSpeciesPressed: () => void; onMembersPressed?: () => void; + onJournalPostsPressed?: () => void; + newsEnabled?: boolean; } interface CountProps { @@ -83,7 +85,12 @@ const CountPressable = ( { ); const OverviewCounts = ( { - counts, onObservationPressed, onSpeciesPressed, onMembersPressed, + counts, + onObservationPressed, + onSpeciesPressed, + onMembersPressed, + onJournalPostsPressed, + newsEnabled, }: Props ) => ( )} - + {newsEnabled + ? ( + + ) + : ( + + )} ); diff --git a/src/components/UserProfile/UserProfile.tsx b/src/components/UserProfile/UserProfile.tsx index 1c2f4e4dc..f21276ada 100644 --- a/src/components/UserProfile/UserProfile.tsx +++ b/src/components/UserProfile/UserProfile.tsx @@ -24,14 +24,18 @@ import { formatLongDate } from "sharedHelpers/dateAndTime"; import { useAuthenticatedQuery, useCurrentUser, + useFeatureFlag, useTranslation, } from "sharedHooks"; +import { FeatureFlag } from "stores/createFeatureFlagSlice"; import useStore from "stores/useStore"; import FollowButtonContainer from "./FollowButtonContainer"; import UnfollowSheet from "./UnfollowSheet"; const UserProfile = ( ) => { + const newsEnabled = useFeatureFlag( FeatureFlag.NewsEnabled ); + const setExploreView = useStore( state => state.setExploreView ); const navigation = useNavigation ["navigation"]>( ); const currentUser = useCurrentUser( ); @@ -123,6 +127,13 @@ const UserProfile = ( ) => { } ); }; + const onJournalPostsPressed = ( ) => { + navigation.navigate( "Journal", { + userLogin: user?.login, + journalPostsCount: user?.journal_posts_count, + } ); + }; + return ( { )} {currentUser?.login !== user?.login && ( diff --git a/src/i18n/l10n/en.ftl b/src/i18n/l10n/en.ftl index ddecca2b9..433d32cb8 100644 --- a/src/i18n/l10n/en.ftl +++ b/src/i18n/l10n/en.ftl @@ -150,6 +150,8 @@ attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August # Returns user to login screen BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG # Accessibility label for bulk import / photo import button # These are used by screen readers to label actionable elements iOS: https://developer.apple.com/documentation/uikit/uiaccessibilityelement/1619577-accessibilitylabel # iOS Guidelines "A string that succinctly identifies the accessibility element." Starts with capital letter, no ending punctuation. @@ -786,7 +788,6 @@ Needs-ID--quality-grade = Needs ID New-Observation = New Observation # Sort order, refers to newest or oldest date Newest-to-oldest = Newest to oldest -NEWS = NEWS Next-observation = Next observation # Accessibility label for a button that goes to the next slide on onboarding cards Next-slide = Next slide @@ -1117,6 +1118,8 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +# Accessibility label for navigating to journal posts screen +See-journal-posts = See journal posts # Accessibility label for Observations button on UserProfile screen See-observations-by-this-user-in-Explore = See observations by this user in Explore # Accessibility label for Explore button on TaxonDetails screen @@ -1401,6 +1404,12 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +# Subtitle for a screen showing a list of journal posts +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } # Subheader for number of project members screen X-MEMBERS = { $count -> diff --git a/src/i18n/l10n/en.ftl.json b/src/i18n/l10n/en.ftl.json index b5edabfa1..6e8ef3a4d 100644 --- a/src/i18n/l10n/en.ftl.json +++ b/src/i18n/l10n/en.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -459,7 +461,6 @@ "Needs-ID--quality-grade": "Needs ID", "New-Observation": "New Observation", "Newest-to-oldest": "Newest to oldest", - "NEWS": "NEWS", "Next-observation": "Next observation", "Next-slide": "Next slide", "No-Camera-Available": "No Camera Available", @@ -695,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -881,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/strings.ftl b/src/i18n/strings.ftl index ddecca2b9..433d32cb8 100644 --- a/src/i18n/strings.ftl +++ b/src/i18n/strings.ftl @@ -150,6 +150,8 @@ attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August # Returns user to login screen BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG # Accessibility label for bulk import / photo import button # These are used by screen readers to label actionable elements iOS: https://developer.apple.com/documentation/uikit/uiaccessibilityelement/1619577-accessibilitylabel # iOS Guidelines "A string that succinctly identifies the accessibility element." Starts with capital letter, no ending punctuation. @@ -786,7 +788,6 @@ Needs-ID--quality-grade = Needs ID New-Observation = New Observation # Sort order, refers to newest or oldest date Newest-to-oldest = Newest to oldest -NEWS = NEWS Next-observation = Next observation # Accessibility label for a button that goes to the next slide on onboarding cards Next-slide = Next slide @@ -1117,6 +1118,8 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +# Accessibility label for navigating to journal posts screen +See-journal-posts = See journal posts # Accessibility label for Observations button on UserProfile screen See-observations-by-this-user-in-Explore = See observations by this user in Explore # Accessibility label for Explore button on TaxonDetails screen @@ -1401,6 +1404,12 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +# Subtitle for a screen showing a list of journal posts +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } # Subheader for number of project members screen X-MEMBERS = { $count -> diff --git a/src/navigation/StackNavigators/TabStackNavigator.tsx b/src/navigation/StackNavigators/TabStackNavigator.tsx index 9fb7bfd2d..a69c2d88c 100644 --- a/src/navigation/StackNavigators/TabStackNavigator.tsx +++ b/src/navigation/StackNavigators/TabStackNavigator.tsx @@ -12,9 +12,9 @@ import ExploreSearchContainer from "components/Explore/ExploreSearchContainer"; import ExploreV2Container from "components/Explore/ExploreV2/ExploreV2Container"; import RootExploreContainer from "components/Explore/RootExploreContainer"; import Help from "components/Help/Help"; +import Journal from "components/Journal/Journal"; import Menu from "components/Menu/Menu"; import MyObservationsContainer from "components/MyObservations/MyObservationsContainer"; -import News from "components/News/News"; import Notifications from "components/Notifications/Notifications"; import DQAContainer from "components/ObsDetails/DQAContainer"; import ObsDetailsContainer from "components/ObsDetails/ObsDetailsContainer"; @@ -68,11 +68,6 @@ const helpTitle = () => ( {t( "HELP" )} ); -const newsTitle = () => ( - - {t( "NEWS" )} - -); const dqaTitle = () => ( {t( "DATA-QUALITY-ASSESSMENT" )} @@ -121,10 +116,10 @@ const FadeInSettings = ( ) => fadeInComponent( ); const FadeInHelp = ( ) => fadeInComponent( ); const FadeInAbout = ( ) => fadeInComponent( ); const FadeInDonate = ( ) => fadeInComponent( ); -const FadeInNews = ( ) => fadeInComponent( ); const FadeInProjectList = ( ) => fadeInComponent( ); const FadeInFollowersList = ( ) => fadeInComponent( ); const FadeInFollowingList = ( ) => fadeInComponent( ); +const FadeInJournal = ( ) => fadeInComponent( ); const BASE_SCREEN_OPTIONS = { headerBackButtonDisplayMode: "minimal", @@ -309,6 +304,11 @@ const TabStackNavigator = ( { route }: BottomTabProps ) => { component={FadeInFollowingList} options={LIST_OPTIONS} /> + {/* Developer Stack Group */} { headerTitle: helpTitle, }} /> - ); diff --git a/src/navigation/types.ts b/src/navigation/types.ts index f6aed07e6..1943ed285 100644 --- a/src/navigation/types.ts +++ b/src/navigation/types.ts @@ -248,6 +248,21 @@ export type BaseTabStackParamList = { // TODO: don't send the entire user object over here, only an ID or ID+login user: ApiUser; }; + // From UserProfile + // { + // userLogin: user?.login, + // journalPostsCount: user?.journal_posts_count, + // } + // From ProjectDetails + // { + // projectTitle: project?.title, + // journalPostsCount: project?.journal_posts_count, + // } + Journal: { + userLogin?: string; + projectTitle?: string; + journalPostsCount?: number; + } | undefined; Debug: undefined; UILibrary: undefined; UiLibraryItem: undefined; diff --git a/src/sharedHooks/useRozenite.ts b/src/sharedHooks/useRozenite.ts index d40560cc0..2ce25b09f 100644 --- a/src/sharedHooks/useRozenite.ts +++ b/src/sharedHooks/useRozenite.ts @@ -59,7 +59,7 @@ const useRozenite = ( { queryClient, mmkvStorages }: RozeniteOptions ) => { { id: "news", type: "toggle", - title: "News", + title: "Blog", value: newsEnabled, onUpdate: () => { setNewsEnabled( !newsEnabled ); From d5d1c9c3c8e498f3b6375288968cfcfcaf1c0f69 Mon Sep 17 00:00:00 2001 From: iNaturalist Crowdin Sync Date: Mon, 18 May 2026 11:11:27 +0200 Subject: [PATCH 013/224] New Crowdin translations by GitHub Action (#3627) Co-authored-by: Crowdin Bot --- src/i18n/l10n/af.ftl | 8 ++++++++ src/i18n/l10n/af.ftl.json | 4 ++++ src/i18n/l10n/ar.ftl | 8 ++++++++ src/i18n/l10n/ar.ftl.json | 4 ++++ src/i18n/l10n/be.ftl | 8 ++++++++ src/i18n/l10n/be.ftl.json | 4 ++++ src/i18n/l10n/bg.ftl | 8 ++++++++ src/i18n/l10n/bg.ftl.json | 4 ++++ src/i18n/l10n/br.ftl | 8 ++++++++ src/i18n/l10n/br.ftl.json | 4 ++++ src/i18n/l10n/bs.ftl | 8 ++++++++ src/i18n/l10n/bs.ftl.json | 4 ++++ src/i18n/l10n/ca.ftl | 8 ++++++++ src/i18n/l10n/ca.ftl.json | 4 ++++ src/i18n/l10n/cs.ftl | 8 ++++++++ src/i18n/l10n/cs.ftl.json | 4 ++++ src/i18n/l10n/da.ftl | 8 ++++++++ src/i18n/l10n/da.ftl.json | 4 ++++ src/i18n/l10n/de.ftl | 8 ++++++++ src/i18n/l10n/de.ftl.json | 4 ++++ src/i18n/l10n/el.ftl | 8 ++++++++ src/i18n/l10n/el.ftl.json | 4 ++++ src/i18n/l10n/en-GB.ftl | 8 ++++++++ src/i18n/l10n/en-GB.ftl.json | 4 ++++ src/i18n/l10n/en-NZ.ftl | 8 ++++++++ src/i18n/l10n/en-NZ.ftl.json | 4 ++++ src/i18n/l10n/eo.ftl | 8 ++++++++ src/i18n/l10n/eo.ftl.json | 4 ++++ src/i18n/l10n/es-AR.ftl | 8 ++++++++ src/i18n/l10n/es-AR.ftl.json | 4 ++++ src/i18n/l10n/es-CO.ftl | 8 ++++++++ src/i18n/l10n/es-CO.ftl.json | 4 ++++ src/i18n/l10n/es-CR.ftl | 8 ++++++++ src/i18n/l10n/es-CR.ftl.json | 4 ++++ src/i18n/l10n/es-MX.ftl | 8 ++++++++ src/i18n/l10n/es-MX.ftl.json | 4 ++++ src/i18n/l10n/es.ftl | 8 ++++++++ src/i18n/l10n/es.ftl.json | 4 ++++ src/i18n/l10n/et.ftl | 8 ++++++++ src/i18n/l10n/et.ftl.json | 4 ++++ src/i18n/l10n/eu.ftl | 8 ++++++++ src/i18n/l10n/eu.ftl.json | 4 ++++ src/i18n/l10n/fa.ftl | 8 ++++++++ src/i18n/l10n/fa.ftl.json | 4 ++++ src/i18n/l10n/fi.ftl | 8 ++++++++ src/i18n/l10n/fi.ftl.json | 4 ++++ src/i18n/l10n/fil.ftl | 8 ++++++++ src/i18n/l10n/fil.ftl.json | 4 ++++ src/i18n/l10n/fo.ftl | 8 ++++++++ src/i18n/l10n/fo.ftl.json | 4 ++++ src/i18n/l10n/fr-CA.ftl | 8 ++++++++ src/i18n/l10n/fr-CA.ftl.json | 4 ++++ src/i18n/l10n/fr.ftl | 8 ++++++++ src/i18n/l10n/fr.ftl.json | 4 ++++ src/i18n/l10n/gd.ftl | 8 ++++++++ src/i18n/l10n/gd.ftl.json | 4 ++++ src/i18n/l10n/gl.ftl | 8 ++++++++ src/i18n/l10n/gl.ftl.json | 4 ++++ src/i18n/l10n/gu.ftl | 8 ++++++++ src/i18n/l10n/gu.ftl.json | 4 ++++ src/i18n/l10n/he.ftl | 8 ++++++++ src/i18n/l10n/he.ftl.json | 4 ++++ src/i18n/l10n/hi.ftl | 8 ++++++++ src/i18n/l10n/hi.ftl.json | 4 ++++ src/i18n/l10n/hr.ftl | 8 ++++++++ src/i18n/l10n/hr.ftl.json | 4 ++++ src/i18n/l10n/hu.ftl | 8 ++++++++ src/i18n/l10n/hu.ftl.json | 4 ++++ src/i18n/l10n/id.ftl | 8 ++++++++ src/i18n/l10n/id.ftl.json | 4 ++++ src/i18n/l10n/it.ftl | 16 ++++++++++++---- src/i18n/l10n/it.ftl.json | 12 ++++++++---- src/i18n/l10n/ja.ftl | 8 ++++++++ src/i18n/l10n/ja.ftl.json | 4 ++++ src/i18n/l10n/ka.ftl | 8 ++++++++ src/i18n/l10n/ka.ftl.json | 4 ++++ src/i18n/l10n/kk.ftl | 8 ++++++++ src/i18n/l10n/kk.ftl.json | 4 ++++ src/i18n/l10n/kl.ftl | 8 ++++++++ src/i18n/l10n/kl.ftl.json | 4 ++++ src/i18n/l10n/kn.ftl | 8 ++++++++ src/i18n/l10n/kn.ftl.json | 4 ++++ src/i18n/l10n/ko.ftl | 8 ++++++++ src/i18n/l10n/ko.ftl.json | 4 ++++ src/i18n/l10n/lb.ftl | 8 ++++++++ src/i18n/l10n/lb.ftl.json | 4 ++++ src/i18n/l10n/lt.ftl | 8 ++++++++ src/i18n/l10n/lt.ftl.json | 4 ++++ src/i18n/l10n/lv.ftl | 8 ++++++++ src/i18n/l10n/lv.ftl.json | 4 ++++ src/i18n/l10n/mi.ftl | 8 ++++++++ src/i18n/l10n/mi.ftl.json | 4 ++++ src/i18n/l10n/mk.ftl | 8 ++++++++ src/i18n/l10n/mk.ftl.json | 4 ++++ src/i18n/l10n/ml.ftl | 8 ++++++++ src/i18n/l10n/ml.ftl.json | 4 ++++ src/i18n/l10n/mr.ftl | 8 ++++++++ src/i18n/l10n/mr.ftl.json | 4 ++++ src/i18n/l10n/ms.ftl | 8 ++++++++ src/i18n/l10n/ms.ftl.json | 4 ++++ src/i18n/l10n/nb.ftl | 8 ++++++++ src/i18n/l10n/nb.ftl.json | 4 ++++ src/i18n/l10n/nl.ftl | 10 +++++++++- src/i18n/l10n/nl.ftl.json | 6 +++++- src/i18n/l10n/pa.ftl | 8 ++++++++ src/i18n/l10n/pa.ftl.json | 4 ++++ src/i18n/l10n/pl.ftl | 8 ++++++++ src/i18n/l10n/pl.ftl.json | 4 ++++ src/i18n/l10n/pt-BR.ftl | 8 ++++++++ src/i18n/l10n/pt-BR.ftl.json | 4 ++++ src/i18n/l10n/pt.ftl | 8 ++++++++ src/i18n/l10n/pt.ftl.json | 4 ++++ src/i18n/l10n/ro.ftl | 8 ++++++++ src/i18n/l10n/ro.ftl.json | 4 ++++ src/i18n/l10n/ru.ftl | 8 ++++++++ src/i18n/l10n/ru.ftl.json | 4 ++++ src/i18n/l10n/sat.ftl | 8 ++++++++ src/i18n/l10n/sat.ftl.json | 4 ++++ src/i18n/l10n/si.ftl | 8 ++++++++ src/i18n/l10n/si.ftl.json | 4 ++++ src/i18n/l10n/sk.ftl | 8 ++++++++ src/i18n/l10n/sk.ftl.json | 4 ++++ src/i18n/l10n/sl.ftl | 8 ++++++++ src/i18n/l10n/sl.ftl.json | 4 ++++ src/i18n/l10n/sq.ftl | 8 ++++++++ src/i18n/l10n/sq.ftl.json | 4 ++++ src/i18n/l10n/sr.ftl | 8 ++++++++ src/i18n/l10n/sr.ftl.json | 4 ++++ src/i18n/l10n/sv.ftl | 8 ++++++++ src/i18n/l10n/sv.ftl.json | 4 ++++ src/i18n/l10n/sw.ftl | 8 ++++++++ src/i18n/l10n/sw.ftl.json | 4 ++++ src/i18n/l10n/ta.ftl | 8 ++++++++ src/i18n/l10n/ta.ftl.json | 4 ++++ src/i18n/l10n/te.ftl | 8 ++++++++ src/i18n/l10n/te.ftl.json | 4 ++++ src/i18n/l10n/th.ftl | 8 ++++++++ src/i18n/l10n/th.ftl.json | 4 ++++ src/i18n/l10n/tl.ftl | 8 ++++++++ src/i18n/l10n/tl.ftl.json | 4 ++++ src/i18n/l10n/tr.ftl | 8 ++++++++ src/i18n/l10n/tr.ftl.json | 4 ++++ src/i18n/l10n/uk.ftl | 8 ++++++++ src/i18n/l10n/uk.ftl.json | 4 ++++ src/i18n/l10n/vi.ftl | 8 ++++++++ src/i18n/l10n/vi.ftl.json | 4 ++++ src/i18n/l10n/zh-CN.ftl | 8 ++++++++ src/i18n/l10n/zh-CN.ftl.json | 4 ++++ src/i18n/l10n/zh-HK.ftl | 8 ++++++++ src/i18n/l10n/zh-HK.ftl.json | 4 ++++ src/i18n/l10n/zh-TW.ftl | 8 ++++++++ src/i18n/l10n/zh-TW.ftl.json | 4 ++++ 152 files changed, 922 insertions(+), 10 deletions(-) diff --git a/src/i18n/l10n/af.ftl b/src/i18n/l10n/af.ftl index f40740c1f..38f6ebf9b 100644 --- a/src/i18n/l10n/af.ftl +++ b/src/i18n/l10n/af.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/af.ftl.json b/src/i18n/l10n/af.ftl.json index 00ed5a24c..62fcbbc7d 100644 --- a/src/i18n/l10n/af.ftl.json +++ b/src/i18n/l10n/af.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/ar.ftl b/src/i18n/l10n/ar.ftl index 73a4d7150..212a136d5 100644 --- a/src/i18n/l10n/ar.ftl +++ b/src/i18n/l10n/ar.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = أغسطس BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/ar.ftl.json b/src/i18n/l10n/ar.ftl.json index b74de40c5..9dfbcdc3f 100644 --- a/src/i18n/l10n/ar.ftl.json +++ b/src/i18n/l10n/ar.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "أغسطس", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/be.ftl b/src/i18n/l10n/be.ftl index 0fa5a4a53..4199a4575 100644 --- a/src/i18n/l10n/be.ftl +++ b/src/i18n/l10n/be.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Жнівень BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/be.ftl.json b/src/i18n/l10n/be.ftl.json index 71ebaab3a..800d36625 100644 --- a/src/i18n/l10n/be.ftl.json +++ b/src/i18n/l10n/be.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Жнівень", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/bg.ftl b/src/i18n/l10n/bg.ftl index 0c89acd8c..c1e97ca4b 100644 --- a/src/i18n/l10n/bg.ftl +++ b/src/i18n/l10n/bg.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = август BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/bg.ftl.json b/src/i18n/l10n/bg.ftl.json index 7ff463e48..9540c0e7e 100644 --- a/src/i18n/l10n/bg.ftl.json +++ b/src/i18n/l10n/bg.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "август", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/br.ftl b/src/i18n/l10n/br.ftl index 5720a7a3f..7fa67eb3d 100644 --- a/src/i18n/l10n/br.ftl +++ b/src/i18n/l10n/br.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Eost BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/br.ftl.json b/src/i18n/l10n/br.ftl.json index 01d859f19..c547dfcae 100644 --- a/src/i18n/l10n/br.ftl.json +++ b/src/i18n/l10n/br.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Eost", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/bs.ftl b/src/i18n/l10n/bs.ftl index f8705ab18..59964c8e4 100644 --- a/src/i18n/l10n/bs.ftl +++ b/src/i18n/l10n/bs.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/bs.ftl.json b/src/i18n/l10n/bs.ftl.json index 617621658..1eb2580c0 100644 --- a/src/i18n/l10n/bs.ftl.json +++ b/src/i18n/l10n/bs.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/ca.ftl b/src/i18n/l10n/ca.ftl index c0aa6a397..13516b67b 100644 --- a/src/i18n/l10n/ca.ftl +++ b/src/i18n/l10n/ca.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = alguns drets reservats (CC BY-ND) attribution-cc-by-sa = alguns drets reservats (CC BY-SA) August = agost BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/ca.ftl.json b/src/i18n/l10n/ca.ftl.json index df220e669..49609fde8 100644 --- a/src/i18n/l10n/ca.ftl.json +++ b/src/i18n/l10n/ca.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "alguns drets reservats (CC BY-SA)", "August": "agost", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/cs.ftl b/src/i18n/l10n/cs.ftl index e2907c337..f265e9fcf 100644 --- a/src/i18n/l10n/cs.ftl +++ b/src/i18n/l10n/cs.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = některá vyhrazená práva (CC BY-ND) attribution-cc-by-sa = některá vyhrazená práva (CC BY-SA) August = Srpen BACK-TO-LOGIN = ZPĚT NA PŘIHLÁŠENÍ +Blog = Blog +BLOG = BLOG Bulk-importer = Dávkové nahrávání By-exiting-changes-not-saved = Po ukončení se změny vašeho pozorování neuloží. By-exiting-observation-not-saved = Ukončením nebude vaše pozorování uloženo. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Hledat návrhy s polohou Search-suggestions-without-location = Hledat návrhy bez polohy SEARCH-TAXA = HLEDAT TAXON SEARCH-USERS = HLEDAT UŽIVATELE +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Zobrazit pozorování tohoto uživatele v průzkumu See-observations-of-this-taxon-in-explore = Zobrazit pozorování tohoto taxonu při průzkumu See-project-members = Zobrazit členy projektu @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/cs.ftl.json b/src/i18n/l10n/cs.ftl.json index 7c3514351..52f402d4a 100644 --- a/src/i18n/l10n/cs.ftl.json +++ b/src/i18n/l10n/cs.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "některá vyhrazená práva (CC BY-SA)", "August": "Srpen", "BACK-TO-LOGIN": "ZPĚT NA PŘIHLÁŠENÍ", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Dávkové nahrávání", "By-exiting-changes-not-saved": "Po ukončení se změny vašeho pozorování neuloží.", "By-exiting-observation-not-saved": "Ukončením nebude vaše pozorování uloženo.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Hledat návrhy bez polohy", "SEARCH-TAXA": "HLEDAT TAXON", "SEARCH-USERS": "HLEDAT UŽIVATELE", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Zobrazit pozorování tohoto uživatele v průzkumu", "See-observations-of-this-taxon-in-explore": "Zobrazit pozorování tohoto taxonu při průzkumu", "See-project-members": "Zobrazit členy projektu", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/da.ftl b/src/i18n/l10n/da.ftl index f712d2a32..a51322088 100644 --- a/src/i18n/l10n/da.ftl +++ b/src/i18n/l10n/da.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = visse rettigheder forbeholdes (CC BY-ND) attribution-cc-by-sa = visse rettigheder forbeholdes (CC BY-SA) August = August BACK-TO-LOGIN = TILBAGE TIL LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Masseimport By-exiting-changes-not-saved = Ved at afslutte, vil ændringer til observationen ikke blive gemt. By-exiting-observation-not-saved = Ved at afslutte, vil observationen ikke blive gemt. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Søg i forslag med placering Search-suggestions-without-location = Søg i forslag uden placering SEARCH-TAXA = SØG I TAKSA SEARCH-USERS = SØG BRUGERE +See-journal-posts = Vis journalindlæg See-observations-by-this-user-in-Explore = Se observationer fra denne bruger i Udforsk See-observations-of-this-taxon-in-explore = Se observationer af denne takson i Udforsk See-project-members = Se projektmedlemmer @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } identifikator *[other] { $count } identifikatorer } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNALINDLÆG + *[other] { $count } JOURNALINDLÆG + } X-MEMBERS = { $count -> [one] diff --git a/src/i18n/l10n/da.ftl.json b/src/i18n/l10n/da.ftl.json index fca276eab..fa0097e3d 100644 --- a/src/i18n/l10n/da.ftl.json +++ b/src/i18n/l10n/da.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "visse rettigheder forbeholdes (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "TILBAGE TIL LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Masseimport", "By-exiting-changes-not-saved": "Ved at afslutte, vil ændringer til observationen ikke blive gemt.", "By-exiting-observation-not-saved": "Ved at afslutte, vil observationen ikke blive gemt.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Søg i forslag uden placering", "SEARCH-TAXA": "SØG I TAKSA", "SEARCH-USERS": "SØG BRUGERE", + "See-journal-posts": "Vis journalindlæg", "See-observations-by-this-user-in-Explore": "Se observationer fra denne bruger i Udforsk", "See-observations-of-this-taxon-in-explore": "Se observationer af denne takson i Udforsk", "See-project-members": "Se projektmedlemmer", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } identifikation\n *[other] { $count } identifikationer\n}", "x-identifications": "{ $count ->\n [one] { $count } identifikation\n *[other] { $count } identifikationer\n}", "X-Identifiers": "{ $count ->\n [one] { $count } identifikator\n *[other] { $count } identifikatorer\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNALINDLÆG\n *[other] { $count } JOURNALINDLÆG\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEDLEM\nMEDLEM\n *[other] { $count } MEDLEMMER\n}", "X-Observations": "{ $count ->\n [one] 1 observation\n *[other] { $count } observationer\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONER\n}", diff --git a/src/i18n/l10n/de.ftl b/src/i18n/l10n/de.ftl index 0912c8631..783c7c409 100644 --- a/src/i18n/l10n/de.ftl +++ b/src/i18n/l10n/de.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = einige Rechte vorbehalten (CC BY-ND) attribution-cc-by-sa = einige Rechte vorbehalten (CC BY-SA) August = August BACK-TO-LOGIN = ZURÜCK ZUR ANMELDUNG +Blog = Blog +BLOG = BLOG Bulk-importer = Massenimport By-exiting-changes-not-saved = Beim Beenden werden die Änderungen an deiner Beobachtung nicht gespeichert. By-exiting-observation-not-saved = Beim Beenden wird deine Beobachtung nicht gespeichert. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Suchvorschläge mit Ortsangabe Search-suggestions-without-location = Suchvorschläge ohne Ortsangabe SEARCH-TAXA = TAXA SUCHEN SEARCH-USERS = BENUTZER SUCHEN +See-journal-posts = Journal-Eintrag See-observations-by-this-user-in-Explore = Sieht dir im 'Entdecken'-Modul die Beobachtungen dieses Users an See-observations-of-this-taxon-in-explore = Sieh dir Beobachtungen dieses Taxons im 'Entdecken'-Modul an See-project-members = Projektmitglieder ansehen @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } BestimmerIn *[other] { $count } Bestimmende } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MITGLIED diff --git a/src/i18n/l10n/de.ftl.json b/src/i18n/l10n/de.ftl.json index 9cb406d0a..c8037ea18 100644 --- a/src/i18n/l10n/de.ftl.json +++ b/src/i18n/l10n/de.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "einige Rechte vorbehalten (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "ZURÜCK ZUR ANMELDUNG", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Massenimport", "By-exiting-changes-not-saved": "Beim Beenden werden die Änderungen an deiner Beobachtung nicht gespeichert.", "By-exiting-observation-not-saved": "Beim Beenden wird deine Beobachtung nicht gespeichert.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Suchvorschläge ohne Ortsangabe", "SEARCH-TAXA": "TAXA SUCHEN", "SEARCH-USERS": "BENUTZER SUCHEN", + "See-journal-posts": "Journal-Eintrag", "See-observations-by-this-user-in-Explore": "Sieht dir im 'Entdecken'-Modul die Beobachtungen dieses Users an", "See-observations-of-this-taxon-in-explore": "Sieh dir Beobachtungen dieses Taxons im 'Entdecken'-Modul an", "See-project-members": "Projektmitglieder ansehen", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Bestimmung\n *[other] { $count } Bestimmungen\n}", "x-identifications": "{ $count ->\n [one] { $count } Bestimmung\n *[other] { $count } Bestimmungen\n}", "X-Identifiers": "{ $count ->\n [one] { $count } BestimmerIn\n *[other] { $count } Bestimmende\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MITGLIED\n *[other] { $count } MITGLIEDER\n}", "X-Observations": "{ $count ->\n [one] 1 Beobachtung\n *[other] { $count } Beobachtungen\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] BEOBACHTUNG\n *[other] BEOBACHTUNGEN\n}", diff --git a/src/i18n/l10n/el.ftl b/src/i18n/l10n/el.ftl index 85f67a67e..02c960abe 100644 --- a/src/i18n/l10n/el.ftl +++ b/src/i18n/l10n/el.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = ορισμένα δικαιώματα διατηρούν attribution-cc-by-sa = ορισμένα δικαιώματα διατηρούνται (CC BY-SA) August = Αύγουστος BACK-TO-LOGIN = ΕΠΙΣΤΡΟΦΗ ΣΤΗ ΣΥΝΔΕΣΗ +Blog = Blog +BLOG = BLOG Bulk-importer = Εισαγωγέας χύδην By-exiting-changes-not-saved = Με την έξοδο, οι αλλαγές στην παρατήρησή σας δεν θα αποθηκευτούν. By-exiting-observation-not-saved = Με την έξοδο, η παρατήρησή σας δεν θα σωθεί. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Προτάσεις αναζήτησης με Search-suggestions-without-location = Προτάσεις αναζήτησης χωρίς τοποθεσία SEARCH-TAXA = ΑΝΑΖΉΤΗΣΗ TAXA SEARCH-USERS = ΑΝΑΖΉΤΗΣΗ ΧΡΗΣΤΏΝ +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Δείτε παρατηρήσεις από αυτόν τον χρήστη στην Εξερεύνηση See-observations-of-this-taxon-in-explore = Δείτε παρατηρήσεις αυτής της ταξινομικής κατηγορίας στην εξερεύνηση See-project-members = Δείτε τα μέλη του έργου @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/el.ftl.json b/src/i18n/l10n/el.ftl.json index 534733052..2f97d15ac 100644 --- a/src/i18n/l10n/el.ftl.json +++ b/src/i18n/l10n/el.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "ορισμένα δικαιώματα διατηρούνται (CC BY-SA)", "August": "Αύγουστος", "BACK-TO-LOGIN": "ΕΠΙΣΤΡΟΦΗ ΣΤΗ ΣΥΝΔΕΣΗ", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Εισαγωγέας χύδην", "By-exiting-changes-not-saved": "Με την έξοδο, οι αλλαγές στην παρατήρησή σας δεν θα αποθηκευτούν.", "By-exiting-observation-not-saved": "Με την έξοδο, η παρατήρησή σας δεν θα σωθεί.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Προτάσεις αναζήτησης χωρίς τοποθεσία", "SEARCH-TAXA": "ΑΝΑΖΉΤΗΣΗ TAXA", "SEARCH-USERS": "ΑΝΑΖΉΤΗΣΗ ΧΡΗΣΤΏΝ", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Δείτε παρατηρήσεις από αυτόν τον χρήστη στην Εξερεύνηση", "See-observations-of-this-taxon-in-explore": "Δείτε παρατηρήσεις αυτής της ταξινομικής κατηγορίας στην εξερεύνηση", "See-project-members": "Δείτε τα μέλη του έργου", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/en-GB.ftl b/src/i18n/l10n/en-GB.ftl index 3720650c0..1a4416a74 100644 --- a/src/i18n/l10n/en-GB.ftl +++ b/src/i18n/l10n/en-GB.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/en-GB.ftl.json b/src/i18n/l10n/en-GB.ftl.json index cad9aaee7..b41262215 100644 --- a/src/i18n/l10n/en-GB.ftl.json +++ b/src/i18n/l10n/en-GB.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/en-NZ.ftl b/src/i18n/l10n/en-NZ.ftl index 3720650c0..1a4416a74 100644 --- a/src/i18n/l10n/en-NZ.ftl +++ b/src/i18n/l10n/en-NZ.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/en-NZ.ftl.json b/src/i18n/l10n/en-NZ.ftl.json index cad9aaee7..b41262215 100644 --- a/src/i18n/l10n/en-NZ.ftl.json +++ b/src/i18n/l10n/en-NZ.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/eo.ftl b/src/i18n/l10n/eo.ftl index 7b06cb656..d696c8229 100644 --- a/src/i18n/l10n/eo.ftl +++ b/src/i18n/l10n/eo.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = aŭgusto BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/eo.ftl.json b/src/i18n/l10n/eo.ftl.json index f56a9f80b..93eed19f6 100644 --- a/src/i18n/l10n/eo.ftl.json +++ b/src/i18n/l10n/eo.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "aŭgusto", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/es-AR.ftl b/src/i18n/l10n/es-AR.ftl index c9d0dabfb..90e25749b 100644 --- a/src/i18n/l10n/es-AR.ftl +++ b/src/i18n/l10n/es-AR.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = Algunos derechos reservados (CC BY-ND) attribution-cc-by-sa = Algunos derechos reservados (CC BY-SA) August = agosto BACK-TO-LOGIN = VOLVER AL INICIO DE SESIÓN +Blog = Blog +BLOG = BLOG Bulk-importer = Importador a Granel By-exiting-changes-not-saved = Al salir, los cambios en su observación no será guardada. By-exiting-observation-not-saved = Al salir, su observación no será guardada. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Sugerencias de búsqueda con ubicación Search-suggestions-without-location = Sugerencias de búsqueda sin ubicación SEARCH-TAXA = BUSCAR TAXONES SEARCH-USERS = BUSCAR USUARIOS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Ver observaciones de este usuario en Explorar See-observations-of-this-taxon-in-explore = Ver observaciones de este taxón en Explorar See-project-members = Ver miembros del proyecto @@ -966,6 +969,11 @@ X-Identifiers = [un] { $count } Identificador *[otros] { $count } Identificadores } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [un] { $count } MIEMBRO diff --git a/src/i18n/l10n/es-AR.ftl.json b/src/i18n/l10n/es-AR.ftl.json index 018a39900..931fd1853 100644 --- a/src/i18n/l10n/es-AR.ftl.json +++ b/src/i18n/l10n/es-AR.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "Algunos derechos reservados (CC BY-SA)", "August": "agosto", "BACK-TO-LOGIN": "VOLVER AL INICIO DE SESIÓN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Importador a Granel", "By-exiting-changes-not-saved": "Al salir, los cambios en su observación no será guardada.", "By-exiting-observation-not-saved": "Al salir, su observación no será guardada.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Sugerencias de búsqueda sin ubicación", "SEARCH-TAXA": "BUSCAR TAXONES", "SEARCH-USERS": "BUSCAR USUARIOS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Ver observaciones de este usuario en Explorar", "See-observations-of-this-taxon-in-explore": "Ver observaciones de este taxón en Explorar", "See-project-members": "Ver miembros del proyecto", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [una] { $count } Identificación\n *[otras] { $count } Identificaciones\n}", "x-identifications": "{ $count ->\n [una] { $count } identificación\n *[otras] { $count } identificaciones\n}", "X-Identifiers": "{ $count ->\n [un] { $count } Identificador\n *[otros] { $count } Identificadores\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [un] { $count } MIEMBRO\n *[otros] { $count } MIEMBROS\n}", "X-Observations": "{ $count ->\n [una] 1 Observación\n *[otras] { $count } Observaciones\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [una] OBSERVACIÓN\n *[otras] OBSERVACIONES\n}", diff --git a/src/i18n/l10n/es-CO.ftl b/src/i18n/l10n/es-CO.ftl index 426afba46..d2b4a0656 100644 --- a/src/i18n/l10n/es-CO.ftl +++ b/src/i18n/l10n/es-CO.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = Algunos derechos reservados (CC BY-ND) attribution-cc-by-sa = Algunos derechos reservados (CC BY-SA) August = Agosto BACK-TO-LOGIN = VOLVER AL INICIO DE SESIÓN +Blog = Blog +BLOG = BLOG Bulk-importer = Importador a Granel By-exiting-changes-not-saved = Al salir, los cambios en su observación no será guardada. By-exiting-observation-not-saved = Al salir, su observación no será guardada. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Sugerencias de búsqueda con ubicación Search-suggestions-without-location = Sugerencias de búsqueda sin ubicación SEARCH-TAXA = BUSCAR TAXONES SEARCH-USERS = BUSCAR USUARIOS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Ver observaciones de este usuario en Explorar See-observations-of-this-taxon-in-explore = Ver observaciones de este taxón en Explorar See-project-members = Ver miembros del proyecto @@ -966,6 +969,11 @@ X-Identifiers = [un] { $count } Identificador *[otros] { $count } Identificadores } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [un] { $count } MIEMBRO diff --git a/src/i18n/l10n/es-CO.ftl.json b/src/i18n/l10n/es-CO.ftl.json index 1f3c6782a..efb4b6a75 100644 --- a/src/i18n/l10n/es-CO.ftl.json +++ b/src/i18n/l10n/es-CO.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "Algunos derechos reservados (CC BY-SA)", "August": "Agosto", "BACK-TO-LOGIN": "VOLVER AL INICIO DE SESIÓN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Importador a Granel", "By-exiting-changes-not-saved": "Al salir, los cambios en su observación no será guardada.", "By-exiting-observation-not-saved": "Al salir, su observación no será guardada.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Sugerencias de búsqueda sin ubicación", "SEARCH-TAXA": "BUSCAR TAXONES", "SEARCH-USERS": "BUSCAR USUARIOS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Ver observaciones de este usuario en Explorar", "See-observations-of-this-taxon-in-explore": "Ver observaciones de este taxón en Explorar", "See-project-members": "Ver miembros del proyecto", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [una] { $count } Identificación\n *[otras] { $count } Identificaciones\n}", "x-identifications": "{ $count ->\n [una] { $count } identificación\n *[otras] { $count } identificaciones\n}", "X-Identifiers": "{ $count ->\n [un] { $count } Identificador\n *[otros] { $count } Identificadores\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [un] { $count } MIEMBRO\n *[otros] { $count } MIEMBROS\n}", "X-Observations": "{ $count ->\n [una] 1 Observación\n *[otras] { $count } Observaciones\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [una] OBSERVACIÓN\n *[otras] OBSERVACIONES\n}", diff --git a/src/i18n/l10n/es-CR.ftl b/src/i18n/l10n/es-CR.ftl index 3b638c6ba..72bf6a1d6 100644 --- a/src/i18n/l10n/es-CR.ftl +++ b/src/i18n/l10n/es-CR.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = Algunos derechos reservados (CC BY-ND) attribution-cc-by-sa = Algunos derechos reservados (CC BY-SA) August = agosto BACK-TO-LOGIN = VOLVER AL INICIO DE SESIÓN +Blog = Blog +BLOG = BLOG Bulk-importer = Importador a Granel By-exiting-changes-not-saved = Al salir, los cambios en su observación no será guardada. By-exiting-observation-not-saved = Al salir, su observación no será guardada. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Sugerencias de búsqueda con ubicación Search-suggestions-without-location = Sugerencias de búsqueda sin ubicación SEARCH-TAXA = BUSCAR TAXONES SEARCH-USERS = BUSCAR USUARIOS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Ver observaciones de este usuario en Explorar See-observations-of-this-taxon-in-explore = Ver observaciones de este taxón en Explorar See-project-members = Ver miembros del proyecto @@ -966,6 +969,11 @@ X-Identifiers = [un] { $count } Identificador *[otros] { $count } Identificadores } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [un] { $count } MIEMBRO diff --git a/src/i18n/l10n/es-CR.ftl.json b/src/i18n/l10n/es-CR.ftl.json index 1647a575e..5590a0fb9 100644 --- a/src/i18n/l10n/es-CR.ftl.json +++ b/src/i18n/l10n/es-CR.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "Algunos derechos reservados (CC BY-SA)", "August": "agosto", "BACK-TO-LOGIN": "VOLVER AL INICIO DE SESIÓN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Importador a Granel", "By-exiting-changes-not-saved": "Al salir, los cambios en su observación no será guardada.", "By-exiting-observation-not-saved": "Al salir, su observación no será guardada.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Sugerencias de búsqueda sin ubicación", "SEARCH-TAXA": "BUSCAR TAXONES", "SEARCH-USERS": "BUSCAR USUARIOS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Ver observaciones de este usuario en Explorar", "See-observations-of-this-taxon-in-explore": "Ver observaciones de este taxón en Explorar", "See-project-members": "Ver miembros del proyecto", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [una] { $count } Identificación\n *[otras] { $count } Identificaciones\n}", "x-identifications": "{ $count ->\n [una] { $count } identificación\n *[otras] { $count } identificaciones\n}", "X-Identifiers": "{ $count ->\n [un] { $count } Identificador\n *[otros] { $count } Identificadores\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [un] { $count } MIEMBRO\n *[otros] { $count } MIEMBROS\n}", "X-Observations": "{ $count ->\n [una] 1 Observación\n *[otras] { $count } Observaciones\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [una] OBSERVACIÓN\n *[otras] OBSERVACIONES\n}", diff --git a/src/i18n/l10n/es-MX.ftl b/src/i18n/l10n/es-MX.ftl index ab71f324b..bf1c313a9 100644 --- a/src/i18n/l10n/es-MX.ftl +++ b/src/i18n/l10n/es-MX.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = Algunos derechos reservados (CC BY-ND) attribution-cc-by-sa = Algunos derechos reservados (CC BY-SA) August = agosto BACK-TO-LOGIN = VOLVER AL INICIO DE SESIÓN +Blog = Blog +BLOG = BLOG Bulk-importer = Importador a Granel By-exiting-changes-not-saved = Al salir, los cambios en su observación no será guardada. By-exiting-observation-not-saved = Al salir, su observación no será guardada. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Sugerencias de búsqueda con ubicación Search-suggestions-without-location = Sugerencias de búsqueda sin ubicación SEARCH-TAXA = BUSCAR TAXONES SEARCH-USERS = BUSCAR USUARIOS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Ver observaciones de este usuario en Explorar See-observations-of-this-taxon-in-explore = Ver observaciones de este taxón en Explorar See-project-members = Ver miembros del proyecto @@ -966,6 +969,11 @@ X-Identifiers = [un] { $count } Identificador *[otros] { $count } Identificadores } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [un] { $count } MIEMBRO diff --git a/src/i18n/l10n/es-MX.ftl.json b/src/i18n/l10n/es-MX.ftl.json index ac47f9a07..9b7aa53e1 100644 --- a/src/i18n/l10n/es-MX.ftl.json +++ b/src/i18n/l10n/es-MX.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "Algunos derechos reservados (CC BY-SA)", "August": "agosto", "BACK-TO-LOGIN": "VOLVER AL INICIO DE SESIÓN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Importador a Granel", "By-exiting-changes-not-saved": "Al salir, los cambios en su observación no será guardada.", "By-exiting-observation-not-saved": "Al salir, su observación no será guardada.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Sugerencias de búsqueda sin ubicación", "SEARCH-TAXA": "BUSCAR TAXONES", "SEARCH-USERS": "BUSCAR USUARIOS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Ver observaciones de este usuario en Explorar", "See-observations-of-this-taxon-in-explore": "Ver observaciones de este taxón en Explorar", "See-project-members": "Ver miembros del proyecto", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [una] { $count } Identificación\n *[otras] { $count } Identificaciones\n}", "x-identifications": "{ $count ->\n [una] { $count } identificación\n *[otras] { $count } identificaciones\n}", "X-Identifiers": "{ $count ->\n [un] { $count } Identificador\n *[otros] { $count } Identificadores\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [un] { $count } MIEMBRO\n *[otros] { $count } MIEMBROS\n}", "X-Observations": "{ $count ->\n [una] 1 Observación\n *[otras] { $count } Observaciones\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [una] OBSERVACIÓN\n *[otras] OBSERVACIONES\n}", diff --git a/src/i18n/l10n/es.ftl b/src/i18n/l10n/es.ftl index aa4e1b8d3..3146aa0b6 100644 --- a/src/i18n/l10n/es.ftl +++ b/src/i18n/l10n/es.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = Algunos derechos reservados (CC BY-ND) attribution-cc-by-sa = Algunos derechos reservados (CC BY-SA) August = agosto BACK-TO-LOGIN = VOLVER AL INICIO DE SESIÓN +Blog = Blog +BLOG = BLOG Bulk-importer = Importador a Granel By-exiting-changes-not-saved = Al salir, los cambios en su observación no será guardada. By-exiting-observation-not-saved = Al salir, su observación no será guardada. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Sugerencias de búsqueda con ubicación Search-suggestions-without-location = Sugerencias de búsqueda sin ubicación SEARCH-TAXA = BUSCAR TAXONES SEARCH-USERS = BUSCAR USUARIOS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Ver observaciones de este usuario en Explorar See-observations-of-this-taxon-in-explore = Ver observaciones de este taxón en Explorar See-project-members = Ver miembros del proyecto @@ -966,6 +969,11 @@ X-Identifiers = [un] { $count } Identificador *[otros] { $count } Identificadores } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [un] { $count } MIEMBRO diff --git a/src/i18n/l10n/es.ftl.json b/src/i18n/l10n/es.ftl.json index bf0bef784..fdd52c97b 100644 --- a/src/i18n/l10n/es.ftl.json +++ b/src/i18n/l10n/es.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "Algunos derechos reservados (CC BY-SA)", "August": "agosto", "BACK-TO-LOGIN": "VOLVER AL INICIO DE SESIÓN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Importador a Granel", "By-exiting-changes-not-saved": "Al salir, los cambios en su observación no será guardada.", "By-exiting-observation-not-saved": "Al salir, su observación no será guardada.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Sugerencias de búsqueda sin ubicación", "SEARCH-TAXA": "BUSCAR TAXONES", "SEARCH-USERS": "BUSCAR USUARIOS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Ver observaciones de este usuario en Explorar", "See-observations-of-this-taxon-in-explore": "Ver observaciones de este taxón en Explorar", "See-project-members": "Ver miembros del proyecto", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [una] { $count } Identificación\n *[otras] { $count } Identificaciones\n}", "x-identifications": "{ $count ->\n [una] { $count } identificación\n *[otras] { $count } identificaciones\n}", "X-Identifiers": "{ $count ->\n [un] { $count } Identificador\n *[otros] { $count } Identificadores\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [un] { $count } MIEMBRO\n *[otros] { $count } MIEMBROS\n}", "X-Observations": "{ $count ->\n [una] 1 Observación\n *[otras] { $count } Observaciones\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [una] OBSERVACIÓN\n *[otras] OBSERVACIONES\n}", diff --git a/src/i18n/l10n/et.ftl b/src/i18n/l10n/et.ftl index c8a64d8b9..11f4890de 100644 --- a/src/i18n/l10n/et.ftl +++ b/src/i18n/l10n/et.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = mõned õigused kaitstud (CC BY-ND) attribution-cc-by-sa = mõned õigused kaitstud (CC BY-SA) August = august BACK-TO-LOGIN = TAGASI SISSELOGIMA +Blog = Blog +BLOG = BLOG Bulk-importer = Mass-importija By-exiting-changes-not-saved = Väljudes ei salvestata muutuseid sinu vaatlusele. By-exiting-observation-not-saved = Väljudes su vaatlust ei salvestata. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Asukohaga otsingusoovitused Search-suggestions-without-location = Asukohata otsingusoovitused SEARCH-TAXA = OTSI TAKSONIT SEARCH-USERS = OTSI KASUTAJAT +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } määratleja *[other] { $count } määratlejat } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/et.ftl.json b/src/i18n/l10n/et.ftl.json index e939e6051..73fb681f2 100644 --- a/src/i18n/l10n/et.ftl.json +++ b/src/i18n/l10n/et.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "mõned õigused kaitstud (CC BY-SA)", "August": "august", "BACK-TO-LOGIN": "TAGASI SISSELOGIMA", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Mass-importija", "By-exiting-changes-not-saved": "Väljudes ei salvestata muutuseid sinu vaatlusele.", "By-exiting-observation-not-saved": "Väljudes su vaatlust ei salvestata.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Asukohata otsingusoovitused", "SEARCH-TAXA": "OTSI TAKSONIT", "SEARCH-USERS": "OTSI KASUTAJAT", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } määratlus\n *[other] { $count } määratlust\n}", "x-identifications": "{ $count ->\n [one] { $count } määratlus\n *[other] { $count } määratlust\n}", "X-Identifiers": "{ $count ->\n [one] { $count } määratleja\n *[other] { $count } määratlejat\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 vaatlus\n *[other] { $count } vaatlust\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/eu.ftl b/src/i18n/l10n/eu.ftl index ad31185d4..29838ed07 100644 --- a/src/i18n/l10n/eu.ftl +++ b/src/i18n/l10n/eu.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = abuztua BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/eu.ftl.json b/src/i18n/l10n/eu.ftl.json index 31b94311b..02307dfe9 100644 --- a/src/i18n/l10n/eu.ftl.json +++ b/src/i18n/l10n/eu.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "abuztua", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/fa.ftl b/src/i18n/l10n/fa.ftl index 94aece787..f8cdfccf8 100644 --- a/src/i18n/l10n/fa.ftl +++ b/src/i18n/l10n/fa.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = برخی از حقوق محفوظ است (CC BY-ND) attribution-cc-by-sa = برخی از حقوق محفوظ است (CC BY-SA) August = آگوست BACK-TO-LOGIN = بازگشت به ورود +Blog = Blog +BLOG = BLOG Bulk-importer = واردات انبوه By-exiting-changes-not-saved = با خروج، تغییرات مشاهده شما ذخیره نخواهد شد. By-exiting-observation-not-saved = با خروج، مشاهده شما ذخیره نمی شود. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/fa.ftl.json b/src/i18n/l10n/fa.ftl.json index efba7c940..02b8ba7ae 100644 --- a/src/i18n/l10n/fa.ftl.json +++ b/src/i18n/l10n/fa.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "برخی از حقوق محفوظ است (CC BY-SA)", "August": "آگوست", "BACK-TO-LOGIN": "بازگشت به ورود", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "واردات انبوه", "By-exiting-changes-not-saved": "با خروج، تغییرات مشاهده شما ذخیره نخواهد شد.", "By-exiting-observation-not-saved": "با خروج، مشاهده شما ذخیره نمی شود.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/fi.ftl b/src/i18n/l10n/fi.ftl index f8e386242..aaea27e0f 100644 --- a/src/i18n/l10n/fi.ftl +++ b/src/i18n/l10n/fi.ftl @@ -83,6 +83,8 @@ attribution-cc-by-nd = osa oikeuksista pidätetään (CC BY-ND) attribution-cc-by-sa = osa oikeuksista pidätetään (CC BY-SA) August = elokuu BACK-TO-LOGIN = TAKAISIN KIRJAUTUMISEEN +Blog = Blogi +BLOG = BLOGI Bulk-importer = Massatuonti By-exiting-changes-not-saved = Jos poistut, havaintoosi tehtyjä muutoksia ei tallenneta. By-exiting-observation-not-saved = Jos poistut, havaintoasi ei tallenneta. @@ -747,6 +749,7 @@ Search-suggestions-with-location = Hakuehdotuksia sijainnin perusteella Search-suggestions-without-location = Hakuehdotukset ilman sijaintia SEARCH-TAXA = HAE TAKSONIA SEARCH-USERS = HAE KÄYTTÄJIÄ +See-journal-posts = Näytä päiväkirjamerkinnät See-observations-by-this-user-in-Explore = Katso tämän käyttäjän havainnot Tutki-osiossa See-observations-of-this-taxon-in-explore = Katso tämän taksonin havainnot Tutki-osiossa See-project-members = Katso projektin jäsenet @@ -969,6 +972,11 @@ X-Identifiers = [one] { $count } tunnistaja *[other] { $count } tunnistajaa } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } JÄSEN diff --git a/src/i18n/l10n/fi.ftl.json b/src/i18n/l10n/fi.ftl.json index 3f5d645b6..21e21b31a 100644 --- a/src/i18n/l10n/fi.ftl.json +++ b/src/i18n/l10n/fi.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "osa oikeuksista pidätetään (CC BY-SA)", "August": "elokuu", "BACK-TO-LOGIN": "TAKAISIN KIRJAUTUMISEEN", + "Blog": "Blogi", + "BLOG": "BLOGI", "Bulk-importer": "Massatuonti", "By-exiting-changes-not-saved": "Jos poistut, havaintoosi tehtyjä muutoksia ei tallenneta.", "By-exiting-observation-not-saved": "Jos poistut, havaintoasi ei tallenneta.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Hakuehdotukset ilman sijaintia", "SEARCH-TAXA": "HAE TAKSONIA", "SEARCH-USERS": "HAE KÄYTTÄJIÄ", + "See-journal-posts": "Näytä päiväkirjamerkinnät", "See-observations-by-this-user-in-Explore": "Katso tämän käyttäjän havainnot Tutki-osiossa", "See-observations-of-this-taxon-in-explore": "Katso tämän taksonin havainnot Tutki-osiossa", "See-project-members": "Katso projektin jäsenet", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } tunnistus\n *[other] { $count } tunnistusta\n}", "x-identifications": "{ $count ->\n [one] { $count } tunnistus\n *[other] { $count } tunnistusta\n}", "X-Identifiers": "{ $count ->\n [one] { $count } tunnistaja\n *[other] { $count } tunnistajaa\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } JÄSEN\n *[other] { $count } JÄSENTÄ\n}", "X-Observations": "{ $count ->\n [one] 1 havainto\n *[other] { $count } havaintoa\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] HAVAINTO\n *[other] HAVAINTOA\n}", diff --git a/src/i18n/l10n/fil.ftl b/src/i18n/l10n/fil.ftl index 83297a37c..56d004ead 100644 --- a/src/i18n/l10n/fil.ftl +++ b/src/i18n/l10n/fil.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/fil.ftl.json b/src/i18n/l10n/fil.ftl.json index 146b0dcf9..223c5907a 100644 --- a/src/i18n/l10n/fil.ftl.json +++ b/src/i18n/l10n/fil.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/fo.ftl b/src/i18n/l10n/fo.ftl index 3e4c0ea31..174f2793e 100644 --- a/src/i18n/l10n/fo.ftl +++ b/src/i18n/l10n/fo.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/fo.ftl.json b/src/i18n/l10n/fo.ftl.json index 71f3b0506..6e8ef3a4d 100644 --- a/src/i18n/l10n/fo.ftl.json +++ b/src/i18n/l10n/fo.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/fr-CA.ftl b/src/i18n/l10n/fr-CA.ftl index 164e8ee95..87a81135b 100644 --- a/src/i18n/l10n/fr-CA.ftl +++ b/src/i18n/l10n/fr-CA.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = certains droits réservés (CC BY-ND) attribution-cc-by-sa = certains droits réservés (CC BY-SA) August = août BACK-TO-LOGIN = RETOUR À LA CONNEXION +Blog = Blog +BLOG = BLOG Bulk-importer = Importateur groupé By-exiting-changes-not-saved = En quittant, les changements à votre observation ne seront pas sauvegardés. By-exiting-observation-not-saved = En quittant, votre observation ne sera pas sauvegardée. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Rechercher les suggestions avec localisation Search-suggestions-without-location = Rechercher les suggestions sans localisation SEARCH-TAXA = RECHERCHER LES TAXONS SEARCH-USERS = RECHERCHER LES UTILISATEURS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Voir les observations de cet utilisateur dans l'exploration See-observations-of-this-taxon-in-explore = Voir les observations de ce taxon dans l'exploration See-project-members = Voir les membres du projet @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identificateur *[other] { $count } Identificateurs } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [un] { $count } MEMBRE diff --git a/src/i18n/l10n/fr-CA.ftl.json b/src/i18n/l10n/fr-CA.ftl.json index 4ecc9be64..9b35bea40 100644 --- a/src/i18n/l10n/fr-CA.ftl.json +++ b/src/i18n/l10n/fr-CA.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "certains droits réservés (CC BY-SA)", "August": "août", "BACK-TO-LOGIN": "RETOUR À LA CONNEXION", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Importateur groupé", "By-exiting-changes-not-saved": "En quittant, les changements à votre observation ne seront pas sauvegardés.", "By-exiting-observation-not-saved": "En quittant, votre observation ne sera pas sauvegardée.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Rechercher les suggestions sans localisation", "SEARCH-TAXA": "RECHERCHER LES TAXONS", "SEARCH-USERS": "RECHERCHER LES UTILISATEURS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Voir les observations de cet utilisateur dans l'exploration", "See-observations-of-this-taxon-in-explore": "Voir les observations de ce taxon dans l'exploration", "See-project-members": "Voir les membres du projet", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identificateur\n *[other] { $count } Identificateurs\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [un] { $count } MEMBRE\n *[autres] { $count } MEMBRES\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/fr.ftl b/src/i18n/l10n/fr.ftl index 5f73b9ab2..b1757492f 100644 --- a/src/i18n/l10n/fr.ftl +++ b/src/i18n/l10n/fr.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = certains droits réservés (CC BY-ND) attribution-cc-by-sa = certains droits réservés (CC BY-SA) August = août BACK-TO-LOGIN = RETOUR À LA CONNEXION +Blog = Blog +BLOG = BLOG Bulk-importer = Importateur groupé By-exiting-changes-not-saved = En quittant, les changements à votre observation ne seront pas sauvegardés. By-exiting-observation-not-saved = En quittant, votre observation ne sera pas sauvegardée. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Rechercher les suggestions avec localisation Search-suggestions-without-location = Rechercher les suggestions sans localisation SEARCH-TAXA = RECHERCHER LES TAXONS SEARCH-USERS = RECHERCHER LES UTILISATEURS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Voir les observations de cet utilisateur dans l'exploration See-observations-of-this-taxon-in-explore = Voir les observations de ce taxon dans l'exploration See-project-members = Voir les membres du projet @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identificateur *[other] { $count } Identificateurs } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [un] { $count } MEMBRE diff --git a/src/i18n/l10n/fr.ftl.json b/src/i18n/l10n/fr.ftl.json index a37bb4524..6ccd45ffd 100644 --- a/src/i18n/l10n/fr.ftl.json +++ b/src/i18n/l10n/fr.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "certains droits réservés (CC BY-SA)", "August": "août", "BACK-TO-LOGIN": "RETOUR À LA CONNEXION", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Importateur groupé", "By-exiting-changes-not-saved": "En quittant, les changements à votre observation ne seront pas sauvegardés.", "By-exiting-observation-not-saved": "En quittant, votre observation ne sera pas sauvegardée.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Rechercher les suggestions sans localisation", "SEARCH-TAXA": "RECHERCHER LES TAXONS", "SEARCH-USERS": "RECHERCHER LES UTILISATEURS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Voir les observations de cet utilisateur dans l'exploration", "See-observations-of-this-taxon-in-explore": "Voir les observations de ce taxon dans l'exploration", "See-project-members": "Voir les membres du projet", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identificateur\n *[other] { $count } Identificateurs\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [un] { $count } MEMBRE\n *[autres] { $count } MEMBRES\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/gd.ftl b/src/i18n/l10n/gd.ftl index e293e3089..9c76b6524 100644 --- a/src/i18n/l10n/gd.ftl +++ b/src/i18n/l10n/gd.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/gd.ftl.json b/src/i18n/l10n/gd.ftl.json index b7784734c..93286e25b 100644 --- a/src/i18n/l10n/gd.ftl.json +++ b/src/i18n/l10n/gd.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/gl.ftl b/src/i18n/l10n/gl.ftl index 18cda0e8d..5a9b2bb46 100644 --- a/src/i18n/l10n/gl.ftl +++ b/src/i18n/l10n/gl.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = agosto BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/gl.ftl.json b/src/i18n/l10n/gl.ftl.json index 988e16be4..ab5ee08fe 100644 --- a/src/i18n/l10n/gl.ftl.json +++ b/src/i18n/l10n/gl.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "agosto", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/gu.ftl b/src/i18n/l10n/gu.ftl index 3e4c0ea31..174f2793e 100644 --- a/src/i18n/l10n/gu.ftl +++ b/src/i18n/l10n/gu.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/gu.ftl.json b/src/i18n/l10n/gu.ftl.json index 71f3b0506..6e8ef3a4d 100644 --- a/src/i18n/l10n/gu.ftl.json +++ b/src/i18n/l10n/gu.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/he.ftl b/src/i18n/l10n/he.ftl index 8c40fccb4..360d1606d 100644 --- a/src/i18n/l10n/he.ftl +++ b/src/i18n/l10n/he.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = חלק מהזכויות שמורות (CC BY-ND) attribution-cc-by-sa = חלק מהזכויות שמורות (CC BY-SA) August = אוגוסט BACK-TO-LOGIN = חזרה להתחברות +Blog = Blog +BLOG = BLOG Bulk-importer = מייבא במרוכז By-exiting-changes-not-saved = אם תצא.י עכשיו, שינויים בתצפית שלך לא יישמרו. By-exiting-observation-not-saved = אם תצא.י עכשיו, התצפית שלך לא תישמר. @@ -744,6 +746,7 @@ Search-suggestions-with-location = הצעות חיפוש עם מיקום Search-suggestions-without-location = הצעות חיפוש ללא מיקום SEARCH-TAXA = חיפוש טקסונים SEARCH-USERS = חיפוש משתמשים +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = ניתן לצפות בתצפיות של משתמש זה ב'לגלות' See-observations-of-this-taxon-in-explore = ניתן לצפות בתצפיות של טקסון זה ב'לגלות' See-project-members = צפייה בחברי הפרויקט @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } מזהה *[other] { $count } מזהים.ות } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } חבר.ה diff --git a/src/i18n/l10n/he.ftl.json b/src/i18n/l10n/he.ftl.json index 4d32e1190..f3f215fe4 100644 --- a/src/i18n/l10n/he.ftl.json +++ b/src/i18n/l10n/he.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "חלק מהזכויות שמורות (CC BY-SA)", "August": "אוגוסט", "BACK-TO-LOGIN": "חזרה להתחברות", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "מייבא במרוכז", "By-exiting-changes-not-saved": "אם תצא.י עכשיו, שינויים בתצפית שלך לא יישמרו.", "By-exiting-observation-not-saved": "אם תצא.י עכשיו, התצפית שלך לא תישמר.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "הצעות חיפוש ללא מיקום", "SEARCH-TAXA": "חיפוש טקסונים", "SEARCH-USERS": "חיפוש משתמשים", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "ניתן לצפות בתצפיות של משתמש זה ב'לגלות'", "See-observations-of-this-taxon-in-explore": "ניתן לצפות בתצפיות של טקסון זה ב'לגלות'", "See-project-members": "צפייה בחברי הפרויקט", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } זיהוי\n *[other] { $count } זיהויים\n}", "x-identifications": "{ $count ->\n [one] { $count } זיהוי\n *[other] { $count } זיהויים\n}", "X-Identifiers": "{ $count ->\n [one] { $count } מזהה\n *[other] { $count } מזהים.ות\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } חבר.ה\n *[other] { $count } חברים.ות\n}", "X-Observations": "{ $count ->\n [one] תצפית 1\n *[other] { $count } תצפיות\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] תצפית\n *[other] תצפיות\n}", diff --git a/src/i18n/l10n/hi.ftl b/src/i18n/l10n/hi.ftl index 95ced12c7..31fd6263a 100644 --- a/src/i18n/l10n/hi.ftl +++ b/src/i18n/l10n/hi.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/hi.ftl.json b/src/i18n/l10n/hi.ftl.json index aade83014..99f52ba7d 100644 --- a/src/i18n/l10n/hi.ftl.json +++ b/src/i18n/l10n/hi.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/hr.ftl b/src/i18n/l10n/hr.ftl index 0a195f6f1..cc4e061f9 100644 --- a/src/i18n/l10n/hr.ftl +++ b/src/i18n/l10n/hr.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Kolovoz BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/hr.ftl.json b/src/i18n/l10n/hr.ftl.json index 4bf6a48fe..a1f0d6492 100644 --- a/src/i18n/l10n/hr.ftl.json +++ b/src/i18n/l10n/hr.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Kolovoz", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/hu.ftl b/src/i18n/l10n/hu.ftl index 47b935334..4414334f7 100644 --- a/src/i18n/l10n/hu.ftl +++ b/src/i18n/l10n/hu.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Augusztus BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/hu.ftl.json b/src/i18n/l10n/hu.ftl.json index bbc56b70a..b41b61d97 100644 --- a/src/i18n/l10n/hu.ftl.json +++ b/src/i18n/l10n/hu.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Augusztus", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] MEGFIGYELÉS\n *[other] MEGFIGYELÉS\n}", diff --git a/src/i18n/l10n/id.ftl b/src/i18n/l10n/id.ftl index 1496ee47d..2837954f5 100644 --- a/src/i18n/l10n/id.ftl +++ b/src/i18n/l10n/id.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = beberapa hak dilindungi (CC BY-ND) attribution-cc-by-sa = beberapa hak dilindungi (CC BY-SA) August = Agustus BACK-TO-LOGIN = KEMBALI KE HALAMAN MASUK +Blog = Blog +BLOG = BLOG Bulk-importer = Pengimpor massal By-exiting-changes-not-saved = Dengan keluar, perubahan pada pengamatan Anda tidak akan disimpan. By-exiting-observation-not-saved = Dengan keluar, pengamatan Anda tidak akan disimpan. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Cari rekomendasi dengan lokasi Search-suggestions-without-location = Rekomendasi pencarian tanpa lokasi SEARCH-TAXA = CARI TAKSON SEARCH-USERS = CARI PENGGUNA +See-journal-posts = Lihat postingan jurnal See-observations-by-this-user-in-Explore = Lihat pengamatan-pengamatan oleh pengguna ini di Jelajah See-observations-of-this-taxon-in-explore = Lihat pengamatan-pengamatan takson ini di jelajah See-project-members = Lihat anggota proyek @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Pengidentifikasi *[other] { $count } Pengidentifikasi } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } POSTINGAN JURNAL + *[other] { $count } POSTINGAN JURNAL + } X-MEMBERS = { $count -> [one] { $count } ANGGOTA diff --git a/src/i18n/l10n/id.ftl.json b/src/i18n/l10n/id.ftl.json index 0be2216da..ab3ef860c 100644 --- a/src/i18n/l10n/id.ftl.json +++ b/src/i18n/l10n/id.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "beberapa hak dilindungi (CC BY-SA)", "August": "Agustus", "BACK-TO-LOGIN": "KEMBALI KE HALAMAN MASUK", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Pengimpor massal", "By-exiting-changes-not-saved": "Dengan keluar, perubahan pada pengamatan Anda tidak akan disimpan.", "By-exiting-observation-not-saved": "Dengan keluar, pengamatan Anda tidak akan disimpan.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Rekomendasi pencarian tanpa lokasi", "SEARCH-TAXA": "CARI TAKSON", "SEARCH-USERS": "CARI PENGGUNA", + "See-journal-posts": "Lihat postingan jurnal", "See-observations-by-this-user-in-Explore": "Lihat pengamatan-pengamatan oleh pengguna ini di Jelajah", "See-observations-of-this-taxon-in-explore": "Lihat pengamatan-pengamatan takson ini di jelajah", "See-project-members": "Lihat anggota proyek", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identifikasi\n *[other] { $count } Identifikasi\n}", "x-identifications": "{ $count ->\n [one] { $count } identifikasi\n *[other] { $count } identifikasi\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Pengidentifikasi\n *[other] { $count } Pengidentifikasi\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } POSTINGAN JURNAL\n *[other] { $count } POSTINGAN JURNAL\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } ANGGOTA\n *[other] { $count } ANGGOTA\n}", "X-Observations": "{ $count ->\n [one] 1 Pengamatan\n *[other] { $count } Pengamatan\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] PENGAMATAN\n *[other] PENGAMATAN\n}", diff --git a/src/i18n/l10n/it.ftl b/src/i18n/l10n/it.ftl index 4d7547d3b..4ac1f40f2 100644 --- a/src/i18n/l10n/it.ftl +++ b/src/i18n/l10n/it.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = alcuni diritti riservati (CC BY-ND) attribution-cc-by-sa = alcuni diritti riservati (CC BY-SA) August = Agosto BACK-TO-LOGIN = TORNA AL LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Importo in gruppo By-exiting-changes-not-saved = Uscendo, le modifiche alla tua osservazione non verranno salvate. By-exiting-observation-not-saved = Uscendo, la tua osservazione non verrà salvata. @@ -330,7 +332,7 @@ Group-photos-onboarding = Raggruppa le foto nelle osservazioni– assicurati che HELP = AIUTO Help-create-Research-Grade-data-used-in-science-and-conservation = Aiuta a creare dati di livello di ricerca utilizzati nella scienza e nella conservazione. Help-protect-species = Aiuta a proteggere le specie -Help-us-translate-the-app = Help us translate the app! +Help-us-translate-the-app = Aiutaci a tradurre l'app! Hide = Nascondi Highest = Maggiore HIGHEST-RANK = RANGO MAGGIORE @@ -360,7 +362,7 @@ If-you-leave-x-of-your-observations-removed = } verrà rimosso anche da questo progetto. If-you-save-this-observation-and-upload-it-to-iNaturalist = Se salvi questa osservazione e la carichi su iNaturalist, altre persone potrebbero essere in grado di aiutarti a identificarla. If-you-want-to-collate-compare-promote = Se si desidera raccogliere, confrontare o promuovere un insieme di progetti esistenti, è consigliabile utilizzare un progetto Umbrella. Ad esempio, la City Nature Challenge 2018, che ha raccolto oltre 60 progetti, è stata un'ottima landing page in cui chiunque può confrontare le osservazioni di ogni città. Sia i progetti di raccolta che quelli tradizionali possono essere utilizzati in un progetto Umbrella e fino a 500 progetti possono essere raggruppati da un progetto Umbrella. -If-youre-an-experienced-user-try-switching-to-Advanced-Mode = You have uploaded more than 100 observations. Try Advanced Mode for more ways to add and manage observations. +If-youre-an-experienced-user-try-switching-to-Advanced-Mode = Hai caricato più di 100 osservazioni. Prova la Modalità Avanzata per altri modi per aggiungere e gestire le osservazioni. If-youre-seeing-this-error = Se vedi questo e sei online, lo staff di iNat ha già ricevuto una notifica. Grazie per aver trovato un bug! Se sei offline, fai uno screenshot e inviaci un'e-mail quando torni su Internet. IGNORE-LOCATION = IGNORA POSIZIONE Ignore-notifications = Ignora le notifiche @@ -589,7 +591,7 @@ Please-allow-Microphone-Access = Si prega di consentire l'accesso al microfono Please-choose-a-different-password = Scegli una password diversa. Please-Grant-Permission = Si prega di concedere l'autorizzazione PLEASE-LOG-IN = EFFETTUA IL LOGIN -Please-log-in-again = Please log in again. We occasionally need to refresh your session to clear cached data and make sure the app is working its best. +Please-log-in-again = Per favore, accedi di nuovo. Ogni tanto dobbiamo aggiornare la sessione per cancellare i dati nella cache e assicurarci che l'app funzioni al meglio. Please-make-sure-your-password-is-at-least-6-characters = Assicurati che la tua password sia di almeno 6 caratteri. Please-try-again-when-you-are-connected-to-the-internet = Riprova quando sei connesso a Internet. Please-try-again-when-you-are-online = Riprova quando sei online! @@ -744,6 +746,7 @@ Search-suggestions-with-location = Suggerimenti di ricerca con posizione Search-suggestions-without-location = Suggerimenti di ricerca senza posizione SEARCH-TAXA = CERCA I TAXA SEARCH-USERS = CERCA UTENTI +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Vedi le osservazioni di questo utente in Esplora See-observations-of-this-taxon-in-explore = Vedi le osservazioni di questo taxon in explore See-project-members = Vedi i membri del progetto @@ -820,7 +823,7 @@ Sync-observations = Sincronizzare le osservazioni Syncing = Sincronizzando... Take-photo = Scattare foto Take-photos = Scatta foto -Tap-here-to-switch-to-Advanced-Mode = Tap here to switch to Advanced Mode +Tap-here-to-switch-to-Advanced-Mode = Tocca qui per passare alla Modalità Avanzata Taxa = Taxa TAXON = TAXON TAXON-NAMES-DISPLAY = VISUALIZZAZIONE DEI NOMI DEI TAXON @@ -966,6 +969,11 @@ X-Identifiers = [uno] { $count } Identificatore *[altro] { $count } Identificatori } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [uno] { $count } MEMBRO diff --git a/src/i18n/l10n/it.ftl.json b/src/i18n/l10n/it.ftl.json index ba97fcaea..5652b600e 100644 --- a/src/i18n/l10n/it.ftl.json +++ b/src/i18n/l10n/it.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "alcuni diritti riservati (CC BY-SA)", "August": "Agosto", "BACK-TO-LOGIN": "TORNA AL LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Importo in gruppo", "By-exiting-changes-not-saved": "Uscendo, le modifiche alla tua osservazione non verranno salvate.", "By-exiting-observation-not-saved": "Uscendo, la tua osservazione non verrà salvata.", @@ -308,7 +310,7 @@ "HELP": "AIUTO", "Help-create-Research-Grade-data-used-in-science-and-conservation": "Aiuta a creare dati di livello di ricerca utilizzati nella scienza e nella conservazione.", "Help-protect-species": "Aiuta a proteggere le specie", - "Help-us-translate-the-app": "Help us translate the app!", + "Help-us-translate-the-app": "Aiutaci a tradurre l'app!", "Hide": "Nascondi", "Highest": "Maggiore", "HIGHEST-RANK": "RANGO MAGGIORE", @@ -330,7 +332,7 @@ "If-you-leave-x-of-your-observations-removed": "Se si abbandona questo progetto tradizionale, { $count ->\n [una] 1 delle tue osservazioni\n *[altro] { $count } delle tue osservazioni\n} verrà rimosso anche da questo progetto.", "If-you-save-this-observation-and-upload-it-to-iNaturalist": "Se salvi questa osservazione e la carichi su iNaturalist, altre persone potrebbero essere in grado di aiutarti a identificarla.", "If-you-want-to-collate-compare-promote": "Se si desidera raccogliere, confrontare o promuovere un insieme di progetti esistenti, è consigliabile utilizzare un progetto Umbrella. Ad esempio, la City Nature Challenge 2018, che ha raccolto oltre 60 progetti, è stata un'ottima landing page in cui chiunque può confrontare le osservazioni di ogni città. Sia i progetti di raccolta che quelli tradizionali possono essere utilizzati in un progetto Umbrella e fino a 500 progetti possono essere raggruppati da un progetto Umbrella.", - "If-youre-an-experienced-user-try-switching-to-Advanced-Mode": "You have uploaded more than 100 observations. Try Advanced Mode for more ways to add and manage observations.", + "If-youre-an-experienced-user-try-switching-to-Advanced-Mode": "Hai caricato più di 100 osservazioni. Prova la Modalità Avanzata per altri modi per aggiungere e gestire le osservazioni.", "If-youre-seeing-this-error": "Se vedi questo e sei online, lo staff di iNat ha già ricevuto una notifica. Grazie per aver trovato un bug! Se sei offline, fai uno screenshot e inviaci un'e-mail quando torni su Internet.", "IGNORE-LOCATION": "IGNORA POSIZIONE", "Ignore-notifications": "Ignora le notifiche", @@ -539,7 +541,7 @@ "Please-choose-a-different-password": "Scegli una password diversa.", "Please-Grant-Permission": "Si prega di concedere l'autorizzazione", "PLEASE-LOG-IN": "EFFETTUA IL LOGIN", - "Please-log-in-again": "Please log in again. We occasionally need to refresh your session to clear cached data and make sure the app is working its best.", + "Please-log-in-again": "Per favore, accedi di nuovo. Ogni tanto dobbiamo aggiornare la sessione per cancellare i dati nella cache e assicurarci che l'app funzioni al meglio.", "Please-make-sure-your-password-is-at-least-6-characters": "Assicurati che la tua password sia di almeno 6 caratteri.", "Please-try-again-when-you-are-connected-to-the-internet": "Riprova quando sei connesso a Internet.", "Please-try-again-when-you-are-online": "Riprova quando sei online!", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Suggerimenti di ricerca senza posizione", "SEARCH-TAXA": "CERCA I TAXA", "SEARCH-USERS": "CERCA UTENTI", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Vedi le osservazioni di questo utente in Esplora", "See-observations-of-this-taxon-in-explore": "Vedi le osservazioni di questo taxon in explore", "See-project-members": "Vedi i membri del progetto", @@ -766,7 +769,7 @@ "Syncing": "Sincronizzando...", "Take-photo": "Scattare foto", "Take-photos": "Scatta foto", - "Tap-here-to-switch-to-Advanced-Mode": "Tap here to switch to Advanced Mode", + "Tap-here-to-switch-to-Advanced-Mode": "Tocca qui per passare alla Modalità Avanzata", "Taxa": "Taxa", "TAXON": "TAXON", "TAXON-NAMES-DISPLAY": "VISUALIZZAZIONE DEI NOMI DEI TAXON", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [uno] { $count } Identificazione\n *[altro] { $count } Identificazioni\n}", "x-identifications": "{ $count ->\n [uno] { $count } identificazione\n *[altro] { $count } Identificazioni\n}", "X-Identifiers": "{ $count ->\n [uno] { $count } Identificatore\n *[altro] { $count } Identificatori\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [uno] { $count } MEMBRO\n *[altri] { $count } MEMBRI\n}", "X-Observations": "{ $count ->\n [uno] 1 Osservazione\n *[altro] { $count } Osservazioni\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [uno] OSSERVAZIONE\n *[altro] OSSERVAZIONI\n}", diff --git a/src/i18n/l10n/ja.ftl b/src/i18n/l10n/ja.ftl index 67d96159d..71e146f54 100644 --- a/src/i18n/l10n/ja.ftl +++ b/src/i18n/l10n/ja.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = いくつかの権利を保有(CC BY-ND) attribution-cc-by-sa = いくつかの権利を保有(CC BY-SA) August = 8月 BACK-TO-LOGIN = ログインに戻る +Blog = Blog +BLOG = BLOG Bulk-importer = 一括インポーター By-exiting-changes-not-saved = 終了すると、観察記録への変更は保存されません。 By-exiting-observation-not-saved = 終了すると、観察記録は保存されません。 @@ -749,6 +751,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = プロジェクトメンバーを表示 @@ -971,6 +974,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/ja.ftl.json b/src/i18n/l10n/ja.ftl.json index d84f813b7..2e8b24f2e 100644 --- a/src/i18n/l10n/ja.ftl.json +++ b/src/i18n/l10n/ja.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "いくつかの権利を保有(CC BY-SA)", "August": "8月", "BACK-TO-LOGIN": "ログインに戻る", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "一括インポーター", "By-exiting-changes-not-saved": "終了すると、観察記録への変更は保存されません。", "By-exiting-observation-not-saved": "終了すると、観察記録は保存されません。", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "プロジェクトメンバーを表示", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/ka.ftl b/src/i18n/l10n/ka.ftl index bda7d6d59..d4b58a92d 100644 --- a/src/i18n/l10n/ka.ftl +++ b/src/i18n/l10n/ka.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = შეთავაზებების ძ Search-suggestions-without-location = შეთავაზებების ძიება ადგილმდებარეობის გარეშე SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/ka.ftl.json b/src/i18n/l10n/ka.ftl.json index cfb882302..2aaa73265 100644 --- a/src/i18n/l10n/ka.ftl.json +++ b/src/i18n/l10n/ka.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "შეთავაზებების ძიება ადგილმდებარეობის გარეშე", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/kk.ftl b/src/i18n/l10n/kk.ftl index 5937482b1..6fe671998 100644 --- a/src/i18n/l10n/kk.ftl +++ b/src/i18n/l10n/kk.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Тамыз BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/kk.ftl.json b/src/i18n/l10n/kk.ftl.json index 2119d0d7c..cf91b0595 100644 --- a/src/i18n/l10n/kk.ftl.json +++ b/src/i18n/l10n/kk.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Тамыз", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/kl.ftl b/src/i18n/l10n/kl.ftl index 3e4c0ea31..174f2793e 100644 --- a/src/i18n/l10n/kl.ftl +++ b/src/i18n/l10n/kl.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/kl.ftl.json b/src/i18n/l10n/kl.ftl.json index 71f3b0506..6e8ef3a4d 100644 --- a/src/i18n/l10n/kl.ftl.json +++ b/src/i18n/l10n/kl.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/kn.ftl b/src/i18n/l10n/kn.ftl index 3e38abe9d..79ebd18dd 100644 --- a/src/i18n/l10n/kn.ftl +++ b/src/i18n/l10n/kn.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = ಆಗಸ್ಟ್ BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/kn.ftl.json b/src/i18n/l10n/kn.ftl.json index 367f9cd17..cacecbbcf 100644 --- a/src/i18n/l10n/kn.ftl.json +++ b/src/i18n/l10n/kn.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "ಆಗಸ್ಟ್", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/ko.ftl b/src/i18n/l10n/ko.ftl index 44f397fa5..b4fbfeb40 100644 --- a/src/i18n/l10n/ko.ftl +++ b/src/i18n/l10n/ko.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = 8월 BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/ko.ftl.json b/src/i18n/l10n/ko.ftl.json index 15907b3d6..0306e8854 100644 --- a/src/i18n/l10n/ko.ftl.json +++ b/src/i18n/l10n/ko.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "8월", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/lb.ftl b/src/i18n/l10n/lb.ftl index ef10c31ae..f37ae06d7 100644 --- a/src/i18n/l10n/lb.ftl +++ b/src/i18n/l10n/lb.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/lb.ftl.json b/src/i18n/l10n/lb.ftl.json index cb00e6dc3..bdbdfeb3d 100644 --- a/src/i18n/l10n/lb.ftl.json +++ b/src/i18n/l10n/lb.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/lt.ftl b/src/i18n/l10n/lt.ftl index 810baacc6..2398b9a0d 100644 --- a/src/i18n/l10n/lt.ftl +++ b/src/i18n/l10n/lt.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Rugpjūtis BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } NARYS diff --git a/src/i18n/l10n/lt.ftl.json b/src/i18n/l10n/lt.ftl.json index ab5c09954..a1c3dbaf5 100644 --- a/src/i18n/l10n/lt.ftl.json +++ b/src/i18n/l10n/lt.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Rugpjūtis", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } NARYS\n *[other] { $count } NARIŲ\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] STEBĖJIMAS\n *[other] STEBĖJIMAI (-Ų)\n}", diff --git a/src/i18n/l10n/lv.ftl b/src/i18n/l10n/lv.ftl index 17a822918..32e55ad68 100644 --- a/src/i18n/l10n/lv.ftl +++ b/src/i18n/l10n/lv.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Augusts BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/lv.ftl.json b/src/i18n/l10n/lv.ftl.json index 16577f4d5..ab4241211 100644 --- a/src/i18n/l10n/lv.ftl.json +++ b/src/i18n/l10n/lv.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Augusts", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/mi.ftl b/src/i18n/l10n/mi.ftl index 54ed13256..10cb505d3 100644 --- a/src/i18n/l10n/mi.ftl +++ b/src/i18n/l10n/mi.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Here-turi-kōkā BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/mi.ftl.json b/src/i18n/l10n/mi.ftl.json index c0e81b992..a3ad9617c 100644 --- a/src/i18n/l10n/mi.ftl.json +++ b/src/i18n/l10n/mi.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Here-turi-kōkā", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/mk.ftl b/src/i18n/l10n/mk.ftl index 226c52b45..bad4d8f4f 100644 --- a/src/i18n/l10n/mk.ftl +++ b/src/i18n/l10n/mk.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = август BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/mk.ftl.json b/src/i18n/l10n/mk.ftl.json index 4d5621ceb..8be641cab 100644 --- a/src/i18n/l10n/mk.ftl.json +++ b/src/i18n/l10n/mk.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "август", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/ml.ftl b/src/i18n/l10n/ml.ftl index d2fb97b36..00365125d 100644 --- a/src/i18n/l10n/ml.ftl +++ b/src/i18n/l10n/ml.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/ml.ftl.json b/src/i18n/l10n/ml.ftl.json index b25a3aeca..9e979e38e 100644 --- a/src/i18n/l10n/ml.ftl.json +++ b/src/i18n/l10n/ml.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/mr.ftl b/src/i18n/l10n/mr.ftl index 6a47f075b..dea4ab154 100644 --- a/src/i18n/l10n/mr.ftl +++ b/src/i18n/l10n/mr.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/mr.ftl.json b/src/i18n/l10n/mr.ftl.json index 6720fcc90..3041490e2 100644 --- a/src/i18n/l10n/mr.ftl.json +++ b/src/i18n/l10n/mr.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/ms.ftl b/src/i18n/l10n/ms.ftl index 934fea331..07e4a9d6c 100644 --- a/src/i18n/l10n/ms.ftl +++ b/src/i18n/l10n/ms.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/ms.ftl.json b/src/i18n/l10n/ms.ftl.json index 8f3d356d3..93f397e9b 100644 --- a/src/i18n/l10n/ms.ftl.json +++ b/src/i18n/l10n/ms.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/nb.ftl b/src/i18n/l10n/nb.ftl index 37130a8aa..a76ca41df 100644 --- a/src/i18n/l10n/nb.ftl +++ b/src/i18n/l10n/nb.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/nb.ftl.json b/src/i18n/l10n/nb.ftl.json index 02954617d..9f24037f2 100644 --- a/src/i18n/l10n/nb.ftl.json +++ b/src/i18n/l10n/nb.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/nl.ftl b/src/i18n/l10n/nl.ftl index a5c6dc77f..14165a1e9 100644 --- a/src/i18n/l10n/nl.ftl +++ b/src/i18n/l10n/nl.ftl @@ -86,6 +86,8 @@ attribution-cc-by-nd = sommige rechten voorbehouden (CC BY-ND) attribution-cc-by-sa = sommige rechten voorbehouden (CC BY-SA) August = Augustus BACK-TO-LOGIN = TERUG NAAR INLOGGEN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk import By-exiting-changes-not-saved = Door af te sluiten, worden wijzigingen in je waarneming niet opgeslagen. By-exiting-observation-not-saved = Als je afsluit word je waarneming niet opgeslagen. @@ -595,7 +597,7 @@ Please-allow-Microphone-Access = Geef toegang tot de microfoon Please-choose-a-different-password = Kies een ander wachtwoord. Please-Grant-Permission = Geef toestemming PLEASE-LOG-IN = LOG IN -Please-log-in-again = Please log in again. We occasionally need to refresh your session to clear cached data and make sure the app is working its best. +Please-log-in-again = Log opnieuw in. We moeten af en toe je sessie vernieuwen om de gegevens in de cache te wissen en te controleren of de app op zijn best werkt. Please-make-sure-your-password-is-at-least-6-characters = Zorg ervoor dat je wachtwoord minimaal 6 tekens lang is. Please-try-again-when-you-are-connected-to-the-internet = Probeer het opnieuw wanneer je verbonden bent met het internet. Please-try-again-when-you-are-online = Probeer het opnieuw als je online bent! @@ -750,6 +752,7 @@ Search-suggestions-with-location = Zoek suggesties met locatie Search-suggestions-without-location = Zoek suggesties zonder locatie te gebruiken SEARCH-TAXA = ZOEK TAXA SEARCH-USERS = ZOEK GEBRUIKERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Toon waarnemingen van deze gebruiker in Verkennen See-observations-of-this-taxon-in-explore = Toon waarnemingen van dit taxon in verkennen See-project-members = Toon projectdeelnemers @@ -972,6 +975,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } LID diff --git a/src/i18n/l10n/nl.ftl.json b/src/i18n/l10n/nl.ftl.json index 0329dbd3a..e9f82f73f 100644 --- a/src/i18n/l10n/nl.ftl.json +++ b/src/i18n/l10n/nl.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "sommige rechten voorbehouden (CC BY-SA)", "August": "Augustus", "BACK-TO-LOGIN": "TERUG NAAR INLOGGEN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk import", "By-exiting-changes-not-saved": "Door af te sluiten, worden wijzigingen in je waarneming niet opgeslagen.", "By-exiting-observation-not-saved": "Als je afsluit word je waarneming niet opgeslagen.", @@ -539,7 +541,7 @@ "Please-choose-a-different-password": "Kies een ander wachtwoord.", "Please-Grant-Permission": "Geef toestemming", "PLEASE-LOG-IN": "LOG IN", - "Please-log-in-again": "Please log in again. We occasionally need to refresh your session to clear cached data and make sure the app is working its best.", + "Please-log-in-again": "Log opnieuw in. We moeten af en toe je sessie vernieuwen om de gegevens in de cache te wissen en te controleren of de app op zijn best werkt.", "Please-make-sure-your-password-is-at-least-6-characters": "Zorg ervoor dat je wachtwoord minimaal 6 tekens lang is.", "Please-try-again-when-you-are-connected-to-the-internet": "Probeer het opnieuw wanneer je verbonden bent met het internet.", "Please-try-again-when-you-are-online": "Probeer het opnieuw als je online bent!", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Zoek suggesties zonder locatie te gebruiken", "SEARCH-TAXA": "ZOEK TAXA", "SEARCH-USERS": "ZOEK GEBRUIKERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Toon waarnemingen van deze gebruiker in Verkennen", "See-observations-of-this-taxon-in-explore": "Toon waarnemingen van dit taxon in verkennen", "See-project-members": "Toon projectdeelnemers", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Determinatie\n *[other] { $count } Determinaties\n}", "x-identifications": "{ $count ->\n [one] { $count } determinatie\n *[other] { $count } determinaties\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } LID\n *[other] { $count } LEDEN\n}", "X-Observations": "{ $count ->\n [one] 1 Waarneming\n *[other] { $count } Waarnemingen\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] WAARNEMING\n *[other] WAARNEMINGEN\n}", diff --git a/src/i18n/l10n/pa.ftl b/src/i18n/l10n/pa.ftl index 7cce2c187..2b1ee07cf 100644 --- a/src/i18n/l10n/pa.ftl +++ b/src/i18n/l10n/pa.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/pa.ftl.json b/src/i18n/l10n/pa.ftl.json index 81275c38d..4022bde76 100644 --- a/src/i18n/l10n/pa.ftl.json +++ b/src/i18n/l10n/pa.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/pl.ftl b/src/i18n/l10n/pl.ftl index 90115bc1d..02ec864d4 100644 --- a/src/i18n/l10n/pl.ftl +++ b/src/i18n/l10n/pl.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = niektóre prawa zastrzeżone (CC BY-ND) attribution-cc-by-sa = niektóre prawa zastrzeżone (CC BY-SA) August = Sierpień BACK-TO-LOGIN = POWRÓT DO LOGOWANIA +Blog = Blog +BLOG = BLOG Bulk-importer = Masowy importer By-exiting-changes-not-saved = Po wyjściu zmiany w obserwacji nie zostaną zapisane. By-exiting-observation-not-saved = Po wyjściu Twoja obserwacja nie zostanie zapisana. @@ -749,6 +751,7 @@ Search-suggestions-with-location = Sugestie wyszukiwania z lokalizacją Search-suggestions-without-location = Sugestie wyszukiwania bez lokalizacji SEARCH-TAXA = WYSZUKIWANIE TAKSONÓW SEARCH-USERS = WYSZUKIWANIE UŻYTKOWNIKÓW +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Zobacz obserwacje tego użytkownika w sekcji Eksploruj See-observations-of-this-taxon-in-explore = Zobacz obserwacje tego taksonu w explore See-project-members = Zobacz członków projektu @@ -978,6 +981,11 @@ X-Identifiers = [few] { $count } Identyfikujących *[many] { $count } Identyfikujących } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } Członek diff --git a/src/i18n/l10n/pl.ftl.json b/src/i18n/l10n/pl.ftl.json index b25b8496b..2b83ca342 100644 --- a/src/i18n/l10n/pl.ftl.json +++ b/src/i18n/l10n/pl.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "niektóre prawa zastrzeżone (CC BY-SA)", "August": "Sierpień", "BACK-TO-LOGIN": "POWRÓT DO LOGOWANIA", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Masowy importer", "By-exiting-changes-not-saved": "Po wyjściu zmiany w obserwacji nie zostaną zapisane.", "By-exiting-observation-not-saved": "Po wyjściu Twoja obserwacja nie zostanie zapisana.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Sugestie wyszukiwania bez lokalizacji", "SEARCH-TAXA": "WYSZUKIWANIE TAKSONÓW", "SEARCH-USERS": "WYSZUKIWANIE UŻYTKOWNIKÓW", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Zobacz obserwacje tego użytkownika w sekcji Eksploruj", "See-observations-of-this-taxon-in-explore": "Zobacz obserwacje tego taksonu w explore", "See-project-members": "Zobacz członków projektu", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identyfikacja\n [few] { $count } Identyfikacje\n *[many] { $count } Identyfikacji\n}", "x-identifications": "{ $count ->\n [one] { $count } identyfikacja\n [few] { $count } identyfikacje\n *[many] { $count } identyfikacji\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identyfikujący\n [few] { $count } Identyfikujących\n *[many] { $count } Identyfikujących\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } Członek\n *[other] { $count } Członkowie\n}", "X-Observations": "{ $count ->\n [jeden] 1 Obserwacja\n *[inne] { $count } Obserwacje\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [jeden] OBSERWACJA\n *[inne] UWAGI\n}", diff --git a/src/i18n/l10n/pt-BR.ftl b/src/i18n/l10n/pt-BR.ftl index b085ff95b..b4a5bb15e 100644 --- a/src/i18n/l10n/pt-BR.ftl +++ b/src/i18n/l10n/pt-BR.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = alguns direitos reservados (CC BY-ND) attribution-cc-by-sa = alguns direitos reservados (CC BY-SA) August = Agosto BACK-TO-LOGIN = VOLTAR PARA LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Importar em massa By-exiting-changes-not-saved = Ao sair, as alterações de sua observação não serão salvas By-exiting-observation-not-saved = Ao sair, sua observação não será salva. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Pesquisar sugestões com localização Search-suggestions-without-location = Pesquisar sugestões sem localização SEARCH-TAXA = BUSCAR TAXA SEARCH-USERS = PROCURAR USUÁRIOS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Ver observações deste usuário em Explorar See-observations-of-this-taxon-in-explore = Ver observações deste táxon em explorar See-project-members = Ver membros do projeto @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identificador *[other] { $count } Identificadores } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBRO diff --git a/src/i18n/l10n/pt-BR.ftl.json b/src/i18n/l10n/pt-BR.ftl.json index 1251d0fe1..ac2a85895 100644 --- a/src/i18n/l10n/pt-BR.ftl.json +++ b/src/i18n/l10n/pt-BR.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "alguns direitos reservados (CC BY-SA)", "August": "Agosto", "BACK-TO-LOGIN": "VOLTAR PARA LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Importar em massa", "By-exiting-changes-not-saved": "Ao sair, as alterações de sua observação não serão salvas", "By-exiting-observation-not-saved": "Ao sair, sua observação não será salva.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Pesquisar sugestões sem localização", "SEARCH-TAXA": "BUSCAR TAXA", "SEARCH-USERS": "PROCURAR USUÁRIOS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Ver observações deste usuário em Explorar", "See-observations-of-this-taxon-in-explore": "Ver observações deste táxon em explorar", "See-project-members": "Ver membros do projeto", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identificação\n *[other] { $count } Identificações\n}", "x-identifications": "{ $count ->\n [one] { $count } identificação\n *[other] { $count } identificações\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identificador\n *[other] { $count } Identificadores\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBRO\n *[other] { $count } MEMBROS\n}", "X-Observations": "{ $count ->\n [one] 1 Observação\n *[other] { $count } Observações\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVAÇÃO\n *[other] OBSERVAÇÕES\n}", diff --git a/src/i18n/l10n/pt.ftl b/src/i18n/l10n/pt.ftl index bd0468448..215232944 100644 --- a/src/i18n/l10n/pt.ftl +++ b/src/i18n/l10n/pt.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = alguns direitos reservados (CC BY-ND) attribution-cc-by-sa = alguns direitos reservados (CC BY-SA) August = agosto BACK-TO-LOGIN = VOLTAR AO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Importador a granel By-exiting-changes-not-saved = Ao sair, as alterações à sua observação não serão guardadas. By-exiting-observation-not-saved = Ao sair, sua observação não será salva. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Sugestões de pesquisa com localização Search-suggestions-without-location = Sugestões de pesquisa sem localização SEARCH-TAXA = TAXA DE PESQUISA SEARCH-USERS = PESQUISAR UTILIZADORES +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Ver observações deste utilizador em Explorar See-observations-of-this-taxon-in-explore = Ver observações deste táxon em explorar See-project-members = Ver membros do projeto @@ -966,6 +969,11 @@ X-Identifiers = [um] { $count } Identificador *[outros] { $count } Identificadores } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/pt.ftl.json b/src/i18n/l10n/pt.ftl.json index aeb2070fb..32b57e561 100644 --- a/src/i18n/l10n/pt.ftl.json +++ b/src/i18n/l10n/pt.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "alguns direitos reservados (CC BY-SA)", "August": "agosto", "BACK-TO-LOGIN": "VOLTAR AO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Importador a granel", "By-exiting-changes-not-saved": "Ao sair, as alterações à sua observação não serão guardadas.", "By-exiting-observation-not-saved": "Ao sair, sua observação não será salva.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Sugestões de pesquisa sem localização", "SEARCH-TAXA": "TAXA DE PESQUISA", "SEARCH-USERS": "PESQUISAR UTILIZADORES", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Ver observações deste utilizador em Explorar", "See-observations-of-this-taxon-in-explore": "Ver observações deste táxon em explorar", "See-project-members": "Ver membros do projeto", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [um] { $count } Identificação\n *[outros] { $count } Identificações\n}", "x-identifications": "{ $count ->\n [um] { $count } identificação\n *[outros] { $count } identificações\n}", "X-Identifiers": "{ $count ->\n [um] { $count } Identificador\n *[outros] { $count } Identificadores\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [um] 1 Observação\n *[outros] { $count } Observações\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [um] OBSERVAÇÃO\n *[outros] OBSERVAÇÕES\n}", diff --git a/src/i18n/l10n/ro.ftl b/src/i18n/l10n/ro.ftl index 60050a150..67c5a5403 100644 --- a/src/i18n/l10n/ro.ftl +++ b/src/i18n/l10n/ro.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/ro.ftl.json b/src/i18n/l10n/ro.ftl.json index fc021a6a8..2e2178261 100644 --- a/src/i18n/l10n/ro.ftl.json +++ b/src/i18n/l10n/ro.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/ru.ftl b/src/i18n/l10n/ru.ftl index 966ce6caa..fb0851d0b 100644 --- a/src/i18n/l10n/ru.ftl +++ b/src/i18n/l10n/ru.ftl @@ -83,6 +83,8 @@ attribution-cc-by-nd = некоторые права защищены (CC BY-ND) attribution-cc-by-sa = некоторые права защищены (CC BY-SA) August = Август BACK-TO-LOGIN = ВЕРНУТЬСЯ КО ВХОДУ +Blog = Blog +BLOG = BLOG Bulk-importer = Оптовый импорт By-exiting-changes-not-saved = При выходе изменения в вашем наблюдении не сохраняются. By-exiting-observation-not-saved = При выходе из игры ваше наблюдение не будет сохранено. @@ -747,6 +749,7 @@ Search-suggestions-with-location = Варианты поиска с указан Search-suggestions-without-location = Варианты поиска без местоположения SEARCH-TAXA = ПОИСК ТАКСОНОВ SEARCH-USERS = ПОИСК ПОЛЬЗОВАТЕЛЕЙ +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Смотрите наблюдения этого пользователя в разделе «Обзор» See-observations-of-this-taxon-in-explore = Смотрите наблюдения за этим таксоном в исследовании See-project-members = Посмотреть список участников проекта @@ -969,6 +972,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } УЧАСТНИК diff --git a/src/i18n/l10n/ru.ftl.json b/src/i18n/l10n/ru.ftl.json index dccff6007..5f2ad4393 100644 --- a/src/i18n/l10n/ru.ftl.json +++ b/src/i18n/l10n/ru.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "некоторые права защищены (CC BY-SA)", "August": "Август", "BACK-TO-LOGIN": "ВЕРНУТЬСЯ КО ВХОДУ", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Оптовый импорт", "By-exiting-changes-not-saved": "При выходе изменения в вашем наблюдении не сохраняются.", "By-exiting-observation-not-saved": "При выходе из игры ваше наблюдение не будет сохранено.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Варианты поиска без местоположения", "SEARCH-TAXA": "ПОИСК ТАКСОНОВ", "SEARCH-USERS": "ПОИСК ПОЛЬЗОВАТЕЛЕЙ", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Смотрите наблюдения этого пользователя в разделе «Обзор»", "See-observations-of-this-taxon-in-explore": "Смотрите наблюдения за этим таксоном в исследовании", "See-project-members": "Посмотреть список участников проекта", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } УЧАСТНИК\n *[other] { $count } УЧАСТНИКИ\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] НАБЛЮДЕНИЕ\n *[other] НАБЛЮДЕНИЯ\n}", diff --git a/src/i18n/l10n/sat.ftl b/src/i18n/l10n/sat.ftl index a295da86c..5606e2434 100644 --- a/src/i18n/l10n/sat.ftl +++ b/src/i18n/l10n/sat.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/sat.ftl.json b/src/i18n/l10n/sat.ftl.json index c0cf21d9d..1844d9ed3 100644 --- a/src/i18n/l10n/sat.ftl.json +++ b/src/i18n/l10n/sat.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/si.ftl b/src/i18n/l10n/si.ftl index a7aa6d45d..a44a54b75 100644 --- a/src/i18n/l10n/si.ftl +++ b/src/i18n/l10n/si.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/si.ftl.json b/src/i18n/l10n/si.ftl.json index c3a4abfce..a50892fd0 100644 --- a/src/i18n/l10n/si.ftl.json +++ b/src/i18n/l10n/si.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/sk.ftl b/src/i18n/l10n/sk.ftl index 811fb1c5e..67df2f0ea 100644 --- a/src/i18n/l10n/sk.ftl +++ b/src/i18n/l10n/sk.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = niektoré vyhradené práva (CC BY-ND) attribution-cc-by-sa = niektoré vyhradené práva (CC BY-SA) August = August BACK-TO-LOGIN = SPÄŤ NA PRIHLÁSENIE +Blog = Blog +BLOG = BLOG Bulk-importer = Dávkové nahrávanie By-exiting-changes-not-saved = Po ukončení sa zmeny vášho pozorovania neuložia. By-exiting-observation-not-saved = Ukončením nebude vaše pozorovanie uložené. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Hľadať návrhy s polohou Search-suggestions-without-location = Hľadať návrhy bez polohy SEARCH-TAXA = HĽADAŤ TAXON SEARCH-USERS = HĽADAŤ POUŽÍVATEĽA +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Zobraziť pozorovanie tohto používateľa v prieskume See-observations-of-this-taxon-in-explore = Zobraziť pozorovanie tohto taxónu pri prieskume See-project-members = Zobraziť členov projektu @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } identifikátor *[other] { $count } identifikátorov } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } ČLEN diff --git a/src/i18n/l10n/sk.ftl.json b/src/i18n/l10n/sk.ftl.json index aec9f0202..700324c0a 100644 --- a/src/i18n/l10n/sk.ftl.json +++ b/src/i18n/l10n/sk.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "niektoré vyhradené práva (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "SPÄŤ NA PRIHLÁSENIE", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Dávkové nahrávanie", "By-exiting-changes-not-saved": "Po ukončení sa zmeny vášho pozorovania neuložia.", "By-exiting-observation-not-saved": "Ukončením nebude vaše pozorovanie uložené.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Hľadať návrhy bez polohy", "SEARCH-TAXA": "HĽADAŤ TAXON", "SEARCH-USERS": "HĽADAŤ POUŽÍVATEĽA", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Zobraziť pozorovanie tohto používateľa v prieskume", "See-observations-of-this-taxon-in-explore": "Zobraziť pozorovanie tohto taxónu pri prieskume", "See-project-members": "Zobraziť členov projektu", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } identifikácia\n *[other] { $count } identifikácií\n}", "x-identifications": "{ $count ->\n [one] { $count } identifikácia\n *[other] { $count } identifikácií\n}", "X-Identifiers": "{ $count ->\n [one] { $count } identifikátor\n *[other] { $count } identifikátorov\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } ČLEN\n *[other] { $count } ČLENOV\n}", "X-Observations": "{ $count ->\n [one] 1 pozorovanie\n *[other] { $count } pozorovaní\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] POZOROVANIE\n *[other] POZOROVANÍ\n}", diff --git a/src/i18n/l10n/sl.ftl b/src/i18n/l10n/sl.ftl index 39f2f0782..69802cb44 100644 --- a/src/i18n/l10n/sl.ftl +++ b/src/i18n/l10n/sl.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Avgust BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/sl.ftl.json b/src/i18n/l10n/sl.ftl.json index 9d665991c..fe7436ad7 100644 --- a/src/i18n/l10n/sl.ftl.json +++ b/src/i18n/l10n/sl.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Avgust", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/sq.ftl b/src/i18n/l10n/sq.ftl index 2c87f4ffa..d5e0565c8 100644 --- a/src/i18n/l10n/sq.ftl +++ b/src/i18n/l10n/sq.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Gusht BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/sq.ftl.json b/src/i18n/l10n/sq.ftl.json index 281a34c45..733df25cc 100644 --- a/src/i18n/l10n/sq.ftl.json +++ b/src/i18n/l10n/sq.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Gusht", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/sr.ftl b/src/i18n/l10n/sr.ftl index 8bb796cee..6d9c26575 100644 --- a/src/i18n/l10n/sr.ftl +++ b/src/i18n/l10n/sr.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = Avgust BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/sr.ftl.json b/src/i18n/l10n/sr.ftl.json index f4b9013d9..e183b82ee 100644 --- a/src/i18n/l10n/sr.ftl.json +++ b/src/i18n/l10n/sr.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "Avgust", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/sv.ftl b/src/i18n/l10n/sv.ftl index f3435c4bc..22f9a52c0 100644 --- a/src/i18n/l10n/sv.ftl +++ b/src/i18n/l10n/sv.ftl @@ -86,6 +86,8 @@ attribution-cc-by-nd = vissa rättigheter förbehållna (CC BY-ND) attribution-cc-by-sa = vissa rättigheter förbehållna (CC BY-SA) August = augusti BACK-TO-LOGIN = TILLBAKA TILL INLOGGNING +Blog = Blog +BLOG = BLOG Bulk-importer = Bulkimportering By-exiting-changes-not-saved = Genom att avsluta kommer ändringar av ditt fynd inte att sparas. By-exiting-observation-not-saved = Genom att avsluta kommer ditt fynd inte att sparas. @@ -750,6 +752,7 @@ Search-suggestions-with-location = Sök förslag med plats Search-suggestions-without-location = Sök förslag utan plats SEARCH-TAXA = SÖK TAXA SEARCH-USERS = SÖK ANVÄNDARE +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Se fynd av den här användaren i Utforska See-observations-of-this-taxon-in-explore = Se fynd av detta taxon i utforska See-project-members = Se projektmedlemmar @@ -972,6 +975,11 @@ X-Identifiers = [one] { $count } bestämmare *[other] { $count } bestämmare } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEDLEM diff --git a/src/i18n/l10n/sv.ftl.json b/src/i18n/l10n/sv.ftl.json index 348467cd3..96a9ba92e 100644 --- a/src/i18n/l10n/sv.ftl.json +++ b/src/i18n/l10n/sv.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "vissa rättigheter förbehållna (CC BY-SA)", "August": "augusti", "BACK-TO-LOGIN": "TILLBAKA TILL INLOGGNING", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulkimportering", "By-exiting-changes-not-saved": "Genom att avsluta kommer ändringar av ditt fynd inte att sparas.", "By-exiting-observation-not-saved": "Genom att avsluta kommer ditt fynd inte att sparas.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Sök förslag utan plats", "SEARCH-TAXA": "SÖK TAXA", "SEARCH-USERS": "SÖK ANVÄNDARE", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Se fynd av den här användaren i Utforska", "See-observations-of-this-taxon-in-explore": "Se fynd av detta taxon i utforska", "See-project-members": "Se projektmedlemmar", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } bestämning\n *[other] { $count } bestämningar\n}", "x-identifications": "{ $count ->\n [one] { $count } bestämning\n *[other] { $count } bestämningar\n}", "X-Identifiers": "{ $count ->\n [one] { $count } bestämmare\n *[other] { $count } bestämmare\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEDLEM\n *[other] { $count } MEDLEMMAR\n}", "X-Observations": "{ $count ->\n [one] 1 Fynd\n *[other] { $count } Fynd\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] FYND\n *[other] FYND\n}", diff --git a/src/i18n/l10n/sw.ftl b/src/i18n/l10n/sw.ftl index d39ab7ac1..181ff9ba3 100644 --- a/src/i18n/l10n/sw.ftl +++ b/src/i18n/l10n/sw.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/sw.ftl.json b/src/i18n/l10n/sw.ftl.json index b7885009b..ba6178774 100644 --- a/src/i18n/l10n/sw.ftl.json +++ b/src/i18n/l10n/sw.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/ta.ftl b/src/i18n/l10n/ta.ftl index 33fc97951..c98abe95a 100644 --- a/src/i18n/l10n/ta.ftl +++ b/src/i18n/l10n/ta.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/ta.ftl.json b/src/i18n/l10n/ta.ftl.json index 89ec10821..9b092a1ae 100644 --- a/src/i18n/l10n/ta.ftl.json +++ b/src/i18n/l10n/ta.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/te.ftl b/src/i18n/l10n/te.ftl index 9f3d2e3ca..01bfab576 100644 --- a/src/i18n/l10n/te.ftl +++ b/src/i18n/l10n/te.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = ఆగస్ట్ BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/te.ftl.json b/src/i18n/l10n/te.ftl.json index b61edec64..06871bb04 100644 --- a/src/i18n/l10n/te.ftl.json +++ b/src/i18n/l10n/te.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "ఆగస్ట్", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/th.ftl b/src/i18n/l10n/th.ftl index 061c44a79..0f8ec2d1b 100644 --- a/src/i18n/l10n/th.ftl +++ b/src/i18n/l10n/th.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = สิงหาคม BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/th.ftl.json b/src/i18n/l10n/th.ftl.json index 0cb28bea6..2b18063ea 100644 --- a/src/i18n/l10n/th.ftl.json +++ b/src/i18n/l10n/th.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "สิงหาคม", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/tl.ftl b/src/i18n/l10n/tl.ftl index 3e4c0ea31..174f2793e 100644 --- a/src/i18n/l10n/tl.ftl +++ b/src/i18n/l10n/tl.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/tl.ftl.json b/src/i18n/l10n/tl.ftl.json index 71f3b0506..6e8ef3a4d 100644 --- a/src/i18n/l10n/tl.ftl.json +++ b/src/i18n/l10n/tl.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/tr.ftl b/src/i18n/l10n/tr.ftl index f65e516ee..d0f74b3c9 100644 --- a/src/i18n/l10n/tr.ftl +++ b/src/i18n/l10n/tr.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = bazı hakları saklıdır (CC BY-ND) attribution-cc-by-sa = bazı hakları saklıdır (CC BY-SA) August = Ağustos BACK-TO-LOGIN = GİRİŞE GERİ DÖN +Blog = Blog +BLOG = BLOG Bulk-importer = Toplu içe aktarma By-exiting-changes-not-saved = Çıktığınızda, gözleminizdeki değişiklikler kaydedilmeyecektir. By-exiting-observation-not-saved = Çıktığınızda, gözleminiz kaydedilmeyecektir. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Konum ile arama önerileri Search-suggestions-without-location = Konumsuz arama önerileri SEARCH-TAXA = TAKSON ARA SEARCH-USERS = KULLANICI ARA +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = Keşfet'te bu kullanıcı tarafından yapılan gözlemlere bak See-observations-of-this-taxon-in-explore = Keşfet'te bu taksonun gözlemlerine bak See-project-members = Proje üyelerine bak @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Tanımlayıcı *[other] { $count } Tanımlayıcı } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } ÜYE diff --git a/src/i18n/l10n/tr.ftl.json b/src/i18n/l10n/tr.ftl.json index 6f411b643..4adb83066 100644 --- a/src/i18n/l10n/tr.ftl.json +++ b/src/i18n/l10n/tr.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "bazı hakları saklıdır (CC BY-SA)", "August": "Ağustos", "BACK-TO-LOGIN": "GİRİŞE GERİ DÖN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Toplu içe aktarma", "By-exiting-changes-not-saved": "Çıktığınızda, gözleminizdeki değişiklikler kaydedilmeyecektir.", "By-exiting-observation-not-saved": "Çıktığınızda, gözleminiz kaydedilmeyecektir.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Konumsuz arama önerileri", "SEARCH-TAXA": "TAKSON ARA", "SEARCH-USERS": "KULLANICI ARA", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "Keşfet'te bu kullanıcı tarafından yapılan gözlemlere bak", "See-observations-of-this-taxon-in-explore": "Keşfet'te bu taksonun gözlemlerine bak", "See-project-members": "Proje üyelerine bak", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Tanımlama\n *[other] { $count } Tanımlama\n}", "x-identifications": "{ $count ->\n [one] { $count } tanımlama\n *[other] { $count } tanımlama\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Tanımlayıcı\n *[other] { $count } Tanımlayıcı\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } ÜYE\n *[other] { $count } ÜYE\n}", "X-Observations": "{ $count ->\n [one] 1 Gözlem\n *[other] { $count } Gözlem\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] GÖZLEM\n *[other] GÖZLEM\n}", diff --git a/src/i18n/l10n/uk.ftl b/src/i18n/l10n/uk.ftl index d2c8737cf..ba3bf4b6a 100644 --- a/src/i18n/l10n/uk.ftl +++ b/src/i18n/l10n/uk.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = деякі права захищені (CC BY-ND) attribution-cc-by-sa = деякі права захищені (CC BY-SA) August = серпня BACK-TO-LOGIN = ПОВЕРНУТИСЯ ДО ВХОДУ +Blog = Blog +BLOG = BLOG Bulk-importer = Масовий імпортер By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/uk.ftl.json b/src/i18n/l10n/uk.ftl.json index a149f2acf..eddfbe441 100644 --- a/src/i18n/l10n/uk.ftl.json +++ b/src/i18n/l10n/uk.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "деякі права захищені (CC BY-SA)", "August": "серпня", "BACK-TO-LOGIN": "ПОВЕРНУТИСЯ ДО ВХОДУ", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Масовий імпортер", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/vi.ftl b/src/i18n/l10n/vi.ftl index c1fbb79d8..56e4edfaa 100644 --- a/src/i18n/l10n/vi.ftl +++ b/src/i18n/l10n/vi.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/vi.ftl.json b/src/i18n/l10n/vi.ftl.json index 783c09308..aa05be3cc 100644 --- a/src/i18n/l10n/vi.ftl.json +++ b/src/i18n/l10n/vi.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/zh-CN.ftl b/src/i18n/l10n/zh-CN.ftl index 6a0cebaca..8f09e5b93 100644 --- a/src/i18n/l10n/zh-CN.ftl +++ b/src/i18n/l10n/zh-CN.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = 保留部分权利(CC BY-ND) attribution-cc-by-sa = 保留部分权利(CC BY-SA) August = 八月 BACK-TO-LOGIN = 返回登录 +Blog = Blog +BLOG = BLOG Bulk-importer = 批量导入器 By-exiting-changes-not-saved = 退出后,您观察记录的更改将不会被保存。 By-exiting-observation-not-saved = 退出将不会保存您的观察。 @@ -744,6 +746,7 @@ Search-suggestions-with-location = 搜索基于位置的建议 Search-suggestions-without-location = 搜索不基于位置的建议 SEARCH-TAXA = 搜索分类群 SEARCH-USERS = 搜索用户 +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = 在探索中查看此用户的观察 See-observations-of-this-taxon-in-explore = 在探索中查看此分类单元的观察 See-project-members = 查看项目成员 @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count }个鉴定者 *[other] { $count }个鉴定者 } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count }名成员 diff --git a/src/i18n/l10n/zh-CN.ftl.json b/src/i18n/l10n/zh-CN.ftl.json index 1f24b1d7d..b4c26f73d 100644 --- a/src/i18n/l10n/zh-CN.ftl.json +++ b/src/i18n/l10n/zh-CN.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "保留部分权利(CC BY-SA)", "August": "八月", "BACK-TO-LOGIN": "返回登录", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "批量导入器", "By-exiting-changes-not-saved": "退出后,您观察记录的更改将不会被保存。", "By-exiting-observation-not-saved": "退出将不会保存您的观察。", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "搜索不基于位置的建议", "SEARCH-TAXA": "搜索分类群", "SEARCH-USERS": "搜索用户", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "在探索中查看此用户的观察", "See-observations-of-this-taxon-in-explore": "在探索中查看此分类单元的观察", "See-project-members": "查看项目成员", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count }个鉴定\n *[other] { $count }个鉴定\n}", "x-identifications": "{ $count ->\n [one] { $count }个鉴定\n *[other] { $count }个鉴定\n}", "X-Identifiers": "{ $count ->\n [one] { $count }个鉴定者\n *[other] { $count }个鉴定者\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count }名成员\n *[other] { $count }名成员\n}", "X-Observations": "{ $count ->\n [one] 1个观察\n *[other] { $count }个观察\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] 个观察\n *[other] 个观察\n}", diff --git a/src/i18n/l10n/zh-HK.ftl b/src/i18n/l10n/zh-HK.ftl index 2ab793700..11089d945 100644 --- a/src/i18n/l10n/zh-HK.ftl +++ b/src/i18n/l10n/zh-HK.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = some rights reserved (CC BY-ND) attribution-cc-by-sa = some rights reserved (CC BY-SA) August = August BACK-TO-LOGIN = BACK TO LOGIN +Blog = Blog +BLOG = BLOG Bulk-importer = Bulk importer By-exiting-changes-not-saved = By exiting, changes to your observation will not be saved. By-exiting-observation-not-saved = By exiting, your observation will not be saved. @@ -744,6 +746,7 @@ Search-suggestions-with-location = Search suggestions with location Search-suggestions-without-location = Search suggestions without location SEARCH-TAXA = SEARCH TAXA SEARCH-USERS = SEARCH USERS +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = See observations by this user in Explore See-observations-of-this-taxon-in-explore = See observations of this taxon in explore See-project-members = See project members @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } Identifier *[other] { $count } Identifiers } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count } MEMBER diff --git a/src/i18n/l10n/zh-HK.ftl.json b/src/i18n/l10n/zh-HK.ftl.json index 165aaf170..bd70c8c3b 100644 --- a/src/i18n/l10n/zh-HK.ftl.json +++ b/src/i18n/l10n/zh-HK.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "some rights reserved (CC BY-SA)", "August": "August", "BACK-TO-LOGIN": "BACK TO LOGIN", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "Bulk importer", "By-exiting-changes-not-saved": "By exiting, changes to your observation will not be saved.", "By-exiting-observation-not-saved": "By exiting, your observation will not be saved.", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "Search suggestions without location", "SEARCH-TAXA": "SEARCH TAXA", "SEARCH-USERS": "SEARCH USERS", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "See observations by this user in Explore", "See-observations-of-this-taxon-in-explore": "See observations of this taxon in explore", "See-project-members": "See project members", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } Identification\n *[other] { $count } Identifications\n}", "x-identifications": "{ $count ->\n [one] { $count } identification\n *[other] { $count } identifications\n}", "X-Identifiers": "{ $count ->\n [one] { $count } Identifier\n *[other] { $count } Identifiers\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count } MEMBER\n *[other] { $count } MEMBERS\n}", "X-Observations": "{ $count ->\n [one] 1 Observation\n *[other] { $count } Observations\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] OBSERVATION\n *[other] OBSERVATIONS\n}", diff --git a/src/i18n/l10n/zh-TW.ftl b/src/i18n/l10n/zh-TW.ftl index ab65b7af8..69d694c55 100644 --- a/src/i18n/l10n/zh-TW.ftl +++ b/src/i18n/l10n/zh-TW.ftl @@ -80,6 +80,8 @@ attribution-cc-by-nd = 保留部分權利 (CC BY-ND) attribution-cc-by-sa = 保留部分權利 (CC BY-SA) August = 8月 BACK-TO-LOGIN = 回到登入螢幕 +Blog = Blog +BLOG = BLOG Bulk-importer = 批次匯入 By-exiting-changes-not-saved = 現在離開的話,將不會儲存您觀察紀錄的修改。 By-exiting-observation-not-saved = 現在離開的話,不會儲存您的觀察紀錄。 @@ -744,6 +746,7 @@ Search-suggestions-with-location = 包含位置的搜尋建議 Search-suggestions-without-location = 不包含位置的搜尋建議 SEARCH-TAXA = 搜尋分類群 SEARCH-USERS = 搜尋使用者 +See-journal-posts = See journal posts See-observations-by-this-user-in-Explore = 在探索中查看此使用者的觀察紀錄 See-observations-of-this-taxon-in-explore = 在探索中查看此分類群的觀察紀錄 See-project-members = 查看專案成員 @@ -966,6 +969,11 @@ X-Identifiers = [one] { $count } 位鑑定者 *[other] { $count } 位鑑定者 } +X-JOURNAL_POSTS = + { $count -> + [one] { $count } JOURNAL POST + *[other] { $count } JOURNAL POSTS + } X-MEMBERS = { $count -> [one] { $count }名成員 diff --git a/src/i18n/l10n/zh-TW.ftl.json b/src/i18n/l10n/zh-TW.ftl.json index 8c55add55..4ffb1fa57 100644 --- a/src/i18n/l10n/zh-TW.ftl.json +++ b/src/i18n/l10n/zh-TW.ftl.json @@ -74,6 +74,8 @@ "attribution-cc-by-sa": "保留部分權利 (CC BY-SA)", "August": "8月", "BACK-TO-LOGIN": "回到登入螢幕", + "Blog": "Blog", + "BLOG": "BLOG", "Bulk-importer": "批次匯入", "By-exiting-changes-not-saved": "現在離開的話,將不會儲存您觀察紀錄的修改。", "By-exiting-observation-not-saved": "現在離開的話,不會儲存您的觀察紀錄。", @@ -694,6 +696,7 @@ "Search-suggestions-without-location": "不包含位置的搜尋建議", "SEARCH-TAXA": "搜尋分類群", "SEARCH-USERS": "搜尋使用者", + "See-journal-posts": "See journal posts", "See-observations-by-this-user-in-Explore": "在探索中查看此使用者的觀察紀錄", "See-observations-of-this-taxon-in-explore": "在探索中查看此分類群的觀察紀錄", "See-project-members": "查看專案成員", @@ -880,6 +883,7 @@ "X-Identifications": "{ $count ->\n [one] { $count } 筆鑑定\n *[other] { $count } 筆鑑定\n}", "x-identifications": "{ $count ->\n [one] { $count } 筆鑑定\n *[other] { $count } 筆鑑定\n}", "X-Identifiers": "{ $count ->\n [one] { $count } 位鑑定者\n *[other] { $count } 位鑑定者\n}", + "X-JOURNAL_POSTS": "{ $count ->\n [one] { $count } JOURNAL POST\n *[other] { $count } JOURNAL POSTS\n}", "X-MEMBERS": "{ $count ->\n [one] { $count }名成員\n *[other] { $count }名成員\n}", "X-Observations": "{ $count ->\n [one] 一筆觀察紀錄\n *[other] { $count } 筆觀察紀錄\n}", "X-OBSERVATIONS--below-number": "{ $count ->\n [one] 筆觀察紀錄\n *[other] 筆觀察紀錄\n}", From 2c282cf54c23e796464f42449d02334bc505abd5 Mon Sep 17 00:00:00 2001 From: Johannes Klein Date: Mon, 18 May 2026 15:47:01 +0200 Subject: [PATCH 014/224] Only send id and login via route params (#3626) We do not need anything else from `user` on the other side. --- src/components/UserProfile/FollowersList.tsx | 15 +++++++-------- src/components/UserProfile/FollowingList.tsx | 15 +++++++-------- src/components/UserProfile/UserProfile.tsx | 10 ++++++++-- src/navigation/types.ts | 8 ++++---- 4 files changed, 26 insertions(+), 22 deletions(-) diff --git a/src/components/UserProfile/FollowersList.tsx b/src/components/UserProfile/FollowersList.tsx index 2b8ae9adc..9b51a2b6e 100644 --- a/src/components/UserProfile/FollowersList.tsx +++ b/src/components/UserProfile/FollowersList.tsx @@ -10,6 +10,7 @@ import { } from "components/SharedComponents"; import { View } from "components/styledComponents"; import UserList from "components/UserList/UserList"; +import type { TabStackScreenProps } from "navigation/types"; import React, { useEffect, useMemo, @@ -24,14 +25,12 @@ import { const FollowersList = ( ) => { const { isConnected } = useNetInfo( ); const currentUser = useCurrentUser( ); - const navigation = useNavigation( ); - const { params } = useRoute( ); - const { user } = params; + const navigation = useNavigation["navigation"]>( ); + const { params } = useRoute["route"]>( ); + const { userId, userLogin } = params; const { t } = useTranslation( ); - const userId = user?.id; - - const usersFollowingQueryKey = ["fetchUsers", "followers", user?.login]; + const usersFollowingQueryKey = ["fetchUsers", "followers", userLogin]; const { data: followers, @@ -52,11 +51,11 @@ const FollowersList = ( ) => { ); const followersHeaderOptions = useMemo( ( ) => ( { - headerTitle: user?.login, + headerTitle: userLogin, headerSubtitle: t( "X-FOLLOWERS", { count: totalResults, } ), - } ), [totalResults, t, user] ); + } ), [totalResults, t, userLogin] ); useEffect( ( ) => { if ( totalResults !== undefined && totalResults !== null ) { diff --git a/src/components/UserProfile/FollowingList.tsx b/src/components/UserProfile/FollowingList.tsx index 5a33d2b08..c069df299 100644 --- a/src/components/UserProfile/FollowingList.tsx +++ b/src/components/UserProfile/FollowingList.tsx @@ -10,6 +10,7 @@ import { } from "components/SharedComponents"; import { View } from "components/styledComponents"; import UserList from "components/UserList/UserList"; +import type { TabStackScreenProps } from "navigation/types"; import React, { useEffect, useMemo, @@ -24,14 +25,12 @@ import { const FollowingList = ( ) => { const { isConnected } = useNetInfo( ); const currentUser = useCurrentUser( ); - const navigation = useNavigation( ); - const { params } = useRoute( ); - const { user } = params; + const navigation = useNavigation["navigation"]>( ); + const { params } = useRoute["route"]>( ); + const { userId, userLogin } = params; const { t } = useTranslation( ); - const userId = user?.id; - - const usersFollowedByQueryKey = ["fetchUsers", "following", user?.login]; + const usersFollowedByQueryKey = ["fetchUsers", "following", userLogin]; const { data: following, @@ -52,11 +51,11 @@ const FollowingList = ( ) => { ); const followingHeaderOptions = useMemo( ( ) => ( { - headerTitle: user?.login, + headerTitle: userLogin, headerSubtitle: t( "FOLLOWING-X-PEOPLE", { count: totalResults, } ), - } ), [totalResults, t, user] ); + } ), [totalResults, t, userLogin] ); useEffect( ( ) => { if ( totalResults !== undefined && totalResults !== null ) { diff --git a/src/components/UserProfile/UserProfile.tsx b/src/components/UserProfile/UserProfile.tsx index f21276ada..a456c1654 100644 --- a/src/components/UserProfile/UserProfile.tsx +++ b/src/components/UserProfile/UserProfile.tsx @@ -193,12 +193,18 @@ const UserProfile = ( ) => {