From 7e568500ecacc4333c58882bd6595379a54d4ef9 Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Tue, 15 Oct 2024 13:45:53 +0300 Subject: [PATCH 01/47] Change about box to only show CTAs and participation avatars --- .../containers/ProjectsShowPage/messages.ts | 32 -- .../header/ProjectInfoSideBar/index.tsx | 422 +----------------- 2 files changed, 15 insertions(+), 439 deletions(-) diff --git a/front/app/containers/ProjectsShowPage/messages.ts b/front/app/containers/ProjectsShowPage/messages.ts index 2b34552316cc..ab2c0b872da5 100644 --- a/front/app/containers/ProjectsShowPage/messages.ts +++ b/front/app/containers/ProjectsShowPage/messages.ts @@ -159,10 +159,6 @@ export default defineMessages({ defaultMessage: '{projectName} | from the participation platform of {orgName}', }, - about: { - id: 'app.containers.Projects.about', - defaultMessage: 'About', - }, xIdeas: { id: 'app.containers.Projects.xIdeas', defaultMessage: @@ -257,26 +253,10 @@ export default defineMessages({ id: 'app.containers.Projects.oneSurvey', defaultMessage: '1 survey', }, - oneSurveyInCurrentPhase: { - id: 'app.containers.Projects.oneSurveyInCurrentPhase', - defaultMessage: '1 survey in the current phase', - }, oneDocToReview: { id: 'app.containers.Projects.oneDocToReview', defaultMessage: '1 document to review', }, - oneDocToReviewInCurrentPhase: { - id: 'app.containers.Projects.oneDocToReviewInCurrentPhase', - defaultMessage: '1 document to review in the current phase', - }, - poll: { - id: 'app.containers.Projects.poll', - defaultMessage: '1 poll', - }, - pollInCurrentPhase: { - id: 'app.containers.Projects.pollInCurrentPhase', - defaultMessage: '1 poll in the current phase', - }, budget: { id: 'app.containers.Projects.budget', defaultMessage: '{amount} budget', @@ -373,10 +353,6 @@ export default defineMessages({ id: 'app.containers.Projects.readLess', defaultMessage: 'Read less', }, - xEvents: { - id: 'app.containers.Projects.xEvents', - defaultMessage: '{eventsCount, plural, one {# event} other {# events}}', - }, seeTheIdeas: { id: 'app.containers.Projects.seeTheIdeas', defaultMessage: 'See the ideas', @@ -439,14 +415,6 @@ export default defineMessages({ id: 'app.containers.Projects.participants', defaultMessage: 'Participants', }, - surveySubmissionsTooltip: { - id: 'app.containers.Projects.surveySubmissionsTooltip3', - defaultMessage: 'External survey submissions are not counted.', - }, - surveySubmissions: { - id: 'app.containers.Projects.surveySubmissions', - defaultMessage: 'survey submissions', - }, noEndDate: { id: 'app.containers.Projects.noEndDate', defaultMessage: 'No end date', diff --git a/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx b/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx index d67f45d76635..02eda8a2658b 100644 --- a/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx +++ b/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx @@ -1,120 +1,16 @@ -import React, { - memo, - useCallback, - useEffect, - useState, - FormEvent, -} from 'react'; +import React, { memo } from 'react'; -import { - Box, - Icon, - IconTooltip, - fontSizes, - colors, - isRtl, - media, - Tooltip, -} from '@citizenlab/cl2-component-library'; -import moment from 'moment'; +import { Box, media } from '@citizenlab/cl2-component-library'; import styled, { useTheme } from 'styled-components'; -import useEvents from 'api/events/useEvents'; import useAuthUser from 'api/me/useAuthUser'; -import { IPhaseData } from 'api/phases/types'; -import usePhases from 'api/phases/usePhases'; -import { getCurrentPhase, getLastPhase } from 'api/phases/utils'; import useProjectById from 'api/projects/useProjectById'; -import useFormSubmissionCount from 'api/submission_count/useSubmissionCount'; - -import messages from 'containers/ProjectsShowPage/messages'; -import setPhaseUrl from 'containers/ProjectsShowPage/timeline/setPhaseURL'; import AvatarBubbles from 'components/AvatarBubbles'; -import { FormattedMessage, useIntl } from 'utils/cl-intl'; -import Link from 'utils/cl-router/Link'; -import FormattedBudget from 'utils/currency/FormattedBudget'; -import { pastPresentOrFuture } from 'utils/dateUtils'; -import { isNilOrError } from 'utils/helperUtils'; -import { getInputTermMessage } from 'utils/i18n'; import { isAdmin } from 'utils/permissions/roles'; -import { scrollToElement } from 'utils/scroll'; import ProjectActionButtons from '../ProjectActionButtons'; -import ProjectSharingModal from '../ProjectSharingModal'; -import { hasEmbeddedSurvey, hasNativeSurvey } from '../utils'; - -const Container = styled.div``; - -const About = styled.div` - padding: 20px; - padding-top: 0px; - padding-bottom: 5px; - border: solid 1px #ccc; - border-radius: ${(props) => props.theme.borderRadius}; -`; - -const Title = styled.h2` - color: ${(props) => props.theme.colors.tenantText}; - font-size: ${fontSizes.xl}px; - line-height: normal; - font-weight: 500; - margin: 0; - margin-bottom: 20px; - padding: 0; - padding-top: 12px; -`; - -const List = styled.ul` - margin: 0; - padding: 0; - list-style: none; -`; - -const ListItem = styled.li` - color: ${colors.textSecondary}; - font-size: ${fontSizes.base}px; - line-height: normal; - font-weight: 400; - display: flex; - align-items: center; - list-style: none; - padding: 0; - margin: 0; - margin-top: 18px; - margin-bottom: 18px; -`; - -const ListItemIcon = styled(Icon)` - flex: 0 0 24px; - fill: ${colors.textSecondary}; - margin-right: 14px; - - ${isRtl` - margin-right: 0; - margin-left: 14px; - `} -`; - -const ListItemButton = styled.button` - color: ${colors.textSecondary}; - font-size: ${fontSizes.base}px; - line-height: normal; - font-weight: 400; - text-decoration: underline; - text-align: left; - padding: 0; - margin: 0; - background: transparent; - cursor: pointer; - appearance: none; - - &:hover { - color: #000; - text-decoration: underline; - } -`; const StyledProjectActionButtons = styled(ProjectActionButtons)` margin-top: 20px; @@ -134,75 +30,9 @@ const ProjectInfoSideBar = memo( ({ projectId, className, hideParticipationNumbers = false }) => { const { data: authUser } = useAuthUser(); const { data: project } = useProjectById(projectId, !isAdmin(authUser)); - const { data: phases } = usePhases(projectId); - const { data: events } = useEvents({ - projectIds: [projectId], - sort: '-start_at', - }); const theme = useTheme(); - const { formatMessage } = useIntl(); - const [currentPhase, setCurrentPhase] = useState(); - const [shareModalOpened, setShareModalOpened] = useState(false); - - useEffect(() => { - setCurrentPhase( - getCurrentPhase(phases?.data) || getLastPhase(phases?.data) - ); - }, [phases]); - - const phaseId = currentPhase?.id; - const { data: surveySubmissionCount } = useFormSubmissionCount({ phaseId }); - - const scrollTo = useCallback( - (id: string, shouldSelectCurrentPhase = true) => - (event: FormEvent) => { - event.preventDefault(); - if (!phases || !project) return; - - if (currentPhase && shouldSelectCurrentPhase) { - setPhaseUrl(currentPhase, phases.data, project.data); - } - - setTimeout(() => { - scrollToElement({ id, shouldFocus: true }); - }, 100); - }, - [currentPhase, phases, project] - ); - - const openShareModal = useCallback((event: FormEvent) => { - event.preventDefault(); - setShareModalOpened(true); - }, []); - - const closeShareModal = useCallback(() => { - setShareModalOpened(false); - }, []); - if (project) { - const isProjectArchived = - project.data.attributes.publication_status === 'archived'; - const postingIsEnabled = currentPhase?.attributes.submission_enabled; - const projectParticipantsCount = - project.data.attributes.participants_count; - const maxBudget = currentPhase?.attributes?.voting_max_total || null; - const hasProjectEnded = currentPhase - ? pastPresentOrFuture([ - currentPhase.attributes.start_at, - currentPhase.attributes.end_at, - ]) === 'past' - : false; - - const ideasCount = currentPhase?.attributes.ideas_count; - const currentPhaseParticipationMethod = - currentPhase?.attributes?.participation_method; - const surveyMessage = messages.oneSurveyInCurrentPhase; - const docAnnotationMessage = messages.oneDocToReviewInCurrentPhase; - - const isParticipatoryBudgeting = - currentPhase?.attributes.participation_method === 'voting' && - currentPhase?.attributes.voting_method === 'budgeting'; const avatarIds = project.data.relationships.avatars && project.data.relationships.avatars.data @@ -210,242 +40,20 @@ const ProjectInfoSideBar = memo( : []; return ( - - - - <FormattedMessage {...messages.about} /> - - - {currentPhase && - hasProjectEnded && - pastPresentOrFuture([ - currentPhase.attributes.start_at, - currentPhase.attributes.end_at, - ]) === 'past' && ( - - - - - )} - {!hideParticipationNumbers && ( - - - -
- -
-
- - {isAdmin(authUser) && hasNativeSurvey(phases?.data) && ( - - - - - ), - }} - /> - } - /> - - )} -
- )} - {phases && phases.data.length > 1 && ( - - - - - - - )} - {(currentPhaseParticipationMethod === 'ideation' || - (currentPhase && - hasProjectEnded && - currentPhase?.attributes.participation_method === - 'ideation')) && - typeof ideasCount === 'number' && - ideasCount > 0 && ( - - - {project.data.attributes.ideas_count > 0 ? ( - - {currentPhase && - currentPhaseParticipationMethod === 'ideation' && - !hasProjectEnded && ( - - )} - {currentPhase && - currentPhaseParticipationMethod === 'ideation' && - hasProjectEnded && ( - - )} - - ) : ( - - )} - - )} - {currentPhaseParticipationMethod === 'native_survey' && - surveySubmissionCount && ( - - - - {surveySubmissionCount && - surveySubmissionCount.data.attributes.totalSubmissions} - - - - {hasEmbeddedSurvey(phases?.data) && ( - - - - )} - - - )} - {isParticipatoryBudgeting && maxBudget && ( - - - - - )} - {currentPhaseParticipationMethod === 'survey' && - !isProjectArchived && - !hasProjectEnded && ( - - - - - )} - {currentPhaseParticipationMethod === 'document_annotation' && - !isProjectArchived && - !hasProjectEnded && ( - - - - - )} - {currentPhaseParticipationMethod === 'native_survey' && - postingIsEnabled && - !isProjectArchived && - !hasProjectEnded && ( - - - - - )} - {currentPhaseParticipationMethod === 'poll' && ( - - - - - )} - {!isNilOrError(events) && events.data.length > 0 && ( - - - - - )} - - - - - - - {avatarIds.length > 0 && ( - - - - )} -
-
+ - -
+ {!hideParticipationNumbers && avatarIds.length > 0 && ( + + + + )} + ); } From 6001cdeba2e547e384def261b5a2735c23874829 Mon Sep 17 00:00:00 2001 From: CircleCI Date: Tue, 15 Oct 2024 10:49:47 +0000 Subject: [PATCH 02/47] Translations updated by CI (extract-intl) --- front/app/translations/ar-MA.json | 8 -------- front/app/translations/ar-SA.json | 8 -------- front/app/translations/ca-ES.json | 8 -------- front/app/translations/cy-GB.json | 8 -------- front/app/translations/da-DK.json | 8 -------- front/app/translations/de-DE.json | 8 -------- front/app/translations/el-GR.json | 8 -------- front/app/translations/en-CA.json | 8 -------- front/app/translations/en-GB.json | 8 -------- front/app/translations/en-IE.json | 8 -------- front/app/translations/en.json | 8 -------- front/app/translations/es-CL.json | 8 -------- front/app/translations/es-ES.json | 8 -------- front/app/translations/fi-FI.json | 8 -------- front/app/translations/fr-BE.json | 8 -------- front/app/translations/fr-FR.json | 8 -------- front/app/translations/hr-HR.json | 8 -------- front/app/translations/hu-HU.json | 4 ---- front/app/translations/it-IT.json | 8 -------- front/app/translations/kl-GL.json | 8 -------- front/app/translations/lb-LU.json | 8 -------- front/app/translations/lv-LV.json | 8 -------- front/app/translations/mi.json | 4 ---- front/app/translations/nb-NO.json | 8 -------- front/app/translations/nl-BE.json | 8 -------- front/app/translations/nl-NL.json | 8 -------- front/app/translations/pl-PL.json | 8 -------- front/app/translations/pt-BR.json | 8 -------- front/app/translations/ro-RO.json | 4 ---- front/app/translations/sr-Latn.json | 8 -------- front/app/translations/sr-SP.json | 8 -------- front/app/translations/sv-SE.json | 8 -------- front/app/translations/tr-TR.json | 8 -------- 33 files changed, 252 deletions(-) diff --git a/front/app/translations/ar-MA.json b/front/app/translations/ar-MA.json index 1ef37fe74b0f..f1fa572f23b1 100644 --- a/front/app/translations/ar-MA.json +++ b/front/app/translations/ar-MA.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "نظرة عامة على المراحل", "app.containers.Projects.a11y_titleInputs": "جميع المُدخلات التي تم تقديمها إلى هذا المشروع", "app.containers.Projects.a11y_titleInputsPhase": "جميع المُدخلات التي تم تقديمها إلى هذه المرحلة", - "app.containers.Projects.about": "نبذة حول", "app.containers.Projects.accessRights": "حقوق الوصول", "app.containers.Projects.addedToBasket": "تمت الإضافة إلى سلَّتك", "app.containers.Projects.allocateBudget": "خصّص ميزانيتك", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "لم تتم جدولة أي أحداث قادمة أو جارية حاليًا.", "app.containers.Projects.nothingPosted": "لم يُنشر شيء بعد", "app.containers.Projects.oneDocToReview": "وثيقة واحدة للمراجعة", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "وثيقة واحدة للمراجعة في المرحلة الحالية", "app.containers.Projects.oneSurvey": "مسح واحد", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 مسح في المرحلة الحالية", "app.containers.Projects.options": "الخيارات", "app.containers.Projects.participants": "مشاركون", "app.containers.Projects.participantsTooltip4": "يعكس هذا الرقم أيضًا عمليات إرسال الاستطلاع المجهولة. من الممكن إرسال استطلاعات مجهولة المصدر إذا كانت الاستطلاعات مفتوحة للجميع (راجع علامة التبويب {accessRightsLink} لهذا المشروع).", "app.containers.Projects.pastEvents": "أحداث سابقة", "app.containers.Projects.phases": "مراحل", - "app.containers.Projects.poll": "1 استطلاع", - "app.containers.Projects.pollInCurrentPhase": "1 استطلاع في المرحلة الحالية", "app.containers.Projects.previousPhase": "المرحلة السابقة", "app.containers.Projects.project": "المشروع", "app.containers.Projects.projectTwitterMessage": "أدلِ بصوتك! اشترك في {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "مشاركة هذا المشروع", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "الاستبيان", - "app.containers.Projects.surveySubmissions": "عمليات إرسال الاستبيان", - "app.containers.Projects.surveySubmissionsTooltip3": "لا يتم احتساب عمليات إرسال الاستبيان الخارجية.", "app.containers.Projects.takeThePoll": "شارك في الاستطلاع", "app.containers.Projects.takeTheSurvey": "شارك في الاستبيان", "app.containers.Projects.timeline": "الجدول الزمني", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الحالية", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الأخيرة", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# حدث} other {# من الأحداث}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# فكرة} other {# أفكار}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة الحالية", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة النهائية", diff --git a/front/app/translations/ar-SA.json b/front/app/translations/ar-SA.json index 7eb6923a2dc5..a642e8f024d7 100644 --- a/front/app/translations/ar-SA.json +++ b/front/app/translations/ar-SA.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "نظرة عامة على المراحل", "app.containers.Projects.a11y_titleInputs": "جميع المُدخلات التي تم تقديمها إلى هذا المشروع ", "app.containers.Projects.a11y_titleInputsPhase": "جميع المُدخلات التي تم تقديمها إلى هذه المرحلة", - "app.containers.Projects.about": "نبذة", "app.containers.Projects.accessRights": "حقوق الوصول", "app.containers.Projects.addedToBasket": "تمت الإضافة إلى سلَّتك", "app.containers.Projects.allocateBudget": "خصّص ميزانيتك", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "لم تتم جدولة أي أحداث قادمة أو جارية حاليًا.", "app.containers.Projects.nothingPosted": "لم يُنشر شيء بعد ", "app.containers.Projects.oneDocToReview": "وثيقة واحدة للمراجعة", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "وثيقة واحدة للمراجعة في المرحلة الحالية", "app.containers.Projects.oneSurvey": "مسح واحد", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 مسح في المرحلة الحالية", "app.containers.Projects.options": "الخيارات", "app.containers.Projects.participants": "مشاركون", "app.containers.Projects.participantsTooltip4": "يعكس هذا الرقم أيضًا عمليات إرسال الاستطلاع المجهولة. من الممكن إرسال استطلاعات مجهولة المصدر إذا كانت الاستطلاعات مفتوحة للجميع (راجع علامة التبويب {accessRightsLink} لهذا المشروع).", "app.containers.Projects.pastEvents": "أحداث سابقة", "app.containers.Projects.phases": "مراحل", - "app.containers.Projects.poll": "1 استطلاع", - "app.containers.Projects.pollInCurrentPhase": "1 استطلاع في المرحلة الحالية", "app.containers.Projects.previousPhase": "المرحلة السابقة", "app.containers.Projects.project": "المشروع", "app.containers.Projects.projectTwitterMessage": "أدلِ بصوتك! اشترك في {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "مشاركة هذا المشروع", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "الاستبيان", - "app.containers.Projects.surveySubmissions": "عمليات إرسال الاستبيان", - "app.containers.Projects.surveySubmissionsTooltip3": "لا يتم احتساب عمليات إرسال الاستبيان الخارجية.", "app.containers.Projects.takeThePoll": "شارك في الاستطلاع", "app.containers.Projects.takeTheSurvey": "شارك في الاستبيان", "app.containers.Projects.timeline": "الجدول الزمني", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الحالية", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الأخيرة", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# حدث} other {# من الأحداث}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# فكرة} other {# أفكار}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة الحالية", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة النهائية", diff --git a/front/app/translations/ca-ES.json b/front/app/translations/ca-ES.json index 0d28bdc34515..7d2e444ca469 100644 --- a/front/app/translations/ca-ES.json +++ b/front/app/translations/ca-ES.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Visió general de les fases", "app.containers.Projects.a11y_titleInputs": "Totes les aportacions enviades a aquest projecte", "app.containers.Projects.a11y_titleInputsPhase": "Totes les aportacions presentades en aquesta fase", - "app.containers.Projects.about": "Sobre", "app.containers.Projects.accessRights": "Drets d'accés", "app.containers.Projects.addedToBasket": "S'ha afegit a la vostra cistella", "app.containers.Projects.allocateBudget": "Assigneu el vostre pressupost", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Actualment no hi ha esdeveniments propers o en curs programats.", "app.containers.Projects.nothingPosted": "Encara no s'ha publicat res", "app.containers.Projects.oneDocToReview": "1 document per revisar", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 document per revisar en la fase actual", "app.containers.Projects.oneSurvey": "1 enquesta", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 enquesta en la fase actual", "app.containers.Projects.options": "Opcions", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "Aquest nombre també reflecteix enviaments anònims d'enquestes. Les enquestes anònimes són possibles si les enquestes estan obertes a tothom (vegeu la pestanya {accessRightsLink} d'aquest projecte).", "app.containers.Projects.pastEvents": "Esdeveniments passats", "app.containers.Projects.phases": "Fases", - "app.containers.Projects.poll": "1 enquesta", - "app.containers.Projects.pollInCurrentPhase": "1 enquesta en la fase actual", "app.containers.Projects.previousPhase": "Fase prèvia", "app.containers.Projects.project": "Projecte", "app.containers.Projects.projectTwitterMessage": "Feu sentir la vostra veu! Participeu a {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Compartir aquest projecte", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Enquesta", - "app.containers.Projects.surveySubmissions": "enviaments d'enquestes", - "app.containers.Projects.surveySubmissionsTooltip3": "Els enviaments d'enquestes externes no es compten.", "app.containers.Projects.takeThePoll": "Feu l'enquesta", "app.containers.Projects.takeTheSurvey": "Fes l'enquesta", "app.containers.Projects.timeline": "Cronologia", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribució} other {# contribucions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribució} other {# contribucions}} en la fase actual", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribució} other {# contribucions}} a la fase final", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# esdeveniment} other {# esdeveniments}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# idees}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# idees}} en la fase actual", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# idees}} a la fase final", diff --git a/front/app/translations/cy-GB.json b/front/app/translations/cy-GB.json index 4e8418ca8a5a..06f85140d93f 100644 --- a/front/app/translations/cy-GB.json +++ b/front/app/translations/cy-GB.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Trosolwg cyfnodau", "app.containers.Projects.a11y_titleInputs": "Pob mewnbwn wedi'i gyflwyno i'r prosiect hwn", "app.containers.Projects.a11y_titleInputsPhase": "Pob mewnbwn a gyflwynwyd yn y cam hwn", - "app.containers.Projects.about": "Ynghylch", "app.containers.Projects.accessRights": "Hawliau mynediad", "app.containers.Projects.addedToBasket": "Ychwanegwyd at y fasged", "app.containers.Projects.allocateBudget": "Neilltuwch eich cyllideb", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Nid oes unrhyw ddigwyddiadau ar y gweill neu barhaus wedi'u hamserlennu ar hyn o bryd.", "app.containers.Projects.nothingPosted": "Dim wedi'i bostio eto", "app.containers.Projects.oneDocToReview": "1 ddogfen i'w hadolygu", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 ddogfen i'w hadolygu yn y cyfnod presennol", "app.containers.Projects.oneSurvey": "1 arolwg", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 arolwg yn y cyfnod presennol", "app.containers.Projects.options": "Opsiynau", "app.containers.Projects.participants": "Cyfranogwyr", "app.containers.Projects.participantsTooltip4": "Mae'r rhif hwn hefyd yn adlewyrchu cyflwyniadau arolwg dienw. Mae cyflwyniadau arolwg dienw yn bosibl os yw arolygon yn agored i bawb (gweler y tab {accessRightsLink} ar gyfer y prosiect hwn).", "app.containers.Projects.pastEvents": "Digwyddiadau yn y gorffennol", "app.containers.Projects.phases": "Cyfnodau", - "app.containers.Projects.poll": "1 pôl", - "app.containers.Projects.pollInCurrentPhase": "1 arolwg barn yn y cyfnod presennol", "app.containers.Projects.previousPhase": "Cyfnod blaenorol", "app.containers.Projects.project": "Prosiect", "app.containers.Projects.projectTwitterMessage": "Gwnewch i'ch llais gael ei glywed! Cymryd rhan mewn {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Rhannwch y prosiect hwn", "app.containers.Projects.submitMyBasket": "Cyflwyno basged", "app.containers.Projects.survey": "Arolwg", - "app.containers.Projects.surveySubmissions": "cyflwyniadau arolwg", - "app.containers.Projects.surveySubmissionsTooltip3": "Nid yw cyflwyniadau arolwg allanol yn cael eu cyfrif.", "app.containers.Projects.takeThePoll": "Cymerwch y bleidlais", "app.containers.Projects.takeTheSurvey": "Cymerwch yr arolwg", "app.containers.Projects.timeline": "Llinell Amser", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# cyfraniad} other {# cyfraniad}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# cyfraniad} other {# cyfraniad}} yn y cyfnod presennol", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# cyfraniad} other {# cyfraniad}} yn y cam olaf", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# digwyddiad} other {# digwyddiad}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# syniad} other {# syniad}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# syniad} other {# syniad}} yn y cyfnod presennol", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# syniad} other {# syniad}} yn y cam olaf", diff --git a/front/app/translations/da-DK.json b/front/app/translations/da-DK.json index 4660fab0e7fc..c0faaf331f7e 100644 --- a/front/app/translations/da-DK.json +++ b/front/app/translations/da-DK.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Faseoversigt", "app.containers.Projects.a11y_titleInputs": "Alle bidrag indsendt til dette projekt", "app.containers.Projects.a11y_titleInputsPhase": "Alle bidrag indsendt til denne fase", - "app.containers.Projects.about": "Om", "app.containers.Projects.accessRights": "Adgangsrettigheder", "app.containers.Projects.addedToBasket": "Tilføjet til din kurv", "app.containers.Projects.allocateBudget": "Fordel dit budget", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Der er ingen kommende eller igangværende begivenheder planlagt i øjeblikket.", "app.containers.Projects.nothingPosted": "Intet postet endnu", "app.containers.Projects.oneDocToReview": "1 dokument til gennemgang", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 dokument til gennemgang i den aktuelle fase", "app.containers.Projects.oneSurvey": "1 undersøgelse", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 undersøgelse i den nuværende fase", "app.containers.Projects.options": "Muligheder", "app.containers.Projects.participants": "Deltagere", "app.containers.Projects.participantsTooltip4": "Dette tal afspejler også anonyme indsendelser af spørgeskemaer. Anonyme besvarelser er mulige, hvis undersøgelserne er åbne for alle (se {accessRightsLink} fanen for dette projekt).", "app.containers.Projects.pastEvents": "Tidligere begivenheder", "app.containers.Projects.phases": "Faser", - "app.containers.Projects.poll": "1 afstemning", - "app.containers.Projects.pollInCurrentPhase": "1 afstemning i den nuværende fase", "app.containers.Projects.previousPhase": "Foregående fase", "app.containers.Projects.project": "{tenantName, select, DeloitteDK {Verdensmål} other {Projekt}}", "app.containers.Projects.projectTwitterMessage": "Gør din stemme hørt! Deltag i {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Del dette projekt", "app.containers.Projects.submitMyBasket": "Indsend kurv", "app.containers.Projects.survey": "Spørgeundersøgelse", - "app.containers.Projects.surveySubmissions": "indsendelse af undersøgelser", - "app.containers.Projects.surveySubmissionsTooltip3": "Eksterne undersøgelser tælles ikke med.", "app.containers.Projects.takeThePoll": "Tag afstemningen", "app.containers.Projects.takeTheSurvey": "Besvar spørgeskemaet", "app.containers.Projects.timeline": "Tidslinje", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, no {# bidrag} one {# bidrag} other {# bidrag}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# bidrag} one {# bidrag} other {# bidrag}} i den nuværende fase", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# bidrag} one {# bidrag} other {# bidrag}} i den sidste fase", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# begivenheder} one {# begivenhed} other {# begivenheder}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}} i den nuværende fase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}} i den afsluttende fase", diff --git a/front/app/translations/de-DE.json b/front/app/translations/de-DE.json index 0a9e83811fe2..3c6417f6876f 100644 --- a/front/app/translations/de-DE.json +++ b/front/app/translations/de-DE.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Phasenübersicht", "app.containers.Projects.a11y_titleInputs": "Alle Beiträge zu diesem Projekt", "app.containers.Projects.a11y_titleInputsPhase": "Alle in dieser Phase abgegebenen Beiträge", - "app.containers.Projects.about": "Über", "app.containers.Projects.accessRights": "Zugriffsrechte", "app.containers.Projects.addedToBasket": "Ihrem Warenkorb hinzugefügt", "app.containers.Projects.allocateBudget": "Weisen Sie Ihren Haushalt zu", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Zurzeit sind keine Veranstaltungen geplant.", "app.containers.Projects.nothingPosted": "Bisher wurde nichts gepostet\n", "app.containers.Projects.oneDocToReview": "1 Dokument zur Überprüfung", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 Dokument zur Überprüfung in der aktuellen Phase", "app.containers.Projects.oneSurvey": "1 Umfrage", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 Umfrage in der aktuellen Phase", "app.containers.Projects.options": "Optionen", "app.containers.Projects.participants": "Teilnehmende", "app.containers.Projects.participantsTooltip4": "Diese Zahl spiegelt auch anonyme Umfragen wider. Anonyme Umfragen sind möglich, wenn die Umfragen für alle zugänglich sind (siehe {accessRightsLink} für dieses Projekt).", "app.containers.Projects.pastEvents": "Vergangene Veranstaltungen", "app.containers.Projects.phases": "Phasen", - "app.containers.Projects.poll": "1 Abstimmung", - "app.containers.Projects.pollInCurrentPhase": "1 Abstimmung in der aktuellen Phase", "app.containers.Projects.previousPhase": "Vorherige Phase", "app.containers.Projects.project": "{orgName, select, München {Bezirke} other {Projekte}}", "app.containers.Projects.projectTwitterMessage": "Verschaffen Sie sich Gehör! Beteiligen Sie sich an {projectName} | {orgName}\n", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Das Projekt teilen", "app.containers.Projects.submitMyBasket": "Warenkorb absenden", "app.containers.Projects.survey": "Umfrage", - "app.containers.Projects.surveySubmissions": "Umfrage-Antworten", - "app.containers.Projects.surveySubmissionsTooltip3": "Externe Umfragen werden nicht gezählt.", "app.containers.Projects.takeThePoll": "Zur Abstimmung", "app.containers.Projects.takeTheSurvey": "Zur Umfrage", "app.containers.Projects.timeline": "Zeitleiste", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# Beitrag} other {# Beiträge}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# Beitrag} other {# Beiträge}} in der aktuellen Phase", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# Beitrag} other {# Beiträge}} in der finalen Phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# Veranstaltung} other {# Veranstaltungen}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# Idee} other {# Ideen}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# Idee} other {# Ideen}} in der gegenwärtigen Phase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# Idee} other {# Ideen}} in der finalen Phase", diff --git a/front/app/translations/el-GR.json b/front/app/translations/el-GR.json index a7fd8b66bc33..3bb7fc6262bc 100644 --- a/front/app/translations/el-GR.json +++ b/front/app/translations/el-GR.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Επισκόπηση φάσεων", "app.containers.Projects.a11y_titleInputs": "Όλες οι εισηγήσεις που υποβλήθηκαν σε αυτό το έργο", "app.containers.Projects.a11y_titleInputsPhase": "Όλες οι εισηγήσεις που υποβλήθηκαν σε αυτή τη φάση", - "app.containers.Projects.about": "Σχετικά με το", "app.containers.Projects.accessRights": "Δικαιώματα πρόσβασης", "app.containers.Projects.addedToBasket": "Προστέθηκε στο καλάθι σας", "app.containers.Projects.allocateBudget": "Διαθέστε τον προϋπολογισμό σας", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Προς το παρόν δεν έχουν προγραμματιστεί επερχόμενες ή τρέχουσες εκδηλώσεις.", "app.containers.Projects.nothingPosted": "Τίποτα δεν έχει δημοσιευθεί ακόμα", "app.containers.Projects.oneDocToReview": "1 έγγραφο προς εξέταση", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 έγγραφο προς αναθεώρηση στην τρέχουσα φάση", "app.containers.Projects.oneSurvey": "1 έρευνα", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 έρευνα στην τρέχουσα φάση", "app.containers.Projects.options": "Επιλογές", "app.containers.Projects.participants": "Συμμετέχοντες", "app.containers.Projects.participantsTooltip4": "Ο αριθμός αυτός αντικατοπτρίζει επίσης τις ανώνυμες υποβολές της έρευνας. Οι ανώνυμες υποβολές ερωτήσεων είναι δυνατές εάν οι έρευνες είναι ανοικτές σε όλους (βλ. την καρτέλα {accessRightsLink} για αυτό το έργο).", "app.containers.Projects.pastEvents": "Προηγούμενες εκδηλώσεις", "app.containers.Projects.phases": "Φάσεις", - "app.containers.Projects.poll": "1 δημοσκόπηση", - "app.containers.Projects.pollInCurrentPhase": "1 δημοσκόπηση στην τρέχουσα φάση", "app.containers.Projects.previousPhase": "Προηγούμενη φάση", "app.containers.Projects.project": "Έργο", "app.containers.Projects.projectTwitterMessage": "Κάντε τη φωνή σας να ακουστεί! Συμμετέχετε στο {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Κοινοποίηση αυτού του έργου", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Έρευνα", - "app.containers.Projects.surveySubmissions": "υποβολές ερευνών", - "app.containers.Projects.surveySubmissionsTooltip3": "Οι υποβολές εξωτερικών ερευνών δεν υπολογίζονται.", "app.containers.Projects.takeThePoll": "Πάρτε μέρος στη δημοσκόπηση", "app.containers.Projects.takeTheSurvey": "Πάρτε μέρος στην έρευνα", "app.containers.Projects.timeline": "Χρονοδιάγραμμα", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# συνεισφορά} other {# συνεισφορές}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# συνεισφορά} other {# συνεισφορές}} στην τρέχουσα φάση", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# συνεισφορά} other {# συνεισφορές}} στην τελική φάση", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# εκδήλωση} other {# εκδηλώσεις}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ιδέα} other {# ιδέες}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# ιδέα} other {# ιδέες}} στην τρέχουσα φάση", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ιδέα} other {# ιδέες}} στην τελική φάση", diff --git a/front/app/translations/en-CA.json b/front/app/translations/en-CA.json index 60b8f6000ed2..71f072be4389 100644 --- a/front/app/translations/en-CA.json +++ b/front/app/translations/en-CA.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Phases overview", "app.containers.Projects.a11y_titleInputs": "All input submitted to this project", "app.containers.Projects.a11y_titleInputsPhase": "All input submitted in this phase", - "app.containers.Projects.about": "About", "app.containers.Projects.accessRights": "Access rights", "app.containers.Projects.addedToBasket": "Added to basket", "app.containers.Projects.allocateBudget": "Allocate your budget", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "No upcoming or ongoing events are currently scheduled.", "app.containers.Projects.nothingPosted": "Nothing posted yet", "app.containers.Projects.oneDocToReview": "1 document to review", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 document to review in the current phase", "app.containers.Projects.oneSurvey": "1 survey", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 survey in the current phase", "app.containers.Projects.options": "Options", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "This number also reflects anonymous survey submissions. Anonymous survey submissions are possible if surveys are open to everyone (see the {accessRightsLink} tab for this project).", "app.containers.Projects.pastEvents": "Past events", "app.containers.Projects.phases": "Phases", - "app.containers.Projects.poll": "1 poll", - "app.containers.Projects.pollInCurrentPhase": "1 poll in the current phase", "app.containers.Projects.previousPhase": "Previous phase", "app.containers.Projects.project": "Project", "app.containers.Projects.projectTwitterMessage": "Make your voice heard! Participate in {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Share this project", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Survey", - "app.containers.Projects.surveySubmissions": "survey submissions", - "app.containers.Projects.surveySubmissionsTooltip3": "External survey submissions are not counted.", "app.containers.Projects.takeThePoll": "Take the poll", "app.containers.Projects.takeTheSurvey": "Take the survey", "app.containers.Projects.timeline": "Timeline", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# event} other {# events}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", diff --git a/front/app/translations/en-GB.json b/front/app/translations/en-GB.json index d387a4cb279c..1d0c23537007 100644 --- a/front/app/translations/en-GB.json +++ b/front/app/translations/en-GB.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Phases overview", "app.containers.Projects.a11y_titleInputs": "All input submitted to this project", "app.containers.Projects.a11y_titleInputsPhase": "All input submitted in this phase", - "app.containers.Projects.about": "About", "app.containers.Projects.accessRights": "Access rights", "app.containers.Projects.addedToBasket": "Added to your basket", "app.containers.Projects.allocateBudget": "Allocate your budget", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "No upcoming or ongoing events are currently scheduled.", "app.containers.Projects.nothingPosted": "Nothing posted yet", "app.containers.Projects.oneDocToReview": "1 document to review", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 document to review in the current phase", "app.containers.Projects.oneSurvey": "1 survey", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 survey in the current phase", "app.containers.Projects.options": "Options", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "This number also reflects anonymous survey submissions. Anonymous survey submissions are possible if surveys are open to everyone (see the {accessRightsLink} tab for this project).", "app.containers.Projects.pastEvents": "Past events", "app.containers.Projects.phases": "Phases", - "app.containers.Projects.poll": "1 poll", - "app.containers.Projects.pollInCurrentPhase": "1 poll in the current phase", "app.containers.Projects.previousPhase": "Previous phase", "app.containers.Projects.project": "Project", "app.containers.Projects.projectTwitterMessage": "Make your voice heard! Participate in {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Share this project", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "{tenantName, select, westminster {Westminster’s Innovation Challenge - Your idea} other {Survey}}", - "app.containers.Projects.surveySubmissions": "survey submissions", - "app.containers.Projects.surveySubmissionsTooltip3": "External survey submissions are not counted.", "app.containers.Projects.takeThePoll": "Take the poll", "app.containers.Projects.takeTheSurvey": "{tenantName, select, westminster {Enter the challenge} other {Take the survey}}", "app.containers.Projects.timeline": "Timeline", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# event} other {# events}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", diff --git a/front/app/translations/en-IE.json b/front/app/translations/en-IE.json index 9657cce5db1b..45306fdb1e06 100644 --- a/front/app/translations/en-IE.json +++ b/front/app/translations/en-IE.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Phases overview", "app.containers.Projects.a11y_titleInputs": "All input submitted to this project", "app.containers.Projects.a11y_titleInputsPhase": "All input submitted in this phase", - "app.containers.Projects.about": "About", "app.containers.Projects.accessRights": "Access rights", "app.containers.Projects.addedToBasket": "Added to basket", "app.containers.Projects.allocateBudget": "Allocate your budget", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "No upcoming or ongoing events are currently scheduled.", "app.containers.Projects.nothingPosted": "Nothing posted yet", "app.containers.Projects.oneDocToReview": "1 document to review", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 document to review in the current phase", "app.containers.Projects.oneSurvey": "1 survey", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 survey in the current phase", "app.containers.Projects.options": "Options", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "This number also reflects anonymous survey submissions. Anonymous survey submissions are possible if surveys are open to everyone (see the {accessRightsLink} tab for this project).", "app.containers.Projects.pastEvents": "Past events", "app.containers.Projects.phases": "Phases", - "app.containers.Projects.poll": "1 poll", - "app.containers.Projects.pollInCurrentPhase": "1 poll in the current phase", "app.containers.Projects.previousPhase": "Previous phase", "app.containers.Projects.project": "Project", "app.containers.Projects.projectTwitterMessage": "Make your voice heard! Participate in {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Share this project", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Survey", - "app.containers.Projects.surveySubmissions": "survey submissions", - "app.containers.Projects.surveySubmissionsTooltip3": "External survey submissions are not counted.", "app.containers.Projects.takeThePoll": "Take the poll", "app.containers.Projects.takeTheSurvey": "Take the survey", "app.containers.Projects.timeline": "Timeline", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# event} other {# events}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", diff --git a/front/app/translations/en.json b/front/app/translations/en.json index 9657cce5db1b..45306fdb1e06 100644 --- a/front/app/translations/en.json +++ b/front/app/translations/en.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Phases overview", "app.containers.Projects.a11y_titleInputs": "All input submitted to this project", "app.containers.Projects.a11y_titleInputsPhase": "All input submitted in this phase", - "app.containers.Projects.about": "About", "app.containers.Projects.accessRights": "Access rights", "app.containers.Projects.addedToBasket": "Added to basket", "app.containers.Projects.allocateBudget": "Allocate your budget", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "No upcoming or ongoing events are currently scheduled.", "app.containers.Projects.nothingPosted": "Nothing posted yet", "app.containers.Projects.oneDocToReview": "1 document to review", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 document to review in the current phase", "app.containers.Projects.oneSurvey": "1 survey", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 survey in the current phase", "app.containers.Projects.options": "Options", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "This number also reflects anonymous survey submissions. Anonymous survey submissions are possible if surveys are open to everyone (see the {accessRightsLink} tab for this project).", "app.containers.Projects.pastEvents": "Past events", "app.containers.Projects.phases": "Phases", - "app.containers.Projects.poll": "1 poll", - "app.containers.Projects.pollInCurrentPhase": "1 poll in the current phase", "app.containers.Projects.previousPhase": "Previous phase", "app.containers.Projects.project": "Project", "app.containers.Projects.projectTwitterMessage": "Make your voice heard! Participate in {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Share this project", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Survey", - "app.containers.Projects.surveySubmissions": "survey submissions", - "app.containers.Projects.surveySubmissionsTooltip3": "External survey submissions are not counted.", "app.containers.Projects.takeThePoll": "Take the poll", "app.containers.Projects.takeTheSurvey": "Take the survey", "app.containers.Projects.timeline": "Timeline", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# event} other {# events}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", diff --git a/front/app/translations/es-CL.json b/front/app/translations/es-CL.json index aa16abac1271..b612ad7d8eed 100644 --- a/front/app/translations/es-CL.json +++ b/front/app/translations/es-CL.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Resumen de las fases", "app.containers.Projects.a11y_titleInputs": "Todas las aportaciones enviadas a este proyecto", "app.containers.Projects.a11y_titleInputsPhase": "Todas las entradas enviadas a esta fase", - "app.containers.Projects.about": "Acerca de", "app.containers.Projects.accessRights": "Derechos de acceso", "app.containers.Projects.addedToBasket": "Añadido a tu bolsa", "app.containers.Projects.allocateBudget": "Asigna tu presupuesto", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Actualmente no hay eventos próximos o en curso.", "app.containers.Projects.nothingPosted": "Aún no se ha publicado nada", "app.containers.Projects.oneDocToReview": "1 documento para revisar", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 documento para revisar en la fase actual", "app.containers.Projects.oneSurvey": "consulta", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 consulta en la fase actual", "app.containers.Projects.options": "Opciones", "app.containers.Projects.participants": "Participantes", "app.containers.Projects.participantsTooltip4": "Esta cifra también refleja los envíos anónimos de encuestas. Los envíos anónimos de encuestas son posibles si las encuestas están abiertas a todo el mundo (consulta la pestaña {accessRightsLink} de este proyecto).", "app.containers.Projects.pastEvents": "Eventos anteriores", "app.containers.Projects.phases": "Fases", - "app.containers.Projects.poll": "1 consulta ciudadana", - "app.containers.Projects.pollInCurrentPhase": "1 consulta ciudadana en la etapa actual", "app.containers.Projects.previousPhase": "Fase previa", "app.containers.Projects.project": "Proyecto", "app.containers.Projects.projectTwitterMessage": "¡Haz que se escuche tu voz! Participa en {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Compartir este proyecto", "app.containers.Projects.submitMyBasket": "Enviar bolsa", "app.containers.Projects.survey": "Consulta", - "app.containers.Projects.surveySubmissions": "envíos de encuestas", - "app.containers.Projects.surveySubmissionsTooltip3": "No se tienen en cuenta los aportes de encuestas externas.", "app.containers.Projects.takeThePoll": "Responder la consulta ciudadana", "app.containers.Projects.takeTheSurvey": "Haz la consulta", "app.containers.Projects.timeline": "Línea de tiempo", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}} en la fase actual", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}} en la fase final", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# evento} other {# eventos}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} en la fase actual", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# encuesta} other {# encuestas}} en la etapa final", diff --git a/front/app/translations/es-ES.json b/front/app/translations/es-ES.json index 29384107ed8d..3dcd9a6f7380 100644 --- a/front/app/translations/es-ES.json +++ b/front/app/translations/es-ES.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Resumen de las fases", "app.containers.Projects.a11y_titleInputs": "Todas las aportaciones enviadas a este proyecto", "app.containers.Projects.a11y_titleInputsPhase": "Todas las entradas enviadas a esta fase", - "app.containers.Projects.about": "Acerca de", "app.containers.Projects.accessRights": "Derechos de acceso", "app.containers.Projects.addedToBasket": "Añadido a la bolsa", "app.containers.Projects.allocateBudget": "Asigna tu presupuesto", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Actualmente no hay eventos próximos o en curso.", "app.containers.Projects.nothingPosted": "Aún no se ha publicado nada", "app.containers.Projects.oneDocToReview": "1 documento para revisar", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 documento para revisar en la fase actual", "app.containers.Projects.oneSurvey": "1 encuesta", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 encuesta en la fase actual", "app.containers.Projects.options": "Opciones", "app.containers.Projects.participants": "Participantes", "app.containers.Projects.participantsTooltip4": "Esta cifra también refleja los envíos anónimos de encuestas. Los envíos anónimos de encuestas son posibles si las encuestas están abiertas a todo el mundo (consulta la pestaña {accessRightsLink} de este proyecto).", "app.containers.Projects.pastEvents": "Eventos anteriores", "app.containers.Projects.phases": "Fases", - "app.containers.Projects.poll": "1 consulta ciudadana", - "app.containers.Projects.pollInCurrentPhase": "1 consulta ciudadana en la etapa actual", "app.containers.Projects.previousPhase": "Fase previa", "app.containers.Projects.project": "Proyecto", "app.containers.Projects.projectTwitterMessage": "¡Haz que se escuche tu voz! Participa en {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Compartir este proyecto", "app.containers.Projects.submitMyBasket": "Enviar bolsa", "app.containers.Projects.survey": "Encuesta", - "app.containers.Projects.surveySubmissions": "envíos de encuestas", - "app.containers.Projects.surveySubmissionsTooltip3": "No se tienen en cuenta los aportes de encuestas externas.", "app.containers.Projects.takeThePoll": "Haz la consulta ciudadana", "app.containers.Projects.takeTheSurvey": "Responde la consulta", "app.containers.Projects.timeline": "Línea de tiempo", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# aporte} other {# propuestas}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# aporte} other {# propuestas}} en la fase actual", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# aporte} other {# propuestas}} en la fase final", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# evento} other {# eventos}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} en la fase actual", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} en la etapa final", diff --git a/front/app/translations/fi-FI.json b/front/app/translations/fi-FI.json index f6e5573d0550..5586fae517a1 100644 --- a/front/app/translations/fi-FI.json +++ b/front/app/translations/fi-FI.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Vaiheiden yleiskatsaus", "app.containers.Projects.a11y_titleInputs": "Kaikki tähän projektiin lähetetty panos", "app.containers.Projects.a11y_titleInputsPhase": "Kaikki panokset on lähetetty tässä vaiheessa", - "app.containers.Projects.about": "Tietoja projektista", "app.containers.Projects.accessRights": "Käyttöoikeudet", "app.containers.Projects.addedToBasket": "Lisätty koriin", "app.containers.Projects.allocateBudget": "Kohdista budjettisi", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Mitään tulevia tai meneillään olevia tapahtumia ei ole tällä hetkellä suunniteltu.", "app.containers.Projects.nothingPosted": "Mitään ei ole vielä lähetetty", "app.containers.Projects.oneDocToReview": "1 tarkistettava asiakirja", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 asiakirja tarkistettavaksi tässä vaiheessa", "app.containers.Projects.oneSurvey": "1 kysely", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 tutkimus nykyisessä vaiheessa", "app.containers.Projects.options": "Vaihtoehdot", "app.containers.Projects.participants": "Osallistujat", "app.containers.Projects.participantsTooltip4": "Tämä luku heijastaa myös anonyymejä kyselyjä. Anonyymit kyselyn lähettäminen on mahdollista, jos kyselyt ovat avoimia kaikille (katso tämän projektin välilehti {accessRightsLink} ).", "app.containers.Projects.pastEvents": "Menneet tapahtumat", "app.containers.Projects.phases": "Projektin vaiheet", - "app.containers.Projects.poll": "1 kysely", - "app.containers.Projects.pollInCurrentPhase": "1 kysely nykyisessä vaiheessa", "app.containers.Projects.previousPhase": "Edellinen vaihe", "app.containers.Projects.project": "Projekti", "app.containers.Projects.projectTwitterMessage": "Saa äänesi kuuluviin! Osallistu {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Jaa tämä projekti", "app.containers.Projects.submitMyBasket": "Lähetä kori", "app.containers.Projects.survey": "Kysely", - "app.containers.Projects.surveySubmissions": "kyselyn lähetyksiä", - "app.containers.Projects.surveySubmissionsTooltip3": "Ulkoisia kyselyjä ei oteta huomioon.", "app.containers.Projects.takeThePoll": "Osallistu kyselyyn", "app.containers.Projects.takeTheSurvey": "Vastaa kyselyyn", "app.containers.Projects.timeline": "Aikajana", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# osallistuminen} other {# osallistuminen}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# osallistuminen} other {# osallistuminen}} nykyisessä vaiheessa", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# osallistuminen} other {# lahjoitus}} viimeisessä vaiheessa", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# tapahtuma} other {# tapahtumaa}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideaa}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# idea}} nykyisessä vaiheessa", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# idea}} loppuvaiheessa", diff --git a/front/app/translations/fr-BE.json b/front/app/translations/fr-BE.json index e7b8082c180a..409c35c6e42c 100644 --- a/front/app/translations/fr-BE.json +++ b/front/app/translations/fr-BE.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Vue d'ensemble des phases", "app.containers.Projects.a11y_titleInputs": "Toutes les contributions soumises à ce projet", "app.containers.Projects.a11y_titleInputsPhase": "Toutes les contributions soumises à cette phase", - "app.containers.Projects.about": "À propos", "app.containers.Projects.accessRights": "Droits d'accès", "app.containers.Projects.addedToBasket": "Ajouté à votre panier", "app.containers.Projects.allocateBudget": "Allouez votre budget", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Aucun événement à venir ou en cours n'est actuellement prévu.", "app.containers.Projects.nothingPosted": "Rien de posté pour le moment", "app.containers.Projects.oneDocToReview": "1 document à réviser", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 document à réviser dans la phase actuelle", "app.containers.Projects.oneSurvey": "1 enquête", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 enquête dans la phase actuelle", "app.containers.Projects.options": "Questions", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "Ce chiffre inclut également les réponses anonymes à l'enquête. Les réponses anonymes sont possibles si l'enquête est ouverte à tous (voir l'onglet {accessRightsLink} de ce projet).", "app.containers.Projects.pastEvents": "Evénements passés", "app.containers.Projects.phases": "Phases", - "app.containers.Projects.poll": "{tenantName, select, vitrysurseine {1 enquête} other {1 sondage}}", - "app.containers.Projects.pollInCurrentPhase": "{tenantName, select, vitrysurseine {1 enquête dans la phase en cours} other {1 sondage dans la phase en cours}}", "app.containers.Projects.previousPhase": "Phase précédente", "app.containers.Projects.project": "Projet", "app.containers.Projects.projectTwitterMessage": "Faites entendre votre voix ! Participez à {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Partager ce projet", "app.containers.Projects.submitMyBasket": "Soumettre", "app.containers.Projects.survey": "Enquête", - "app.containers.Projects.surveySubmissions": "réponses à l'enquête", - "app.containers.Projects.surveySubmissionsTooltip3": "Les réponses aux enquêtes externes ne sont pas prises en compte.", "app.containers.Projects.takeThePoll": "Répondre au sondage", "app.containers.Projects.takeTheSurvey": "Répondre à l'enquête", "app.containers.Projects.timeline": "Ligne du temps", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase actuelle", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase finale", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# événements} one {# événement} other {# événements}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase en cours", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase finale", diff --git a/front/app/translations/fr-FR.json b/front/app/translations/fr-FR.json index 983fab858d5b..d8bf6f6885bd 100644 --- a/front/app/translations/fr-FR.json +++ b/front/app/translations/fr-FR.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Vue d'ensemble des phases", "app.containers.Projects.a11y_titleInputs": "Toutes les contributions soumises à ce projet", "app.containers.Projects.a11y_titleInputsPhase": "Toutes les contributions soumises à cette phase", - "app.containers.Projects.about": "À propos", "app.containers.Projects.accessRights": "Droits d'accès", "app.containers.Projects.addedToBasket": "Ajouté à votre panier", "app.containers.Projects.allocateBudget": "Allouez votre budget", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Aucun événement à venir ou en cours n'est actuellement prévu.", "app.containers.Projects.nothingPosted": "Rien de posté pour le moment", "app.containers.Projects.oneDocToReview": "1 document à réviser", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 document à réviser dans la phase actuelle", "app.containers.Projects.oneSurvey": "1 enquête", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 enquête dans la phase actuelle", "app.containers.Projects.options": "Options", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "Ce chiffre inclut également les réponses anonymes à l'enquête. Les réponses anonymes sont possibles si l'enquête est ouverte à tous (voir l'onglet {accessRightsLink} de ce projet).", "app.containers.Projects.pastEvents": "Evénements passés", "app.containers.Projects.phases": "Phases", - "app.containers.Projects.poll": "{tenantName, select, vitrysurseine {1 enquête} other {1 sondage}}", - "app.containers.Projects.pollInCurrentPhase": "{tenantName, select, vitrysurseine {1 enquête dans la phase en cours} other {1 sondage dans la phase en cours}}", "app.containers.Projects.previousPhase": "Phase précédente", "app.containers.Projects.project": "Projet", "app.containers.Projects.projectTwitterMessage": "Faites entendre votre voix ! Participez à {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Partager ce projet", "app.containers.Projects.submitMyBasket": "Soumettre", "app.containers.Projects.survey": "Enquête", - "app.containers.Projects.surveySubmissions": "réponses à l'enquête", - "app.containers.Projects.surveySubmissionsTooltip3": "Les réponses aux enquêtes externes ne sont pas prises en compte.", "app.containers.Projects.takeThePoll": "{tenantName, select, vitrysurseine {Répondre à l'enquête} other {Répondre au sondage}}", "app.containers.Projects.takeTheSurvey": "Répondre à l'enquête", "app.containers.Projects.timeline": "Ligne du temps", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase actuelle", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase finale", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# événements} one {# événement} other {# événements}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase en cours", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase finale", diff --git a/front/app/translations/hr-HR.json b/front/app/translations/hr-HR.json index 28a1e412a293..561047b7a580 100644 --- a/front/app/translations/hr-HR.json +++ b/front/app/translations/hr-HR.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Pregled faza", "app.containers.Projects.a11y_titleInputs": "Svi unosi u ovom projektu", "app.containers.Projects.a11y_titleInputsPhase": "Svi unosi u ovoj fazi", - "app.containers.Projects.about": "Više o", "app.containers.Projects.accessRights": "Prava pristupa", "app.containers.Projects.addedToBasket": "Dodano u vašu košaricu", "app.containers.Projects.allocateBudget": "Rasporedite svoj proračun", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Trenutno nema zakazanih predstojećih događaja ili događaja u tijeku.", "app.containers.Projects.nothingPosted": "Još uvijek nema objava", "app.containers.Projects.oneDocToReview": "1 dokument za pregled", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 dokument za pregled u trenutnoj fazi", "app.containers.Projects.oneSurvey": "1 anketa", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 anketa u trenutnoj fazi", "app.containers.Projects.options": "Opcije", "app.containers.Projects.participants": "Sudionici", "app.containers.Projects.participantsTooltip4": "Ovaj broj također odražava anonimne ankete. Anonimno slanje anketa moguće je ako su ankete otvorene za sve (pogledajte karticu {accessRightsLink} za ovaj projekt).", "app.containers.Projects.pastEvents": "Prethodni događaji", "app.containers.Projects.phases": "Faze", - "app.containers.Projects.poll": "1 anketa", - "app.containers.Projects.pollInCurrentPhase": "1 anketa u trenutačnoj fazi", "app.containers.Projects.previousPhase": "Prethodna faza", "app.containers.Projects.project": "Projekt", "app.containers.Projects.projectTwitterMessage": "Neka se vaš glas čuje! Sudjelujte u {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Podijelite ovaj projekt", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Upitnik", - "app.containers.Projects.surveySubmissions": "anketni podnesci", - "app.containers.Projects.surveySubmissionsTooltip3": "Podnesene vanjske ankete se ne broje.", "app.containers.Projects.takeThePoll": "Popunite anketu", "app.containers.Projects.takeTheSurvey": "Popunite upitnik", "app.containers.Projects.timeline": "Vremenska traka", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# doprinos} other {# doprinosa}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# doprinos} other {# doprinosa}} u trenutnoj fazi", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# doprinos} other {# doprinosa}} u konačnoj fazi", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# događaj} other {# događaja}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideja} other {# ideje}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# ideja} other {# ideje}} u trenutnoj fazi", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ideja} other {# ideje}} u konačnoj fazi", diff --git a/front/app/translations/hu-HU.json b/front/app/translations/hu-HU.json index b7b6c7c353c8..4fdf95c377c7 100644 --- a/front/app/translations/hu-HU.json +++ b/front/app/translations/hu-HU.json @@ -745,7 +745,6 @@ "app.containers.Projects.a11y_phasesOverview": "Phases overview", "app.containers.Projects.a11y_titleInputs": "All input submitted to this project", "app.containers.Projects.a11y_titleInputsPhase": "All input submitted in this phase", - "app.containers.Projects.about": "About", "app.containers.Projects.addedToBasket": "Added to your basket", "app.containers.Projects.allocateBudget": "Allocate your budget", "app.containers.Projects.archived": "Archived", @@ -777,8 +776,6 @@ "app.containers.Projects.nothingPosted": "Nothing posted yet", "app.containers.Projects.options": "Options", "app.containers.Projects.phases": "Phases", - "app.containers.Projects.poll": "1 poll", - "app.containers.Projects.pollInCurrentPhase": "1 poll in the current phase", "app.containers.Projects.previousPhase": "Previous phase", "app.containers.Projects.project": "Project", "app.containers.Projects.projectTwitterMessage": "Make your voice heard! Participate in {projectName} | {orgName}", @@ -807,7 +804,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# event} other {# events}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", diff --git a/front/app/translations/it-IT.json b/front/app/translations/it-IT.json index 631305b49b39..dc2777495d7a 100644 --- a/front/app/translations/it-IT.json +++ b/front/app/translations/it-IT.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Panoramica delle fasi", "app.containers.Projects.a11y_titleInputs": "Tutti gli input presentati a questo progetto", "app.containers.Projects.a11y_titleInputsPhase": "Tutti gli input presentati in questa fase", - "app.containers.Projects.about": "Informazioni su", "app.containers.Projects.accessRights": "Diritti di accesso", "app.containers.Projects.addedToBasket": "Aggiunto al tuo carrello", "app.containers.Projects.allocateBudget": "Allocate il vostro budget", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Al momento non sono programmati eventi imminenti o in corso.", "app.containers.Projects.nothingPosted": "Non è stato ancora pubblicato nulla", "app.containers.Projects.oneDocToReview": "1 documento da esaminare", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 documento da rivedere nella fase attuale", "app.containers.Projects.oneSurvey": "1 indagine", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 indagine nella fase attuale", "app.containers.Projects.options": "Opzioni", "app.containers.Projects.participants": "Partecipanti", "app.containers.Projects.participantsTooltip4": "Questo numero riflette anche i sondaggi anonimi inviati. L'invio di sondaggi anonimi è possibile se i sondaggi sono aperti a tutti (vedi la scheda {accessRightsLink} per questo progetto).", "app.containers.Projects.pastEvents": "Eventi passati", "app.containers.Projects.phases": "Fasi", - "app.containers.Projects.poll": "1 sondaggio", - "app.containers.Projects.pollInCurrentPhase": "1 sondaggio nella fase attuale", "app.containers.Projects.previousPhase": "Fase precedente", "app.containers.Projects.project": "Progetto", "app.containers.Projects.projectTwitterMessage": "Fai sentire la tua voce! Partecipa a {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Condividi questo progetto", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Sondaggio", - "app.containers.Projects.surveySubmissions": "invio del sondaggio", - "app.containers.Projects.surveySubmissionsTooltip3": "Gli invii di sondaggi esterni non vengono conteggiati.", "app.containers.Projects.takeThePoll": "Fai il sondaggio", "app.containers.Projects.takeTheSurvey": "Prendi il sondaggio", "app.containers.Projects.timeline": "Timeline", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contributo} other {# contributi}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contributo} other {# contributi}} nella fase attuale", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contributo} other {# contributi}} nella fase finale", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# evento} other {# eventi}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# idee}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# idee}} nella fase attuale", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# idee}} nella fase finale", diff --git a/front/app/translations/kl-GL.json b/front/app/translations/kl-GL.json index 0f83ad14e11e..cc09225cdf93 100644 --- a/front/app/translations/kl-GL.json +++ b/front/app/translations/kl-GL.json @@ -1108,7 +1108,6 @@ "app.containers.Projects.a11y_phasesOverview": "Nikeriarfinnut takussutissaq", "app.containers.Projects.a11y_titleInputs": "Ilanngussat tamarmik suliamut uunga ilanngunneqarput", "app.containers.Projects.a11y_titleInputsPhase": "Ilanngussat tamarmik immikkoortumut uunga ilanngunneqarput", - "app.containers.Projects.about": "Pillugu", "app.containers.Projects.addedToBasket": "Koorinniittunut ilannguguk", "app.containers.Projects.allocateBudget": "Fordel dit budget", "app.containers.Projects.archived": "Allagaasivimmut inissinneqarpoq", @@ -1145,14 +1144,10 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "No upcoming or ongoing events are currently scheduled.", "app.containers.Projects.nothingPosted": "Suli ikkussisoqanngilaq", "app.containers.Projects.oneDocToReview": "1 document to review", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 document to review in the current phase", "app.containers.Projects.oneSurvey": "1 survey", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 survey in the current phase", "app.containers.Projects.options": "Periarfissat", "app.containers.Projects.pastEvents": "Past events", "app.containers.Projects.phases": "Suliamik ingerlatsinissat", - "app.containers.Projects.poll": "1 Taasineq", - "app.containers.Projects.pollInCurrentPhase": "Taasineq 1 maanna killiffimmi", "app.containers.Projects.previousPhase": "Foregående fase", "app.containers.Projects.project": "Suliniut", "app.containers.Projects.projectTwitterMessage": "Isummatit tusartikkit! {projectName}-imut peqataagit | {orgName}", @@ -1175,8 +1170,6 @@ "app.containers.Projects.shareThisProject": "Del dette projekt", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Immersuilluni apersuineq", - "app.containers.Projects.surveySubmissions": "survey submissions", - "app.containers.Projects.surveySubmissionsTooltip3": "External survey submissions are not counted.", "app.containers.Projects.takeThePoll": "Tag afstemningen", "app.containers.Projects.takeTheSurvey": "Besvar spørgeskemaet", "app.containers.Projects.timeline": "Tidslinje", @@ -1186,7 +1179,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, 0 {# ilanngussaqanngilaq} one {# ilanngussaq} other {# ilanngussat}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, 0 {# ilanngussaqanngilaq} one {# ilanngussaq} other {# ilanngussat}} immikkoortumi massakkut pineqartumi", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, 0 {# ilanngussaqanngilaq} one {# ilanngussaq} other {# ilanngussat}} immikkoortumi kingullermi", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# begivenheder} one {# begivenhed} other {# begivenheder}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}} in den nuværende fase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, 0 {isumassarsiat} one {# isumassarsiat} other {# isumassarsiat}} immikkoortumi kingullermi", diff --git a/front/app/translations/lb-LU.json b/front/app/translations/lb-LU.json index b380b90380b4..b268c1944635 100644 --- a/front/app/translations/lb-LU.json +++ b/front/app/translations/lb-LU.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Iwwersiicht vun de Phases", "app.containers.Projects.a11y_titleInputs": "All Bäiträg, déi zu dësem Projet agereecht goufen", "app.containers.Projects.a11y_titleInputsPhase": "All Bäiträg, déi an dëser Phas agereecht goufen", - "app.containers.Projects.about": "Iwwer", "app.containers.Projects.accessRights": "Zougang Rechter", "app.containers.Projects.addedToBasket": "Ärem Akafskuerf bäigefüügt", "app.containers.Projects.allocateBudget": "Verdeelt Äre Budget", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Aktuell si keng bevirstoend oder lafend Evenementer geplangt.", "app.containers.Projects.nothingPosted": "Momentan nach näischt gepost", "app.containers.Projects.oneDocToReview": "1 Dokument fir ze iwwerpréiwen", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 Dokument fir an der aktueller Phase ze iwwerpréiwen", "app.containers.Projects.oneSurvey": "1 Ëmfro", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 Ëmfro an der aktueller Phase", "app.containers.Projects.options": "Optiounen", "app.containers.Projects.participants": "Participanten", "app.containers.Projects.participantsTooltip4": "Dës Zuel reflektéiert och anonym Ëmfro Soumissioun. Anonym Ëmfroe sinn méiglech wann Ëmfroe fir jiddereen op sinn (kuckt den Tab {accessRightsLink} fir dëse Projet).", "app.containers.Projects.pastEvents": "Vergaangen Evenementer", "app.containers.Projects.phases": "Phasen", - "app.containers.Projects.poll": "1 Ëmfro", - "app.containers.Projects.pollInCurrentPhase": "1 Ëmfro an der aktueller Phas", "app.containers.Projects.previousPhase": "Viregt Phas", "app.containers.Projects.project": "Projet", "app.containers.Projects.projectTwitterMessage": "Verschaaft Ärer Stëmm Gehéier! Huelt deel un {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Projet deelen", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Ëmfro", - "app.containers.Projects.surveySubmissions": "Ëmfro Soumissioun", - "app.containers.Projects.surveySubmissionsTooltip3": "Extern Ëmfro Soumissioun ginn net gezielt.", "app.containers.Projects.takeThePoll": "Un der Ëmfro deelhuelen", "app.containers.Projects.takeTheSurvey": "Un der Ëmfro deelhuelen", "app.containers.Projects.timeline": "Zäitlinn", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# Bäitrag} other {# Bäiträg}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# Bäitrag} other {# Bäiträg}} an der aktueller Phas", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# Bäitrag} other {# Bäträg}} an der Endphas", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# Evenement} other {# Evenementer}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# Iddi} other {# Iddien}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# Iddi} other {# Iddien}} an der aktueller Phas", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# Iddi} other {# Iddien}} an der Endphas", diff --git a/front/app/translations/lv-LV.json b/front/app/translations/lv-LV.json index b8a9bacdda97..3ab5ac3be2c4 100644 --- a/front/app/translations/lv-LV.json +++ b/front/app/translations/lv-LV.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Fāžu pārskats", "app.containers.Projects.a11y_titleInputs": "Viss šim projektam iesniegtais ieguldījums", "app.containers.Projects.a11y_titleInputsPhase": "Viss šajā posmā sniegtais ieguldījums", - "app.containers.Projects.about": "Par", "app.containers.Projects.accessRights": "Piekļuves tiesības", "app.containers.Projects.addedToBasket": "Pievienots jūsu grozam", "app.containers.Projects.allocateBudget": "Piešķiriet savu budžetu", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Šobrīd grafikā nav iekļauti gaidāmie vai aktuālie notikumi.", "app.containers.Projects.nothingPosted": "Vēl nekas nav publicēts", "app.containers.Projects.oneDocToReview": "1 dokuments, kas jāpārskata", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 dokuments, kas jāpārskata pašreizējā posmā", "app.containers.Projects.oneSurvey": "1 aptauja", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 apsekojums pašreizējā posmā", "app.containers.Projects.options": "Iespējas", "app.containers.Projects.participants": "Dalībnieki", "app.containers.Projects.participantsTooltip4": "Šis skaitlis atspoguļo arī anonīmās aptaujas iesniegumus. Anonīmi aptauju iesniegšana ir iespējama, ja aptaujas ir pieejamas ikvienam (skatīt šā projekta cilni {accessRightsLink}).", "app.containers.Projects.pastEvents": "Pagātnes notikumi", "app.containers.Projects.phases": "Posmi", - "app.containers.Projects.poll": "1 aptauja", - "app.containers.Projects.pollInCurrentPhase": "1 aptauja pašreizējā posmā", "app.containers.Projects.previousPhase": "Iepriekšējais posms", "app.containers.Projects.project": "Projekts", "app.containers.Projects.projectTwitterMessage": "Nodrošiniet, ka jūsu viedoklis tiek sadzirdēts! Piedalieties {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Koplietot šo projektu", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Aptauja", - "app.containers.Projects.surveySubmissions": "aizpildītās aptaujas", - "app.containers.Projects.surveySubmissionsTooltip3": "Ārējo aptauju iesniegumi netiek ieskaitīti.", "app.containers.Projects.takeThePoll": "Veikt aptauju", "app.containers.Projects.takeTheSurvey": "Aizpildiet aptauju", "app.containers.Projects.timeline": "Laika līnija", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# ieguldījums} other {# ieguldījumi}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} pašreizējā posmā", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} pēdējā posmā", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# notikums} other {# notikumi}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideja} other {# idejas}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} pašreizējā posmā", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} pēdējā posmā", diff --git a/front/app/translations/mi.json b/front/app/translations/mi.json index fed6da92a1fb..c3158ef3d4f3 100644 --- a/front/app/translations/mi.json +++ b/front/app/translations/mi.json @@ -745,7 +745,6 @@ "app.containers.Projects.a11y_phasesOverview": "Phases overview", "app.containers.Projects.a11y_titleInputs": "All input submitted to this project", "app.containers.Projects.a11y_titleInputsPhase": "All input submitted in this phase", - "app.containers.Projects.about": "Mō", "app.containers.Projects.addedToBasket": "Added to your basket", "app.containers.Projects.allocateBudget": "Allocate your budget", "app.containers.Projects.archived": "Archived", @@ -777,8 +776,6 @@ "app.containers.Projects.nothingPosted": "Nothing posted yet", "app.containers.Projects.options": "Options", "app.containers.Projects.phases": "Phases", - "app.containers.Projects.poll": "1 poll", - "app.containers.Projects.pollInCurrentPhase": "1 poll in the current phase", "app.containers.Projects.previousPhase": "Previous phase", "app.containers.Projects.project": "Project", "app.containers.Projects.projectTwitterMessage": "Make your voice heard! Participate in {projectName} | {orgName}", @@ -807,7 +804,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# event} other {# events}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", diff --git a/front/app/translations/nb-NO.json b/front/app/translations/nb-NO.json index 270da448f86c..f293b3ed79c5 100644 --- a/front/app/translations/nb-NO.json +++ b/front/app/translations/nb-NO.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Oversikt over fasene", "app.containers.Projects.a11y_titleInputs": "Alle innspill sendt inn til dette prosjekt", "app.containers.Projects.a11y_titleInputsPhase": "Alle innspill sendt inn til denne fasen", - "app.containers.Projects.about": "Om", "app.containers.Projects.accessRights": "Tilgangsrettigheter", "app.containers.Projects.addedToBasket": "Added to your basket", "app.containers.Projects.allocateBudget": "Tildel ditt budsjett", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Ingen kommende eller pågående hendelser er planlagt.", "app.containers.Projects.nothingPosted": "Ingenting publisert ennå", "app.containers.Projects.oneDocToReview": "1 dokument å vurdere", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 dokument til gjennomgang i den nåværende fasen", "app.containers.Projects.oneSurvey": "1 undersøkelse", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 undersøkelse i inneværende fase", "app.containers.Projects.options": "Alternativer", "app.containers.Projects.participants": "Deltakere", "app.containers.Projects.participantsTooltip4": "Dette tallet gjenspeiler også anonyme undersøkelsesinnsendinger. Anonyme undersøkelser er mulige dersom undersøkelser er åpne for alle (se {accessRightsLink} -fanen for dette prosjektet).", "app.containers.Projects.pastEvents": "Tidligere hendelser", "app.containers.Projects.phases": "Faser", - "app.containers.Projects.poll": "1 avstemning", - "app.containers.Projects.pollInCurrentPhase": "1 avstemning i den nåværende fasen", "app.containers.Projects.previousPhase": "Tidligere fase", "app.containers.Projects.project": "Prosjekt", "app.containers.Projects.projectTwitterMessage": "Gjør din stemme hørt! Deltak i {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Del dette prosjekt", "app.containers.Projects.submitMyBasket": "Submit my basket", "app.containers.Projects.survey": "Spørreundersøkelse", - "app.containers.Projects.surveySubmissions": "innsendinger av undersøkelser", - "app.containers.Projects.surveySubmissionsTooltip3": "Eksterne undersøkelsesinnsendinger telles ikke.", "app.containers.Projects.takeThePoll": "Bli med på avstemmingen", "app.containers.Projects.takeTheSurvey": "Ta spørreundersøkelsen", "app.containers.Projects.timeline": "Tidslinje", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# bidrag} other {# bidrag}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# bidrag} other {# bidrag}} I den nåværende fasen", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# hendelse} other {# hendelser}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idé} other {# ideer}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idé} other {# ideer}} i den nåværende fasen", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idé} other {# ideer}} i den avsluttende fasen", diff --git a/front/app/translations/nl-BE.json b/front/app/translations/nl-BE.json index 1a6ce42fa76f..7846e5fe70fe 100644 --- a/front/app/translations/nl-BE.json +++ b/front/app/translations/nl-BE.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Overzicht van de fases", "app.containers.Projects.a11y_titleInputs": "Alle bijdragen voor dit project", "app.containers.Projects.a11y_titleInputsPhase": "Alle bijdragen voor deze fase", - "app.containers.Projects.about": "Over", "app.containers.Projects.accessRights": "Toegangsrechten", "app.containers.Projects.addedToBasket": "Aan je mandje toegevoegd", "app.containers.Projects.allocateBudget": "Maak je keuze", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Er zijn momenteel geen aankomende of gestarte activiteiten.", "app.containers.Projects.nothingPosted": "Nog niets gepost", "app.containers.Projects.oneDocToReview": "1 document om te bekijken", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 document om te bekijken in de huidige fase", "app.containers.Projects.oneSurvey": "1 vragenlijst", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 vragenlijst in de huidige fase", "app.containers.Projects.options": "Opties", "app.containers.Projects.participants": "Deelnemers", "app.containers.Projects.participantsTooltip4": "Dit aantal weerspiegelt ook anoniem ingevulde enquêtes. Anoniem ingevulde enquêtes zijn mogelijk als enquêtes voor iedereen toegankelijk zijn (zie het tabblad {accessRightsLink} van dit project).", "app.containers.Projects.pastEvents": "Afgelopen activiteiten", "app.containers.Projects.phases": "Fases", - "app.containers.Projects.poll": "1 peiling", - "app.containers.Projects.pollInCurrentPhase": "1 peiling in de huidige fase", "app.containers.Projects.previousPhase": "Vorige fase", "app.containers.Projects.project": "Project", "app.containers.Projects.projectTwitterMessage": "Laat je stem horen! Neem deel aan {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Deel dit project", "app.containers.Projects.submitMyBasket": "Mandje indienen", "app.containers.Projects.survey": "Enquête", - "app.containers.Projects.surveySubmissions": "ingediende vragenlijsten", - "app.containers.Projects.surveySubmissionsTooltip3": "Extern ingediende vragenlijsten worden niet meegeteld.", "app.containers.Projects.takeThePoll": "Neem deel aan de peiling", "app.containers.Projects.takeTheSurvey": "Deelnemen aan de enquête", "app.containers.Projects.timeline": "Tijdslijn", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# onderwerp} other {# onderwerpen}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# onderwerp} other {# onderwerpen}} in de huidige fase", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# onderwerp} other {# onderwerpen}} in de laatste fase", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# activiteiten} one {# activiteit} other {# activiteiten}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# ideeën} one {# idee} other {# ideeën}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# ideeën} one {# idee} other {# ideeën}} in de huidige fase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idee} other {# ideeën}} in de laatste fase", diff --git a/front/app/translations/nl-NL.json b/front/app/translations/nl-NL.json index 58b073207679..87b4251a1e39 100644 --- a/front/app/translations/nl-NL.json +++ b/front/app/translations/nl-NL.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Overzicht van de fases", "app.containers.Projects.a11y_titleInputs": "Alle bijdragen voor dit project", "app.containers.Projects.a11y_titleInputsPhase": "Alle bijdragen voor deze fase", - "app.containers.Projects.about": "Over", "app.containers.Projects.accessRights": "Toegangsrechten", "app.containers.Projects.addedToBasket": "Aan je mandje toegevoegd", "app.containers.Projects.allocateBudget": "Maak je keuze", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Er zijn momenteel geen aankomende of gestarte activiteiten.", "app.containers.Projects.nothingPosted": "Nog niets gepost", "app.containers.Projects.oneDocToReview": "1 document om te bekijken", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 document om te bekijken in de huidige fase", "app.containers.Projects.oneSurvey": "1 vragenlijst", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 vragenlijst in de huidige fase", "app.containers.Projects.options": "Opties", "app.containers.Projects.participants": "Deelnemers", "app.containers.Projects.participantsTooltip4": "Dit aantal weerspiegelt ook anoniem ingevulde enquêtes. Anoniem ingevulde enquêtes zijn mogelijk als enquêtes voor iedereen toegankelijk zijn (zie het tabblad {accessRightsLink} van dit project).", "app.containers.Projects.pastEvents": "Afgelopen activiteiten", "app.containers.Projects.phases": "Fases", - "app.containers.Projects.poll": "1 peiling", - "app.containers.Projects.pollInCurrentPhase": "1 peiling in de huidige fase", "app.containers.Projects.previousPhase": "Vorige fase", "app.containers.Projects.project": "Project", "app.containers.Projects.projectTwitterMessage": "Laat je stem horen! Neem deel aan {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Deel dit project", "app.containers.Projects.submitMyBasket": "Mandje indienen", "app.containers.Projects.survey": "Vragenlijst", - "app.containers.Projects.surveySubmissions": "ingediende vragenlijsten", - "app.containers.Projects.surveySubmissionsTooltip3": "Extern ingediende vragenlijsten worden niet meegeteld.", "app.containers.Projects.takeThePoll": "Neem deel aan de peiling", "app.containers.Projects.takeTheSurvey": "Deelnemen aan de vragenlijst", "app.containers.Projects.timeline": "Tijdslijn", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}} in de huidige fase", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}} in de laatste fase", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# activiteiten} one {# activiteit} other {# activiteiten}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# ideeën} one {# idee} other {# ideeën}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idee} other {# ideeën}} in de huidige fase", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# post} other {# posts}} in de laatste fase", diff --git a/front/app/translations/pl-PL.json b/front/app/translations/pl-PL.json index de9556712f78..2da067ceaa4c 100644 --- a/front/app/translations/pl-PL.json +++ b/front/app/translations/pl-PL.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Przegląd etapów", "app.containers.Projects.a11y_titleInputs": "Wszystkie inicjatywy zgłoszone do tego projektu", "app.containers.Projects.a11y_titleInputsPhase": "Wszystkie inicjatywy zgłoszone na tym etapie projektu", - "app.containers.Projects.about": "O konsultacji", "app.containers.Projects.accessRights": "Prawa dostępu", "app.containers.Projects.addedToBasket": "Dodano do koszyka", "app.containers.Projects.allocateBudget": "Przydziel swój budżet", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "W chwili obecnej nie są planowane żadne nadchodzące lub trwające wydarzenia.", "app.containers.Projects.nothingPosted": "Nic nie opublikowane", "app.containers.Projects.oneDocToReview": "1 dokument do przejrzenia", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 dokument do sprawdzenia w bieżącej fazie", "app.containers.Projects.oneSurvey": "1 ankieta", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 badanie w bieżącej fazie", "app.containers.Projects.options": "Opcje", "app.containers.Projects.participants": "Uczestnicy", "app.containers.Projects.participantsTooltip4": "Liczba ta odzwierciedla również anonimowe ankiety. Anonimowe przesyłanie ankiet jest możliwe, jeśli ankiety są otwarte dla wszystkich (zobacz zakładkę {accessRightsLink} dla tego projektu).", "app.containers.Projects.pastEvents": "Minione wydarzenia", "app.containers.Projects.phases": "Etapy", - "app.containers.Projects.poll": "1 sondaż", - "app.containers.Projects.pollInCurrentPhase": "1 badanie na obecnym etapie", "app.containers.Projects.previousPhase": "Poprzedni etap", "app.containers.Projects.project": "Projekt", "app.containers.Projects.projectTwitterMessage": "Niech twój głos zostanie usłyszany! Weź udział w {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Podziel się tym projektem", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Ankieta", - "app.containers.Projects.surveySubmissions": "przesyłanie ankiet", - "app.containers.Projects.surveySubmissionsTooltip3": "Zewnętrzne ankiety nie są brane pod uwagę.", "app.containers.Projects.takeThePoll": "Weź udział w sondażu", "app.containers.Projects.takeTheSurvey": "Weź udział w ankiecie", "app.containers.Projects.timeline": "Oś czasu", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, no {#wkłaady} one {# wkład} few {# wkłady} many {# wkładów} other {# wkłady}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# wkładu} one {# wkład} few {# wkłady} many {# wkładów} other {# wkłady}} na obecnym etapie", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# wkładu} one {# wkład} few {# wkłady} many {# wkładów} other {# wkłady}} na ostatnim etapie", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# wydarzenie} few {# wydarzenia} many {# wydarzeń} other {# wydarzenia}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# pomysł} few {# pomysły} many {# pomysłów} other {# pomysły}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# pomysł} few {# pomysły} many {# pomysłów} other {# pomysły}} na obecnym etapie", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# pomysł} few {# pomysły} many {# pomysłów} other {# pomysły}} w końcowej fazie", diff --git a/front/app/translations/pt-BR.json b/front/app/translations/pt-BR.json index 17de3f17842e..84c51c7d129a 100644 --- a/front/app/translations/pt-BR.json +++ b/front/app/translations/pt-BR.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Visão geral das fases", "app.containers.Projects.a11y_titleInputs": "Todas as entradas enviadas para este projeto", "app.containers.Projects.a11y_titleInputsPhase": "Todas as entradas enviadas para esta fase", - "app.containers.Projects.about": "Sobre", "app.containers.Projects.accessRights": "Direitos de acesso", "app.containers.Projects.addedToBasket": "Adicionado à sua cesta", "app.containers.Projects.allocateBudget": "Distribua o seu orçamento", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Nenhum evento futuro está agendado no momento.", "app.containers.Projects.nothingPosted": "Nada publicado ainda", "app.containers.Projects.oneDocToReview": "1 documento para analisar", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 documento para revisar na fase atual", "app.containers.Projects.oneSurvey": "1 pesquisa", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 pesquisa na fase atual", "app.containers.Projects.options": "Opções", "app.containers.Projects.participants": "Participantes", "app.containers.Projects.participantsTooltip4": "Esse número também reflete os envios anônimos de pesquisas. Os envios anônimos de pesquisas são possíveis se as pesquisas forem abertas a todos (consulte a guia {accessRightsLink} para este projeto).", "app.containers.Projects.pastEvents": "Eventos passados", "app.containers.Projects.phases": "Fases", - "app.containers.Projects.poll": "1 pesquisa", - "app.containers.Projects.pollInCurrentPhase": "1 pesquisa na fase atual", "app.containers.Projects.previousPhase": "Fase anterior", "app.containers.Projects.project": "Projeto", "app.containers.Projects.projectTwitterMessage": "Faça sua voz ser ouvida! Participe de {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Compartilhe este projeto", "app.containers.Projects.submitMyBasket": "Enviar cesta", "app.containers.Projects.survey": "Pesquisa", - "app.containers.Projects.surveySubmissions": "apresentação de inquéritos", - "app.containers.Projects.surveySubmissionsTooltip3": "Envios de pesquisas externas não são contados.", "app.containers.Projects.takeThePoll": "Faça a pesquisa", "app.containers.Projects.takeTheSurvey": "Faça a pesquisa", "app.containers.Projects.timeline": "Linha do tempo", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}} na fase atual", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}} na fase final", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# evento} other {# eventos}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideia} other {# ideias}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, nenhuma {# ideas} uma {# ideia} other {# ideias}} na fase atual", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ideia} other {# ideias}} na fase final", diff --git a/front/app/translations/ro-RO.json b/front/app/translations/ro-RO.json index f1d2b2b2c5cb..500aa3575b91 100644 --- a/front/app/translations/ro-RO.json +++ b/front/app/translations/ro-RO.json @@ -901,7 +901,6 @@ "app.containers.Projects.a11y_phasesOverview": "Rezumatul etapelor", "app.containers.Projects.a11y_titleInputs": "Toate postările trimise la acest proiect", "app.containers.Projects.a11y_titleInputsPhase": "Toate postările trimise în această fază", - "app.containers.Projects.about": "Despre", "app.containers.Projects.addedToBasket": "Adăugat în coșul dvs", "app.containers.Projects.allocateBudget": "Alocați bugetul", "app.containers.Projects.archived": "Arhivat", @@ -938,8 +937,6 @@ "app.containers.Projects.options": "Opțiuni", "app.containers.Projects.pastEvents": "Evenimente anterioare", "app.containers.Projects.phases": "Fazele", - "app.containers.Projects.poll": "1 sondaj", - "app.containers.Projects.pollInCurrentPhase": "1 sondaj în faza curentă", "app.containers.Projects.previousPhase": "Faza anterioară", "app.containers.Projects.project": "Proiect", "app.containers.Projects.projectTwitterMessage": "Fă-ți auzit vocea! Participa la {projectName} | {orgName}", @@ -970,7 +967,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribuție} other {# contribuții}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribuție} other {# contribuții}} în faza curentă", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribuție} other {# contribuții}} în faza finală", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# eveniment} other {# evenimente}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idei} one {# idee} other {# idei}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idei} one {# idee} other {# idei}} în faza curentă", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idee} other {# idei}} în faza finală", diff --git a/front/app/translations/sr-Latn.json b/front/app/translations/sr-Latn.json index 42ccfb6b7e6e..8d3f616f69ac 100644 --- a/front/app/translations/sr-Latn.json +++ b/front/app/translations/sr-Latn.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Pregled faza", "app.containers.Projects.a11y_titleInputs": "Svi unosi u ovom projektu", "app.containers.Projects.a11y_titleInputsPhase": "Svi unosi u ovoj fazi", - "app.containers.Projects.about": "Više informacija", "app.containers.Projects.accessRights": "Access rights", "app.containers.Projects.addedToBasket": "Dodato u vašu korpu", "app.containers.Projects.allocateBudget": "Rasporedite svoj budžet", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Trenutno nema zakazanih predstojećih i tekućih događaja.", "app.containers.Projects.nothingPosted": "Još uvek nema objava", "app.containers.Projects.oneDocToReview": "1 документ за преглед", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 документ за преглед у тренутној фази", "app.containers.Projects.oneSurvey": "1 анкета", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 анкета у тренутној фази", "app.containers.Projects.options": "Solucije", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "This number also reflects anonymous survey submissions. Anonymous survey submissions are possible if surveys are open to everyone (see the {accessRightsLink} tab for this project).", "app.containers.Projects.pastEvents": "Prethodni događaji", "app.containers.Projects.phases": "Faze", - "app.containers.Projects.poll": "1 anketa", - "app.containers.Projects.pollInCurrentPhase": "1 anketa u trenutnoj fazi", "app.containers.Projects.previousPhase": "Prethodna faza", "app.containers.Projects.project": "Projekti", "app.containers.Projects.projectTwitterMessage": "Neka se vaš glas čuje! Učestvujte u {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Podelite ovaj projekat", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Upitnik", - "app.containers.Projects.surveySubmissions": "поднесци анкете", - "app.containers.Projects.surveySubmissionsTooltip3": "Пријаве екстерне анкете се не рачунају.", "app.containers.Projects.takeThePoll": "Popunite anketu", "app.containers.Projects.takeTheSurvey": "Popunite upitnik", "app.containers.Projects.timeline": "Vremenski okviri", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# doprinos} other {# doprinosa}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# doprinos} other {# doprinosa}} u trenutnoj fazi", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# doprinos} other {# doprinosa}} u finalnoj fazi", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# događaj} other {# događaja}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideja} other {# ideja}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# ideja} other {# ideja}}", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ideja} other {# ideja}} u finalnoj fazi", diff --git a/front/app/translations/sr-SP.json b/front/app/translations/sr-SP.json index 2d673d8119c2..e31db1cc6f63 100644 --- a/front/app/translations/sr-SP.json +++ b/front/app/translations/sr-SP.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Преглед фаза", "app.containers.Projects.a11y_titleInputs": "Сви доприноси достављени овом пројекту", "app.containers.Projects.a11y_titleInputsPhase": "Сви доприноси достављени у овој фази", - "app.containers.Projects.about": "Више информација", "app.containers.Projects.accessRights": "Права приступа", "app.containers.Projects.addedToBasket": "Додато у вашу корпу", "app.containers.Projects.allocateBudget": "Одредите свој буџет", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Тренутно нису заказани предстојећи или текући догађаји.", "app.containers.Projects.nothingPosted": "Још ништа није објављено", "app.containers.Projects.oneDocToReview": "1 документ за преглед", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 документ за преглед у тренутној фази", "app.containers.Projects.oneSurvey": "1 анкета", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 анкета у тренутној фази", "app.containers.Projects.options": "Опције", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "Овај број такође одражава анонимно подношење анкете. Анонимно подношење анкета је могуће ако су анкете отворене за све (погледајте картицу {accessRightsLink} за овај пројекат).", "app.containers.Projects.pastEvents": "Прошли догађаји", "app.containers.Projects.phases": "Фазе", - "app.containers.Projects.poll": "1 анкета", - "app.containers.Projects.pollInCurrentPhase": "1 анкета у тренутној фази", "app.containers.Projects.previousPhase": "Претходна фаза", "app.containers.Projects.project": "Пројекат", "app.containers.Projects.projectTwitterMessage": "Нека се ваш глас чује! Учествујте у {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Поделите овај пројекат", "app.containers.Projects.submitMyBasket": "Пошаљите корпу", "app.containers.Projects.survey": "Анкета", - "app.containers.Projects.surveySubmissions": "поднесци анкете", - "app.containers.Projects.surveySubmissionsTooltip3": "Пријаве екстерне анкете се не рачунају.", "app.containers.Projects.takeThePoll": "Учествујте у анкети", "app.containers.Projects.takeTheSurvey": "Попуните анкету", "app.containers.Projects.timeline": "Временска линија", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# допринос} other {# доприноса}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# допринос} other {# доприноса}}", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# допринос} other {# доприноса}} у завршној фази", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# догађај} other {# догађаја}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# идеја} other {# идеје}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# идеја} other {# идејa}}", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# идеја} other {# идеје}} у завршној фази", diff --git a/front/app/translations/sv-SE.json b/front/app/translations/sv-SE.json index 457ddfee0ad7..76cc556a4dd4 100644 --- a/front/app/translations/sv-SE.json +++ b/front/app/translations/sv-SE.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Översikt över faser", "app.containers.Projects.a11y_titleInputs": "Alla indata som har skickats till det här projektet", "app.containers.Projects.a11y_titleInputsPhase": "Alla indata som har skickats till den här fasen", - "app.containers.Projects.about": "Om", "app.containers.Projects.accessRights": "Tillträdesrättigheter", "app.containers.Projects.addedToBasket": "Lades till i din varukorg", "app.containers.Projects.allocateBudget": "Fördela din budget", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Inga kommande eller pågående evenemang är för närvarande schemalagda.", "app.containers.Projects.nothingPosted": "Inget har publicerats ännu", "app.containers.Projects.oneDocToReview": "1 dokument till granskning", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 dokument att granska i den aktuella fasen", "app.containers.Projects.oneSurvey": "1 undersökning", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 undersökning i den aktuella fasen", "app.containers.Projects.options": "Alternativ", "app.containers.Projects.participants": "Deltagare", "app.containers.Projects.participantsTooltip4": "Denna siffra återspeglar även anonyma enkätsvar. Anonyma enkätsvar är möjliga om enkäterna är öppna för alla (se fliken {accessRightsLink} för detta projekt).", "app.containers.Projects.pastEvents": "Tidigare evenemang", "app.containers.Projects.phases": "Faser", - "app.containers.Projects.poll": "1 omröstning", - "app.containers.Projects.pollInCurrentPhase": "1 omröstning i den aktuella fasen", "app.containers.Projects.previousPhase": "Föregående fas", "app.containers.Projects.project": "Projekt", "app.containers.Projects.projectTwitterMessage": "Gör din röst hörd! Delta i {projectName} | {orgName}", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Dela det här projektet", "app.containers.Projects.submitMyBasket": "Submit basket", "app.containers.Projects.survey": "Undersökning", - "app.containers.Projects.surveySubmissions": "undersökningar som lämnats in", - "app.containers.Projects.surveySubmissionsTooltip3": "Inlämnade externa undersökningar räknas inte.", "app.containers.Projects.takeThePoll": "Gör omröstningen", "app.containers.Projects.takeTheSurvey": "Gör undersökningen", "app.containers.Projects.timeline": "Tidslinje", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# bidrag} other {# bidrag}}", "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# bidrag} other {# bidrag}} i den aktuella fasen", "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# bidrag} other {# bidrag}} i slutfasen", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# evenemang} other {# evenemang}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idé} other {# idéer}}", "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idé} other {# idéer}} i den aktuella fasen", "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idé} other {# idéer}} i slutfasen", diff --git a/front/app/translations/tr-TR.json b/front/app/translations/tr-TR.json index b17a083d332e..c7ec7a10d94f 100644 --- a/front/app/translations/tr-TR.json +++ b/front/app/translations/tr-TR.json @@ -1638,7 +1638,6 @@ "app.containers.Projects.a11y_phasesOverview": "Aşamalara genel bakış", "app.containers.Projects.a11y_titleInputs": "Bu projeye gönderilen tüm girdiler", "app.containers.Projects.a11y_titleInputsPhase": "Bu aşamada gönderilen tüm girdiler", - "app.containers.Projects.about": "Hakkında", "app.containers.Projects.accessRights": "Erişim hakları", "app.containers.Projects.addedToBasket": "Sepetinize eklendi", "app.containers.Projects.allocateBudget": "Bütçenizi ayırın", @@ -1681,16 +1680,12 @@ "app.containers.Projects.noUpcomingOrOngoingEvents": "Şu an için, planlanmış yaklaşan veya devam eden bir etkinlik yok.", "app.containers.Projects.nothingPosted": "Henüz hiçbir şey yayınlanmadı", "app.containers.Projects.oneDocToReview": "İncelenecek 1 belge", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "Mevcut aşamada incelenecek 1 belge", "app.containers.Projects.oneSurvey": "1 anket", - "app.containers.Projects.oneSurveyInCurrentPhase": "Mevcut aşamada 1 anket", "app.containers.Projects.options": "Seçenekler", "app.containers.Projects.participants": "Katılımcılar", "app.containers.Projects.participantsTooltip4": "Bu sayı aynı zamanda anonim anket gönderimlerini de yansıtmaktadır. Anketler herkese açıksa anonim anket gönderimleri mümkündür (bu proje için {accessRightsLink} sekmesine bakın).", "app.containers.Projects.pastEvents": "Geçmiş etkinlikler", "app.containers.Projects.phases": "Aşamalar", - "app.containers.Projects.poll": "1 oylama", - "app.containers.Projects.pollInCurrentPhase": "Şu andaki aşamada 1 oylama", "app.containers.Projects.previousPhase": "Önceki aşama", "app.containers.Projects.project": "Proje", "app.containers.Projects.projectTwitterMessage": "Sesinizi duyurun! {projectName} | {orgName} adlı projeye katılın", @@ -1714,8 +1709,6 @@ "app.containers.Projects.shareThisProject": "Bu projeyi paylaşın", "app.containers.Projects.submitMyBasket": "Sepetimi gönder", "app.containers.Projects.survey": "Anket", - "app.containers.Projects.surveySubmissions": "anket başvurulari", - "app.containers.Projects.surveySubmissionsTooltip3": "Harici anket gönderimleri sayılmamaktadır.", "app.containers.Projects.takeThePoll": "Oylamaya katılın", "app.containers.Projects.takeTheSurvey": "Ankete katılın", "app.containers.Projects.timeline": "Zaman Çizelgesi", @@ -1725,7 +1718,6 @@ "app.containers.Projects.xContributions": "{ideasCount, plural, one {# katkı} other {# katkı}}", "app.containers.Projects.xContributionsInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# katkı} other {# katkı}}", "app.containers.Projects.xContributionsInFinalPhase": "Son aşamada {ideasCount, plural, one {# katkı} other {# katkı}}", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# etkinlik} other {# etkinlik}}", "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# fikir} other {# fikir}}", "app.containers.Projects.xIdeasInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# fikir} other {# fikir}}", "app.containers.Projects.xIdeasInFinalPhase": "Son aşamada {ideasCount, plural, one {# fikir} other {# fikir}}", From 015651e03ef56c3e6d63f15ff3ce79ddbe6d7121 Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Tue, 15 Oct 2024 13:55:02 +0300 Subject: [PATCH 03/47] Remove dead code --- .../shared/header/ProjectSharingModal.tsx | 117 ------------------ .../ProjectsShowPage/shared/header/utils.ts | 12 -- 2 files changed, 129 deletions(-) delete mode 100644 front/app/containers/ProjectsShowPage/shared/header/ProjectSharingModal.tsx diff --git a/front/app/containers/ProjectsShowPage/shared/header/ProjectSharingModal.tsx b/front/app/containers/ProjectsShowPage/shared/header/ProjectSharingModal.tsx deleted file mode 100644 index 281d5766d134..000000000000 --- a/front/app/containers/ProjectsShowPage/shared/header/ProjectSharingModal.tsx +++ /dev/null @@ -1,117 +0,0 @@ -import React, { memo, useCallback } from 'react'; - -import { Box } from '@citizenlab/cl2-component-library'; -import { WrappedComponentProps } from 'react-intl'; - -import useAuthUser from 'api/me/useAuthUser'; -import useProjectById from 'api/projects/useProjectById'; - -import messages from 'containers/ProjectsShowPage/messages'; - -import SharingButtons from 'components/Sharing/SharingButtons'; -import T from 'components/T'; -import Modal from 'components/UI/Modal'; - -import { injectIntl } from 'utils/cl-intl'; -import { isNilOrError } from 'utils/helperUtils'; - -interface Props { - projectId: string; - opened: boolean; - className?: string; - close: () => void; -} - -const ProjectSharingModal = memo( - ({ projectId, className, opened, close, intl: { formatMessage } }) => { - const { data: authUser } = useAuthUser(); - const { data: project } = useProjectById(projectId); - - const projectUrl = location.href; - const utmParams = !isNilOrError(authUser) - ? { - source: 'share_project', - campaign: 'share_content', - content: authUser.data.id, - } - : { - source: 'share_project', - campaign: 'share_content', - }; - - const onClose = useCallback(() => { - close(); - }, [close]); - - if (project) { - const url = window.location.href; - return ( - } - > - - {opened && ( - <> - - {(title) => { - return ( - - ); - }} - - - )} - - - ); - } - - return null; - } -); - -export default injectIntl(ProjectSharingModal); diff --git a/front/app/containers/ProjectsShowPage/shared/header/utils.ts b/front/app/containers/ProjectsShowPage/shared/header/utils.ts index 13e9578ba433..116b14a9647f 100644 --- a/front/app/containers/ProjectsShowPage/shared/header/utils.ts +++ b/front/app/containers/ProjectsShowPage/shared/header/utils.ts @@ -13,15 +13,3 @@ export const hasEmbeddedSurvey = (phases: TPhases | null) => { } return hasSurveyPhase; }; - -export const hasNativeSurvey = (phases: TPhases | null) => { - let hasSurveyPhase = false; - if (!isNilOrError(phases)) { - phases.forEach((phase) => { - if (phase.attributes.participation_method === 'native_survey') { - hasSurveyPhase = true; - } - }); - } - return hasSurveyPhase; -}; From e1ba296b5d3990551ca7a51cc1c8c15126b9aa9e Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Tue, 15 Oct 2024 14:05:51 +0300 Subject: [PATCH 04/47] Remove unused strings --- .../containers/ProjectsShowPage/messages.ts | 134 ------------------ 1 file changed, 134 deletions(-) diff --git a/front/app/containers/ProjectsShowPage/messages.ts b/front/app/containers/ProjectsShowPage/messages.ts index ab2c0b872da5..597058ef0670 100644 --- a/front/app/containers/ProjectsShowPage/messages.ts +++ b/front/app/containers/ProjectsShowPage/messages.ts @@ -105,14 +105,6 @@ export default defineMessages({ id: 'app.containers.Projects.basketSubmitted', defaultMessage: 'Your basket has been submitted!', }, - selectionExceedsBudget: { - id: 'app.containers.Projects.selectionExceedsBudget', - defaultMessage: 'Your selection exceeds your budget.', - }, - requiredSelectionExceeded: { - id: 'app.containers.Projects.requiredSelectionExceeded', - defaultMessage: "You've exceeded the required selection.", - }, yourBudget: { id: 'app.containers.Projects.yourBudget', defaultMessage: 'Your budget', @@ -159,132 +151,6 @@ export default defineMessages({ defaultMessage: '{projectName} | from the participation platform of {orgName}', }, - xIdeas: { - id: 'app.containers.Projects.xIdeas', - defaultMessage: - '{ideasCount, plural, no {# ideas} one {# idea} other {# ideas}}', - }, - xIdeasInCurrentPhase: { - id: 'app.containers.Projects.xIdeasInCurrentPhase', - defaultMessage: - '{ideasCount, plural, no {# ideas} one {# idea} other {# ideas}} in the current phase', - }, - xIdeasInFinalPhase: { - id: 'app.containers.Projects.xIdeasInFinalPhase', - defaultMessage: - '{ideasCount, plural, no {# ideas} one {# idea} other {# ideas}} in the final phase', - }, - xContributions: { - id: 'app.containers.Projects.xContributions', - defaultMessage: - '{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}}', - }, - xContributionsInCurrentPhase: { - id: 'app.containers.Projects.xContributionsInCurrentPhase', - defaultMessage: - '{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}} in the current phase', - }, - xContributionsInFinalPhase: { - id: 'app.containers.Projects.xContributionsInFinalPhase', - defaultMessage: - '{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}} in the final phase', - }, - xProjects: { - id: 'app.containers.Projects.xProjects', - defaultMessage: - '{ideasCount, plural, no {# projects} one {# project} other {# projects}}', - }, - xProjectsInCurrentPhase: { - id: 'app.containers.Projects.xProjectsInCurrentPhase', - defaultMessage: - '{ideasCount, plural, no {# projects} one {# project} other {# projects}} in the current phase', - }, - xProjectsInFinalPhase: { - id: 'app.containers.Projects.xProjectsInFinalPhase', - defaultMessage: - '{ideasCount, plural, no {# projects} one {# project} other {# projects}} in the final phase', - }, - xOptions: { - id: 'app.containers.Projects.xOptions', - defaultMessage: - '{ideasCount, plural, no {# options} one {# option} other {# options}}', - }, - xOptionsInCurrentPhase: { - id: 'app.containers.Projects.xOptionsInCurrentPhase', - defaultMessage: - '{ideasCount, plural, no {# options} one {# option} other {# options}} in the current phase', - }, - xOptionsInFinalPhase: { - id: 'app.containers.Projects.xOptionsInFinalPhase', - defaultMessage: - '{ideasCount, plural, no {# options} one {# option} other {# options}} in the final phase', - }, - xIssues: { - id: 'app.containers.Projects.xIssues', - defaultMessage: - '{ideasCount, plural, no {# issues} one {# issue} other {# issues}}', - }, - xIssuesInCurrentPhase: { - id: 'app.containers.Projects.xIssuesInCurrentPhase', - defaultMessage: - '{ideasCount, plural, no {# issues} one {# issue} other {# issues}} in the current phase', - }, - xIssuesInFinalPhase: { - id: 'app.containers.Projects.xIssuesInFinalPhase', - defaultMessage: - '{ideasCount, plural, no {# issues} one {# issue} other {# issues}} in the final phase', - }, - xQuestions: { - id: 'app.containers.Projects.xQuestions', - defaultMessage: - '{ideasCount, plural, no {# questions} one {# questions} other {# questions}}', - }, - xQuestionsInCurrentPhase: { - id: 'app.containers.Projects.xQuestionsInCurrentPhase', - defaultMessage: - '{ideasCount, plural, no {# questions} one {# question} other {# questions}} in the current phase', - }, - xQuestionsInFinalPhase: { - id: 'app.containers.Projects.xQuestionsInFinalPhase', - defaultMessage: - '{ideasCount, plural, no {# questions} one {# question} other {# questions}} in the final phase', - }, - oneSurvey: { - id: 'app.containers.Projects.oneSurvey', - defaultMessage: '1 survey', - }, - oneDocToReview: { - id: 'app.containers.Projects.oneDocToReview', - defaultMessage: '1 document to review', - }, - budget: { - id: 'app.containers.Projects.budget', - defaultMessage: '{amount} budget', - }, - nothingPosted: { - id: 'app.containers.Projects.nothingPosted', - defaultMessage: 'Nothing posted yet', - }, - xPhases: { - id: 'app.containers.Projects.xPhases', - defaultMessage: - '{phasesCount, plural, no {# phases} one {# phase} other {# phases}}', - }, - xParticipants: { - id: 'app.containers.Projects.xParticipants', - defaultMessage: - '{participantsCount, plural, no {# participants} one {# participant} other {# participants}}', - }, - liveDataMessage: { - id: 'app.containers.Projects.liveDataMessage', - defaultMessage: - "You're viewing real-time data. Participant counts are continuously updated for administrators. Please note that regular users see cached data, which may result in slight differences in the numbers.", - }, - xUpcomingEvents: { - id: 'app.containers.Projects.xUpcomingEvents', - defaultMessage: - '{upcomingEventsCount, plural, no {# upcoming events} one {# upcoming event} other {# upcoming events}}', - }, allocateBudget: { id: 'app.containers.Projects.allocateBudget', defaultMessage: 'Allocate your budget', From aa78def88402033c5af70fec908e8005eedc7ebb Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Tue, 15 Oct 2024 14:08:00 +0300 Subject: [PATCH 05/47] Change to hide participation avatars --- .../ContentBuilder/Widgets/AboutBox/index.tsx | 17 +++++++++-------- .../ContentBuilder/Widgets/AboutBox/messages.ts | 4 ++-- .../shared/header/ProjectInfoSideBar/index.tsx | 6 +++--- 3 files changed, 14 insertions(+), 13 deletions(-) diff --git a/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx b/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx index b5a7ff58c524..667bc6859e50 100644 --- a/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx +++ b/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx @@ -15,10 +15,10 @@ import useCraftComponentDefaultPadding from '../../useCraftComponentDefaultPaddi import messages from './messages'; type AboutBoxProps = { - hideParticipationNumbers?: boolean; + hideParticipationAvatarsText?: boolean; }; -const AboutBox = ({ hideParticipationNumbers }: AboutBoxProps) => { +const AboutBox = ({ hideParticipationAvatarsText }: AboutBoxProps) => { const { projectId, slug } = useParams() as { projectId: string; slug: string; @@ -36,7 +36,7 @@ const AboutBox = ({ hideParticipationNumbers }: AboutBoxProps) => { {projectID && ( )} @@ -47,23 +47,24 @@ const AboutBoxSettings = () => { const { formatMessage } = useIntl(); const { actions: { setProp }, - hideParticipationNumbers, + hideParticipationAvatarsText, } = useNode((node) => ({ - hideParticipationNumbers: node.data.props.hideParticipationNumbers, + hideParticipationAvatarsText: node.data.props.hideParticipationAvatarsText, id: node.id, })); return ( { setProp( (props: AboutBoxProps) => - (props.hideParticipationNumbers = !hideParticipationNumbers) + (props.hideParticipationAvatarsText = + !hideParticipationAvatarsText) ); }} - label={formatMessage(messages.hideParticipationNumbersText)} + label={formatMessage(messages.hideParticipationAvatarsText)} /> ); diff --git a/front/app/components/admin/ContentBuilder/Widgets/AboutBox/messages.ts b/front/app/components/admin/ContentBuilder/Widgets/AboutBox/messages.ts index 6428725b52f9..7150ab31cd36 100644 --- a/front/app/components/admin/ContentBuilder/Widgets/AboutBox/messages.ts +++ b/front/app/components/admin/ContentBuilder/Widgets/AboutBox/messages.ts @@ -5,8 +5,8 @@ export default defineMessages({ id: 'app.containers.admin.ContentBuilder.participationBox', defaultMessage: 'Participation Box', }, - hideParticipationNumbersText: { + hideParticipationAvatarsText: { id: 'app.containers.admin.ContentBuilder.hideParticipationNumbersText', - defaultMessage: 'Hide participation numbers', + defaultMessage: 'Hide participation avatars', }, }); diff --git a/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx b/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx index 02eda8a2658b..44de17fd4ab0 100644 --- a/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx +++ b/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx @@ -22,12 +22,12 @@ const StyledProjectActionButtons = styled(ProjectActionButtons)` interface Props { projectId: string; - hideParticipationNumbers?: boolean; + hideParticipationAvatarsText?: boolean; className?: string; } const ProjectInfoSideBar = memo( - ({ projectId, className, hideParticipationNumbers = false }) => { + ({ projectId, className, hideParticipationAvatarsText = false }) => { const { data: authUser } = useAuthUser(); const { data: project } = useProjectById(projectId, !isAdmin(authUser)); const theme = useTheme(); @@ -42,7 +42,7 @@ const ProjectInfoSideBar = memo( return ( - {!hideParticipationNumbers && avatarIds.length > 0 && ( + {!hideParticipationAvatarsText && avatarIds.length > 0 && ( Date: Tue, 15 Oct 2024 14:08:43 +0300 Subject: [PATCH 06/47] Change id --- .../admin/ContentBuilder/Widgets/AboutBox/messages.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/app/components/admin/ContentBuilder/Widgets/AboutBox/messages.ts b/front/app/components/admin/ContentBuilder/Widgets/AboutBox/messages.ts index 7150ab31cd36..3c3d83275e73 100644 --- a/front/app/components/admin/ContentBuilder/Widgets/AboutBox/messages.ts +++ b/front/app/components/admin/ContentBuilder/Widgets/AboutBox/messages.ts @@ -6,7 +6,7 @@ export default defineMessages({ defaultMessage: 'Participation Box', }, hideParticipationAvatarsText: { - id: 'app.containers.admin.ContentBuilder.hideParticipationNumbersText', + id: 'app.containers.admin.ContentBuilder.hideParticipationAvatarsText', defaultMessage: 'Hide participation avatars', }, }); From 46651de6872704a9274c5a9f611652bb98dd4026 Mon Sep 17 00:00:00 2001 From: CircleCI Date: Tue, 15 Oct 2024 11:10:55 +0000 Subject: [PATCH 07/47] Translations updated by CI (extract-intl) --- front/app/translations/admin/ar-SA.json | 1 - front/app/translations/admin/cy-GB.json | 1 - front/app/translations/admin/da-DK.json | 1 - front/app/translations/admin/de-DE.json | 1 - front/app/translations/admin/en-CA.json | 1 - front/app/translations/admin/en-GB.json | 1 - front/app/translations/admin/en-IE.json | 1 - front/app/translations/admin/en.json | 2 +- front/app/translations/admin/es-CL.json | 1 - front/app/translations/admin/es-ES.json | 1 - front/app/translations/admin/fi-FI.json | 1 - front/app/translations/admin/fr-BE.json | 1 - front/app/translations/admin/fr-FR.json | 1 - front/app/translations/admin/hr-HR.json | 1 - front/app/translations/admin/lv-LV.json | 1 - front/app/translations/admin/nb-NO.json | 1 - front/app/translations/admin/nl-BE.json | 1 - front/app/translations/admin/nl-NL.json | 1 - front/app/translations/admin/pl-PL.json | 1 - front/app/translations/admin/pt-BR.json | 1 - front/app/translations/admin/sr-Latn.json | 1 - front/app/translations/admin/sr-SP.json | 1 - front/app/translations/admin/sv-SE.json | 1 - front/app/translations/admin/tr-TR.json | 1 - front/app/translations/ar-MA.json | 28 ----------------------- front/app/translations/ar-SA.json | 28 ----------------------- front/app/translations/ca-ES.json | 28 ----------------------- front/app/translations/cy-GB.json | 28 ----------------------- front/app/translations/da-DK.json | 28 ----------------------- front/app/translations/de-DE.json | 28 ----------------------- front/app/translations/el-GR.json | 28 ----------------------- front/app/translations/en-CA.json | 28 ----------------------- front/app/translations/en-GB.json | 28 ----------------------- front/app/translations/en-IE.json | 28 ----------------------- front/app/translations/en.json | 28 ----------------------- front/app/translations/es-CL.json | 28 ----------------------- front/app/translations/es-ES.json | 28 ----------------------- front/app/translations/fi-FI.json | 28 ----------------------- front/app/translations/fr-BE.json | 28 ----------------------- front/app/translations/fr-FR.json | 28 ----------------------- front/app/translations/hr-HR.json | 28 ----------------------- front/app/translations/hu-HU.json | 25 -------------------- front/app/translations/it-IT.json | 28 ----------------------- front/app/translations/kl-GL.json | 27 ---------------------- front/app/translations/lb-LU.json | 28 ----------------------- front/app/translations/lv-LV.json | 28 ----------------------- front/app/translations/mi.json | 25 -------------------- front/app/translations/nb-NO.json | 28 ----------------------- front/app/translations/nl-BE.json | 28 ----------------------- front/app/translations/nl-NL.json | 28 ----------------------- front/app/translations/pl-PL.json | 28 ----------------------- front/app/translations/pt-BR.json | 28 ----------------------- front/app/translations/ro-RO.json | 25 -------------------- front/app/translations/sr-Latn.json | 28 ----------------------- front/app/translations/sr-SP.json | 28 ----------------------- front/app/translations/sv-SE.json | 28 ----------------------- front/app/translations/tr-TR.json | 28 ----------------------- 57 files changed, 1 insertion(+), 938 deletions(-) diff --git a/front/app/translations/admin/ar-SA.json b/front/app/translations/admin/ar-SA.json index 759071117339..96766bcabc8b 100644 --- a/front/app/translations/admin/ar-SA.json +++ b/front/app/translations/admin/ar-SA.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "حذف", "app.containers.admin.ContentBuilder.error": "خطأ", "app.containers.admin.ContentBuilder.errorMessage": "يوجد خطأ في محتوى {locale}، يرجى حل المشكلة لتتمكن من حفظ التغييرات التي أجريتها", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "إخفاء أرقام المشاركة", "app.containers.admin.ContentBuilder.homepage.default": "تقصير", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "الأحداث", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "الأحداث", diff --git a/front/app/translations/admin/cy-GB.json b/front/app/translations/admin/cy-GB.json index e65097580017..14380f61e552 100644 --- a/front/app/translations/admin/cy-GB.json +++ b/front/app/translations/admin/cy-GB.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Dileu", "app.containers.admin.ContentBuilder.error": "gwall", "app.containers.admin.ContentBuilder.errorMessage": "Mae gwall ar gynnwys {locale} , trwsiwch y mater er mwyn gallu arbed eich newidiadau", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Cuddio niferoedd cyfranogiad", "app.containers.admin.ContentBuilder.homepage.default": "rhagosodedig", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Digwyddiadau", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Digwyddiadau", diff --git a/front/app/translations/admin/da-DK.json b/front/app/translations/admin/da-DK.json index 2cd900e8ec6c..fa2109119b5e 100644 --- a/front/app/translations/admin/da-DK.json +++ b/front/app/translations/admin/da-DK.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Slet", "app.containers.admin.ContentBuilder.error": "fejl", "app.containers.admin.ContentBuilder.errorMessage": "Der er en fejl i {locale}-indholdet, ret venligst problemet for at kunne gemme dine ændringer", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Skjul tal for deltagelse", "app.containers.admin.ContentBuilder.homepage.default": "standard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Begivenheder", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Begivenheder", diff --git a/front/app/translations/admin/de-DE.json b/front/app/translations/admin/de-DE.json index 5abdcc8caa94..bae4983b2d0a 100644 --- a/front/app/translations/admin/de-DE.json +++ b/front/app/translations/admin/de-DE.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Löschen", "app.containers.admin.ContentBuilder.error": "Fehler", "app.containers.admin.ContentBuilder.errorMessage": "Es liegt ein Fehler im Inhalt von {locale} vor. Bitte beheben Sie das Problem, um Ihre Änderungen speichern zu können.", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Teilnahmezahlen ausblenden", "app.containers.admin.ContentBuilder.homepage.default": "Standard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Veranstaltungen", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Veranstaltungen", diff --git a/front/app/translations/admin/en-CA.json b/front/app/translations/admin/en-CA.json index ccd0eb442e6e..a0bbe8e9f298 100644 --- a/front/app/translations/admin/en-CA.json +++ b/front/app/translations/admin/en-CA.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Delete", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "There is an error on {locale} content, please fix the issue to be able to save your changes", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Hide participation numbers", "app.containers.admin.ContentBuilder.homepage.default": "default", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Events", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Events", diff --git a/front/app/translations/admin/en-GB.json b/front/app/translations/admin/en-GB.json index 6708b9293991..6667dee38e0d 100644 --- a/front/app/translations/admin/en-GB.json +++ b/front/app/translations/admin/en-GB.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Delete", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "There is an error on {locale} content, please fix the issue to be able to save your changes", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Hide participation numbers", "app.containers.admin.ContentBuilder.homepage.default": "default", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Events", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Events", diff --git a/front/app/translations/admin/en-IE.json b/front/app/translations/admin/en-IE.json index ccd0eb442e6e..a0bbe8e9f298 100644 --- a/front/app/translations/admin/en-IE.json +++ b/front/app/translations/admin/en-IE.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Delete", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "There is an error on {locale} content, please fix the issue to be able to save your changes", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Hide participation numbers", "app.containers.admin.ContentBuilder.homepage.default": "default", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Events", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Events", diff --git a/front/app/translations/admin/en.json b/front/app/translations/admin/en.json index ccd0eb442e6e..ddc38cc351dc 100644 --- a/front/app/translations/admin/en.json +++ b/front/app/translations/admin/en.json @@ -2551,7 +2551,7 @@ "app.containers.admin.ContentBuilder.delete": "Delete", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "There is an error on {locale} content, please fix the issue to be able to save your changes", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Hide participation numbers", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Hide participation avatars", "app.containers.admin.ContentBuilder.homepage.default": "default", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Events", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Events", diff --git a/front/app/translations/admin/es-CL.json b/front/app/translations/admin/es-CL.json index f6a79527055f..d7412217d34c 100644 --- a/front/app/translations/admin/es-CL.json +++ b/front/app/translations/admin/es-CL.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Eliminar", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "Hay un error en el contenido de {locale}, arregle el problema para poder guardar sus cambios", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Ocultar las cifras de participación", "app.containers.admin.ContentBuilder.homepage.default": "por defecto", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Eventos", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Eventos", diff --git a/front/app/translations/admin/es-ES.json b/front/app/translations/admin/es-ES.json index 1fe54a2cb2bd..9efb69c1b086 100644 --- a/front/app/translations/admin/es-ES.json +++ b/front/app/translations/admin/es-ES.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Eliminar", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "Hay un error en el contenido de {locale}, arregle el problema para poder guardar sus cambios", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Ocultar las cifras de participación", "app.containers.admin.ContentBuilder.homepage.default": "por defecto", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Eventos", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Eventos", diff --git a/front/app/translations/admin/fi-FI.json b/front/app/translations/admin/fi-FI.json index 485199a9897f..b7ceb0a5aea4 100644 --- a/front/app/translations/admin/fi-FI.json +++ b/front/app/translations/admin/fi-FI.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Poistaa", "app.containers.admin.ContentBuilder.error": "virhe", "app.containers.admin.ContentBuilder.errorMessage": "Sisällössä {locale} on virhe. Korjaa ongelma, jotta voit tallentaa muutokset", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Piilota osallistumisnumerot", "app.containers.admin.ContentBuilder.homepage.default": "oletuksena", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Tapahtumat", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Tapahtumat", diff --git a/front/app/translations/admin/fr-BE.json b/front/app/translations/admin/fr-BE.json index 9ef8988e084f..a90627cfb23e 100644 --- a/front/app/translations/admin/fr-BE.json +++ b/front/app/translations/admin/fr-BE.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Supprimer", "app.containers.admin.ContentBuilder.error": "erreur", "app.containers.admin.ContentBuilder.errorMessage": "Il y a une erreur sur le contenu {locale}, veuillez corriger le problème pour pouvoir sauvegarder vos modifications", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Masquer les chiffres de participation", "app.containers.admin.ContentBuilder.homepage.default": "par défaut", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Événements", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Événements", diff --git a/front/app/translations/admin/fr-FR.json b/front/app/translations/admin/fr-FR.json index b7cd3e748804..78387901e6a5 100644 --- a/front/app/translations/admin/fr-FR.json +++ b/front/app/translations/admin/fr-FR.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Supprimer", "app.containers.admin.ContentBuilder.error": "erreur", "app.containers.admin.ContentBuilder.errorMessage": "Il y a une erreur sur le contenu {locale}, veuillez corriger le problème pour pouvoir sauvegarder vos modifications", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Masquer les chiffres de participation", "app.containers.admin.ContentBuilder.homepage.default": "par défaut", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Événements", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Événements", diff --git a/front/app/translations/admin/hr-HR.json b/front/app/translations/admin/hr-HR.json index b4cd342a53e3..3a5212eaaad0 100644 --- a/front/app/translations/admin/hr-HR.json +++ b/front/app/translations/admin/hr-HR.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Izbriši", "app.containers.admin.ContentBuilder.error": "pogreška", "app.containers.admin.ContentBuilder.errorMessage": "Pojavila se pogreška na {locale} sadržaju, ispravite problem kako biste mogli spremiti promjene", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Sakrij brojeve sudionika", "app.containers.admin.ContentBuilder.homepage.default": "zadano", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Događaji", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Događaji", diff --git a/front/app/translations/admin/lv-LV.json b/front/app/translations/admin/lv-LV.json index 99db85f5e78a..e2d1b18829c1 100644 --- a/front/app/translations/admin/lv-LV.json +++ b/front/app/translations/admin/lv-LV.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Dzēst", "app.containers.admin.ContentBuilder.error": "kļūda", "app.containers.admin.ContentBuilder.errorMessage": "{locale} saturā ir kļūda. Lūdzu, novērsiet šo kļūdu, lai varētu saglabāt izmaiņas.", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Paslēpt līdzdalības rādītājus", "app.containers.admin.ContentBuilder.homepage.default": "noklusējuma", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Notikumi", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Notikumi", diff --git a/front/app/translations/admin/nb-NO.json b/front/app/translations/admin/nb-NO.json index 65936b073d70..f1f3171dfe70 100644 --- a/front/app/translations/admin/nb-NO.json +++ b/front/app/translations/admin/nb-NO.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Slett", "app.containers.admin.ContentBuilder.error": "feil", "app.containers.admin.ContentBuilder.errorMessage": "Det oppstod en feil med innhold på {locale}, løs problemet for å lagre endringene", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Skjul deltakernummer", "app.containers.admin.ContentBuilder.homepage.default": "misligholde", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Arrangementer", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Arrangementer", diff --git a/front/app/translations/admin/nl-BE.json b/front/app/translations/admin/nl-BE.json index 97890d844cce..34b50dbbca62 100644 --- a/front/app/translations/admin/nl-BE.json +++ b/front/app/translations/admin/nl-BE.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Verwijder", "app.containers.admin.ContentBuilder.error": "fout", "app.containers.admin.ContentBuilder.errorMessage": "Er is een fout opgetreden in de {locale} inhoud, los het probleem op om je wijzigingen op te kunnen slaan", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Verberg deelnamecijfers", "app.containers.admin.ContentBuilder.homepage.default": "standaard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Activiteiten", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Activiteiten", diff --git a/front/app/translations/admin/nl-NL.json b/front/app/translations/admin/nl-NL.json index c2743e8a5041..0a85caeb3bcc 100644 --- a/front/app/translations/admin/nl-NL.json +++ b/front/app/translations/admin/nl-NL.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Verwijder", "app.containers.admin.ContentBuilder.error": "fout", "app.containers.admin.ContentBuilder.errorMessage": "Er is een fout opgetreden in de {locale} inhoud, los het probleem op om je wijzigingen op te kunnen slaan", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Verberg deelnamecijfers", "app.containers.admin.ContentBuilder.homepage.default": "standaard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Activiteiten", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Activiteiten", diff --git a/front/app/translations/admin/pl-PL.json b/front/app/translations/admin/pl-PL.json index f6a5beb70711..ce38d94b1ca1 100644 --- a/front/app/translations/admin/pl-PL.json +++ b/front/app/translations/admin/pl-PL.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Usuń", "app.containers.admin.ContentBuilder.error": "błąd", "app.containers.admin.ContentBuilder.errorMessage": "Wystąpił błąd w treści {locale}, proszę naprawić ten błąd, aby móc zapisać zmiany", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Ukryj liczbę uczestników", "app.containers.admin.ContentBuilder.homepage.default": "domyślny", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Wydarzenia", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Wydarzenia", diff --git a/front/app/translations/admin/pt-BR.json b/front/app/translations/admin/pt-BR.json index fc3f4db4b8f3..416bfb9955f7 100644 --- a/front/app/translations/admin/pt-BR.json +++ b/front/app/translations/admin/pt-BR.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Deletar", "app.containers.admin.ContentBuilder.error": "erro", "app.containers.admin.ContentBuilder.errorMessage": "Há um erro no conteúdo {locale}, por favor corrija o problema para poder guardar as suas alterações", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Ocultar números de participação", "app.containers.admin.ContentBuilder.homepage.default": "padrão", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Eventos", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Eventos", diff --git a/front/app/translations/admin/sr-Latn.json b/front/app/translations/admin/sr-Latn.json index fbe66d40fc7d..313736891bc7 100644 --- a/front/app/translations/admin/sr-Latn.json +++ b/front/app/translations/admin/sr-Latn.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Izbriši", "app.containers.admin.ContentBuilder.error": "greška", "app.containers.admin.ContentBuilder.errorMessage": "Došlo je do greške u sadržaju {locale}, rešite problem kako bi vaše promene bile sačuvane", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Hide participation numbers", "app.containers.admin.ContentBuilder.homepage.default": "default", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Events", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Events", diff --git a/front/app/translations/admin/sr-SP.json b/front/app/translations/admin/sr-SP.json index a60a0c32823c..7fe043fcf1cd 100644 --- a/front/app/translations/admin/sr-SP.json +++ b/front/app/translations/admin/sr-SP.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Избриши", "app.containers.admin.ContentBuilder.error": "грешка", "app.containers.admin.ContentBuilder.errorMessage": "Постоји грешка на {locale} садржају, решите проблем да бисте могли да сачувате промене", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Hide participation numbers", "app.containers.admin.ContentBuilder.homepage.default": "Уобичајено", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Догађаји", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Догађаји", diff --git a/front/app/translations/admin/sv-SE.json b/front/app/translations/admin/sv-SE.json index 1a99ec487c57..cbfc2da1792f 100644 --- a/front/app/translations/admin/sv-SE.json +++ b/front/app/translations/admin/sv-SE.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Radera", "app.containers.admin.ContentBuilder.error": "fel", "app.containers.admin.ContentBuilder.errorMessage": "Det finns ett fel i innehållet på {locale} – åtgärda problemet för att kunna spara dina ändringar", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Dölj deltagarsiffror", "app.containers.admin.ContentBuilder.homepage.default": "standard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Händelser", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Händelser", diff --git a/front/app/translations/admin/tr-TR.json b/front/app/translations/admin/tr-TR.json index 03cd5a17bd96..04294921a473 100644 --- a/front/app/translations/admin/tr-TR.json +++ b/front/app/translations/admin/tr-TR.json @@ -2551,7 +2551,6 @@ "app.containers.admin.ContentBuilder.delete": "Sil", "app.containers.admin.ContentBuilder.error": "hata", "app.containers.admin.ContentBuilder.errorMessage": "{locale} içeriğinde bir hata var, değişikliklerinizi kaydedebilmek için lütfen sorunu düzeltin", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Katılım sayılarını gizleyin", "app.containers.admin.ContentBuilder.homepage.default": "varsayılan", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Etkinlikler", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Etkinlikler", diff --git a/front/app/translations/ar-MA.json b/front/app/translations/ar-MA.json index f1fa572f23b1..40937252b1e5 100644 --- a/front/app/translations/ar-MA.json +++ b/front/app/translations/ar-MA.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "خصّص ميزانيتك", "app.containers.Projects.archived": "موثق", "app.containers.Projects.basketSubmitted": "تم إرسال سلَّتك!", - "app.containers.Projects.budget": "الميزانية {amount}", "app.containers.Projects.contributions": "المُساهمات", "app.containers.Projects.createANewPhase": "إنشاء مرحلة جديدة", "app.containers.Projects.currentPhase": "المرحلة الحالية", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "شارك في الاستطلاع", "app.containers.Projects.invisibleTitleSurvey": "شارك في الاستبيان", "app.containers.Projects.issues": "التعليقات ممكنة", - "app.containers.Projects.liveDataMessage": "أنت تشاهد بيانات في الوقت الفعلي. يتم تحديث أعداد المشاركين باستمرار للمسؤولين. يرجى ملاحظة أن المستخدمين العاديين يرون البيانات المخزنة مؤقتًا، مما قد يؤدي إلى اختلافات طفيفة في الأعداد.", "app.containers.Projects.location": "الموقع:", "app.containers.Projects.manageBasket": "إدارة السلة", "app.containers.Projects.meetMinBudgetRequirement": "يجب الوصول إلى الحد الأدنى للميزانية لإرسال سلَّتك.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "لا توجد أي أحداث سابقة لعرضها", "app.containers.Projects.noPhaseSelected": "لم يتم تحديد مرحلة", "app.containers.Projects.noUpcomingOrOngoingEvents": "لم تتم جدولة أي أحداث قادمة أو جارية حاليًا.", - "app.containers.Projects.nothingPosted": "لم يُنشر شيء بعد", - "app.containers.Projects.oneDocToReview": "وثيقة واحدة للمراجعة", - "app.containers.Projects.oneSurvey": "مسح واحد", "app.containers.Projects.options": "الخيارات", "app.containers.Projects.participants": "مشاركون", "app.containers.Projects.participantsTooltip4": "يعكس هذا الرقم أيضًا عمليات إرسال الاستطلاع المجهولة. من الممكن إرسال استطلاعات مجهولة المصدر إذا كانت الاستطلاعات مفتوحة للجميع (راجع علامة التبويب {accessRightsLink} لهذا المشروع).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "تحميل المزيد", "app.containers.Projects.removeItem": "إزالة العنصر", "app.containers.Projects.requiredSelection": "عدد العناصر المحددة المطلوب", - "app.containers.Projects.requiredSelectionExceeded": "لقد تجاوزت عدد العناصر المحددة المطلوب.", "app.containers.Projects.reviewDocument": "راجع المستند", "app.containers.Projects.seeTheContributions": "اعرض المُساهمات", "app.containers.Projects.seeTheIdeas": "شاهد الأفكار", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "اعرض المشروعات", "app.containers.Projects.seeTheQuestions": "اعرض الأسئلة", "app.containers.Projects.seeUpcomingEvents": "انظر الأحداث القادمة", - "app.containers.Projects.selectionExceedsBudget": "عدد العناصر التي حددتها يتجاوز ميزانيتك.", "app.containers.Projects.share": "مشاركة", "app.containers.Projects.shareThisProject": "مشاركة هذا المشروع", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "أحداث قادمة وجارية", "app.containers.Projects.upcomingEvents": "الأحداث القادمة", "app.containers.Projects.whatsAppMessage": "{اسم المشروع} | من منصة المشاركة لـ {اسم المنظمة}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الحالية", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الأخيرة", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# فكرة} other {# أفكار}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة الحالية", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة النهائية", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}} في المرحلة الحالية", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}} في المرحلة الأخيرة", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# options} واحدة {# option} أخرى {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# options} واحد {# option} آخر {# options}} في المرحلة الحالية", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# options} واحد {# option} آخر {# options}} في المرحلة الأخيرة", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# مشارك} other {# من المشاركين}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# مرحلة} other {# من المراحل}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}} في المرحلة الحالية", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}} في المرحلة الأخيرة", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}} في المرحلة الحالية", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}} في المرحلة الأخيرة", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# حدث قادم} other {# من الأحداث القادمة}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "استكشف جميع مشاريع {orgName} الجارية لفهم الكيفية التي يمكنك من خلالها المشاركة.تعال وناقش المشاريع المحلية الأكثر أهمية بالنسبة لك.\n ", "app.containers.ProjectsIndexPage.metaTitle1": "المشاريع | {orgName}", diff --git a/front/app/translations/ar-SA.json b/front/app/translations/ar-SA.json index a642e8f024d7..c532e715c780 100644 --- a/front/app/translations/ar-SA.json +++ b/front/app/translations/ar-SA.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "خصّص ميزانيتك", "app.containers.Projects.archived": "مؤرشف", "app.containers.Projects.basketSubmitted": "تم إرسال سلَّتك!", - "app.containers.Projects.budget": "الميزانية {amount}", "app.containers.Projects.contributions": "المُساهمات", "app.containers.Projects.createANewPhase": "إنشاء مرحلة جديدة", "app.containers.Projects.currentPhase": "المرحلة الحالية", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "شارك في الاستطلاع", "app.containers.Projects.invisibleTitleSurvey": "شارك في الاستبيان", "app.containers.Projects.issues": "المشكلات", - "app.containers.Projects.liveDataMessage": "أنت تشاهد بيانات في الوقت الفعلي. يتم تحديث أعداد المشاركين باستمرار للمسؤولين. يرجى ملاحظة أن المستخدمين العاديين يرون البيانات المخزنة مؤقتًا، مما قد يؤدي إلى اختلافات طفيفة في الأعداد.", "app.containers.Projects.location": "الموقع:", "app.containers.Projects.manageBasket": "إدارة السلة", "app.containers.Projects.meetMinBudgetRequirement": "يجب الوصول إلى الحد الأدنى للميزانية لإرسال سلَّتك.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "لا توجد أي أحداث سابقة لعرضها", "app.containers.Projects.noPhaseSelected": "لم يتم تحديد مرحلة", "app.containers.Projects.noUpcomingOrOngoingEvents": "لم تتم جدولة أي أحداث قادمة أو جارية حاليًا.", - "app.containers.Projects.nothingPosted": "لم يُنشر شيء بعد ", - "app.containers.Projects.oneDocToReview": "وثيقة واحدة للمراجعة", - "app.containers.Projects.oneSurvey": "مسح واحد", "app.containers.Projects.options": "الخيارات", "app.containers.Projects.participants": "مشاركون", "app.containers.Projects.participantsTooltip4": "يعكس هذا الرقم أيضًا عمليات إرسال الاستطلاع المجهولة. من الممكن إرسال استطلاعات مجهولة المصدر إذا كانت الاستطلاعات مفتوحة للجميع (راجع علامة التبويب {accessRightsLink} لهذا المشروع).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "اقرأ المزيد", "app.containers.Projects.removeItem": "إزالة العنصر", "app.containers.Projects.requiredSelection": "عدد العناصر المحددة المطلوب", - "app.containers.Projects.requiredSelectionExceeded": "لقد تجاوزت عدد العناصر المحددة المطلوب.", "app.containers.Projects.reviewDocument": "راجع المستند", "app.containers.Projects.seeTheContributions": "اعرض المُساهمات", "app.containers.Projects.seeTheIdeas": "شاهد الأفكار", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "اعرض المشروعات", "app.containers.Projects.seeTheQuestions": "اعرض الأسئلة", "app.containers.Projects.seeUpcomingEvents": "انظر الأحداث القادمة", - "app.containers.Projects.selectionExceedsBudget": "عدد العناصر التي حددتها يتجاوز ميزانيتك.", "app.containers.Projects.share": "مشاركة", "app.containers.Projects.shareThisProject": "مشاركة هذا المشروع", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "أحداث قادمة وجارية", "app.containers.Projects.upcomingEvents": "الأحداث القادمة", "app.containers.Projects.whatsAppMessage": "{اسم المشروع} | من منصة المشاركة لـ {اسم المنظمة}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الحالية", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الأخيرة", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# فكرة} other {# أفكار}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة الحالية", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة النهائية", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}} في المرحلة الحالية", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}} في المرحلة الأخيرة", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# options} واحد {# option} آخر {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# options} واحد {# option} آخر {# options}} في المرحلة الحالية", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# options} واحد {# option} آخر {# options}} في المرحلة الأخيرة", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# مشارك} other {# من المشاركين}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# مرحلة} other {# من المراحل}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}} في المرحلة الحالية", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}} في المرحلة الأخيرة", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}} في المرحلة الحالية ", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}} في المرحلة الأخيرة", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# حدث قادم} other {# من الأحداث القادمة}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "استكشف جميع مشاريع {orgName} الجارية لفهم الكيفية التي يمكنك من خلالها المشاركة.\n تعال وناقش المشاريع المحلية الأكثر أهمية بالنسبة لك.", "app.containers.ProjectsIndexPage.metaTitle1": "المشاريع | {orgName}", diff --git a/front/app/translations/ca-ES.json b/front/app/translations/ca-ES.json index 7d2e444ca469..ff57f1e5efa8 100644 --- a/front/app/translations/ca-ES.json +++ b/front/app/translations/ca-ES.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Assigneu el vostre pressupost", "app.containers.Projects.archived": "Arxivat", "app.containers.Projects.basketSubmitted": "S'ha enviat la vostra cistella!", - "app.containers.Projects.budget": "{amount} pressupost", "app.containers.Projects.contributions": "Aportacions", "app.containers.Projects.createANewPhase": "Crea una nova fase", "app.containers.Projects.currentPhase": "Fase actual", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Feu l'enquesta", "app.containers.Projects.invisibleTitleSurvey": "Fes l'enquesta", "app.containers.Projects.issues": "Comentaris", - "app.containers.Projects.liveDataMessage": "Esteu visualitzant dades en temps real. Els recomptes de participants s'actualitzen contínuament per als administradors. Tingueu en compte que els usuaris habituals veuen dades emmagatzemades a la memòria cau, la qual cosa pot provocar lleugeres diferències en els números.", "app.containers.Projects.location": "Ubicació:", "app.containers.Projects.manageBasket": "Gestionar la cistella", "app.containers.Projects.meetMinBudgetRequirement": "Compliu el pressupost mínim per enviar la vostra cistella.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "No hi ha esdeveniments passats per mostrar", "app.containers.Projects.noPhaseSelected": "No s'ha seleccionat cap fase", "app.containers.Projects.noUpcomingOrOngoingEvents": "Actualment no hi ha esdeveniments propers o en curs programats.", - "app.containers.Projects.nothingPosted": "Encara no s'ha publicat res", - "app.containers.Projects.oneDocToReview": "1 document per revisar", - "app.containers.Projects.oneSurvey": "1 enquesta", "app.containers.Projects.options": "Opcions", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "Aquest nombre també reflecteix enviaments anònims d'enquestes. Les enquestes anònimes són possibles si les enquestes estan obertes a tothom (vegeu la pestanya {accessRightsLink} d'aquest projecte).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Llegir més", "app.containers.Projects.removeItem": "Eliminar l'element", "app.containers.Projects.requiredSelection": "Selecció obligatòria", - "app.containers.Projects.requiredSelectionExceeded": "Heu superat la selecció necessària.", "app.containers.Projects.reviewDocument": "Revisa el document", "app.containers.Projects.seeTheContributions": "Consulteu les aportacions", "app.containers.Projects.seeTheIdeas": "Veure les idees", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Veure els projectes", "app.containers.Projects.seeTheQuestions": "Mirar les preguntes", "app.containers.Projects.seeUpcomingEvents": "Consulta els propers esdeveniments", - "app.containers.Projects.selectionExceedsBudget": "La vostra selecció supera el vostre pressupost.", "app.containers.Projects.share": "Compartir", "app.containers.Projects.shareThisProject": "Compartir aquest projecte", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Esdeveniments propers i en curs", "app.containers.Projects.upcomingEvents": "Pròxims esdeveniments", "app.containers.Projects.whatsAppMessage": "{projectName} | de la plataforma de participació de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribució} other {# contribucions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribució} other {# contribucions}} en la fase actual", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribució} other {# contribucions}} a la fase final", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# idees}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# idees}} en la fase actual", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# idees}} a la fase final", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comentari} other {# comentaris}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comentari} other {# comentaris}} en la fase actual", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comentari} other {# comentaris}} a la fase final", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# opció} other {# opcions}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# opció} other {# opcions}} en la fase actual", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# opció} other {# opcions}} a la fase final", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fase} other {# fases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projecte} other {# projectes}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# projecte} other {# projectes}} en la fase actual", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# projecte} other {# projectes}} a la fase final", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# preguntes} other {# preguntes}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# pregunta} other {# preguntes}} en la fase actual", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# pregunta} other {# preguntes}} a la fase final", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# esdeveniment proper} other {# esdeveniments propers}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Exploreu tots els projectes en curs de {orgName} per entendre com podeu participar. Veniu a parlar dels projectes locals que més l'importen.", "app.containers.ProjectsIndexPage.metaTitle1": "Projectes | {orgName}", diff --git a/front/app/translations/cy-GB.json b/front/app/translations/cy-GB.json index 06f85140d93f..e50bebabc558 100644 --- a/front/app/translations/cy-GB.json +++ b/front/app/translations/cy-GB.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Neilltuwch eich cyllideb", "app.containers.Projects.archived": "Wedi'i archifo", "app.containers.Projects.basketSubmitted": "Mae'r fasged wedi'i chyflwyno!", - "app.containers.Projects.budget": "{amount} cyllideb", "app.containers.Projects.contributions": "Cyfraniadau", "app.containers.Projects.createANewPhase": "Creu cyfnod newydd", "app.containers.Projects.currentPhase": "Cyfnod presennol", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Cymerwch y bleidlais", "app.containers.Projects.invisibleTitleSurvey": "Cymerwch yr arolwg", "app.containers.Projects.issues": "Sylwadau", - "app.containers.Projects.liveDataMessage": "Rydych chi'n edrych ar ddata amser real. Mae cyfrif cyfranogwyr yn cael ei ddiweddaru'n barhaus ar gyfer gweinyddwyr. Sylwch fod defnyddwyr rheolaidd yn gweld data wedi'i storio, a all arwain at wahaniaethau bach yn y niferoedd.", "app.containers.Projects.location": "Lleoliad:", "app.containers.Projects.manageBasket": "Rheoli basged", "app.containers.Projects.meetMinBudgetRequirement": "Cwrdd â'r isafswm cyllideb i gyflwyno'r fasged.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Dim digwyddiadau o'r gorffennol i'w harddangos", "app.containers.Projects.noPhaseSelected": "Dim cam wedi'i ddewis", "app.containers.Projects.noUpcomingOrOngoingEvents": "Nid oes unrhyw ddigwyddiadau ar y gweill neu barhaus wedi'u hamserlennu ar hyn o bryd.", - "app.containers.Projects.nothingPosted": "Dim wedi'i bostio eto", - "app.containers.Projects.oneDocToReview": "1 ddogfen i'w hadolygu", - "app.containers.Projects.oneSurvey": "1 arolwg", "app.containers.Projects.options": "Opsiynau", "app.containers.Projects.participants": "Cyfranogwyr", "app.containers.Projects.participantsTooltip4": "Mae'r rhif hwn hefyd yn adlewyrchu cyflwyniadau arolwg dienw. Mae cyflwyniadau arolwg dienw yn bosibl os yw arolygon yn agored i bawb (gweler y tab {accessRightsLink} ar gyfer y prosiect hwn).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Darllen mwy", "app.containers.Projects.removeItem": "Dileu eitem", "app.containers.Projects.requiredSelection": "Dewis gofynnol", - "app.containers.Projects.requiredSelectionExceeded": "Rydych chi wedi rhagori ar y dewis gofynnol.", "app.containers.Projects.reviewDocument": "Adolygu'r ddogfen", "app.containers.Projects.seeTheContributions": "Gweler y cyfraniadau", "app.containers.Projects.seeTheIdeas": "Gweler y syniadau", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Gweler y prosiectau", "app.containers.Projects.seeTheQuestions": "Gweler y cwestiynau", "app.containers.Projects.seeUpcomingEvents": "Gweler digwyddiadau sydd i ddod", - "app.containers.Projects.selectionExceedsBudget": "Mae eich dewis yn fwy na'ch cyllideb.", "app.containers.Projects.share": "Rhannu", "app.containers.Projects.shareThisProject": "Rhannwch y prosiect hwn", "app.containers.Projects.submitMyBasket": "Cyflwyno basged", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Digwyddiadau i ddod a digwyddiadau parhaus", "app.containers.Projects.upcomingEvents": "Digwyddiadau i ddod", "app.containers.Projects.whatsAppMessage": "{projectName} | o lwyfan cyfranogiad {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# cyfraniad} other {# cyfraniad}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# cyfraniad} other {# cyfraniad}} yn y cyfnod presennol", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# cyfraniad} other {# cyfraniad}} yn y cam olaf", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# syniad} other {# syniad}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# syniad} other {# syniad}} yn y cyfnod presennol", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# syniad} other {# syniad}} yn y cam olaf", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# sylw} other {# sylw}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# sylw} other {# sylw}} yn y cyfnod presennol", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# sylw} other {# sylw}} yn y cam olaf", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# opsiwn} other {# opsiwn}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# opsiwn} other {# opsiwn}} yn y cyfnod presennol", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# opsiwn} other {# opsiwn}} yn y cam olaf", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# cyfranogwr} other {# cyfranogwr}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# cyfnod} other {# cyfnod}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# prosiect} other {# prosiect}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# prosiect} other {# prosiect}} yn y cyfnod presennol", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# prosiect} other {# prosiect}} yn y cam olaf", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# cwestiwn} other {# cwestiwn}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# cwestiwn} other {# cwestiwn}} yn y cyfnod presennol", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# cwestiwn} other {# cwestiwn}} yn y cam olaf", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# digwyddiad sydd ar ddod} other {# digwyddiad i ddod}}", "app.containers.Projects.yourBudget": "Cyfanswm y gyllideb", "app.containers.ProjectsIndexPage.metaDescription": "Archwiliwch bob prosiect parhaus o {orgName} i ddeall sut y gallwch chi gymryd rhan.\n Dewch i drafod prosiectau lleol sydd bwysicaf i chi.", "app.containers.ProjectsIndexPage.metaTitle1": "Prosiectau | {orgName}", diff --git a/front/app/translations/da-DK.json b/front/app/translations/da-DK.json index c0faaf331f7e..6acc6fce820d 100644 --- a/front/app/translations/da-DK.json +++ b/front/app/translations/da-DK.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Fordel dit budget", "app.containers.Projects.archived": "Arkiveret", "app.containers.Projects.basketSubmitted": "Din kurv er blevet indsendt!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Bidrag", "app.containers.Projects.createANewPhase": "Opret en ny fase", "app.containers.Projects.currentPhase": "Igangværende fase", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Tag afstemningen", "app.containers.Projects.invisibleTitleSurvey": "Besvar spørgeskemaet", "app.containers.Projects.issues": "Høringssvar", - "app.containers.Projects.liveDataMessage": "Du ser data i realtid. Deltagerantallet opdateres løbende for administratorer. Bemærk, at almindelige brugere ser cachelagrede data, hvilket kan resultere i små forskelle i tallene.", "app.containers.Projects.location": "Lokalitet:", "app.containers.Projects.manageBasket": "Administrer kurv", "app.containers.Projects.meetMinBudgetRequirement": "Opfyld minimumsbudgettet for at indsende dine valg.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Ingen tidligere begivenheder at vise", "app.containers.Projects.noPhaseSelected": "Ingen fase valgt", "app.containers.Projects.noUpcomingOrOngoingEvents": "Der er ingen kommende eller igangværende begivenheder planlagt i øjeblikket.", - "app.containers.Projects.nothingPosted": "Intet postet endnu", - "app.containers.Projects.oneDocToReview": "1 dokument til gennemgang", - "app.containers.Projects.oneSurvey": "1 undersøgelse", "app.containers.Projects.options": "Muligheder", "app.containers.Projects.participants": "Deltagere", "app.containers.Projects.participantsTooltip4": "Dette tal afspejler også anonyme indsendelser af spørgeskemaer. Anonyme besvarelser er mulige, hvis undersøgelserne er åbne for alle (se {accessRightsLink} fanen for dette projekt).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Læs mere", "app.containers.Projects.removeItem": "Fjern emnet\n", "app.containers.Projects.requiredSelection": "Nødvendigt valg", - "app.containers.Projects.requiredSelectionExceeded": "Du har overskredet den krævede udvælgelse.", "app.containers.Projects.reviewDocument": "Gennemgå dokumentet", "app.containers.Projects.seeTheContributions": "Se alle bidrag", "app.containers.Projects.seeTheIdeas": "Se idéerne", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Se projekterne", "app.containers.Projects.seeTheQuestions": "Se spørgsmålene", "app.containers.Projects.seeUpcomingEvents": "Se kommende begivenheder", - "app.containers.Projects.selectionExceedsBudget": "Dit udvalg overstiger dit budget.", "app.containers.Projects.share": "Del", "app.containers.Projects.shareThisProject": "Del dette projekt", "app.containers.Projects.submitMyBasket": "Indsend kurv", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Kommende og igangværende begivenheder", "app.containers.Projects.upcomingEvents": "Kommende begivenheder", "app.containers.Projects.whatsAppMessage": "{projectName} | fra borgerinddragelsesplatformen hos {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# bidrag} one {# bidrag} other {# bidrag}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# bidrag} one {# bidrag} other {# bidrag}} i den nuværende fase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# bidrag} one {# bidrag} other {# bidrag}} i den sidste fase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}} i den nuværende fase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}} i den afsluttende fase", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# høringssvar} one {# høringssvar} other {# høringssvar}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# høringssvar} one {# høringssvar} other {# høringssvar}} i den nuværende fase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# høringssvar} one {# høringssvar} other {# høringssvar}} i den sidste fase", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# muligheder} one {# mulighed} other {# muligheder}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# muligheder} one {# mulighed} other {# muligheder}} i den nuværende fase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# muligheder} one {# mulighed} other {# muligheder}} i den sidste fase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# deltagere} one {# deltager} other {# deltagere}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# faser} one {# fase} other {# faser}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# projekter} one {# projekt} other {# projekter}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projekter} one {# projekt} other {# projekter}} i den nuværende fase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# projekter} one {# projekt} other {# projekter}} i den sidste fase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# spørgsmål} one {# spørgsmål} other {# spørgsmål}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# spørgsmål} one {# spørgsmål} other {# spørgsmål}} i den nuværende fase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# spørgsmål} one {# spørgsmål} other {# spørgsmål}} i den sidste fase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# kommende begivenheder} one {# kommende begivenhed} other {# kommende begivenheder}}", "app.containers.Projects.yourBudget": "Samlet budget", "app.containers.ProjectsIndexPage.metaDescription": "Udforsk alle igangværende projekter af {orgName} for at forstå, hvordan du kan deltage.\nKom og diskutér lokale projekter, der har betydning for dig.", "app.containers.ProjectsIndexPage.metaTitle1": "{tenantName, select, DeloitteDK {Verdensmål • {orgName}} other {Projekt • {orgName}}}", diff --git a/front/app/translations/de-DE.json b/front/app/translations/de-DE.json index 3c6417f6876f..ad7b51259ab3 100644 --- a/front/app/translations/de-DE.json +++ b/front/app/translations/de-DE.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Weisen Sie Ihren Haushalt zu", "app.containers.Projects.archived": "Archiviert", "app.containers.Projects.basketSubmitted": "Ihr Warenkorb wurde eingereicht!", - "app.containers.Projects.budget": "{amount} Budget", "app.containers.Projects.contributions": "Beiträge", "app.containers.Projects.createANewPhase": "Neue Phase erstellen", "app.containers.Projects.currentPhase": "Aktuelle Phase", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Zur Abstimmung", "app.containers.Projects.invisibleTitleSurvey": "An der Umfrage teilnehmen", "app.containers.Projects.issues": "Vorhaben", - "app.containers.Projects.liveDataMessage": "Sie sehen die Daten in Echtzeit. Die Teilnehmendenzahlen werden für Admins ständig aktualisiert. Bitte beachten Sie, dass normale Nutzende zwischengespeicherte Daten sehen, was zu leichten Abweichungen bei den Zahlen führen kann.", "app.containers.Projects.location": "Adresse oder Standort:", "app.containers.Projects.manageBasket": "Warenkorb bearbeiten", "app.containers.Projects.meetMinBudgetRequirement": "Erfüllen Sie das Mindestbudget, um Ihren Warenkorb einzureichen.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Keine vergangenen Veranstaltungen zum Anzeigen", "app.containers.Projects.noPhaseSelected": "Keine Phase ausgewählt", "app.containers.Projects.noUpcomingOrOngoingEvents": "Zurzeit sind keine Veranstaltungen geplant.", - "app.containers.Projects.nothingPosted": "Bisher wurde nichts gepostet\n", - "app.containers.Projects.oneDocToReview": "1 Dokument zur Überprüfung", - "app.containers.Projects.oneSurvey": "1 Umfrage", "app.containers.Projects.options": "Optionen", "app.containers.Projects.participants": "Teilnehmende", "app.containers.Projects.participantsTooltip4": "Diese Zahl spiegelt auch anonyme Umfragen wider. Anonyme Umfragen sind möglich, wenn die Umfragen für alle zugänglich sind (siehe {accessRightsLink} für dieses Projekt).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Lesen Sie mehr", "app.containers.Projects.removeItem": "Artikel entfernen", "app.containers.Projects.requiredSelection": "Erforderliche Auswahl", - "app.containers.Projects.requiredSelectionExceeded": "Sie haben die erforderliche Auswahl überschritten.", "app.containers.Projects.reviewDocument": "Dokument kommentieren", "app.containers.Projects.seeTheContributions": "Zu den Beiträgen", "app.containers.Projects.seeTheIdeas": "Zu den Ideen", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Zu den Projekten", "app.containers.Projects.seeTheQuestions": "Sehen Sie sich die Fragen an", "app.containers.Projects.seeUpcomingEvents": "Bevorstehende Veranstaltungen", - "app.containers.Projects.selectionExceedsBudget": "Ihre Auswahl übersteigt Ihr Budget.", "app.containers.Projects.share": "Teilen", "app.containers.Projects.shareThisProject": "Das Projekt teilen", "app.containers.Projects.submitMyBasket": "Warenkorb absenden", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Aktuelle Veranstaltungen", "app.containers.Projects.upcomingEvents": "Aktuelle Veranstaltungen", "app.containers.Projects.whatsAppMessage": "{projectName} | von der Beteiligungsplattform {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# Beitrag} other {# Beiträge}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# Beitrag} other {# Beiträge}} in der aktuellen Phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# Beitrag} other {# Beiträge}} in der finalen Phase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# Idee} other {# Ideen}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# Idee} other {# Ideen}} in der gegenwärtigen Phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# Idee} other {# Ideen}} in der finalen Phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# Vorhaben} other {# Vorhaben}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# Vorhaben} other {# Vorhaben}} in der aktuellen Phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# Vorhaben} other {# Vorhaben}} in der finalen Phase", - "app.containers.Projects.xOptions": "{ideasCount, Plural, keine {# Optionen} eine {# Option} andere {# Optionen}}\n", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# Optionen} other {# Optionen}} in der aktuellen Phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# Option} other {# Optionen}} in der finalen Phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# Teilnehmer*in} other {# Teilnehmende}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# Phase} other {# Phasen}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# Projekte} one {# Projekt} other {# Projekte}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# Projekt} other {# Projekte}} in der aktuellen Phase\n", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# Projekt} other {# Projekte}} in der finalen Phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# Frage} other {# Fragen}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# Frage} other {# Fragen}} in der aktuellen Phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# Frage} other {# Fragen}} in der finalen Phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# Veranstaltung} other {# Veranstaltungen}}", "app.containers.Projects.yourBudget": "Gesamtbudget", "app.containers.ProjectsIndexPage.metaDescription": "Erkunde alle laufende Projekte von {orgName} um zu verstehen, wie du daran teilnehmen kannst. Diskutiere über die lokalen Projekte, die dir am wichtigsten sind.", "app.containers.ProjectsIndexPage.metaTitle1": "Projekte • {orgName}", diff --git a/front/app/translations/el-GR.json b/front/app/translations/el-GR.json index 3bb7fc6262bc..abcfc2f9ebd8 100644 --- a/front/app/translations/el-GR.json +++ b/front/app/translations/el-GR.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Διαθέστε τον προϋπολογισμό σας", "app.containers.Projects.archived": "Αρχειοθετημένος", "app.containers.Projects.basketSubmitted": "Το καλάθι σας έχει υποβληθεί!", - "app.containers.Projects.budget": "{amount} προϋπολογισμός", "app.containers.Projects.contributions": "Συνεισφορές", "app.containers.Projects.createANewPhase": "Δημιουργήστε μια νέα φάση", "app.containers.Projects.currentPhase": "Τρέχουσα φάση", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Πάρτε μέρος στη δημοσκόπηση", "app.containers.Projects.invisibleTitleSurvey": "Πάρτε μέρος στην έρευνα", "app.containers.Projects.issues": "Σχόλια", - "app.containers.Projects.liveDataMessage": "Βλέπετε δεδομένα σε πραγματικό χρόνο. Ο αριθμός των συμμετεχόντων ενημερώνεται συνεχώς για τους διαχειριστές. Λάβετε υπόψη ότι οι κανονικοί χρήστες βλέπουν δεδομένα που έχουν αποθηκευτεί στην προσωρινή μνήμη, γεγονός που μπορεί να έχει ως αποτέλεσμα μικρές διαφορές στους αριθμούς.", "app.containers.Projects.location": "Τοποθεσία:", "app.containers.Projects.manageBasket": "Διαχείριση καλαθιού", "app.containers.Projects.meetMinBudgetRequirement": "Συμπληρώστε τον ελάχιστο προϋπολογισμό για να υποβάλετε το καλάθι σας.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Δεν υπάρχουν προηγούμενες εκδηλώσεις για εμφάνιση", "app.containers.Projects.noPhaseSelected": "Δεν έχει επιλεγεί φάση", "app.containers.Projects.noUpcomingOrOngoingEvents": "Προς το παρόν δεν έχουν προγραμματιστεί επερχόμενες ή τρέχουσες εκδηλώσεις.", - "app.containers.Projects.nothingPosted": "Τίποτα δεν έχει δημοσιευθεί ακόμα", - "app.containers.Projects.oneDocToReview": "1 έγγραφο προς εξέταση", - "app.containers.Projects.oneSurvey": "1 έρευνα", "app.containers.Projects.options": "Επιλογές", "app.containers.Projects.participants": "Συμμετέχοντες", "app.containers.Projects.participantsTooltip4": "Ο αριθμός αυτός αντικατοπτρίζει επίσης τις ανώνυμες υποβολές της έρευνας. Οι ανώνυμες υποβολές ερωτήσεων είναι δυνατές εάν οι έρευνες είναι ανοικτές σε όλους (βλ. την καρτέλα {accessRightsLink} για αυτό το έργο).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Διαβάστε περισσότερα", "app.containers.Projects.removeItem": "Κατάργηση στοιχείου", "app.containers.Projects.requiredSelection": "Υποχρεωτική επιλογή", - "app.containers.Projects.requiredSelectionExceeded": "Έχετε υπερβεί την απαιτούμενη επιλογή.", "app.containers.Projects.reviewDocument": "Επανεξέταση του εγγράφου", "app.containers.Projects.seeTheContributions": "Δείτε τις συνεισφορές", "app.containers.Projects.seeTheIdeas": "Δείτε τις ιδέες", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Δείτε τα έργα", "app.containers.Projects.seeTheQuestions": "Δείτε τις ερωτήσεις", "app.containers.Projects.seeUpcomingEvents": "Δείτε τις επερχόμενες εκδηλώσεις", - "app.containers.Projects.selectionExceedsBudget": "Η επιλογή σας υπερβαίνει τον προϋπολογισμό σας.", "app.containers.Projects.share": "Κοινοποίηση", "app.containers.Projects.shareThisProject": "Κοινοποίηση αυτού του έργου", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Επικείμενες και τρέχουσες εκδηλώσεις", "app.containers.Projects.upcomingEvents": "Επερχόμενες εκδηλώσεις", "app.containers.Projects.whatsAppMessage": "{projectName} | από την πλατφόρμα συμμετοχής του {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# συνεισφορά} other {# συνεισφορές}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# συνεισφορά} other {# συνεισφορές}} στην τρέχουσα φάση", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# συνεισφορά} other {# συνεισφορές}} στην τελική φάση", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ιδέα} other {# ιδέες}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# ιδέα} other {# ιδέες}} στην τρέχουσα φάση", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ιδέα} other {# ιδέες}} στην τελική φάση", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# σχόλιο} other {# σχόλια}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# σχόλιο} other {# σχόλια}} στην τρέχουσα φάση", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# σχόλιο} other {# σχόλια}} στην τελική φάση", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# επιλογή} other {# επιλογές}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# επιλογή} other {# επιλογές}} στην τρέχουσα φάση", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# επιλογή} other {# επιλογές}} στην τελική φάση", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# συμμετέχων} other {# συμμετέχοντες}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# φάση} other {# φάσεις}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# έργο} other {# έργα}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# έργο} other {# έργα}} στην τρέχουσα φάση", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# έργο} other {# έργο}} στην τελική φάση", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# ερωτήσεις} other {# ερωτήσεις}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# ερώτηση} other {# ερωτήσεις}} στην τρέχουσα φάση", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# ερώτηση} other {# ερωτήσεις}} στην τελική φάση", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# επερχόμενη εκδήλωση} other {# επερχόμενες εκδηλώσεις}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Εξερευνήστε όλα τα τρέχοντα έργα του {orgName} για να καταλάβετε πώς μπορείτε να συμμετάσχετε. Ελάτε να συζητήσετε τα τοπικά έργα που σας ενδιαφέρουν περισσότερο.", "app.containers.ProjectsIndexPage.metaTitle1": "Έργα | {orgName}", diff --git a/front/app/translations/en-CA.json b/front/app/translations/en-CA.json index 71f072be4389..0c55ca7f92eb 100644 --- a/front/app/translations/en-CA.json +++ b/front/app/translations/en-CA.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Allocate your budget", "app.containers.Projects.archived": "Archived", "app.containers.Projects.basketSubmitted": "The basket has been submitted!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Contributions", "app.containers.Projects.createANewPhase": "Create a new phase", "app.containers.Projects.currentPhase": "Current phase", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Take the poll", "app.containers.Projects.invisibleTitleSurvey": "Take the survey", "app.containers.Projects.issues": "Comments", - "app.containers.Projects.liveDataMessage": "You're viewing real-time data. Participant counts are continuously updated for administrators. Please note that regular users see cached data, which may result in slight differences in the numbers.", "app.containers.Projects.location": "Location:", "app.containers.Projects.manageBasket": "Manage basket", "app.containers.Projects.meetMinBudgetRequirement": "Meet the minimum budget to submit the basket.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "No past events to display", "app.containers.Projects.noPhaseSelected": "No phase selected", "app.containers.Projects.noUpcomingOrOngoingEvents": "No upcoming or ongoing events are currently scheduled.", - "app.containers.Projects.nothingPosted": "Nothing posted yet", - "app.containers.Projects.oneDocToReview": "1 document to review", - "app.containers.Projects.oneSurvey": "1 survey", "app.containers.Projects.options": "Options", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "This number also reflects anonymous survey submissions. Anonymous survey submissions are possible if surveys are open to everyone (see the {accessRightsLink} tab for this project).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Read more", "app.containers.Projects.removeItem": "Remove item", "app.containers.Projects.requiredSelection": "Required selection", - "app.containers.Projects.requiredSelectionExceeded": "You've exceeded the required selection.", "app.containers.Projects.reviewDocument": "Review the document", "app.containers.Projects.seeTheContributions": "See the contributions", "app.containers.Projects.seeTheIdeas": "See the ideas", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "See the projects", "app.containers.Projects.seeTheQuestions": "See the questions", "app.containers.Projects.seeUpcomingEvents": "See upcoming events", - "app.containers.Projects.selectionExceedsBudget": "Your selection exceeds your budget.", "app.containers.Projects.share": "Share", "app.containers.Projects.shareThisProject": "Share this project", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Upcoming and ongoing events", "app.containers.Projects.upcomingEvents": "Upcoming events", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the current phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the final phase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} in the current phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} in the final phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} in the current phase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} in the current phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} in the final phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# upcoming event} other {# upcoming events}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Explore all ongoing projects of {orgName} to understand how you can participate.\n Come discuss local projects that matter most to you.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/en-GB.json b/front/app/translations/en-GB.json index 1d0c23537007..446eb43f6235 100644 --- a/front/app/translations/en-GB.json +++ b/front/app/translations/en-GB.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Allocate your budget", "app.containers.Projects.archived": "Archived", "app.containers.Projects.basketSubmitted": "Your basket has been submitted!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Contributions", "app.containers.Projects.createANewPhase": "Create a new phase", "app.containers.Projects.currentPhase": "Current phase", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Take the poll", "app.containers.Projects.invisibleTitleSurvey": "{tenantName, select, westminster {Enter the challenge} other {Take the survey}}", "app.containers.Projects.issues": "Comments", - "app.containers.Projects.liveDataMessage": "You're viewing real-time data. Participant counts are continuously updated for administrators. Please note that regular users see cached data, which may result in slight differences in the numbers.", "app.containers.Projects.location": "Location:", "app.containers.Projects.manageBasket": "Manage basket", "app.containers.Projects.meetMinBudgetRequirement": "Meet the minimum budget to submit your basket.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "No past events to display", "app.containers.Projects.noPhaseSelected": "No phase selected", "app.containers.Projects.noUpcomingOrOngoingEvents": "No upcoming or ongoing events are currently scheduled.", - "app.containers.Projects.nothingPosted": "Nothing posted yet", - "app.containers.Projects.oneDocToReview": "1 document to review", - "app.containers.Projects.oneSurvey": "1 survey", "app.containers.Projects.options": "Options", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "This number also reflects anonymous survey submissions. Anonymous survey submissions are possible if surveys are open to everyone (see the {accessRightsLink} tab for this project).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Read more", "app.containers.Projects.removeItem": "Remove item", "app.containers.Projects.requiredSelection": "Required selection", - "app.containers.Projects.requiredSelectionExceeded": "You've exceeded the required selection.", "app.containers.Projects.reviewDocument": "Review the document", "app.containers.Projects.seeTheContributions": "See the contributions", "app.containers.Projects.seeTheIdeas": "See the ideas", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "See the projects", "app.containers.Projects.seeTheQuestions": "See the questions", "app.containers.Projects.seeUpcomingEvents": "See upcoming events", - "app.containers.Projects.selectionExceedsBudget": "Your selection exceeds your budget.", "app.containers.Projects.share": "Share", "app.containers.Projects.shareThisProject": "Share this project", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Upcoming and ongoing events", "app.containers.Projects.upcomingEvents": "Upcoming events", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the current phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the final phase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} in the current phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} in the final phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} in the current phase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} in the current phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} in the final phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# upcoming event} other {# upcoming events}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Explore all ongoing projects of {orgName} to understand how you can participate.\n Come discuss local projects that matter most to you.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/en-IE.json b/front/app/translations/en-IE.json index 45306fdb1e06..a5164a2d20d8 100644 --- a/front/app/translations/en-IE.json +++ b/front/app/translations/en-IE.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Allocate your budget", "app.containers.Projects.archived": "Archived", "app.containers.Projects.basketSubmitted": "The basket has been submitted!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Contributions", "app.containers.Projects.createANewPhase": "Create a new phase", "app.containers.Projects.currentPhase": "Current phase", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Take the poll", "app.containers.Projects.invisibleTitleSurvey": "Take the survey", "app.containers.Projects.issues": "Comments", - "app.containers.Projects.liveDataMessage": "You're viewing real-time data. Participant counts are continuously updated for administrators. Please note that regular users see cached data, which may result in slight differences in the numbers.", "app.containers.Projects.location": "Location:", "app.containers.Projects.manageBasket": "Manage basket", "app.containers.Projects.meetMinBudgetRequirement": "Meet the minimum budget to submit the basket.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "No past events to display", "app.containers.Projects.noPhaseSelected": "No phase selected", "app.containers.Projects.noUpcomingOrOngoingEvents": "No upcoming or ongoing events are currently scheduled.", - "app.containers.Projects.nothingPosted": "Nothing posted yet", - "app.containers.Projects.oneDocToReview": "1 document to review", - "app.containers.Projects.oneSurvey": "1 survey", "app.containers.Projects.options": "Options", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "This number also reflects anonymous survey submissions. Anonymous survey submissions are possible if surveys are open to everyone (see the {accessRightsLink} tab for this project).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Read more", "app.containers.Projects.removeItem": "Remove item", "app.containers.Projects.requiredSelection": "Required selection", - "app.containers.Projects.requiredSelectionExceeded": "You've exceeded the required selection.", "app.containers.Projects.reviewDocument": "Review the document", "app.containers.Projects.seeTheContributions": "See the contributions", "app.containers.Projects.seeTheIdeas": "See the ideas", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "See the projects", "app.containers.Projects.seeTheQuestions": "See the questions", "app.containers.Projects.seeUpcomingEvents": "See upcoming events", - "app.containers.Projects.selectionExceedsBudget": "Your selection exceeds your budget.", "app.containers.Projects.share": "Share", "app.containers.Projects.shareThisProject": "Share this project", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Upcoming and ongoing events", "app.containers.Projects.upcomingEvents": "Upcoming events", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the current phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the final phase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} in the current phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} in the final phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} in the current phase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} in the current phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} in the final phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# upcoming event} other {# upcoming events}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Explore all ongoing projects of {orgName} to understand how you can participate.\n Come discuss local projects that matter most to you.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/en.json b/front/app/translations/en.json index 45306fdb1e06..a5164a2d20d8 100644 --- a/front/app/translations/en.json +++ b/front/app/translations/en.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Allocate your budget", "app.containers.Projects.archived": "Archived", "app.containers.Projects.basketSubmitted": "The basket has been submitted!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Contributions", "app.containers.Projects.createANewPhase": "Create a new phase", "app.containers.Projects.currentPhase": "Current phase", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Take the poll", "app.containers.Projects.invisibleTitleSurvey": "Take the survey", "app.containers.Projects.issues": "Comments", - "app.containers.Projects.liveDataMessage": "You're viewing real-time data. Participant counts are continuously updated for administrators. Please note that regular users see cached data, which may result in slight differences in the numbers.", "app.containers.Projects.location": "Location:", "app.containers.Projects.manageBasket": "Manage basket", "app.containers.Projects.meetMinBudgetRequirement": "Meet the minimum budget to submit the basket.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "No past events to display", "app.containers.Projects.noPhaseSelected": "No phase selected", "app.containers.Projects.noUpcomingOrOngoingEvents": "No upcoming or ongoing events are currently scheduled.", - "app.containers.Projects.nothingPosted": "Nothing posted yet", - "app.containers.Projects.oneDocToReview": "1 document to review", - "app.containers.Projects.oneSurvey": "1 survey", "app.containers.Projects.options": "Options", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "This number also reflects anonymous survey submissions. Anonymous survey submissions are possible if surveys are open to everyone (see the {accessRightsLink} tab for this project).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Read more", "app.containers.Projects.removeItem": "Remove item", "app.containers.Projects.requiredSelection": "Required selection", - "app.containers.Projects.requiredSelectionExceeded": "You've exceeded the required selection.", "app.containers.Projects.reviewDocument": "Review the document", "app.containers.Projects.seeTheContributions": "See the contributions", "app.containers.Projects.seeTheIdeas": "See the ideas", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "See the projects", "app.containers.Projects.seeTheQuestions": "See the questions", "app.containers.Projects.seeUpcomingEvents": "See upcoming events", - "app.containers.Projects.selectionExceedsBudget": "Your selection exceeds your budget.", "app.containers.Projects.share": "Share", "app.containers.Projects.shareThisProject": "Share this project", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Upcoming and ongoing events", "app.containers.Projects.upcomingEvents": "Upcoming events", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the current phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the final phase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} in the current phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} in the final phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} in the current phase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} in the current phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} in the final phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# upcoming event} other {# upcoming events}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Explore all ongoing projects of {orgName} to understand how you can participate.\n Come discuss local projects that matter most to you.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/es-CL.json b/front/app/translations/es-CL.json index b612ad7d8eed..bbcb1b890033 100644 --- a/front/app/translations/es-CL.json +++ b/front/app/translations/es-CL.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Asigna tu presupuesto", "app.containers.Projects.archived": "Archivado", "app.containers.Projects.basketSubmitted": "Su selección ha sido enviada!", - "app.containers.Projects.budget": "{amount} presupuesto", "app.containers.Projects.contributions": "Propuestas", "app.containers.Projects.createANewPhase": "Crear una nueva fase", "app.containers.Projects.currentPhase": "Fase actual", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Responder la consulta ciudadana", "app.containers.Projects.invisibleTitleSurvey": "Haz la consulta", "app.containers.Projects.issues": "Asuntos", - "app.containers.Projects.liveDataMessage": "Estás viendo datos en tiempo real. El recuento de participantes se actualiza continuamente para los administradores. Ten en cuenta que los usuarios normales ven los datos en caché, lo que puede dar lugar a ligeras diferencias en las cifras.", "app.containers.Projects.location": "Ubicación:", "app.containers.Projects.manageBasket": "Gestionar mi bolsa", "app.containers.Projects.meetMinBudgetRequirement": "Cumpla con el presupuesto mínimo para presentar su bolsa.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "No eventos anteriores que mostrar", "app.containers.Projects.noPhaseSelected": "Ninguna fase seleccionada", "app.containers.Projects.noUpcomingOrOngoingEvents": "Actualmente no hay eventos próximos o en curso.", - "app.containers.Projects.nothingPosted": "Aún no se ha publicado nada", - "app.containers.Projects.oneDocToReview": "1 documento para revisar", - "app.containers.Projects.oneSurvey": "consulta", "app.containers.Projects.options": "Opciones", "app.containers.Projects.participants": "Participantes", "app.containers.Projects.participantsTooltip4": "Esta cifra también refleja los envíos anónimos de encuestas. Los envíos anónimos de encuestas son posibles si las encuestas están abiertas a todo el mundo (consulta la pestaña {accessRightsLink} de este proyecto).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Leer más", "app.containers.Projects.removeItem": "Eliminar elemento", "app.containers.Projects.requiredSelection": "Selección requerida", - "app.containers.Projects.requiredSelectionExceeded": "Has superado la selección requerida.", "app.containers.Projects.reviewDocument": "Revisa el documento", "app.containers.Projects.seeTheContributions": "Ver las contribuciones", "app.containers.Projects.seeTheIdeas": "Ve las ideas", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Ver los proyectos", "app.containers.Projects.seeTheQuestions": "Ver las preguntas", "app.containers.Projects.seeUpcomingEvents": "Ver próximos eventos", - "app.containers.Projects.selectionExceedsBudget": "Tu selección supera tu presupuesto.", "app.containers.Projects.share": "Compartir", "app.containers.Projects.shareThisProject": "Compartir este proyecto", "app.containers.Projects.submitMyBasket": "Enviar bolsa", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Eventos en curso y próximos eventos", "app.containers.Projects.upcomingEvents": "Próximos eventos", "app.containers.Projects.whatsAppMessage": "{projectName} | de la plataforma de participación de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}} en la fase actual", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}} en la fase final", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} en la fase actual", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# encuesta} other {# encuestas}} en la etapa final", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}} en la fase actual", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}} en la fase final", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}} en la fase actual", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}} en la fase final", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# Participante} other {# Participantes}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fase} other {# fases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# proyecto} one {# proyecto} other {# proyectos}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# proyectos} one {# proyecto} other {# proyectos}} en la fase actual", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# proyectos} one {# proyecto} other {# proyectos}} en la fase final", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}} en la fase actual", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}} en la fase final", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# próximo evento} other {# próximos eventos}}", "app.containers.Projects.yourBudget": "Presupuesto total", "app.containers.ProjectsIndexPage.metaDescription": "Explora todos los proyectos en curso de {orgName} para entender cómo puedes participar.\nÚnete a la conversación sobre los proyectos que más te interesen.", "app.containers.ProjectsIndexPage.metaTitle1": "{orgName}", diff --git a/front/app/translations/es-ES.json b/front/app/translations/es-ES.json index 3dcd9a6f7380..812b13e1cb2a 100644 --- a/front/app/translations/es-ES.json +++ b/front/app/translations/es-ES.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Asigna tu presupuesto", "app.containers.Projects.archived": "Archivado", "app.containers.Projects.basketSubmitted": "Su selección se ha presentado", - "app.containers.Projects.budget": "{amount} presupuesto", "app.containers.Projects.contributions": "Propuestas", "app.containers.Projects.createANewPhase": "Crear una nueva fase", "app.containers.Projects.currentPhase": "Fase actual", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Haz la consulta ciudadana", "app.containers.Projects.invisibleTitleSurvey": "Responde la consulta", "app.containers.Projects.issues": "Asuntos", - "app.containers.Projects.liveDataMessage": "Estás viendo datos en tiempo real. El recuento de participantes se actualiza continuamente para los administradores. Ten en cuenta que los usuarios normales ven los datos en caché, lo que puede dar lugar a ligeras diferencias en las cifras.", "app.containers.Projects.location": "Ubicación:", "app.containers.Projects.manageBasket": "Gestionar la bolsa", "app.containers.Projects.meetMinBudgetRequirement": "Cumpla con el presupuesto mínimo para presentar su bolsa.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "No eventos anteriores que mostrar", "app.containers.Projects.noPhaseSelected": "Ninguna fase seleccionada", "app.containers.Projects.noUpcomingOrOngoingEvents": "Actualmente no hay eventos próximos o en curso.", - "app.containers.Projects.nothingPosted": "Aún no se ha publicado nada", - "app.containers.Projects.oneDocToReview": "1 documento para revisar", - "app.containers.Projects.oneSurvey": "1 encuesta", "app.containers.Projects.options": "Opciones", "app.containers.Projects.participants": "Participantes", "app.containers.Projects.participantsTooltip4": "Esta cifra también refleja los envíos anónimos de encuestas. Los envíos anónimos de encuestas son posibles si las encuestas están abiertas a todo el mundo (consulta la pestaña {accessRightsLink} de este proyecto).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Leer más", "app.containers.Projects.removeItem": "Eliminar elemento", "app.containers.Projects.requiredSelection": "Selección requerida", - "app.containers.Projects.requiredSelectionExceeded": "Has superado la selección requerida.", "app.containers.Projects.reviewDocument": "Revisa el documento", "app.containers.Projects.seeTheContributions": "Ver las propuestas", "app.containers.Projects.seeTheIdeas": "Ve las ideas", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Ver los proyectos", "app.containers.Projects.seeTheQuestions": "Ver las preguntas", "app.containers.Projects.seeUpcomingEvents": "Ver próximos eventos", - "app.containers.Projects.selectionExceedsBudget": "Tu selección supera tu presupuesto.", "app.containers.Projects.share": "Compartir", "app.containers.Projects.shareThisProject": "Compartir este proyecto", "app.containers.Projects.submitMyBasket": "Enviar bolsa", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Eventos en curso y próximos eventos", "app.containers.Projects.upcomingEvents": "Próximos eventos", "app.containers.Projects.whatsAppMessage": "{projectName} | de la plataforma de participación de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# aporte} other {# propuestas}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# aporte} other {# propuestas}} en la fase actual", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# aporte} other {# propuestas}} en la fase final", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} en la fase actual", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} en la etapa final", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}} en la fase actual", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}} en la fase final", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}} en la fase actual", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}} en la fase final", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# Participante} other {# Participantes}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fase} other {# fases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# proyecto} one {# proyecto} other {# proyectos}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# proyectos} one {# proyecto} other {# proyectos}} en la fase actual", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# proyectos} one {# proyecto} other {# proyectos}} en la fase final", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}} en la fase actual", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}} en la fase final", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# próximo evento} other {# próximos eventos}}", "app.containers.Projects.yourBudget": "Presupuesto total", "app.containers.ProjectsIndexPage.metaDescription": "Explora todos los proyectos en curso de {orgName} para entender cómo puedes participar.\nÚnete a la conversación sobre los proyectos que más te interesen.", "app.containers.ProjectsIndexPage.metaTitle1": "{orgName}", diff --git a/front/app/translations/fi-FI.json b/front/app/translations/fi-FI.json index 5586fae517a1..0b18f71a51c5 100644 --- a/front/app/translations/fi-FI.json +++ b/front/app/translations/fi-FI.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Kohdista budjettisi", "app.containers.Projects.archived": "Arkistoitu", "app.containers.Projects.basketSubmitted": "Kori on lähetetty!", - "app.containers.Projects.budget": "{amount} budjetti", "app.containers.Projects.contributions": "Avustukset", "app.containers.Projects.createANewPhase": "Luo uusi vaihe", "app.containers.Projects.currentPhase": "Nykyinen vaihe", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Osallistu kyselyyn", "app.containers.Projects.invisibleTitleSurvey": "Vastaa kyselyyn", "app.containers.Projects.issues": "Kommentit", - "app.containers.Projects.liveDataMessage": "Katselet reaaliaikaista dataa. Osallistujamäärää päivitetään jatkuvasti ylläpitäjille. Huomaa, että tavalliset käyttäjät näkevät välimuistissa olevia tietoja, mikä voi aiheuttaa pieniä eroja luvuissa.", "app.containers.Projects.location": "Sijainti:", "app.containers.Projects.manageBasket": "Hallitse koria", "app.containers.Projects.meetMinBudgetRequirement": "Täytä vähimmäisbudjetti korin lähettämiseksi.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Ei näytettäviä menneitä tapahtumia", "app.containers.Projects.noPhaseSelected": "Vaihetta ei ole valittu", "app.containers.Projects.noUpcomingOrOngoingEvents": "Mitään tulevia tai meneillään olevia tapahtumia ei ole tällä hetkellä suunniteltu.", - "app.containers.Projects.nothingPosted": "Mitään ei ole vielä lähetetty", - "app.containers.Projects.oneDocToReview": "1 tarkistettava asiakirja", - "app.containers.Projects.oneSurvey": "1 kysely", "app.containers.Projects.options": "Vaihtoehdot", "app.containers.Projects.participants": "Osallistujat", "app.containers.Projects.participantsTooltip4": "Tämä luku heijastaa myös anonyymejä kyselyjä. Anonyymit kyselyn lähettäminen on mahdollista, jos kyselyt ovat avoimia kaikille (katso tämän projektin välilehti {accessRightsLink} ).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Lue lisää", "app.containers.Projects.removeItem": "Poista esine", "app.containers.Projects.requiredSelection": "Pakollinen valinta", - "app.containers.Projects.requiredSelectionExceeded": "Olet ylittänyt vaaditun valinnan.", "app.containers.Projects.reviewDocument": "Tarkista asiakirja", "app.containers.Projects.seeTheContributions": "Katso panokset", "app.containers.Projects.seeTheIdeas": "Katso ideat", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Katso projektit", "app.containers.Projects.seeTheQuestions": "Katso kysymykset", "app.containers.Projects.seeUpcomingEvents": "Katso tulevat tapahtumat", - "app.containers.Projects.selectionExceedsBudget": "Valintasi ylittää budjettisi.", "app.containers.Projects.share": "Jaa", "app.containers.Projects.shareThisProject": "Jaa tämä projekti", "app.containers.Projects.submitMyBasket": "Lähetä kori", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Tulevat tapahtumat", "app.containers.Projects.upcomingEvents": "Tulevat tapahtumat", "app.containers.Projects.whatsAppMessage": "{projectName} | {orgName}osallistumisalustalta", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# osallistuminen} other {# osallistuminen}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# osallistuminen} other {# osallistuminen}} nykyisessä vaiheessa", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# osallistuminen} other {# lahjoitus}} viimeisessä vaiheessa", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideaa}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# idea}} nykyisessä vaiheessa", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# idea}} loppuvaiheessa", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# kommentti} other {# kommenttia}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# kommentti} other {# kommenttia}} nykyisessä vaiheessa", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# kommentti} other {# kommenttia}} viimeisessä vaiheessa", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# vaihtoehto} other {# vaihtoehtoa}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# vaihtoehto} other {# vaihtoehtoa}} nykyisessä vaiheessa", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# vaihtoehto} other {# vaihtoehtoa}} viimeisessä vaiheessa", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# osallistuja} other {# osallistuja}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# vaihe} other {# vaihetta}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projekti} other {# projektia}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# projekti} other {# projektia}} nykyisessä vaiheessa", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# projekti} other {# projektia}} loppuvaiheessa", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# kysymystä} other {# kysymystä}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# kysymys} other {# kysymystä}} nykyisessä vaiheessa", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# kysymys} other {# kysymystä}} viimeisessä vaiheessa", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# tuleva tapahtuma} other {# tulevat tapahtumat}}", "app.containers.Projects.yourBudget": "Kokonaisbudjetti", "app.containers.ProjectsIndexPage.metaDescription": "Tutustu kaikkiin {orgName} käynnissä oleviin projekteihin ymmärtääksesi, kuinka voit osallistua.\n Tule keskustelemaan sinulle tärkeimmistä paikallisista projekteista.", "app.containers.ProjectsIndexPage.metaTitle1": "Projektit | {orgName}", diff --git a/front/app/translations/fr-BE.json b/front/app/translations/fr-BE.json index 409c35c6e42c..71909b9f5a83 100644 --- a/front/app/translations/fr-BE.json +++ b/front/app/translations/fr-BE.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Allouez votre budget", "app.containers.Projects.archived": "Archivé", "app.containers.Projects.basketSubmitted": "Votre panier a été soumis !", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Suggestions", "app.containers.Projects.createANewPhase": "Créer une nouvelle phase", "app.containers.Projects.currentPhase": "Phase en cours", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Répondre au sondage", "app.containers.Projects.invisibleTitleSurvey": "Répondre à l'enquête", "app.containers.Projects.issues": "Problémes", - "app.containers.Projects.liveDataMessage": "En tant qu'administrateur, les chiffres de participation qui vous sont présentés sont mis à jour en temps réel, contrairement aux autres utilisateurs qui, pour des raisons de performance, voient des données mises en cache. Cela peut entraîner de légères différences dans les chiffres.", "app.containers.Projects.location": "Localisation :", "app.containers.Projects.manageBasket": "Gérer le panier", "app.containers.Projects.meetMinBudgetRequirement": "Respectez le budget minimum pour soumettre votre panier.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Aucun événement passé à afficher", "app.containers.Projects.noPhaseSelected": "Pas de phase sélectionnée", "app.containers.Projects.noUpcomingOrOngoingEvents": "Aucun événement à venir ou en cours n'est actuellement prévu.", - "app.containers.Projects.nothingPosted": "Rien de posté pour le moment", - "app.containers.Projects.oneDocToReview": "1 document à réviser", - "app.containers.Projects.oneSurvey": "1 enquête", "app.containers.Projects.options": "Questions", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "Ce chiffre inclut également les réponses anonymes à l'enquête. Les réponses anonymes sont possibles si l'enquête est ouverte à tous (voir l'onglet {accessRightsLink} de ce projet).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Voir plus", "app.containers.Projects.removeItem": "Retirer l'élément", "app.containers.Projects.requiredSelection": "Sélection obligatoire", - "app.containers.Projects.requiredSelectionExceeded": "Vous avez dépassé la sélection requise.", "app.containers.Projects.reviewDocument": "Réviser le document", "app.containers.Projects.seeTheContributions": "Voir les suggestions", "app.containers.Projects.seeTheIdeas": "Voir les idées", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Voir les projets", "app.containers.Projects.seeTheQuestions": "Voir les questions", "app.containers.Projects.seeUpcomingEvents": "Voir les prochains événements", - "app.containers.Projects.selectionExceedsBudget": "Votre sélection dépasse votre budget.", "app.containers.Projects.share": "Partager", "app.containers.Projects.shareThisProject": "Partager ce projet", "app.containers.Projects.submitMyBasket": "Soumettre", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Événements à venir et en cours", "app.containers.Projects.upcomingEvents": "Événements à venir", "app.containers.Projects.whatsAppMessage": "{projectName} | de la plateforme de participation de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase actuelle", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase finale", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase en cours", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase finale", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}} dans la phase actuelle", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}} dans la phase finale", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# options} one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# options} one {# option} other {# options}} dans la phase actuelle", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# options} one {# option} other {# options}} dans la phase finale", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# participants} one {# participant} other {# participants}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# phases} one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural,no {# projets} one {# projet} other {# projets}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projects} one {# project} other {# projects}} dans la phase actuelle", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# projects} one {# project} other {# projects}} dans la phase finale", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# questions} one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# questions} one {# question} other {# questions}} dans la phase actuelle", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# questions} one {# question} other {# questions}} dans la phase finale", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# événements à venir} one {# événement à venir} other {# événements à venir}}", "app.containers.Projects.yourBudget": "Budget total", "app.containers.ProjectsIndexPage.metaDescription": "Découvrez tous les projets en cours à {orgName} pour comprendre comment vous pouvez participer. \n Venez discutez des sujets qui comptent pour vous.", "app.containers.ProjectsIndexPage.metaTitle1": "Projets | {orgName}", diff --git a/front/app/translations/fr-FR.json b/front/app/translations/fr-FR.json index d8bf6f6885bd..02de88191be8 100644 --- a/front/app/translations/fr-FR.json +++ b/front/app/translations/fr-FR.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Allouez votre budget", "app.containers.Projects.archived": "Archivé", "app.containers.Projects.basketSubmitted": "Votre panier a été soumis !", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Suggestions", "app.containers.Projects.createANewPhase": "Créer une nouvelle phase", "app.containers.Projects.currentPhase": "Phase en cours", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "{tenantName, select, vitrysurseine {Répondre à l'enquête} other {Répondre au sondage}}", "app.containers.Projects.invisibleTitleSurvey": "Répondre à l'enquête", "app.containers.Projects.issues": "Problèmes", - "app.containers.Projects.liveDataMessage": "En tant qu'administrateur, les chiffres de participation qui vous sont présentés sont mis à jour en temps réel, contrairement aux autres utilisateurs qui, pour des raisons de performance, voient des données mises en cache. Cela peut entraîner de légères différences dans les chiffres.", "app.containers.Projects.location": "Localisation :", "app.containers.Projects.manageBasket": "Gérer le panier", "app.containers.Projects.meetMinBudgetRequirement": "Respectez le budget minimum pour soumettre votre panier.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Aucun événement passé à afficher", "app.containers.Projects.noPhaseSelected": "Pas de phase sélectionnée", "app.containers.Projects.noUpcomingOrOngoingEvents": "Aucun événement à venir ou en cours n'est actuellement prévu.", - "app.containers.Projects.nothingPosted": "Rien de posté pour le moment", - "app.containers.Projects.oneDocToReview": "1 document à réviser", - "app.containers.Projects.oneSurvey": "1 enquête", "app.containers.Projects.options": "Options", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "Ce chiffre inclut également les réponses anonymes à l'enquête. Les réponses anonymes sont possibles si l'enquête est ouverte à tous (voir l'onglet {accessRightsLink} de ce projet).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Voir plus", "app.containers.Projects.removeItem": "Retirer l'élément", "app.containers.Projects.requiredSelection": "Sélection obligatoire", - "app.containers.Projects.requiredSelectionExceeded": "Vous avez dépassé la sélection requise.", "app.containers.Projects.reviewDocument": "Réviser le document", "app.containers.Projects.seeTheContributions": "Voir les suggestions", "app.containers.Projects.seeTheIdeas": "Voir les idées", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Voir les projets", "app.containers.Projects.seeTheQuestions": "Voir les questions", "app.containers.Projects.seeUpcomingEvents": "Voir les prochains événements", - "app.containers.Projects.selectionExceedsBudget": "Votre sélection dépasse votre budget.", "app.containers.Projects.share": "Partager", "app.containers.Projects.shareThisProject": "Partager ce projet", "app.containers.Projects.submitMyBasket": "Soumettre", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Événements à venir et en cours", "app.containers.Projects.upcomingEvents": "Événements à venir", "app.containers.Projects.whatsAppMessage": "{projectName} | de la plateforme de participation de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase actuelle", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase finale", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase en cours", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase finale", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}} dans la phase actuelle", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}} dans la phase finale", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# options} one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# options} one {# option} other {# options}} dans la phase actuelle", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# options} one {# option} other {# options}} dans la phase finale", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# participants} one {# participant} other {# participants}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# phases} one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural,no {# projets} one {# projet} other {# projets}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projets} one {# projet} other {# projets}} dans la phase actuelle", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# projects} one {# project} other {# projects}} dans la phase finale", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# questions} one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# questions} one {# question} other {# questions}} dans la phase actuelle", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# questions} one {# question} other {# questions}} dans la phase finale", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# événements à venir} one {# événement à venir} other {# événements à venir}}", "app.containers.Projects.yourBudget": "Budget total", "app.containers.ProjectsIndexPage.metaDescription": "Découvrez tous les projets en cours à {orgName} pour comprendre comment vous pouvez participer. \n Venez discutez des sujets qui comptent pour vous.", "app.containers.ProjectsIndexPage.metaTitle1": "Projets | {orgName}", diff --git a/front/app/translations/hr-HR.json b/front/app/translations/hr-HR.json index 561047b7a580..53cd35d0098c 100644 --- a/front/app/translations/hr-HR.json +++ b/front/app/translations/hr-HR.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Rasporedite svoj proračun", "app.containers.Projects.archived": "Arhivirano", "app.containers.Projects.basketSubmitted": "Vaši prijedlozi su poslani!", - "app.containers.Projects.budget": "{amount} proračun", "app.containers.Projects.contributions": "Doprinosi", "app.containers.Projects.createANewPhase": "Stvorite novu fazu", "app.containers.Projects.currentPhase": "Trenutačna faza", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Popunite anketu", "app.containers.Projects.invisibleTitleSurvey": "Popunite upitnik", "app.containers.Projects.issues": "Komentari", - "app.containers.Projects.liveDataMessage": "Gledate podatke u stvarnom vremenu. Broj sudionika se kontinuirano ažurira za administratore. Imajte na umu da obični korisnici vide predmemorirane podatke, što može rezultirati malim razlikama u brojevima.", "app.containers.Projects.location": "Lokacija:", "app.containers.Projects.manageBasket": "Upravljajte košaricom", "app.containers.Projects.meetMinBudgetRequirement": "Ispunite minimalni proračun kako biste predali košaricu.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Nema prošlih događaja za prikaz", "app.containers.Projects.noPhaseSelected": "Nije odabrana nijedna faza", "app.containers.Projects.noUpcomingOrOngoingEvents": "Trenutno nema zakazanih predstojećih događaja ili događaja u tijeku.", - "app.containers.Projects.nothingPosted": "Još uvijek nema objava", - "app.containers.Projects.oneDocToReview": "1 dokument za pregled", - "app.containers.Projects.oneSurvey": "1 anketa", "app.containers.Projects.options": "Opcije", "app.containers.Projects.participants": "Sudionici", "app.containers.Projects.participantsTooltip4": "Ovaj broj također odražava anonimne ankete. Anonimno slanje anketa moguće je ako su ankete otvorene za sve (pogledajte karticu {accessRightsLink} za ovaj projekt).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Pročitajte više", "app.containers.Projects.removeItem": "Izbriši stavku", "app.containers.Projects.requiredSelection": "Traženi odabir", - "app.containers.Projects.requiredSelectionExceeded": "Premašili ste neophodan odabir.", "app.containers.Projects.reviewDocument": "Pregledajte dokument", "app.containers.Projects.seeTheContributions": "Pogledajte doprinose", "app.containers.Projects.seeTheIdeas": "Pogledajte ideje", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Pogledajte projekte", "app.containers.Projects.seeTheQuestions": "Pogledajte pitanja", "app.containers.Projects.seeUpcomingEvents": "Pogledajte nadolazeće događaje", - "app.containers.Projects.selectionExceedsBudget": "Vaš izbor premašuje raspoloživi proračun.", "app.containers.Projects.share": "Podijeli", "app.containers.Projects.shareThisProject": "Podijelite ovaj projekt", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Predstojeći događaji i događaji u tijeku", "app.containers.Projects.upcomingEvents": "Nadolazeći događaji", "app.containers.Projects.whatsAppMessage": "{projectName} | s platforme za sudjelovanje organizacije {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# doprinos} other {# doprinosa}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# doprinos} other {# doprinosa}} u trenutnoj fazi", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# doprinos} other {# doprinosa}} u konačnoj fazi", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideja} other {# ideje}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# ideja} other {# ideje}} u trenutnoj fazi", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ideja} other {# ideje}} u konačnoj fazi", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# komentar} other {# komentar}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# komentar} other {# komentara}} u trenutnoj fazi", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# komentar} other {# komentara}} u konačnoj fazi", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# opcija} other {# opcije}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# opcija} other {# opcije}} u trenutnoj fazi", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# opcija} other {# opcije}} u konačnoj fazi", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# sudionik} other {# sudionika}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# faza} other {# faze}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projekt} other {# projekta}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# projekt} other {# projekta}} u trenutnoj fazi", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# projekt} other {# projekta}} u konačnoj fazi", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# pitanje} other {# pitanja}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# pitanje} other {# pitanja}} u trenutačnoj fazi", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# pitanje} other {# pitanja}} u konačnoj fazi", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# predstojeći događaj} other {# predstojeća događaja}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Istražite sve trenutne projekte {orgName} i saznajte kako možete sudjelovati. Pridružite nam se u raspravi o lokalnim projektima do kojih vam je stalo.", "app.containers.ProjectsIndexPage.metaTitle1": "Projekti | {orgName}", diff --git a/front/app/translations/hu-HU.json b/front/app/translations/hu-HU.json index 4fdf95c377c7..29930679eb01 100644 --- a/front/app/translations/hu-HU.json +++ b/front/app/translations/hu-HU.json @@ -749,7 +749,6 @@ "app.containers.Projects.allocateBudget": "Allocate your budget", "app.containers.Projects.archived": "Archived", "app.containers.Projects.basketSubmitted": "Your basket has been submitted!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Contributions", "app.containers.Projects.currentPhase": "Current phase", "app.containers.Projects.editProject": "Edit project", @@ -773,7 +772,6 @@ "app.containers.Projects.nextPhase": "Next phase", "app.containers.Projects.noItems": "You haven't selected any items yet", "app.containers.Projects.noPhaseSelected": "No phase selected", - "app.containers.Projects.nothingPosted": "Nothing posted yet", "app.containers.Projects.options": "Options", "app.containers.Projects.phases": "Phases", "app.containers.Projects.previousPhase": "Previous phase", @@ -784,14 +782,12 @@ "app.containers.Projects.readMore": "Read more", "app.containers.Projects.removeItem": "Remove item", "app.containers.Projects.requiredSelection": "Required selection", - "app.containers.Projects.requiredSelectionExceeded": "You've exceeded the required selection.", "app.containers.Projects.seeTheContributions": "See the contributions", "app.containers.Projects.seeTheIdeas": "See the ideas", "app.containers.Projects.seeTheIssues": "See the comments", "app.containers.Projects.seeTheOptions": "See the options", "app.containers.Projects.seeTheProjects": "See the projects", "app.containers.Projects.seeTheQuestions": "See the questions", - "app.containers.Projects.selectionExceedsBudget": "Your selection exceeds your budget.", "app.containers.Projects.share": "Share", "app.containers.Projects.shareThisProject": "Share this project", "app.containers.Projects.submitMyBasket": "Submit my basket", @@ -801,27 +797,6 @@ "app.containers.Projects.timeline": "Timeline", "app.containers.Projects.upcomingEvents": "Upcoming events", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the current phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the final phase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} in the current phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} in the final phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} in the current phase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} in the current phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} in the final phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# upcoming event} other {# upcoming events}}", "app.containers.Projects.yourBudget": "Your budget", "app.containers.ProjectsIndexPage.metaDescription": "Explore all ongoing projects of {orgName} to understand how you can participate.\n Come discuss local projects that matter most to you.", "app.containers.ProjectsIndexPage.pageTitle": "Projects", diff --git a/front/app/translations/it-IT.json b/front/app/translations/it-IT.json index dc2777495d7a..ddb95351b4cc 100644 --- a/front/app/translations/it-IT.json +++ b/front/app/translations/it-IT.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Allocate il vostro budget", "app.containers.Projects.archived": "Archiviato", "app.containers.Projects.basketSubmitted": "Il tuo cestino è stato inviato!", - "app.containers.Projects.budget": "{amount} bilancio", "app.containers.Projects.contributions": "Contributi", "app.containers.Projects.createANewPhase": "Crea una nuova fase", "app.containers.Projects.currentPhase": "Fase attuale", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Fai il sondaggio", "app.containers.Projects.invisibleTitleSurvey": "Prendi il sondaggio", "app.containers.Projects.issues": "Problemi", - "app.containers.Projects.liveDataMessage": "Stai visualizzando i dati in tempo reale. I conteggi dei partecipanti sono continuamente aggiornati per gli amministratori. Gli utenti abituali visualizzano i dati nella cache, il che può comportare leggere differenze nei numeri.", "app.containers.Projects.location": "Posizione:", "app.containers.Projects.manageBasket": "Gestire il carrello", "app.containers.Projects.meetMinBudgetRequirement": "Soddisfa il budget minimo per presentare il tuo carrello.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Nessun evento passato da visualizzare", "app.containers.Projects.noPhaseSelected": "Nessuna fase selezionata", "app.containers.Projects.noUpcomingOrOngoingEvents": "Al momento non sono programmati eventi imminenti o in corso.", - "app.containers.Projects.nothingPosted": "Non è stato ancora pubblicato nulla", - "app.containers.Projects.oneDocToReview": "1 documento da esaminare", - "app.containers.Projects.oneSurvey": "1 indagine", "app.containers.Projects.options": "Opzioni", "app.containers.Projects.participants": "Partecipanti", "app.containers.Projects.participantsTooltip4": "Questo numero riflette anche i sondaggi anonimi inviati. L'invio di sondaggi anonimi è possibile se i sondaggi sono aperti a tutti (vedi la scheda {accessRightsLink} per questo progetto).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Leggi di più", "app.containers.Projects.removeItem": "Rimuovi articolo", "app.containers.Projects.requiredSelection": "Selezione richiesta", - "app.containers.Projects.requiredSelectionExceeded": "Hai superato la selezione richiesta.", "app.containers.Projects.reviewDocument": "Esamina il documento", "app.containers.Projects.seeTheContributions": "Vedere i contributi", "app.containers.Projects.seeTheIdeas": "Vedere le idee", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Vedere i progetti", "app.containers.Projects.seeTheQuestions": "Vedere le domande", "app.containers.Projects.seeUpcomingEvents": "Vedi i prossimi eventi", - "app.containers.Projects.selectionExceedsBudget": "La tua selezione supera il tuo budget.", "app.containers.Projects.share": "Condividi", "app.containers.Projects.shareThisProject": "Condividi questo progetto", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Eventi imminenti e in corso", "app.containers.Projects.upcomingEvents": "Prossimi eventi", "app.containers.Projects.whatsAppMessage": "{projectName} | dalla piattaforma di partecipazione di {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contributo} other {# contributi}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contributo} other {# contributi}} nella fase attuale", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contributo} other {# contributi}} nella fase finale", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# idee}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# idee}} nella fase attuale", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# idee}} nella fase finale", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# numero} other {# numeri}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# problema} other {# problemi}} nella fase attuale", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# problema} other {# problemi}} nella fase finale", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# opzione} other {# opzioni}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# opzione} other {# opzioni}} nella fase attuale", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# opzione} other {# opzioni}} nella fase finale", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# partecipante} other {# partecipanti}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fase} other {# fasi}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# progetto} other {# progetti}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# progetto} other {# progetti}} nella fase attuale", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# progetto} other {# progetti}} nella fase finale", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# domande} other {# domande}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# domanda} other {# domande}} nella fase attuale", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# domanda} other {# domande}} nella fase finale", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# evento imminente} other {# eventi imminenti}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Esplora tutti i progetti in corso di {orgName} per capire come puoi partecipare.\n Vieni a discutere dei progetti locali che ti interessano di più.", "app.containers.ProjectsIndexPage.metaTitle1": "Progetti | {orgName}", diff --git a/front/app/translations/kl-GL.json b/front/app/translations/kl-GL.json index cc09225cdf93..4742cdfb7438 100644 --- a/front/app/translations/kl-GL.json +++ b/front/app/translations/kl-GL.json @@ -1112,7 +1112,6 @@ "app.containers.Projects.allocateBudget": "Fordel dit budget", "app.containers.Projects.archived": "Allagaasivimmut inissinneqarpoq", "app.containers.Projects.basketSubmitted": "Koorinniittut nassiunneqarput!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Ilanngussat", "app.containers.Projects.currentPhase": "Igangværende fase", "app.containers.Projects.document": "Document", @@ -1142,9 +1141,6 @@ "app.containers.Projects.noPastEvents": "No past events to display", "app.containers.Projects.noPhaseSelected": "Nikeriarfik toqqarneqarsimanngilaq", "app.containers.Projects.noUpcomingOrOngoingEvents": "No upcoming or ongoing events are currently scheduled.", - "app.containers.Projects.nothingPosted": "Suli ikkussisoqanngilaq", - "app.containers.Projects.oneDocToReview": "1 document to review", - "app.containers.Projects.oneSurvey": "1 survey", "app.containers.Projects.options": "Periarfissat", "app.containers.Projects.pastEvents": "Past events", "app.containers.Projects.phases": "Suliamik ingerlatsinissat", @@ -1157,7 +1153,6 @@ "app.containers.Projects.readMore": "Atuarnerugit", "app.containers.Projects.removeItem": "Toqqagak peeruk", "app.containers.Projects.requiredSelection": "Toqqaqquneqartoq", - "app.containers.Projects.requiredSelectionExceeded": "Toqqarneqarsinnaasut sipporsimavatit.", "app.containers.Projects.reviewDocument": "Review the document", "app.containers.Projects.seeTheContributions": "Ajornartorsiutit takukkit", "app.containers.Projects.seeTheIdeas": "Se ideerne", @@ -1165,7 +1160,6 @@ "app.containers.Projects.seeTheOptions": "Qinigassat takukkit", "app.containers.Projects.seeTheProjects": "Suliat takukkit", "app.containers.Projects.seeTheQuestions": "Apeqqutit takukkit", - "app.containers.Projects.selectionExceedsBudget": "Missingersuutigisatit sipporlugit toqqaasimavutit.", "app.containers.Projects.share": "Del", "app.containers.Projects.shareThisProject": "Del dette projekt", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1176,27 +1170,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Upcoming and ongoing events", "app.containers.Projects.upcomingEvents": "Siunissami pisussat", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, 0 {# ilanngussaqanngilaq} one {# ilanngussaq} other {# ilanngussat}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, 0 {# ilanngussaqanngilaq} one {# ilanngussaq} other {# ilanngussat}} immikkoortumi massakkut pineqartumi", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, 0 {# ilanngussaqanngilaq} one {# ilanngussaq} other {# ilanngussat}} immikkoortumi kingullermi", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}} in den nuværende fase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, 0 {isumassarsiat} one {# isumassarsiat} other {# isumassarsiat}} immikkoortumi kingullermi", - "app.containers.Projects.xIssues": "{ideasCount, plural, 0 {# ajornartorsiuteqanngilaq} one {# ajornartorsiut} other {# ajornartorsiutit}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, 0 {# ajornartorsiuteqanngilaq} one {# ajornartorsiut} other {# ajornartorsiutit}} immikkoortumi massakkut pineqartumi", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, 0 {# ajornartorsiuteqanngilaq} one {# ajornartorsiut} other {# ajornartorsiutit}} immikkoortumi kingullermi", - "app.containers.Projects.xOptions": "{ideasCount, plural, 0 {# qinigassaqanngilaq} one {# qinigassaq} other {# qinigassat}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, 0 {# qinigassaqanngilaq} one {# qinigassaq} other {# qinigassat}} immikkoortumi massakkut pineqartumi", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, 0 {# qinigassaqanngilaq} one {# qinigassaq} other {# qinigassat}} immikkoortumi kingullermi", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# deltagere} one {# deltager} other {# deltagere}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# faser} one {# fase} other {# faser}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, 0 {# suliassaqanngilaq} one {# suliaq} other {# suliat}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, 0 {# suliassaqanngilaq} one {# suliaq} other {# suliat}} immikkoortumi massakkut pineqartumi", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, 0 {# suliassaqanngilaq} one {# suliaq} other {# suliat}} immikkoortumi kingullermi", - "app.containers.Projects.xQuestions": "{ideasCount, plural, 0 {# apeqquteqanngilaq} one {# apeqqut} other {# apeqqutit}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, 0 {# apeqquteqanngilaq} one {# apeqqut} other {# apeqqutit}} immikkoortumi massakkut pineqartumi", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, 0 {# suliassaqanngilaq} one {# suliaq} other {# suliat}} immikkoortumi kingullermi", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# kommende begivenheder} one {# kommende begivenhed} other {# kommende begivenheder}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Uani {orgName} suliniutit ingerlasut tamaasa paasiniarlugu sumi peqataasinnaanerlutit misissukkit. Sumiiffimmi suliniutit ilinnut pingaarutillit oqallisiginiarlugit aggerit. ", "app.containers.ProjectsIndexPage.pageTitle": "Suliniutit ", diff --git a/front/app/translations/lb-LU.json b/front/app/translations/lb-LU.json index b268c1944635..f968157737f0 100644 --- a/front/app/translations/lb-LU.json +++ b/front/app/translations/lb-LU.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Verdeelt Äre Budget", "app.containers.Projects.archived": "Archivéiert", "app.containers.Projects.basketSubmitted": "Ären Akafskuerf gouf iwwermëttelt!", - "app.containers.Projects.budget": "{amount} Budget", "app.containers.Projects.contributions": "Bäiträg", "app.containers.Projects.createANewPhase": "Erstellt eng nei Phase", "app.containers.Projects.currentPhase": "Aktuell Phas", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Un der Ëmfro deelhuelen", "app.containers.Projects.invisibleTitleSurvey": "Un der Ëmfro deelhuelen", "app.containers.Projects.issues": "Kommentaren", - "app.containers.Projects.liveDataMessage": "Dir gesitt Echtzäitdaten. D'Zuel vun de Participanten gëtt kontinuéierlech fir Administrateuren aktualiséiert. Notéiert w.e.g. datt regelméisseg Benotzer cachedaten gesinn, wat zu liicht Differenzen an den Zuelen resultéiere kann.", "app.containers.Projects.location": "Standuert:", "app.containers.Projects.manageBasket": "Akafskuerf verwalten", "app.containers.Projects.meetMinBudgetRequirement": "Erfëllt de Mindestbudget, fir Ären Akafskuerf anzereechen.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Keng vergaangen Evenementer fir unzeweisen", "app.containers.Projects.noPhaseSelected": "Keng Phas ausgewielt", "app.containers.Projects.noUpcomingOrOngoingEvents": "Aktuell si keng bevirstoend oder lafend Evenementer geplangt.", - "app.containers.Projects.nothingPosted": "Momentan nach näischt gepost", - "app.containers.Projects.oneDocToReview": "1 Dokument fir ze iwwerpréiwen", - "app.containers.Projects.oneSurvey": "1 Ëmfro", "app.containers.Projects.options": "Optiounen", "app.containers.Projects.participants": "Participanten", "app.containers.Projects.participantsTooltip4": "Dës Zuel reflektéiert och anonym Ëmfro Soumissioun. Anonym Ëmfroe sinn méiglech wann Ëmfroe fir jiddereen op sinn (kuckt den Tab {accessRightsLink} fir dëse Projet).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Méi liesen", "app.containers.Projects.removeItem": "Element ewechhuelen", "app.containers.Projects.requiredSelection": "obligatoresch Auswiel", - "app.containers.Projects.requiredSelectionExceeded": "Dir hutt déi obligatoresch Auswiel iwwerschratt.", "app.containers.Projects.reviewDocument": "Iwwerpréift d'Dokument", "app.containers.Projects.seeTheContributions": "Bäiträg ukucken", "app.containers.Projects.seeTheIdeas": "Iddien ukucken", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Projeten ukucken", "app.containers.Projects.seeTheQuestions": "Froen ukucken", "app.containers.Projects.seeUpcomingEvents": "Gesinn zukünfteg Evenementer", - "app.containers.Projects.selectionExceedsBudget": "Är Auswiel iwwerschreit Äre Budget.", "app.containers.Projects.share": "Deelen", "app.containers.Projects.shareThisProject": "Projet deelen", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Bevirstoend oder lafend Evenementer", "app.containers.Projects.upcomingEvents": "Geplangten Evenementer", "app.containers.Projects.whatsAppMessage": "{projectName} | vun der participativer Plattform {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# Bäitrag} other {# Bäiträg}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# Bäitrag} other {# Bäiträg}} an der aktueller Phas", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# Bäitrag} other {# Bäträg}} an der Endphas", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# Iddi} other {# Iddien}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# Iddi} other {# Iddien}} an der aktueller Phas", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# Iddi} other {# Iddien}} an der Endphas", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# Kommentar} other {# Kommentaren}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# Kommentar} other {# Kommentaren}} an der aktueller Phas", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# Kommentar} other {# Kommentaren}} an der Endphas", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# Optioun} other {# Optiounen}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# Optioun} other {# Optiounen}} an der aktueller Phas", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# Optioun} other {# Optiounen}} an der Endphas", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# Participant} other {# Participanten}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# Phas} other {# Phasen}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# Projet} other {# Projeten}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# Projet} other {# Projeten}} an der aktueller Phas", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# Projet} other {# Projeten}} an der Endphas", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# Fro} other {# Froen}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# Fro} other {# Froen}} an der aktueller Phas", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# Fro} other {# Froen}} an der Endphas", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# geplangten Evenement} other {# geplangten Evenementer}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "All lafend Projeten op {orgName} ënnersichen, fir ze verstoen, wéi Dir deelhuele kënnt. Kommt an diskutéiert lokal Projeten, déi Iech am wichtegste sinn.", "app.containers.ProjectsIndexPage.metaTitle1": "Projeten | {orgName}", diff --git a/front/app/translations/lv-LV.json b/front/app/translations/lv-LV.json index 3ab5ac3be2c4..4cc9316c6a88 100644 --- a/front/app/translations/lv-LV.json +++ b/front/app/translations/lv-LV.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Piešķiriet savu budžetu", "app.containers.Projects.archived": "Arhivēts", "app.containers.Projects.basketSubmitted": "Jūsu grozs ir iesniegts!", - "app.containers.Projects.budget": "{amount} budžets", "app.containers.Projects.contributions": "Ieguldījumi", "app.containers.Projects.createANewPhase": "Izveidot jaunu posmu", "app.containers.Projects.currentPhase": "Pašreizējais posms", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Veikt aptauju", "app.containers.Projects.invisibleTitleSurvey": "Aizpildiet aptauju", "app.containers.Projects.issues": "Komentāri", - "app.containers.Projects.liveDataMessage": "Jūs skatāties reāllaika datus. Dalībnieku skaits administratoriem tiek pastāvīgi atjaunināts. Lūdzu, ņemiet vērā, ka parastie lietotāji redz kešētos datus, tāpēc skaitļi var nedaudz atšķirties.", "app.containers.Projects.location": "Atrašanās vieta:", "app.containers.Projects.manageBasket": "Pārvaldīt grozu", "app.containers.Projects.meetMinBudgetRequirement": "Nodrošiniet atbilstību minimālajam budžetam, lai iesniegtu savu grozu.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Nav attēlojamu pagātnes notikumu", "app.containers.Projects.noPhaseSelected": "Nav izvēlēts neviens posms", "app.containers.Projects.noUpcomingOrOngoingEvents": "Šobrīd grafikā nav iekļauti gaidāmie vai aktuālie notikumi.", - "app.containers.Projects.nothingPosted": "Vēl nekas nav publicēts", - "app.containers.Projects.oneDocToReview": "1 dokuments, kas jāpārskata", - "app.containers.Projects.oneSurvey": "1 aptauja", "app.containers.Projects.options": "Iespējas", "app.containers.Projects.participants": "Dalībnieki", "app.containers.Projects.participantsTooltip4": "Šis skaitlis atspoguļo arī anonīmās aptaujas iesniegumus. Anonīmi aptauju iesniegšana ir iespējama, ja aptaujas ir pieejamas ikvienam (skatīt šā projekta cilni {accessRightsLink}).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Lasīt vairāk", "app.containers.Projects.removeItem": "Noņemt vienumu", "app.containers.Projects.requiredSelection": "Nepieciešamā atlase", - "app.containers.Projects.requiredSelectionExceeded": "Jūs esat pārsniedzis nepieciešamo atlasi.", "app.containers.Projects.reviewDocument": "Dokumenta pārskatīšana", "app.containers.Projects.seeTheContributions": "Skatīt ieguldījumus", "app.containers.Projects.seeTheIdeas": "Skatīt idejas", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Skatīt projektus", "app.containers.Projects.seeTheQuestions": "Skatīt jautājumus", "app.containers.Projects.seeUpcomingEvents": "Skatiet gaidāmos pasākumus", - "app.containers.Projects.selectionExceedsBudget": "Jūsu atlase pārsniedz jūsu budžetu.", "app.containers.Projects.share": "Koplietot", "app.containers.Projects.shareThisProject": "Koplietot šo projektu", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Gaidāmie un aktuālie notikumi", "app.containers.Projects.upcomingEvents": "Gaidāmie notikumi", "app.containers.Projects.whatsAppMessage": "{projectName} | no {orgName} līdzdalības platformas", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# ieguldījums} other {# ieguldījumi}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} pašreizējā posmā", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} pēdējā posmā", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideja} other {# idejas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} pašreizējā posmā", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} pēdējā posmā", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# komentārs} other {# komentāri}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} pašreizējā posmā", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} pēdējā posmā", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# iespēja} other {# iespējas}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} pašreizējā posmā", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} pēdējā posmā", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# dalībnieks} other {# dalībnieki}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fāze} other {# fāzes}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projekts} other {# projekti}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} pašreizējā posmā", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} pēdējā posmā", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# jautājumi} other {# jautājumi}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} pašreizējā posmā", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} pēdējā posmā", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# gaidāmais notikums} other {# gaidāmie pasākumi}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Iepazīstieties ar visiem {orgName} aktuālajiem projektiem, lai saprastu, kā jūs varat tajos piedalīties.\n Nāciet apspriest vietējos projektus, kas jums ir vissvarīgākie.", "app.containers.ProjectsIndexPage.metaTitle1": "Projekti | {orgName}", diff --git a/front/app/translations/mi.json b/front/app/translations/mi.json index c3158ef3d4f3..a836b96f6925 100644 --- a/front/app/translations/mi.json +++ b/front/app/translations/mi.json @@ -749,7 +749,6 @@ "app.containers.Projects.allocateBudget": "Allocate your budget", "app.containers.Projects.archived": "Archived", "app.containers.Projects.basketSubmitted": "Your basket has been submitted!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Contributions", "app.containers.Projects.currentPhase": "Current phase", "app.containers.Projects.editProject": "Edit project", @@ -773,7 +772,6 @@ "app.containers.Projects.nextPhase": "Next phase", "app.containers.Projects.noItems": "You haven't selected any items yet", "app.containers.Projects.noPhaseSelected": "No phase selected", - "app.containers.Projects.nothingPosted": "Nothing posted yet", "app.containers.Projects.options": "Options", "app.containers.Projects.phases": "Phases", "app.containers.Projects.previousPhase": "Previous phase", @@ -784,14 +782,12 @@ "app.containers.Projects.readMore": "Read more", "app.containers.Projects.removeItem": "Remove item", "app.containers.Projects.requiredSelection": "Required selection", - "app.containers.Projects.requiredSelectionExceeded": "You've exceeded the required selection.", "app.containers.Projects.seeTheContributions": "See the contributions", "app.containers.Projects.seeTheIdeas": "See the ideas", "app.containers.Projects.seeTheIssues": "See the comments", "app.containers.Projects.seeTheOptions": "See the options", "app.containers.Projects.seeTheProjects": "See the projects", "app.containers.Projects.seeTheQuestions": "See the questions", - "app.containers.Projects.selectionExceedsBudget": "Your selection exceeds your budget.", "app.containers.Projects.share": "Share", "app.containers.Projects.shareThisProject": "Share this project", "app.containers.Projects.submitMyBasket": "Submit my basket", @@ -801,27 +797,6 @@ "app.containers.Projects.timeline": "Timeline", "app.containers.Projects.upcomingEvents": "Upcoming events", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the current phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the final phase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} in the current phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} in the final phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} in the current phase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} in the current phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} in the final phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# upcoming event} other {# upcoming events}}", "app.containers.Projects.yourBudget": "Your budget", "app.containers.ProjectsIndexPage.metaDescription": "Explore all ongoing projects of {orgName} to understand how you can participate.\n Come discuss local projects that matter most to you.", "app.containers.ProjectsIndexPage.pageTitle": "Kaupapa", diff --git a/front/app/translations/nb-NO.json b/front/app/translations/nb-NO.json index f293b3ed79c5..c4cf035c9129 100644 --- a/front/app/translations/nb-NO.json +++ b/front/app/translations/nb-NO.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Tildel ditt budsjett", "app.containers.Projects.archived": "Arkivert", "app.containers.Projects.basketSubmitted": "Your basket has been submitted!", - "app.containers.Projects.budget": "{amount} budsjett", "app.containers.Projects.contributions": "Bidrag", "app.containers.Projects.createANewPhase": "Opprett en ny fase", "app.containers.Projects.currentPhase": "Nåværende fase", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Bli med på avstemmingen", "app.containers.Projects.invisibleTitleSurvey": "Svar på undersøkelsen", "app.containers.Projects.issues": "Emner", - "app.containers.Projects.liveDataMessage": "Du ser på sanntidsdata. Deltakertall oppdateres fortløpende for administratorer. Vær oppmerksom på at vanlige brukere ser hurtigbufrede data, noe som kan føre til små forskjeller i tallene.", "app.containers.Projects.location": "Sted:", "app.containers.Projects.manageBasket": "Administrer handlekurv", "app.containers.Projects.meetMinBudgetRequirement": "Meet the minimum budget to submit your basket.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Ingen tidligere hendelser å vise", "app.containers.Projects.noPhaseSelected": "Ingen fase valgt", "app.containers.Projects.noUpcomingOrOngoingEvents": "Ingen kommende eller pågående hendelser er planlagt.", - "app.containers.Projects.nothingPosted": "Ingenting publisert ennå", - "app.containers.Projects.oneDocToReview": "1 dokument å vurdere", - "app.containers.Projects.oneSurvey": "1 undersøkelse", "app.containers.Projects.options": "Alternativer", "app.containers.Projects.participants": "Deltakere", "app.containers.Projects.participantsTooltip4": "Dette tallet gjenspeiler også anonyme undersøkelsesinnsendinger. Anonyme undersøkelser er mulige dersom undersøkelser er åpne for alle (se {accessRightsLink} -fanen for dette prosjektet).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Les mer", "app.containers.Projects.removeItem": "Fjern element", "app.containers.Projects.requiredSelection": "Påkrevd valg", - "app.containers.Projects.requiredSelectionExceeded": "Du har oversteget det påkrevde valget.", "app.containers.Projects.reviewDocument": "Se gjennom dokumentet", "app.containers.Projects.seeTheContributions": "Se bidragene", "app.containers.Projects.seeTheIdeas": "Se ideene", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Se prosjektene", "app.containers.Projects.seeTheQuestions": "Se spørsmålene", "app.containers.Projects.seeUpcomingEvents": "Se kommende arrangementer", - "app.containers.Projects.selectionExceedsBudget": "Valget ditt overstiger budsjettet.", "app.containers.Projects.share": "Del", "app.containers.Projects.shareThisProject": "Del dette prosjekt", "app.containers.Projects.submitMyBasket": "Submit my basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Kommende og pågående hendelser", "app.containers.Projects.upcomingEvents": "Kommende hendelser", "app.containers.Projects.whatsAppMessage": "{projectName} | fra involveringsplattformen av {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# bidrag} other {# bidrag}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# bidrag} other {# bidrag}} I den nåværende fasen", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idé} other {# ideer}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idé} other {# ideer}} i den nåværende fasen", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idé} other {# ideer}} i den avsluttende fasen", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# kommentar} other {# kommentarer}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# kommentar} other {# kommentarer}} i den nåværende fasen", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# kommentar} other {# kommentarer}} i den avsluttende fasen", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# alternativ} other {# alternativer}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# alternativ} other {# alternativer}} i den nåværende fasen", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# alternativ} other {# alternativer}} i den avsluttende fasen", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# deltaker} other {# deltakere}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fase} other {# faser}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# prosjekt} other {# prosjekter}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# prosjekt} other {# prosjekter}} i den nåværende fasen", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# prosjekt} other {# prosjekter}} i den avsluttende fasen", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# spørsmål} other {# spørsmål}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# spørsmål} other {# spørsmål}} i den nåværende fasen", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# spørsmål} other {# spørsmål}} i den avsluttende fasen", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# kommende hendelse} other {# kommende hendelser}}", "app.containers.Projects.yourBudget": "Your budget", "app.containers.ProjectsIndexPage.metaDescription": "Utforsk alle pågående prosjekter av {orgName} for å forstå hvordan du kan delta.\nKom og diskutere lokale prosjekter som har betydning for deg.", "app.containers.ProjectsIndexPage.metaTitle1": "Prosjekter | {orgName}", diff --git a/front/app/translations/nl-BE.json b/front/app/translations/nl-BE.json index 7846e5fe70fe..29fa37ada697 100644 --- a/front/app/translations/nl-BE.json +++ b/front/app/translations/nl-BE.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Maak je keuze", "app.containers.Projects.archived": "Gearchiveerd", "app.containers.Projects.basketSubmitted": "Je mandje is ingediend!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Onderwerpen", "app.containers.Projects.createANewPhase": "Maak een nieuwe fase aan", "app.containers.Projects.currentPhase": "Huidige fase", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Neem deel aan de peiling", "app.containers.Projects.invisibleTitleSurvey": "Deelnemen aan de enquête", "app.containers.Projects.issues": "{tenantName, select, gent {Verhalen} other {Reacties}}", - "app.containers.Projects.liveDataMessage": "Je bekijkt realtime data. Het aantal deelnemers wordt voortdurend geüpdatet voor beheerders. Houd er rekening mee dat voor gewone gebruikers een gecached aantal wordt getoond, waardoor de cijfers licht kunnen afwijken.", "app.containers.Projects.location": "Locatie:", "app.containers.Projects.manageBasket": "Beheer mandje", "app.containers.Projects.meetMinBudgetRequirement": "Voldoe aan het minimumbudget om je mandje in te dienen.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Geen afgelopen activiteiten om te tonen", "app.containers.Projects.noPhaseSelected": "Geen fase geselecteerd", "app.containers.Projects.noUpcomingOrOngoingEvents": "Er zijn momenteel geen aankomende of gestarte activiteiten.", - "app.containers.Projects.nothingPosted": "Nog niets gepost", - "app.containers.Projects.oneDocToReview": "1 document om te bekijken", - "app.containers.Projects.oneSurvey": "1 vragenlijst", "app.containers.Projects.options": "Opties", "app.containers.Projects.participants": "Deelnemers", "app.containers.Projects.participantsTooltip4": "Dit aantal weerspiegelt ook anoniem ingevulde enquêtes. Anoniem ingevulde enquêtes zijn mogelijk als enquêtes voor iedereen toegankelijk zijn (zie het tabblad {accessRightsLink} van dit project).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Lees meer", "app.containers.Projects.removeItem": "Item verwijderen", "app.containers.Projects.requiredSelection": "Vereiste selectie", - "app.containers.Projects.requiredSelectionExceeded": "Je hebt de vereiste selectie overschreden.", "app.containers.Projects.reviewDocument": "Bekijk het document", "app.containers.Projects.seeTheContributions": "Bekijk de onderwerpen", "app.containers.Projects.seeTheIdeas": "Bekijk de ideeën", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Bekijk de projecten", "app.containers.Projects.seeTheQuestions": "Bekijk de vragen", "app.containers.Projects.seeUpcomingEvents": "Komende evenementen bekijken", - "app.containers.Projects.selectionExceedsBudget": "Je selectie overschrijdt je budget.", "app.containers.Projects.share": "Delen", "app.containers.Projects.shareThisProject": "Deel dit project", "app.containers.Projects.submitMyBasket": "Mandje indienen", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Aankomende en gestarte activiteiten", "app.containers.Projects.upcomingEvents": "Aankomende activiteiten", "app.containers.Projects.whatsAppMessage": "{projectName} | van het participatieplatform van {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# onderwerp} other {# onderwerpen}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# onderwerp} other {# onderwerpen}} in de huidige fase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# onderwerp} other {# onderwerpen}} in de laatste fase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# ideeën} one {# idee} other {# ideeën}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# ideeën} one {# idee} other {# ideeën}} in de huidige fase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idee} other {# ideeën}} in de laatste fase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}} in de huidige fase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}} in de laatste fase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# optie} other {# opties}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# optie} other {# opties}} in de huidige fase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# optie} other {# opties}} in de laatste fase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# deelnemers} one {# deelnemer} other {# deelnemers}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# fasen} one {# fase} other {# fasen}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projecten}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projecten}} in de huidige fase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projecten}} in de laatste fase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# vraag} other {# vragen}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# vraag} other {# vragen}} in de huidige fase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# vraag} other {# vragen}} in de laatste fase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# aankomende activiteiten} one {# aankomende activiteit} other {# aankomende activiteiten}}", "app.containers.Projects.yourBudget": "Totale budget", "app.containers.ProjectsIndexPage.metaDescription": "Verken alle lopende projecten van {orgName} en ontdek hoe jij kan deelnemen.\nBespreek die lokale projecten die voor jou het belangrijkst zijn.", "app.containers.ProjectsIndexPage.metaTitle1": "Projecten • {orgName}", diff --git a/front/app/translations/nl-NL.json b/front/app/translations/nl-NL.json index 87b4251a1e39..777a04920816 100644 --- a/front/app/translations/nl-NL.json +++ b/front/app/translations/nl-NL.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Maak je keuze", "app.containers.Projects.archived": "Gearchiveerd", "app.containers.Projects.basketSubmitted": "Je mandje is ingediend!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Bijdragen", "app.containers.Projects.createANewPhase": "Maak een nieuwe fase aan", "app.containers.Projects.currentPhase": "Huidige fase", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Neem deel aan de peiling", "app.containers.Projects.invisibleTitleSurvey": "Deelnemen aan de vragenlijst", "app.containers.Projects.issues": "Reacties", - "app.containers.Projects.liveDataMessage": "Je bekijkt realtime data. Het aantal deelnemers wordt voortdurend geüpdatet voor beheerders. Houd er rekening mee dat voor gewone gebruikers een gecached aantal wordt getoond, waardoor de cijfers licht kunnen afwijken.", "app.containers.Projects.location": "Locatie:", "app.containers.Projects.manageBasket": "Beheer mandje", "app.containers.Projects.meetMinBudgetRequirement": "Voldoe aan het minimumbudget om je mandje in te dienen.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Geen afgelopen activiteiten om te tonen", "app.containers.Projects.noPhaseSelected": "Geen fase geselecteerd", "app.containers.Projects.noUpcomingOrOngoingEvents": "Er zijn momenteel geen aankomende of gestarte activiteiten.", - "app.containers.Projects.nothingPosted": "Nog niets gepost", - "app.containers.Projects.oneDocToReview": "1 document om te bekijken", - "app.containers.Projects.oneSurvey": "1 vragenlijst", "app.containers.Projects.options": "Opties", "app.containers.Projects.participants": "Deelnemers", "app.containers.Projects.participantsTooltip4": "Dit aantal weerspiegelt ook anoniem ingevulde enquêtes. Anoniem ingevulde enquêtes zijn mogelijk als enquêtes voor iedereen toegankelijk zijn (zie het tabblad {accessRightsLink} van dit project).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Lees meer", "app.containers.Projects.removeItem": "Item verwijderen", "app.containers.Projects.requiredSelection": "Vereiste selectie", - "app.containers.Projects.requiredSelectionExceeded": "Je hebt de vereiste selectie overschreden.", "app.containers.Projects.reviewDocument": "Bekijk het document", "app.containers.Projects.seeTheContributions": "Bekijk de bijdragen", "app.containers.Projects.seeTheIdeas": "Bekijk de ideeën", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Bekijk de projecten", "app.containers.Projects.seeTheQuestions": "Bekijk de vragen", "app.containers.Projects.seeUpcomingEvents": "Komende activiteiten bekijken", - "app.containers.Projects.selectionExceedsBudget": "Je selectie overschrijdt je budget.", "app.containers.Projects.share": "Delen", "app.containers.Projects.shareThisProject": "Deel dit project", "app.containers.Projects.submitMyBasket": "Mandje indienen", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Aankomende en gestarte activiteiten", "app.containers.Projects.upcomingEvents": "Aankomende activiteiten", "app.containers.Projects.whatsAppMessage": "{projectName} | van het participatieplatform van {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}} in de huidige fase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}} in de laatste fase", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# ideeën} one {# idee} other {# ideeën}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idee} other {# ideeën}} in de huidige fase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# post} other {# posts}} in de laatste fase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# reactie} other {# reacties}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# reactie} other {# reacties}} in de huidige fase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# reactie} other {# reacties}} in de laatste fase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# optie} other {# opties}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# optie} other {# opties}} in de huidige fase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# optie} other {# opties}} in de laatste fase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# deelnemers} one {# deelnemer} other {# deelnemers}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# fasen} one {# fase} other {# fasen}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projecten}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projecten}} in de huidige fase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projecten}} in de laatste fase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# vraag} other {# vragen}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# vraag} other {# vragen}} in de huidige fase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# vraag} other {# vragen}} in de laatste fase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# aankomende activiteiten} one {# aankomende activiteit} other {# aankomende activiteiten}}", "app.containers.Projects.yourBudget": "Totale budget", "app.containers.ProjectsIndexPage.metaDescription": "Verken alle lopende projecten van {orgName} en ontdek hoe jij kan deelnemen.\nBespreek die lokale projecten die voor jou het belangrijkst zijn.", "app.containers.ProjectsIndexPage.metaTitle1": "Projecten • {orgName}", diff --git a/front/app/translations/pl-PL.json b/front/app/translations/pl-PL.json index 2da067ceaa4c..e4cb844ab258 100644 --- a/front/app/translations/pl-PL.json +++ b/front/app/translations/pl-PL.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Przydziel swój budżet", "app.containers.Projects.archived": "Zarchiwizowany", "app.containers.Projects.basketSubmitted": "Twój koszyk został wysłany!", - "app.containers.Projects.budget": "{amount} budżetu", "app.containers.Projects.contributions": "Wkład", "app.containers.Projects.createANewPhase": "Utwórz nową fazę", "app.containers.Projects.currentPhase": "Aktualny etap", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Weź udział w badaniu", "app.containers.Projects.invisibleTitleSurvey": "Weź udział w ankiecie", "app.containers.Projects.issues": "Potrzeby", - "app.containers.Projects.liveDataMessage": "Przeglądasz dane w czasie rzeczywistym. Liczby uczestników są stale aktualizowane dla administratorów. Pamiętaj, że zwykli użytkownicy widzą dane z pamięci podręcznej, co może skutkować niewielkimi różnicami w liczbach.", "app.containers.Projects.location": "Lokalizacja:", "app.containers.Projects.manageBasket": "Zarządzaj koszykiem", "app.containers.Projects.meetMinBudgetRequirement": "Spełnij minimalny budżet, aby przesłać swój koszyk.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Brak minionych wydarzeń do wyświetlenia", "app.containers.Projects.noPhaseSelected": "Nie wybrano żadnego etapu", "app.containers.Projects.noUpcomingOrOngoingEvents": "W chwili obecnej nie są planowane żadne nadchodzące lub trwające wydarzenia.", - "app.containers.Projects.nothingPosted": "Nic nie opublikowane", - "app.containers.Projects.oneDocToReview": "1 dokument do przejrzenia", - "app.containers.Projects.oneSurvey": "1 ankieta", "app.containers.Projects.options": "Opcje", "app.containers.Projects.participants": "Uczestnicy", "app.containers.Projects.participantsTooltip4": "Liczba ta odzwierciedla również anonimowe ankiety. Anonimowe przesyłanie ankiet jest możliwe, jeśli ankiety są otwarte dla wszystkich (zobacz zakładkę {accessRightsLink} dla tego projektu).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Zobacz więcej", "app.containers.Projects.removeItem": "Usuń element", "app.containers.Projects.requiredSelection": "Wymagany wybór", - "app.containers.Projects.requiredSelectionExceeded": "Przekroczyłeś wymagany próg wyboru.", "app.containers.Projects.reviewDocument": "Przejrzyj dokument", "app.containers.Projects.seeTheContributions": "Zobacz wkład", "app.containers.Projects.seeTheIdeas": "Zobacz pomysły", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Zobacz projekty", "app.containers.Projects.seeTheQuestions": "Zobacz pytania", "app.containers.Projects.seeUpcomingEvents": "Zobacz nadchodzące wydarzenia", - "app.containers.Projects.selectionExceedsBudget": "Twój wybór przekracza Twój budżet.", "app.containers.Projects.share": "Podziel się", "app.containers.Projects.shareThisProject": "Podziel się tym projektem", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Nadchodzące i trwające wydarzenia", "app.containers.Projects.upcomingEvents": "Nadchodzące wydarzenia", "app.containers.Projects.whatsAppMessage": "{projectName} | z platformy partycypacyjnej {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {#wkłaady} one {# wkład} few {# wkłady} many {# wkładów} other {# wkłady}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# wkładu} one {# wkład} few {# wkłady} many {# wkładów} other {# wkłady}} na obecnym etapie", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# wkładu} one {# wkład} few {# wkłady} many {# wkładów} other {# wkłady}} na ostatnim etapie", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# pomysł} few {# pomysły} many {# pomysłów} other {# pomysły}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# pomysł} few {# pomysły} many {# pomysłów} other {# pomysły}} na obecnym etapie", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# pomysł} few {# pomysły} many {# pomysłów} other {# pomysły}} w końcowej fazie", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# spraw} one {# sprawa} few {# sprawy} many {# spraw} other {# sprawy}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# spraw} one {# sprawa} few {# spraw} many {# spraw} other {# sprawy}} na obecnym etapie", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# spraw} one {# sprawa} few {# spraw} many {# spraw} other {# sprawy}} na ostatnim etapie", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# opcji} one {# opcja} few {# opcje} many {# opcji} other {# opcje}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# opcja} few {# opcje} many {# opcji} other {# opcje}} w bieżącej fazie", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# opcja} few {# opcje} many {# opcji} other {# opcje}} w fazie końcowej", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# uczestnik} few {# uczestników} many {# uczestników} other {# uczestnicy}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# etap} few {# etapy} many {# etapów} other {# etapy}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projekt} few {# projekty} many {# projektów} other {# projekty}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projektów} one {# projekt} few {# projekty} many {# projektów} other {# projekty}} na obecnym etapie", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# projekt} few {# projekty} many {# projektów} other {# projekty}} na ostatnim etapie", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# pytanie} few {# pytania} many {# pytań} other {# pytania}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# pytanie} few {# pytania} many {# pytań} other {# pytania}} w bieżącej fazie", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# pytanie} few {# pytania} many {# pytań} other {# pytania}} w fazie końcowej", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# nadchodzące wydarzenia} few {# nadchodzące wydarzenia} many {# nadchodzących wydarzeń} other {# nadchodzących wydarzeń}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Poznaj wszystkie trwające projekty {orgName}, aby zrozumieć, jak możesz w nich uczestniczyć.\n Przyjdź i omów lokalne projekty, które są dla Ciebie najważniejsze.", "app.containers.ProjectsIndexPage.metaTitle1": "Projekty | {orgName}", diff --git a/front/app/translations/pt-BR.json b/front/app/translations/pt-BR.json index 84c51c7d129a..8288df0f3b7f 100644 --- a/front/app/translations/pt-BR.json +++ b/front/app/translations/pt-BR.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Distribua o seu orçamento", "app.containers.Projects.archived": "Arquivado", "app.containers.Projects.basketSubmitted": "Sua solicitação foi submetida!", - "app.containers.Projects.budget": "{amount} orçamento", "app.containers.Projects.contributions": "Propostas", "app.containers.Projects.createANewPhase": "Criar uma nova fase", "app.containers.Projects.currentPhase": "Fase atual", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Faça a pesquisa", "app.containers.Projects.invisibleTitleSurvey": "Faça a pesquisa", "app.containers.Projects.issues": "Problemas", - "app.containers.Projects.liveDataMessage": "Você está visualizando dados em tempo real. As contagens de participantes são atualizadas continuamente para os administradores. Observe que os usuários comuns veem dados em cache, o que pode resultar em pequenas diferenças nos números.", "app.containers.Projects.location": "Localização:", "app.containers.Projects.manageBasket": "Administrar pedido", "app.containers.Projects.meetMinBudgetRequirement": "Cumprir o orçamento mínimo para submeter a sua cesta.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Nenhum evento passado a exibir", "app.containers.Projects.noPhaseSelected": "Nenhuma fase selecionada", "app.containers.Projects.noUpcomingOrOngoingEvents": "Nenhum evento futuro está agendado no momento.", - "app.containers.Projects.nothingPosted": "Nada publicado ainda", - "app.containers.Projects.oneDocToReview": "1 documento para analisar", - "app.containers.Projects.oneSurvey": "1 pesquisa", "app.containers.Projects.options": "Opções", "app.containers.Projects.participants": "Participantes", "app.containers.Projects.participantsTooltip4": "Esse número também reflete os envios anônimos de pesquisas. Os envios anônimos de pesquisas são possíveis se as pesquisas forem abertas a todos (consulte a guia {accessRightsLink} para este projeto).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Ler mais", "app.containers.Projects.removeItem": "Remover item", "app.containers.Projects.requiredSelection": "Seleção necessária", - "app.containers.Projects.requiredSelectionExceeded": "Você excedeu a seleção necessária.", "app.containers.Projects.reviewDocument": "Revisar o documento", "app.containers.Projects.seeTheContributions": "Ver as contribuições", "app.containers.Projects.seeTheIdeas": "Ver as ideias", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Ver os projetos", "app.containers.Projects.seeTheQuestions": "Ver as perguntas", "app.containers.Projects.seeUpcomingEvents": "Ver eventos futuros", - "app.containers.Projects.selectionExceedsBudget": "A sua seleção excede o seu orçamento.", "app.containers.Projects.share": "Compartilhar", "app.containers.Projects.shareThisProject": "Compartilhe este projeto", "app.containers.Projects.submitMyBasket": "Enviar cesta", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Eventos próximos e em curso", "app.containers.Projects.upcomingEvents": "Próximos eventos", "app.containers.Projects.whatsAppMessage": "{projectName} | a partir da plataforma de participação de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}} na fase atual", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}} na fase final", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideia} other {# ideias}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, nenhuma {# ideas} uma {# ideia} other {# ideias}} na fase atual", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ideia} other {# ideias}} na fase final", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {#problemas} one {# problema} other {# problemas}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# problemas} one {# problema} other {# problemas}} na fase atual", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# problemas} one {# problema} other {# problemas}} na fase final", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# opções} one {# opção} other {# opções}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# opções} one {# opção} other {# opções}} na fase atual", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# opções} one {# opção} other {# opções}} na fase final", - "app.containers.Projects.xParticipants": "{participantsCount, plural, um {# participante} other {# participantes}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, não {# fases} um {# fase} other {# fases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, não {# projetos} um {# projeto} other {# projetos}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, não {# projetos} um {# projeto} other {# projetos}} na fase atual", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, não {# projetos} um {# projeto} other {# projetos}} na fase final", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# perguntas} one {# pergunta} other {# perguntas}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# perguntas} one {# pergunta} other {# perguntas}} na fase atual", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# perguntas} one {# pergunta} other {# perguntas}} na fase final", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, não {# próximos eventos} um {# próximo evento} other {# próximos eventos}}", "app.containers.Projects.yourBudget": "Orçamento total", "app.containers.ProjectsIndexPage.metaDescription": "Explore todos os projetos em andamento de {orgName} para entender como você pode participar.\nVenha discutir os projetos locais mais importantes para você.", "app.containers.ProjectsIndexPage.metaTitle1": "Projetos | {orgName}", diff --git a/front/app/translations/ro-RO.json b/front/app/translations/ro-RO.json index 500aa3575b91..5207974f95d0 100644 --- a/front/app/translations/ro-RO.json +++ b/front/app/translations/ro-RO.json @@ -905,7 +905,6 @@ "app.containers.Projects.allocateBudget": "Alocați bugetul", "app.containers.Projects.archived": "Arhivat", "app.containers.Projects.basketSubmitted": "Coșul dumneavoastră a fost trimis!", - "app.containers.Projects.budget": "{amount} buget", "app.containers.Projects.contributions": "Contribuții", "app.containers.Projects.currentPhase": "Faza curentă", "app.containers.Projects.editProject": "Editați acest proiect", @@ -933,7 +932,6 @@ "app.containers.Projects.noPastEvents": "Nu există evenimente anterioare de afișat", "app.containers.Projects.noPhaseSelected": "Nicio etapă selectată", "app.containers.Projects.noUpcomingOrOngoingEvents": "În prezent nu sunt programate evenimente viitoare sau în curs de desfășurare.", - "app.containers.Projects.nothingPosted": "Nu s-a postat nimic incă", "app.containers.Projects.options": "Opțiuni", "app.containers.Projects.pastEvents": "Evenimente anterioare", "app.containers.Projects.phases": "Fazele", @@ -946,14 +944,12 @@ "app.containers.Projects.readMore": "Citește mai mult", "app.containers.Projects.removeItem": "Eliminați elementul", "app.containers.Projects.requiredSelection": "Selecție necesară", - "app.containers.Projects.requiredSelectionExceeded": "Ați depășit selecția necesară.", "app.containers.Projects.seeTheContributions": "Vezi contribuțiile", "app.containers.Projects.seeTheIdeas": "Vezi ideile", "app.containers.Projects.seeTheIssues": "Vezi problemele", "app.containers.Projects.seeTheOptions": "Vezi opțiunile", "app.containers.Projects.seeTheProjects": "Vezi proiectele", "app.containers.Projects.seeTheQuestions": "Vezi întrebările", - "app.containers.Projects.selectionExceedsBudget": "Selecția dvs. depășește bugetul.", "app.containers.Projects.share": "Distribuie", "app.containers.Projects.shareThisProject": "Distribuie acest proiect", "app.containers.Projects.submitMyBasket": "Trimite coșul meu", @@ -964,27 +960,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Evenimente viitoare și în curs de desfășurare", "app.containers.Projects.upcomingEvents": "Evenimente viitoare", "app.containers.Projects.whatsAppMessage": "{projectName} de pe platforma de participare a {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribuție} other {# contribuții}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribuție} other {# contribuții}} în faza curentă", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribuție} other {# contribuții}} în faza finală", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idei} one {# idee} other {# idei}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idei} one {# idee} other {# idei}} în faza curentă", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idee} other {# idei}} în faza finală", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# problemă} other {# probleme}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# problemă} other {# probleme}} în faza curentă", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# problemă} other {# probleme}} în faza finală", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# opțiune} other {# opțiuni}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# opțiune} other {# opțiuni}} în faza curentă", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# opțiune} other {# opțiuni}} în faza finală", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# participanți} one {# participant} other {# participanți}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# faze} one {# fază} other {# faze}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# proiect} other {# proiecte}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# proiect} other {# proiecte}} în faza curentă", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# proiect} other {# proiecte}} în faza finală", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# întrebare} other {# întrebări}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# întrebare} other {# întrebări}} în faza curentă", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# întrebare} other {# întrebări}} în faza finală", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# evenimente viitoare} one {# eveniment viitor} other {# evenimente viitoare}}", "app.containers.Projects.yourBudget": "Bugetul dumneavoastră", "app.containers.ProjectsIndexPage.metaDescription": "Explorează toate proiectele în curs de desfășurare a {orgName} pentru a înțelege modul în care puteți să participați.\n Vino și discută proiectele locale care contează cel mai mult pentru tine.", "app.containers.ProjectsIndexPage.pageTitle": "Proiecte", diff --git a/front/app/translations/sr-Latn.json b/front/app/translations/sr-Latn.json index 8d3f616f69ac..d6034f2e3ed2 100644 --- a/front/app/translations/sr-Latn.json +++ b/front/app/translations/sr-Latn.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Rasporedite svoj budžet", "app.containers.Projects.archived": "Arhivirano", "app.containers.Projects.basketSubmitted": "Vaši predlozi su poslati!", - "app.containers.Projects.budget": "{amount} budžet", "app.containers.Projects.contributions": "Doprinosi", "app.containers.Projects.createANewPhase": "Create a new phase", "app.containers.Projects.currentPhase": "Trenutna faza", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Popunite anketu", "app.containers.Projects.invisibleTitleSurvey": "Popunite upitnik", "app.containers.Projects.issues": "Problemi", - "app.containers.Projects.liveDataMessage": "You're viewing real-time data. Participant counts are continuously updated for administrators. Please note that regular users see cached data, which may result in slight differences in the numbers.", "app.containers.Projects.location": "Lokacija:", "app.containers.Projects.manageBasket": "Upravljajte korpom", "app.containers.Projects.meetMinBudgetRequirement": "Ispunite minimalni budžet kako biste poslali predloge.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Nema prošlih događaja za prikaz", "app.containers.Projects.noPhaseSelected": "Nije izabrana nijedna faza", "app.containers.Projects.noUpcomingOrOngoingEvents": "Trenutno nema zakazanih predstojećih i tekućih događaja.", - "app.containers.Projects.nothingPosted": "Još uvek nema objava", - "app.containers.Projects.oneDocToReview": "1 документ за преглед", - "app.containers.Projects.oneSurvey": "1 анкета", "app.containers.Projects.options": "Solucije", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "This number also reflects anonymous survey submissions. Anonymous survey submissions are possible if surveys are open to everyone (see the {accessRightsLink} tab for this project).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Pročitajte više", "app.containers.Projects.removeItem": "Obriši stavku", "app.containers.Projects.requiredSelection": "Tražena selekcija", - "app.containers.Projects.requiredSelectionExceeded": "Prekoračili ste neophodni izbor.", "app.containers.Projects.reviewDocument": "Прегледајте документ", "app.containers.Projects.seeTheContributions": "Pogledajte priloge", "app.containers.Projects.seeTheIdeas": "Pogledajte ideje", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Pogledajte projekte", "app.containers.Projects.seeTheQuestions": "Pogledajte pitanja", "app.containers.Projects.seeUpcomingEvents": "See upcoming events", - "app.containers.Projects.selectionExceedsBudget": "Vaš izbor prevazilazi raspoloživi budžet.", "app.containers.Projects.share": "Podeli", "app.containers.Projects.shareThisProject": "Podelite ovaj projekat", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Predstojeći i tekući događaji", "app.containers.Projects.upcomingEvents": "Predstojeći događaji", "app.containers.Projects.whatsAppMessage": "{projectName} | sa participativne platforme od {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# doprinos} other {# doprinosa}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# doprinos} other {# doprinosa}} u trenutnoj fazi", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# doprinos} other {# doprinosa}} u finalnoj fazi", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideja} other {# ideja}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# ideja} other {# ideja}}", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ideja} other {# ideja}} u finalnoj fazi", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# problem} other {# problema}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# komentar} other {# komentara}}", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# problem} other {# problema}} u finalnoj fazi", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# solucija} other {# solucije}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# solucija} other {# solucije}}", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# solucija} other {# solucije}} u finalnoj fazi", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# učesnik} other {# učesnika}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# faza} other {# faza}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projekat} other {# projekata}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# projekat} other {# projekata}}", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# projekat} other {# projekata}} u finalnoj fazi", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# pitanje} other {# pitanja}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# pitanje} other {# pitanja}}", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# pitanje} other {# pitanja}} u finalnoj fazi", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# predstojeći događaj} other {# predstojećih događaja}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Istražite sve trenutne projekte od {orgName} i saznajte kako možete učestvovati. Pridružite nam se u diskusiji o lokalnim projektima do kojih vam je stalo.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/sr-SP.json b/front/app/translations/sr-SP.json index e31db1cc6f63..bdbb818ce7d5 100644 --- a/front/app/translations/sr-SP.json +++ b/front/app/translations/sr-SP.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Одредите свој буџет", "app.containers.Projects.archived": "Архивирано", "app.containers.Projects.basketSubmitted": "Ваша корпа је послата!", - "app.containers.Projects.budget": "{amount} буџета", "app.containers.Projects.contributions": "Прилози", "app.containers.Projects.createANewPhase": "Направите нову фазу", "app.containers.Projects.currentPhase": "Тренутна фаза", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Учествујте у анкети", "app.containers.Projects.invisibleTitleSurvey": "Попуните анкету", "app.containers.Projects.issues": "Коментари", - "app.containers.Projects.liveDataMessage": "You're viewing real-time data. Participant counts are continuously updated for administrators. Please note that regular users see cached data, which may result in slight differences in the numbers.", "app.containers.Projects.location": "Локација:", "app.containers.Projects.manageBasket": "Управљајте корпом", "app.containers.Projects.meetMinBudgetRequirement": "Испуните минимални буџет да бисте послали своју корпу.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Нема прошлих догађаја за приказ", "app.containers.Projects.noPhaseSelected": "Ниједна фаза није изабрана", "app.containers.Projects.noUpcomingOrOngoingEvents": "Тренутно нису заказани предстојећи или текући догађаји.", - "app.containers.Projects.nothingPosted": "Још ништа није објављено", - "app.containers.Projects.oneDocToReview": "1 документ за преглед", - "app.containers.Projects.oneSurvey": "1 анкета", "app.containers.Projects.options": "Опције", "app.containers.Projects.participants": "Participants", "app.containers.Projects.participantsTooltip4": "Овај број такође одражава анонимно подношење анкете. Анонимно подношење анкета је могуће ако су анкете отворене за све (погледајте картицу {accessRightsLink} за овај пројекат).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Опширније", "app.containers.Projects.removeItem": "Обриши предмет", "app.containers.Projects.requiredSelection": "Неопходан избор", - "app.containers.Projects.requiredSelectionExceeded": "Прекорачили сте тражени избор.", "app.containers.Projects.reviewDocument": "Прегледајте документ", "app.containers.Projects.seeTheContributions": "Погледајте доприносе", "app.containers.Projects.seeTheIdeas": "Погледајте идеје", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Погледајте пројекте", "app.containers.Projects.seeTheQuestions": "Видите питања", "app.containers.Projects.seeUpcomingEvents": "Погледајте предстојеће догађаје", - "app.containers.Projects.selectionExceedsBudget": "Ваш избор премашује ваш буџет.", "app.containers.Projects.share": "Подели", "app.containers.Projects.shareThisProject": "Поделите овај пројекат", "app.containers.Projects.submitMyBasket": "Пошаљите корпу", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Предстојећи и текући догађаји", "app.containers.Projects.upcomingEvents": "Предстојећи догађаји", "app.containers.Projects.whatsAppMessage": "{projectName} | са платформе за учешће од {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# допринос} other {# доприноса}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# допринос} other {# доприноса}}", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# допринос} other {# доприноса}} у завршној фази", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# идеја} other {# идеје}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# идеја} other {# идејa}}", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# идеја} other {# идеје}} у завршној фази", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# цоммент} other {# цомментс}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# коментар} other {# коментара}}", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# цоммент} other {# цомментс}} у завршној фази", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# опција} other {# Опције}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# солуција} other {# солуција}}", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# опција} other {# Опције}} у завршној фази", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# учесник} other {# учесника}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {#фаза} other {# фазе}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# пројекат} other {# пројекта}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# пројекат} other {# пројеката}}", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# пројекат} other {# пројекта}} у завршној фази", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {#питања} other {#питања}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {#питање} other {#питања}}", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {#питање} other {#питања}} у завршној фази", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# предстојећи догађај} other {# Предстојећи догађаји}}", "app.containers.Projects.yourBudget": "Укупан буџет", "app.containers.ProjectsIndexPage.metaDescription": "Истражите све текуће пројекте {orgName} да бисте разумели како можете да учествујете.\n Дођите да разговарате о локалним пројектима који су вам најважнији.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/sv-SE.json b/front/app/translations/sv-SE.json index 76cc556a4dd4..94154c08ed72 100644 --- a/front/app/translations/sv-SE.json +++ b/front/app/translations/sv-SE.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Fördela din budget", "app.containers.Projects.archived": "Arkiverad", "app.containers.Projects.basketSubmitted": "Din varukorg har skickats!", - "app.containers.Projects.budget": "{amount} budget", "app.containers.Projects.contributions": "Bidrag", "app.containers.Projects.createANewPhase": "Skapa en ny fas", "app.containers.Projects.currentPhase": "Aktuell fas", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Gör omröstningen", "app.containers.Projects.invisibleTitleSurvey": "Gör undersökningen", "app.containers.Projects.issues": "Kommentarer", - "app.containers.Projects.liveDataMessage": "Du tittar på data i realtid. Deltagarantalet uppdateras kontinuerligt för administratörer. Observera att vanliga användare ser cachad data, vilket kan resultera i små skillnader i siffrorna.", "app.containers.Projects.location": "Plats:", "app.containers.Projects.manageBasket": "Hantera varukorg", "app.containers.Projects.meetMinBudgetRequirement": "Uppfyll minimibudgeten för att skicka din varukorg.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Inga tidigare evenemang att visa", "app.containers.Projects.noPhaseSelected": "Ingen fas har valts", "app.containers.Projects.noUpcomingOrOngoingEvents": "Inga kommande eller pågående evenemang är för närvarande schemalagda.", - "app.containers.Projects.nothingPosted": "Inget har publicerats ännu", - "app.containers.Projects.oneDocToReview": "1 dokument till granskning", - "app.containers.Projects.oneSurvey": "1 undersökning", "app.containers.Projects.options": "Alternativ", "app.containers.Projects.participants": "Deltagare", "app.containers.Projects.participantsTooltip4": "Denna siffra återspeglar även anonyma enkätsvar. Anonyma enkätsvar är möjliga om enkäterna är öppna för alla (se fliken {accessRightsLink} för detta projekt).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Läs mer", "app.containers.Projects.removeItem": "Ta bort objekt", "app.containers.Projects.requiredSelection": "Obligatoriskt val", - "app.containers.Projects.requiredSelectionExceeded": "Du har överskridit det obligatoriska valet.", "app.containers.Projects.reviewDocument": "Granska dokumentet", "app.containers.Projects.seeTheContributions": "Se bidragen", "app.containers.Projects.seeTheIdeas": "Se idéerna", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Se projekten", "app.containers.Projects.seeTheQuestions": "Se frågorna", "app.containers.Projects.seeUpcomingEvents": "Se kommande evenemang", - "app.containers.Projects.selectionExceedsBudget": "Ditt val överskrider din budget.", "app.containers.Projects.share": "Dela", "app.containers.Projects.shareThisProject": "Dela det här projektet", "app.containers.Projects.submitMyBasket": "Submit basket", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Kommande och pågående evenemang", "app.containers.Projects.upcomingEvents": "Kommande evenemang", "app.containers.Projects.whatsAppMessage": "{projectName} | från plattformen för deltagande för {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# bidrag} other {# bidrag}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# bidrag} other {# bidrag}} i den aktuella fasen", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# bidrag} other {# bidrag}} i slutfasen", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idé} other {# idéer}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idé} other {# idéer}} i den aktuella fasen", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idé} other {# idéer}} i slutfasen", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# kommentar} other {# kommentarer}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# kommentar} other {# kommentarer}} i den aktuella fasen", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# kommentar} other {# kommentarer}} i slutfasen", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# alternativ} other {# alternativ}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# alternativ} other {# alternativ}} i den aktuella fasen", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# alternativ} other {# alternativ}} i slutfasen", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# deltagare} other {# deltagare}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fas} other {# faser}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projekt} other {# projekt}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# projekt} other {# projekt}} i den aktuella fasen", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# projekt} other {# projekt}} i slutfasen", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# fråga} other {# frågor}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# fråga} other {# frågor}} i den aktuella fasen", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# fråga} other {# frågor}} i slutfasen", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# kommande evenemang} other {# kommande evenemang}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Upptäck alla pågående projekt för {orgName} för att förstå hur du kan delta.\nKom och diskutera lokala projekt som är viktigast för dig.", "app.containers.ProjectsIndexPage.metaTitle1": "Projekt | {orgName}", diff --git a/front/app/translations/tr-TR.json b/front/app/translations/tr-TR.json index c7ec7a10d94f..d44e121e67e3 100644 --- a/front/app/translations/tr-TR.json +++ b/front/app/translations/tr-TR.json @@ -1643,7 +1643,6 @@ "app.containers.Projects.allocateBudget": "Bütçenizi ayırın", "app.containers.Projects.archived": "Arşivlenmiş", "app.containers.Projects.basketSubmitted": "Sepetiniz gönderildi.", - "app.containers.Projects.budget": "{amount} bütçe", "app.containers.Projects.contributions": "Katkılar", "app.containers.Projects.createANewPhase": "Yeni bir aşama oluşturun", "app.containers.Projects.currentPhase": "Şu andaki aşama", @@ -1661,7 +1660,6 @@ "app.containers.Projects.invisibleTitlePoll": "Oylamaya katılın", "app.containers.Projects.invisibleTitleSurvey": "Ankete katılın", "app.containers.Projects.issues": "Yorumlar", - "app.containers.Projects.liveDataMessage": "Gerçek zamanlı verileri görüntülüyorsunuz. Katılımcı sayıları yöneticiler için sürekli olarak güncellenir. Normal kullanıcıların önbelleğe alınmış verileri gördüğünü ve bu nedenle sayılarda küçük farklılıklar olabileceğini lütfen unutmayın.", "app.containers.Projects.location": "Konum:", "app.containers.Projects.manageBasket": "Sepeti yönetin", "app.containers.Projects.meetMinBudgetRequirement": "Sepetinizi göndermek için minimum bütçeyi karşılayın.", @@ -1678,9 +1676,6 @@ "app.containers.Projects.noPastEvents": "Görüntülenecek geçmiş etkinlik yok", "app.containers.Projects.noPhaseSelected": "Aşama seçilmedi", "app.containers.Projects.noUpcomingOrOngoingEvents": "Şu an için, planlanmış yaklaşan veya devam eden bir etkinlik yok.", - "app.containers.Projects.nothingPosted": "Henüz hiçbir şey yayınlanmadı", - "app.containers.Projects.oneDocToReview": "İncelenecek 1 belge", - "app.containers.Projects.oneSurvey": "1 anket", "app.containers.Projects.options": "Seçenekler", "app.containers.Projects.participants": "Katılımcılar", "app.containers.Projects.participantsTooltip4": "Bu sayı aynı zamanda anonim anket gönderimlerini de yansıtmaktadır. Anketler herkese açıksa anonim anket gönderimleri mümkündür (bu proje için {accessRightsLink} sekmesine bakın).", @@ -1695,7 +1690,6 @@ "app.containers.Projects.readMore": "Daha fazla bilgi", "app.containers.Projects.removeItem": "Öğeyi kaldır", "app.containers.Projects.requiredSelection": "Gerekli seçim", - "app.containers.Projects.requiredSelectionExceeded": "Gerekli seçimi aştınız.", "app.containers.Projects.reviewDocument": "Belgeyi gözden geçirin", "app.containers.Projects.seeTheContributions": "Katkıları görüntüleyin", "app.containers.Projects.seeTheIdeas": "Fikirleri görüntüleyin", @@ -1704,7 +1698,6 @@ "app.containers.Projects.seeTheProjects": "Projeleri görüntüleyin", "app.containers.Projects.seeTheQuestions": "Soruları görüntüleyin", "app.containers.Projects.seeUpcomingEvents": "Yaklaşan etkinlikleri görün", - "app.containers.Projects.selectionExceedsBudget": "Seçiminiz bütçenizi aşıyor.", "app.containers.Projects.share": "Paylaş", "app.containers.Projects.shareThisProject": "Bu projeyi paylaşın", "app.containers.Projects.submitMyBasket": "Sepetimi gönder", @@ -1715,27 +1708,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Yaklaşan ve devam eden etkinlikler", "app.containers.Projects.upcomingEvents": "Yaklaşan etkinlikler", "app.containers.Projects.whatsAppMessage": "{projectName} | {orgName} katılım platformundan", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# katkı} other {# katkı}}", - "app.containers.Projects.xContributionsInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# katkı} other {# katkı}}", - "app.containers.Projects.xContributionsInFinalPhase": "Son aşamada {ideasCount, plural, one {# katkı} other {# katkı}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# fikir} other {# fikir}}", - "app.containers.Projects.xIdeasInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# fikir} other {# fikir}}", - "app.containers.Projects.xIdeasInFinalPhase": "Son aşamada {ideasCount, plural, one {# fikir} other {# fikir}}", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# yorum} other {# yorum}}", - "app.containers.Projects.xIssuesInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# yorum} other {# yorum}}", - "app.containers.Projects.xIssuesInFinalPhase": "Son aşamada {ideasCount, plural, one {# yorum} other {# yorum}}", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# seçenek} other {# seçenek}}", - "app.containers.Projects.xOptionsInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# seçenek} other {# seçenek}}", - "app.containers.Projects.xOptionsInFinalPhase": "Son aşamada {ideasCount, plural, one {# seçenek} other {# seçenek}}", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# katılımcı} other {# katılımcı}}", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# aşama} other {# aşama}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# proje} other {# proje}}", - "app.containers.Projects.xProjectsInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# proje} other {# proje}}", - "app.containers.Projects.xProjectsInFinalPhase": "Son aşamada {ideasCount, plural, one {# proje} other {# proje}}", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# soru} other {# soru}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# soru} other {# soru}}", - "app.containers.Projects.xQuestionsInFinalPhase": "Son aşamada {ideasCount, plural, one {# soru} other {# soru}}", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# yaklaşan etkinlik} other {# yaklaşan etkinlik}}", "app.containers.Projects.yourBudget": "Toplam bütçe", "app.containers.ProjectsIndexPage.metaDescription": "Nasıl katılabileceğinizi anlamak için devam eden tüm {orgName} projelerini keşfedin.\n Gelin, sizin için en önemli olan yerel projeleri tartışın.", "app.containers.ProjectsIndexPage.metaTitle1": "Projeler | {orgName}", From 6dac26159d6aed6fc84310c8e265f06104d93d33 Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Tue, 15 Oct 2024 15:21:33 +0300 Subject: [PATCH 08/47] Remove corresponding e2e references in tests --- front/cypress/e2e/project_page_ideas.cy.ts | 9 +-------- front/cypress/e2e/project_page_native_survey.cy.ts | 2 +- front/cypress/e2e/project_page_poll.cy.ts | 2 +- front/cypress/e2e/project_page_survey.cy.ts | 4 ++-- front/cypress/e2e/project_page_timeline.cy.ts | 3 --- .../e2e/survey_builder/create_and_fill_survey.cy.ts | 3 --- 6 files changed, 5 insertions(+), 18 deletions(-) diff --git a/front/cypress/e2e/project_page_ideas.cy.ts b/front/cypress/e2e/project_page_ideas.cy.ts index 6263e7602988..bc0e6093a6d0 100644 --- a/front/cypress/e2e/project_page_ideas.cy.ts +++ b/front/cypress/e2e/project_page_ideas.cy.ts @@ -19,9 +19,6 @@ import { randomString, randomEmail } from '../support/commands'; // cy.get('#e2e-project-header-image'); // cy.get('#e2e-project-description'); // cy.get('#e2e-project-sidebar'); -// cy.get('#e2e-project-sidebar-participants-count'); -// cy.get('#e2e-project-sidebar-ideas-count'); -// cy.get('#e2e-project-sidebar-share-button'); // cy.get('#e2e-project-see-ideas-button'); // cy.get('#project-ideabutton'); // cy.get('#e2e-project-description-read-more-button'); @@ -89,9 +86,6 @@ import { randomString, randomEmail } from '../support/commands'; // it('shows the correct project header', () => { // cy.get('#e2e-project-description'); // cy.get('#e2e-project-sidebar'); -// cy.get('#e2e-project-sidebar-participants-count'); -// cy.get('#e2e-project-sidebar-phases-count'); -// cy.get('#e2e-project-sidebar-share-button'); // }); // it('shows the idea cards', () => { @@ -175,11 +169,10 @@ describe('New timeline project with active ideation phase', () => { cy.clearCookies(); }); + // TODO: Improve this test it('shows the correct project header', () => { cy.get('#e2e-project-description'); cy.get('#e2e-project-sidebar'); - cy.get('#e2e-project-sidebar-phases-count'); - cy.get('#e2e-project-sidebar-share-button'); }); it('shows the see-the-ideas button', () => { diff --git a/front/cypress/e2e/project_page_native_survey.cy.ts b/front/cypress/e2e/project_page_native_survey.cy.ts index 01b73df0ea20..cf354e560df2 100644 --- a/front/cypress/e2e/project_page_native_survey.cy.ts +++ b/front/cypress/e2e/project_page_native_survey.cy.ts @@ -51,10 +51,10 @@ describe('New project with native survey', () => { cy.wait(1000); }); + // TODO: Improve this test it('shows the correct project header', () => { cy.get('#e2e-project-description'); cy.get('#e2e-project-sidebar'); - cy.get('#e2e-project-sidebar-share-button'); }); it('shows the survey buttons', () => { diff --git a/front/cypress/e2e/project_page_poll.cy.ts b/front/cypress/e2e/project_page_poll.cy.ts index 485c4beb80e8..cced22fc977c 100644 --- a/front/cypress/e2e/project_page_poll.cy.ts +++ b/front/cypress/e2e/project_page_poll.cy.ts @@ -8,10 +8,10 @@ describe('Existing single phase project with poll', () => { cy.wait(1000); }); + // TODO: Improve this test it('shows the correct project header', () => { cy.get('#e2e-project-description'); cy.get('#e2e-project-sidebar'); - cy.get('#e2e-project-sidebar-share-button'); }); it('shows the poll', () => { diff --git a/front/cypress/e2e/project_page_survey.cy.ts b/front/cypress/e2e/project_page_survey.cy.ts index 7fae94cbf563..d78e2544b32c 100644 --- a/front/cypress/e2e/project_page_survey.cy.ts +++ b/front/cypress/e2e/project_page_survey.cy.ts @@ -10,10 +10,10 @@ describe('Existing project with survey', () => { cy.wait(1000); }); + // TODO: Improve this test it('shows the correct project header', () => { cy.get('#e2e-project-description'); cy.get('#e2e-project-sidebar'); - cy.get('#e2e-project-sidebar-share-button'); }); it('shows the survey', () => { @@ -82,10 +82,10 @@ describe('New project with survey', () => { cy.wait(1000); }); + // TODO: Improve this test it('shows the correct project header', () => { cy.get('#e2e-project-description'); cy.get('#e2e-project-sidebar'); - cy.get('#e2e-project-sidebar-share-button'); }); it('shows event CTA button', () => { diff --git a/front/cypress/e2e/project_page_timeline.cy.ts b/front/cypress/e2e/project_page_timeline.cy.ts index 1164a091befd..3aa367b0ba1b 100644 --- a/front/cypress/e2e/project_page_timeline.cy.ts +++ b/front/cypress/e2e/project_page_timeline.cy.ts @@ -18,9 +18,6 @@ describe('Existing Timeline project', () => { cy.get('#e2e-project-header-image'); cy.get('#e2e-project-description'); cy.get('#e2e-project-sidebar'); - cy.get('#e2e-project-sidebar-phases-count'); - cy.get('#e2e-project-sidebar-participants-count'); - cy.get('#e2e-project-sidebar-share-button'); cy.get('#e2e-project-see-ideas-button'); cy.get('#project-ideabutton'); cy.get('.e2e-project-info') diff --git a/front/cypress/e2e/survey_builder/create_and_fill_survey.cy.ts b/front/cypress/e2e/survey_builder/create_and_fill_survey.cy.ts index bad3f3cb2f7a..196ca4e0aaa2 100644 --- a/front/cypress/e2e/survey_builder/create_and_fill_survey.cy.ts +++ b/front/cypress/e2e/survey_builder/create_and_fill_survey.cy.ts @@ -441,7 +441,6 @@ describe('Survey builder', () => { // Take the survey again cy.visit(`/projects/${projectSlug}`); - cy.get('#e2e-project-sidebar-surveys-count').should('exist'); cy.get('#project-survey-button') .find('button') .should('not.have.attr', 'disabled'); @@ -767,7 +766,6 @@ describe('Survey builder', () => { .first() .find('button') .should('not.have.attr', 'disabled'); - cy.get('#e2e-project-sidebar-surveys-count').should('exist'); cy.get('.e2e-idea-button').first().find('button').click({ force: true }); cy.contains(questionTitle).should('exist'); cy.get(`*[id^="properties${questionTitle}"]`).type(answer, { force: true }); @@ -789,7 +787,6 @@ describe('Survey builder', () => { .first() .find('button') .should('have.attr', 'disabled'); - cy.get('#e2e-project-sidebar-surveys-count').should('exist'); }); it('shows validation errors when current page or previous pages are referenced', () => { From 3deec81ba6477479e5318b681de590888f468761 Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Tue, 15 Oct 2024 15:43:34 +0300 Subject: [PATCH 09/47] Update structure file --- back/db/structure.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/back/db/structure.sql b/back/db/structure.sql index c1e3931d4ffb..ba107d46e72e 100644 --- a/back/db/structure.sql +++ b/back/db/structure.sql @@ -7555,3 +7555,5 @@ INSERT INTO "schema_migrations" (version) VALUES ('20241002200522'), ('20241008143004'), ('20241011101454'); + + From b12317570038c8ac69ddbb6c75540b665e9b219e Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Tue, 15 Oct 2024 16:00:40 +0300 Subject: [PATCH 10/47] Fix failing tests --- front/cypress/e2e/native_survey_page_action.cy.ts | 1 - front/cypress/e2e/project_page_native_survey.cy.ts | 2 -- front/cypress/e2e/project_page_survey.cy.ts | 2 -- 3 files changed, 5 deletions(-) diff --git a/front/cypress/e2e/native_survey_page_action.cy.ts b/front/cypress/e2e/native_survey_page_action.cy.ts index d9bef88cef43..2c8f9e62359b 100644 --- a/front/cypress/e2e/native_survey_page_action.cy.ts +++ b/front/cypress/e2e/native_survey_page_action.cy.ts @@ -171,7 +171,6 @@ describe('Native survey project page actions', () => { "Unfortunately, you can't participate in this project anymore because it has been archived" ); cy.get('.e2e-idea-button').should('not.exist'); - cy.contains('1 survey').should('not.exist'); }); }); diff --git a/front/cypress/e2e/project_page_native_survey.cy.ts b/front/cypress/e2e/project_page_native_survey.cy.ts index cf354e560df2..cb50c0360635 100644 --- a/front/cypress/e2e/project_page_native_survey.cy.ts +++ b/front/cypress/e2e/project_page_native_survey.cy.ts @@ -59,7 +59,6 @@ describe('New project with native survey', () => { it('shows the survey buttons', () => { cy.contains('Take the survey').should('exist'); - cy.contains('1 survey').should('exist'); // Shows the event CTA when there is an upcoming event cy.get('#e2e-project-see-events-button').should('exist'); @@ -111,7 +110,6 @@ describe('Project with native survey phase but not active', () => { it('does not show the survey buttons', () => { cy.contains('Take the survey').should('not.exist'); - cy.contains('1 survey').should('not.exist'); }); after(() => { diff --git a/front/cypress/e2e/project_page_survey.cy.ts b/front/cypress/e2e/project_page_survey.cy.ts index d78e2544b32c..ac683dd37efb 100644 --- a/front/cypress/e2e/project_page_survey.cy.ts +++ b/front/cypress/e2e/project_page_survey.cy.ts @@ -210,7 +210,6 @@ describe('Timeline project with survey phase but not active', () => { it('does not show the survey or survey buttons', () => { cy.contains('Take the survey').should('not.exist'); - cy.contains('1 survey').should('not.exist'); }); after(() => { @@ -255,7 +254,6 @@ describe('Archived single phase project with survey', () => { it('does not show the survey or survey buttons', () => { cy.contains('Take the survey').should('not.exist'); - cy.contains('1 survey').should('not.exist'); }); after(() => { From 2e9d266a76b62afbbbedd1a299843b6b6caa9bb8 Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Thu, 17 Oct 2024 06:53:31 +0300 Subject: [PATCH 11/47] Change getPeriodRemainingUntil to consider the tenant timezone --- front/app/utils/dateUtils.ts | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/front/app/utils/dateUtils.ts b/front/app/utils/dateUtils.ts index f25e45992b76..7264501189c7 100644 --- a/front/app/utils/dateUtils.ts +++ b/front/app/utils/dateUtils.ts @@ -1,5 +1,5 @@ import { isString } from 'lodash-es'; -import moment, { unitOfTime, Moment } from 'moment'; +import moment, { unitOfTime, Moment } from 'moment-timezone'; import { SupportedLocale } from 'typings'; import { IEventData } from 'api/events/types'; @@ -142,9 +142,17 @@ export const momentToIsoDate = (moment: Moment | null | undefined) => { export function getPeriodRemainingUntil( date: string, - timeUnit: unitOfTime.Diff = 'days' + tenantTimezone: string, + timeUnit: unitOfTime.Diff ): number { - return moment(new Date(date)).diff(moment({ hours: 0 }), timeUnit); + // Parse the target date in the tenant's timezone + const targetDate = moment.tz(date, tenantTimezone); + + // Get the current date at midnight in the tenant's timezone + const now = moment.tz(tenantTimezone).startOf('day'); + + // Calculate and return the difference + return targetDate.diff(now, timeUnit); } export function convertSecondsToDDHHMM(seconds: number) { From bd9f717fec202f4ff958000512e1834eacf3bdc1 Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Thu, 17 Oct 2024 06:54:12 +0300 Subject: [PATCH 12/47] Pass tenant timezone in AdminInitiativeContent --- .../PostPreview/Initiative/AdminInitiativeContent.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/front/app/components/admin/PostManager/components/PostPreview/Initiative/AdminInitiativeContent.tsx b/front/app/components/admin/PostManager/components/PostPreview/Initiative/AdminInitiativeContent.tsx index dcf68f205b95..0fce5917dfc2 100644 --- a/front/app/components/admin/PostManager/components/PostPreview/Initiative/AdminInitiativeContent.tsx +++ b/front/app/components/admin/PostManager/components/PostPreview/Initiative/AdminInitiativeContent.tsx @@ -109,6 +109,8 @@ const AdminInitiativeContent = ({ const { mutate: deleteInitiative } = useDeleteInitiative(); const { data: initiative } = useInitiativeById(initiativeId); const { data: initiativeImages } = useInitiativeImages(initiativeId); + const tenantTimezone = + appConfiguration?.data.attributes.settings?.core.timezone; const handleClickDelete = () => { const message = formatMessage(messages.deleteInitiativeConfirmation); @@ -127,7 +129,7 @@ const AdminInitiativeContent = ({ } }; - if (initiative) { + if (initiative && tenantTimezone) { const initiativeTitle = localize(initiative.data.attributes.title_multiloc); const initiativeImageLarge = initiativeImages && initiativeImages.data.length > 0 @@ -138,7 +140,9 @@ const AdminInitiativeContent = ({ const initiativeAddress = initiative.data.attributes.location_description || null; const daysLeft = getPeriodRemainingUntil( - initiative.data.attributes.expires_at + initiative.data.attributes.expires_at, + tenantTimezone, + 'days' ); return ( From 2d76ce022f45742a956a935513b7a799cb5385b7 Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Thu, 17 Oct 2024 06:54:25 +0300 Subject: [PATCH 13/47] Pass tenant timezone in PhaseTimeLeft --- front/app/components/PhaseTimeLeft/index.tsx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/front/app/components/PhaseTimeLeft/index.tsx b/front/app/components/PhaseTimeLeft/index.tsx index 4f613b49bd69..e83e4cd41f58 100644 --- a/front/app/components/PhaseTimeLeft/index.tsx +++ b/front/app/components/PhaseTimeLeft/index.tsx @@ -1,5 +1,7 @@ import React from 'react'; +import useAppConfiguration from 'api/app_configuration/useAppConfiguration'; + import { useIntl } from 'utils/cl-intl'; import { getPeriodRemainingUntil } from 'utils/dateUtils'; @@ -10,14 +12,28 @@ interface Props { } const PhaseTimeLeft = ({ currentPhaseEndsAt }: Props) => { + const { data: appConfiguration } = useAppConfiguration(); + const tenantTimezone = + appConfiguration?.data.attributes.settings?.core.timezone; const { formatMessage } = useIntl(); - let timeLeft = getPeriodRemainingUntil(currentPhaseEndsAt, 'weeks'); + + if (!tenantTimezone) return null; + + let timeLeft = getPeriodRemainingUntil( + currentPhaseEndsAt, + tenantTimezone, + 'weeks' + ); let timeLeftMessage = messages.xWeeksLeft; // If less than 2 weeks left if (timeLeft < 2) { // Get timeLeft in days - timeLeft = getPeriodRemainingUntil(currentPhaseEndsAt, 'days'); + timeLeft = getPeriodRemainingUntil( + currentPhaseEndsAt, + tenantTimezone, + 'days' + ); timeLeftMessage = messages.xDayLeft; } From 0fc53105a3c5418f0826e7668a9164dffed09c20 Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Thu, 17 Oct 2024 06:54:53 +0300 Subject: [PATCH 14/47] Pass tenantTimezone when getting time left in Proposed --- .../ReactionControl/Status/Proposed.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/front/app/containers/InitiativesShow/ReactionControl/Status/Proposed.tsx b/front/app/containers/InitiativesShow/ReactionControl/Status/Proposed.tsx index f384d0481a2c..50728316dcf4 100644 --- a/front/app/containers/InitiativesShow/ReactionControl/Status/Proposed.tsx +++ b/front/app/containers/InitiativesShow/ReactionControl/Status/Proposed.tsx @@ -2,6 +2,8 @@ import React from 'react'; import { Text } from '@citizenlab/cl2-component-library'; +import useAppConfiguration from 'api/app_configuration/useAppConfiguration'; + import { FormattedMessage } from 'utils/cl-intl'; import { getPeriodRemainingUntil } from 'utils/dateUtils'; @@ -11,8 +13,16 @@ import { StatusComponentProps } from '../StatusWrapper'; import Status from '.'; const Proposed = (props: StatusComponentProps) => { + const { data: appConfiguration } = useAppConfiguration(); + const tenantTimezone = + appConfiguration?.data.attributes.settings?.core.timezone; + + if (!tenantTimezone) return null; + const daysLeft = getPeriodRemainingUntil( - props.initiative.attributes.expires_at + props.initiative.attributes.expires_at, + tenantTimezone, + 'days' ); return ( From 13f3a3287f4c4aef5b8da95ac771bd48242a009f Mon Sep 17 00:00:00 2001 From: CircleCI Date: Mon, 21 Oct 2024 06:16:04 +0000 Subject: [PATCH 15/47] Translations updated by CI (extract-intl) --- front/app/translations/admin/pa-IN.json | 1 - front/app/translations/admin/ur-PK.json | 1 - front/app/translations/ar-MA.json | 31 ----------------- front/app/translations/ar-SA.json | 31 ----------------- front/app/translations/ca-ES.json | 31 ----------------- front/app/translations/da-DK.json | 31 ----------------- front/app/translations/de-DE.json | 31 ----------------- front/app/translations/el-GR.json | 31 ----------------- front/app/translations/en-CA.json | 31 ----------------- front/app/translations/en-GB.json | 31 ----------------- front/app/translations/en-IE.json | 31 ----------------- front/app/translations/en.json | 31 ----------------- front/app/translations/es-CL.json | 31 ----------------- front/app/translations/es-ES.json | 31 ----------------- front/app/translations/fr-BE.json | 31 ----------------- front/app/translations/fr-FR.json | 31 ----------------- front/app/translations/it-IT.json | 31 ----------------- front/app/translations/lv-LV.json | 31 ----------------- front/app/translations/nl-BE.json | 31 ----------------- front/app/translations/nl-NL.json | 31 ----------------- front/app/translations/pa-IN.json | 45 ------------------------- front/app/translations/pl-PL.json | 31 ----------------- front/app/translations/pt-BR.json | 31 ----------------- front/app/translations/sr-Latn.json | 31 ----------------- front/app/translations/sr-SP.json | 31 ----------------- front/app/translations/sv-SE.json | 31 ----------------- front/app/translations/tr-TR.json | 31 ----------------- front/app/translations/ur-PK.json | 45 ------------------------- 28 files changed, 836 deletions(-) diff --git a/front/app/translations/admin/pa-IN.json b/front/app/translations/admin/pa-IN.json index 7a7604866368..6d21805c872c 100644 --- a/front/app/translations/admin/pa-IN.json +++ b/front/app/translations/admin/pa-IN.json @@ -2500,7 +2500,6 @@ "app.containers.admin.ContentBuilder.delete": "ਮਿਟਾਓ", "app.containers.admin.ContentBuilder.error": "ਗਲਤੀ", "app.containers.admin.ContentBuilder.errorMessage": "{locale} ਸਮੱਗਰੀ 'ਤੇ ਇੱਕ ਤਰੁੱਟੀ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੀਆਂ ਤਬਦੀਲੀਆਂ ਨੂੰ ਸੁਰੱਖਿਅਤ ਕਰਨ ਦੇ ਯੋਗ ਹੋਣ ਲਈ ਸਮੱਸਿਆ ਨੂੰ ਠੀਕ ਕਰੋ", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "ਭਾਗੀਦਾਰੀ ਨੰਬਰ ਲੁਕਾਓ", "app.containers.admin.ContentBuilder.homepage.default": "ਡਿਫਾਲਟ", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "ਸਮਾਗਮ", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "ਸਮਾਗਮ", diff --git a/front/app/translations/admin/ur-PK.json b/front/app/translations/admin/ur-PK.json index ec539ea6d968..9433b9e45dce 100644 --- a/front/app/translations/admin/ur-PK.json +++ b/front/app/translations/admin/ur-PK.json @@ -2500,7 +2500,6 @@ "app.containers.admin.ContentBuilder.delete": "حذف کریں۔", "app.containers.admin.ContentBuilder.error": "غلطی", "app.containers.admin.ContentBuilder.errorMessage": "{locale} مواد میں ایک خرابی ہے، براہ کرم اپنی تبدیلیوں کو محفوظ کرنے کے لیے مسئلہ کو ٹھیک کریں۔", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "شرکت کے نمبر چھپائیں۔", "app.containers.admin.ContentBuilder.homepage.default": "پہلے سے طے شدہ", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "واقعات", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "واقعات", diff --git a/front/app/translations/ar-MA.json b/front/app/translations/ar-MA.json index a68519301464..7f47bb63469f 100644 --- a/front/app/translations/ar-MA.json +++ b/front/app/translations/ar-MA.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "أحداث قادمة وجارية", "app.containers.Projects.upcomingEvents": "الأحداث القادمة", "app.containers.Projects.whatsAppMessage": "{اسم المشروع} | من منصة المشاركة لـ {اسم المنظمة}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الحالية", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الأخيرة", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# حدث} other {# من الأحداث}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# فكرة} other {# أفكار}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة الحالية", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة النهائية", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# مبادرات} one {# مبادرة} other {# مبادرات}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# مبادرات} one {# مبادرة} other {# مبادرات}} في المرحلة الحالية", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# مبادرات} one {# مبادرة} other {# مبادرات}} في المرحلة النهائية", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}} في المرحلة الحالية", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}} في المرحلة الأخيرة", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# options} واحدة {# option} أخرى {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# options} واحد {# option} آخر {# options}} في المرحلة الحالية", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# options} واحد {# option} آخر {# options}} في المرحلة الأخيرة", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# مشارك} other {# من المشاركين}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# عرائض} one {# عرائض} other {# عرائض}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# عرائض} one {# عرائض} other {# عرائض}} في المرحلة الحالية", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# عرائض} one {# عرائض} other {# عرائض}} في المرحلة النهائية", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# مرحلة} other {# من المراحل}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}} في المرحلة الحالية", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}} في المرحلة الأخيرة", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# مقترحات} one {# مقترحات} other {# مقترحات}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# مقترحات} one {# مقترحات} other {# مقترحات}} في المرحلة الحالية", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# مقترحات} one {# مقترحات} other {# مقترحات}} في المرحلة النهائية", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}} في المرحلة الحالية", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}} في المرحلة الأخيرة", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# حدث قادم} other {# من الأحداث القادمة}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "استكشف جميع مشاريع {orgName} الجارية لفهم الكيفية التي يمكنك من خلالها المشاركة.تعال وناقش المشاريع المحلية الأكثر أهمية بالنسبة لك.\n ", "app.containers.ProjectsIndexPage.metaTitle1": "المشاريع | {orgName}", diff --git a/front/app/translations/ar-SA.json b/front/app/translations/ar-SA.json index ca5484cbe92c..9ae08b637a3f 100644 --- a/front/app/translations/ar-SA.json +++ b/front/app/translations/ar-SA.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "أحداث قادمة وجارية", "app.containers.Projects.upcomingEvents": "الأحداث القادمة", "app.containers.Projects.whatsAppMessage": "{اسم المشروع} | من منصة المشاركة لـ {اسم المنظمة}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الحالية", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} واحدة {# contribution} أخرى {# contributions}} في المرحلة الأخيرة", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# حدث} other {# من الأحداث}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# فكرة} other {# أفكار}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة الحالية", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# فكرة} other {# من الأفكار}} في المرحلة النهائية", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# مبادرات} one {# مبادرة} other {# مبادرات}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# مبادرات} one {# مبادرة} other {# مبادرات}} في المرحلة الحالية", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# مبادرات} one {# مبادرة} other {# مبادرات}} في المرحلة النهائية", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}} في المرحلة الحالية", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# issues} واحدة {# issue} أخرى {# issues}} في المرحلة الأخيرة", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# options} واحد {# option} آخر {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# options} واحد {# option} آخر {# options}} في المرحلة الحالية", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# options} واحد {# option} آخر {# options}} في المرحلة الأخيرة", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# مشارك} other {# من المشاركين}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# عرائض} one {# عرائض} other {# عرائض}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# عرائض} one {# عرائض} other {# عرائض}} في المرحلة الحالية", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# عرائض} one {# عرائض} other {# عرائض}} في المرحلة النهائية", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# مرحلة} other {# من المراحل}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}} في المرحلة الحالية", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# projects} واحد {# project} آخر {# projects}} في المرحلة الأخيرة", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# مقترحات} one {# مقترحات} other {# مقترحات}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# مقترحات} one {# مقترحات} other {# مقترحات}} في المرحلة الحالية", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# مقترحات} one {# مقترحات} other {# مقترحات}} في المرحلة النهائية", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}} في المرحلة الحالية ", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# questions} واحد {# questions} آخر {# questions}} في المرحلة الأخيرة", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# حدث قادم} other {# من الأحداث القادمة}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "استكشف جميع مشاريع {orgName} الجارية لفهم الكيفية التي يمكنك من خلالها المشاركة.\n تعال وناقش المشاريع المحلية الأكثر أهمية بالنسبة لك.", "app.containers.ProjectsIndexPage.metaTitle1": "المشاريع | {orgName}", diff --git a/front/app/translations/ca-ES.json b/front/app/translations/ca-ES.json index fec544936ec7..1935a6d1a82d 100644 --- a/front/app/translations/ca-ES.json +++ b/front/app/translations/ca-ES.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Esdeveniments propers i en curs", "app.containers.Projects.upcomingEvents": "Pròxims esdeveniments", "app.containers.Projects.whatsAppMessage": "{projectName} | de la plataforma de participació de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribució} other {# contribucions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribució} other {# contribucions}} en la fase actual", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribució} other {# contribucions}} a la fase final", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# esdeveniment} other {# esdeveniments}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# idees}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# idees}} en la fase actual", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# idees}} a la fase final", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# iniciatives} one {# iniciativa} other {# iniciatives}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# iniciatives} one {# iniciativa} other {# iniciatives}} en la fase actual", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# iniciatives} one {# iniciativa} other {# iniciatives}} a la fase final", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comentari} other {# comentaris}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comentari} other {# comentaris}} en la fase actual", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comentari} other {# comentaris}} a la fase final", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# opció} other {# opcions}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# opció} other {# opcions}} en la fase actual", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# opció} other {# opcions}} a la fase final", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# peticions} one {# petició} other {# peticions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# peticions} one {# petició} other {# peticions}} en la fase actual", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# peticions} one {# petició} other {# peticions}} a la fase final", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fase} other {# fases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projecte} other {# projectes}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# projecte} other {# projectes}} en la fase actual", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# projecte} other {# projectes}} a la fase final", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# propostes} one {# proposta} other {# propostes}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# propostes} one {# proposta} other {# propostes}} en la fase actual", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# propostes} one {# proposta} other {# propostes}} a la fase final", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# preguntes} other {# preguntes}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# pregunta} other {# preguntes}} en la fase actual", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# pregunta} other {# preguntes}} a la fase final", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# esdeveniment proper} other {# esdeveniments propers}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Exploreu tots els projectes en curs de {orgName} per entendre com podeu participar. Veniu a parlar dels projectes locals que més l'importen.", "app.containers.ProjectsIndexPage.metaTitle1": "Projectes | {orgName}", diff --git a/front/app/translations/da-DK.json b/front/app/translations/da-DK.json index 9b57adc5391d..c713cc6f5248 100644 --- a/front/app/translations/da-DK.json +++ b/front/app/translations/da-DK.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Kommende og igangværende begivenheder", "app.containers.Projects.upcomingEvents": "Kommende begivenheder", "app.containers.Projects.whatsAppMessage": "{projectName} | fra borgerinddragelsesplatformen hos {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# bidrag} one {# bidrag} other {# bidrag}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# bidrag} one {# bidrag} other {# bidrag}} i den nuværende fase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# bidrag} one {# bidrag} other {# bidrag}} i den sidste fase", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# begivenheder} one {# begivenhed} other {# begivenheder}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}} i den nuværende fase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, no {# idéer} one {# idé} other {# idéer}} i den afsluttende fase", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# borgerforslag} one {# borgerforslag} other {# borgerforslag}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiativer} one {# initiativ} other {# initiativer}} i den nuværende fase", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiativer} one {# initiativ} other {# initiativer}} i slutfasen", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# høringssvar} one {# høringssvar} other {# høringssvar}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# høringssvar} one {# høringssvar} other {# høringssvar}} i den nuværende fase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# høringssvar} one {# høringssvar} other {# høringssvar}} i den sidste fase", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# muligheder} one {# mulighed} other {# muligheder}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# muligheder} one {# mulighed} other {# muligheder}} i den nuværende fase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# muligheder} one {# mulighed} other {# muligheder}} i den sidste fase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# deltagere} one {# deltager} other {# deltagere}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petitioner} one {# petition} other {# petitioner}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petitioner} one {# petition} other {# petitioner}} i den aktuelle fase", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petitioner} one {# petition} other {# petitioner}} i slutfasen", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# faser} one {# fase} other {# faser}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# projekter} one {# projekt} other {# projekter}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projekter} one {# projekt} other {# projekter}} i den nuværende fase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# projekter} one {# projekt} other {# projekter}} i den sidste fase", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# forslag} one {# forslag} other {# forslag}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# forslag} one {# forslag} other {# forslag}} i den nuværende fase", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# forslag} one {# forslag} other {# forslag}} i slutfasen", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# spørgsmål} one {# spørgsmål} other {# spørgsmål}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# spørgsmål} one {# spørgsmål} other {# spørgsmål}} i den nuværende fase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# spørgsmål} one {# spørgsmål} other {# spørgsmål}} i den sidste fase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# kommende begivenheder} one {# kommende begivenhed} other {# kommende begivenheder}}", "app.containers.Projects.yourBudget": "Samlet budget", "app.containers.ProjectsIndexPage.metaDescription": "Udforsk alle igangværende projekter af {orgName} for at forstå, hvordan du kan deltage.\nKom og diskutér lokale projekter, der har betydning for dig.", "app.containers.ProjectsIndexPage.metaTitle1": "{tenantName, select, DeloitteDK {Verdensmål • {orgName}} other {Projekt • {orgName}}}", diff --git a/front/app/translations/de-DE.json b/front/app/translations/de-DE.json index 3f6c9b06cca5..67797adcf6ee 100644 --- a/front/app/translations/de-DE.json +++ b/front/app/translations/de-DE.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Aktuelle Veranstaltungen", "app.containers.Projects.upcomingEvents": "Aktuelle Veranstaltungen", "app.containers.Projects.whatsAppMessage": "{projectName} | von der Beteiligungsplattform {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# Beitrag} other {# Beiträge}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# Beitrag} other {# Beiträge}} in der aktuellen Phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# Beitrag} other {# Beiträge}} in der finalen Phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# Veranstaltung} other {# Veranstaltungen}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# Idee} other {# Ideen}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# Idee} other {# Ideen}} in der gegenwärtigen Phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# Idee} other {# Ideen}} in der finalen Phase", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# Initiativen} eine {# Initiative} other {# Initiativen}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in der aktuellen Phase", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in der Endphase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# Vorhaben} other {# Vorhaben}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# Vorhaben} other {# Vorhaben}} in der aktuellen Phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# Vorhaben} other {# Vorhaben}} in der finalen Phase", - "app.containers.Projects.xOptions": "{ideasCount, Plural, keine {# Optionen} eine {# Option} andere {# Optionen}}\n", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# Optionen} other {# Optionen}} in der aktuellen Phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# Option} other {# Optionen}} in der finalen Phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# Teilnehmer*in} other {# Teilnehmende}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# Petitionen} one {# Petition} other {# Petitionen}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# Petitionen} one {# Petition} other {# Petitionen}} in der aktuellen Phase", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# Petitionen} one {# Petition} other {# Petitionen}} in der Endphase", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# Phase} other {# Phasen}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# Projekte} one {# Projekt} other {# Projekte}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# Projekt} other {# Projekte}} in der aktuellen Phase\n", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# Projekt} other {# Projekte}} in der finalen Phase", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# Vorschläge} one {# Vorschlag} other {# Vorschläge}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# Vorschläge} one {# Vorschlag} other {# Vorschläge}} in der aktuellen Phase", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# Vorschläge} one {# Vorschlag} other {# Vorschläge}} in der Endphase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# Frage} other {# Fragen}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# Frage} other {# Fragen}} in der aktuellen Phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# Frage} other {# Fragen}} in der finalen Phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# Veranstaltung} other {# Veranstaltungen}}", "app.containers.Projects.yourBudget": "Gesamtbudget", "app.containers.ProjectsIndexPage.metaDescription": "Erkunde alle laufende Projekte von {orgName} um zu verstehen, wie du daran teilnehmen kannst. Diskutiere über die lokalen Projekte, die dir am wichtigsten sind.", "app.containers.ProjectsIndexPage.metaTitle1": "Projekte • {orgName}", diff --git a/front/app/translations/el-GR.json b/front/app/translations/el-GR.json index 6658bd87b55d..699013ab8efc 100644 --- a/front/app/translations/el-GR.json +++ b/front/app/translations/el-GR.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Επικείμενες και τρέχουσες εκδηλώσεις", "app.containers.Projects.upcomingEvents": "Επερχόμενες εκδηλώσεις", "app.containers.Projects.whatsAppMessage": "{projectName} | από την πλατφόρμα συμμετοχής του {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# συνεισφορά} other {# συνεισφορές}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# συνεισφορά} other {# συνεισφορές}} στην τρέχουσα φάση", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# συνεισφορά} other {# συνεισφορές}} στην τελική φάση", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# εκδήλωση} other {# εκδηλώσεις}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ιδέα} other {# ιδέες}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# ιδέα} other {# ιδέες}} στην τρέχουσα φάση", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ιδέα} other {# ιδέες}} στην τελική φάση", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# πρωτοβουλίες} one {# πρωτοβουλία} other {# πρωτοβουλίες}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# πρωτοβουλίες} one {# πρωτοβουλία} other {# πρωτοβουλίες}} στην τρέχουσα φάση", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# πρωτοβουλίες} one {# πρωτοβουλία} other {# πρωτοβουλίες}} στην τελική φάση", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# σχόλιο} other {# σχόλια}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# σχόλιο} other {# σχόλια}} στην τρέχουσα φάση", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# σχόλιο} other {# σχόλια}} στην τελική φάση", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# επιλογή} other {# επιλογές}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# επιλογή} other {# επιλογές}} στην τρέχουσα φάση", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# επιλογή} other {# επιλογές}} στην τελική φάση", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# συμμετέχων} other {# συμμετέχοντες}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# αναφορές} one {# αναφορές} other {# αναφορές}} στην τρέχουσα φάση", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# αναφορές} one {# αναφορές} other {# αναφορές}} στην τελική φάση", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# φάση} other {# φάσεις}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# έργο} other {# έργα}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# έργο} other {# έργα}} στην τρέχουσα φάση", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# έργο} other {# έργο}} στην τελική φάση", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# προτάσεις} one {# πρόταση} other {# προτάσεις}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# προτάσεις} one {# πρόταση} other {# προτάσεις}} στην τρέχουσα φάση", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# προτάσεις} one {# πρόταση} other {# προτάσεις}} στην τελική φάση", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# ερωτήσεις} other {# ερωτήσεις}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# ερώτηση} other {# ερωτήσεις}} στην τρέχουσα φάση", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# ερώτηση} other {# ερωτήσεις}} στην τελική φάση", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# επερχόμενη εκδήλωση} other {# επερχόμενες εκδηλώσεις}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Εξερευνήστε όλα τα τρέχοντα έργα του {orgName} για να καταλάβετε πώς μπορείτε να συμμετάσχετε. Ελάτε να συζητήσετε τα τοπικά έργα που σας ενδιαφέρουν περισσότερο.", "app.containers.ProjectsIndexPage.metaTitle1": "Έργα | {orgName}", diff --git a/front/app/translations/en-CA.json b/front/app/translations/en-CA.json index 68528248c418..0426d2a613ac 100644 --- a/front/app/translations/en-CA.json +++ b/front/app/translations/en-CA.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Upcoming and ongoing events", "app.containers.Projects.upcomingEvents": "Upcoming events", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# event} other {# events}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the current phase", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the current phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the final phase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} in the current phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} in the final phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the current phase", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the final phase", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} in the current phase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} in the final phase", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the current phase", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} in the current phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} in the final phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# upcoming event} other {# upcoming events}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Explore all ongoing projects of {orgName} to understand how you can participate.\n Come discuss local projects that matter most to you.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/en-GB.json b/front/app/translations/en-GB.json index 103da1ec117d..9d49c5187546 100644 --- a/front/app/translations/en-GB.json +++ b/front/app/translations/en-GB.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Upcoming and ongoing events", "app.containers.Projects.upcomingEvents": "Upcoming events", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# event} other {# events}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the current phase", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the current phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the final phase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} in the current phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} in the final phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the current phase", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the final phase", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} in the current phase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} in the final phase", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the current phase", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} in the current phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} in the final phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# upcoming event} other {# upcoming events}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Explore all ongoing projects of {orgName} to understand how you can participate.\n Come discuss local projects that matter most to you.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/en-IE.json b/front/app/translations/en-IE.json index 97b599e6feac..c062ae2cd25e 100644 --- a/front/app/translations/en-IE.json +++ b/front/app/translations/en-IE.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Upcoming and ongoing events", "app.containers.Projects.upcomingEvents": "Upcoming events", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# event} other {# events}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the current phase", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the current phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the final phase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} in the current phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} in the final phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the current phase", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the final phase", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} in the current phase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} in the final phase", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the current phase", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} in the current phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} in the final phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# upcoming event} other {# upcoming events}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Explore all ongoing projects of {orgName} to understand how you can participate.\n Come discuss local projects that matter most to you.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/en.json b/front/app/translations/en.json index 97b599e6feac..c062ae2cd25e 100644 --- a/front/app/translations/en.json +++ b/front/app/translations/en.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Upcoming and ongoing events", "app.containers.Projects.upcomingEvents": "Upcoming events", "app.containers.Projects.whatsAppMessage": "{projectName} | from the participation platform of {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the current phase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} in the final phase", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# event} other {# events}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the current phase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} in the final phase", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the current phase", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the current phase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} in the final phase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} in the current phase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} in the final phase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# participant} other {# participants}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the current phase", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the final phase", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projects}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} in the current phase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} in the final phase", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the current phase", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} in the current phase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} in the final phase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# upcoming event} other {# upcoming events}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Explore all ongoing projects of {orgName} to understand how you can participate.\n Come discuss local projects that matter most to you.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/es-CL.json b/front/app/translations/es-CL.json index 97b1e9425c93..461ff9ed74cb 100644 --- a/front/app/translations/es-CL.json +++ b/front/app/translations/es-CL.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Eventos en curso y próximos eventos", "app.containers.Projects.upcomingEvents": "Próximos eventos", "app.containers.Projects.whatsAppMessage": "{projectName} | de la plataforma de participación de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}} en la fase actual", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}} en la fase final", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# evento} other {# eventos}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} en la fase actual", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# encuesta} other {# encuestas}} en la etapa final", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# iniciativas} one {# iniciativa} other {# iniciativas}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# iniciativas} one {# iniciativa} other {# iniciativas}} en la fase actual", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# iniciativas} one {# iniciativa} other {# iniciativas}} en la fase final", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}} en la fase actual", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}} en la fase final", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}} en la fase actual", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}} en la fase final", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# Participante} other {# Participantes}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# peticiones} one {# petición} other {# peticiones}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# peticiones} one {# petición} other {# peticiones}} en la fase actual", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# peticiones} one {# petición} other {# peticiones}} en la fase final", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fase} other {# fases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# proyecto} one {# proyecto} other {# proyectos}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# proyectos} one {# proyecto} other {# proyectos}} en la fase actual", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# proyectos} one {# proyecto} other {# proyectos}} en la fase final", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}} en la fase actual", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}} en la fase final", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}} en la fase actual", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}} en la fase final", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# próximo evento} other {# próximos eventos}}", "app.containers.Projects.yourBudget": "Presupuesto total", "app.containers.ProjectsIndexPage.metaDescription": "Explora todos los proyectos en curso de {orgName} para entender cómo puedes participar.\nÚnete a la conversación sobre los proyectos que más te interesen.", "app.containers.ProjectsIndexPage.metaTitle1": "{orgName}", diff --git a/front/app/translations/es-ES.json b/front/app/translations/es-ES.json index 60ff46f20295..97509ab9dfdc 100644 --- a/front/app/translations/es-ES.json +++ b/front/app/translations/es-ES.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Eventos en curso y próximos eventos", "app.containers.Projects.upcomingEvents": "Próximos eventos", "app.containers.Projects.whatsAppMessage": "{projectName} | de la plataforma de participación de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# aporte} other {# propuestas}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# aporte} other {# propuestas}} en la fase actual", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# aporte} other {# propuestas}} en la fase final", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# evento} other {# eventos}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} en la fase actual", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} en la etapa final", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# iniciativas} one {# iniciativa} other {# iniciativas}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# iniciativas} one {# iniciativa} other {# iniciativas}} en la fase actual", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# iniciativas} one {# iniciativa} other {# iniciativas}} en la fase final", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}} en la fase actual", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# temas} one {# tema} other {# temas}} en la fase final", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}} en la fase actual", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# opciones} one {# opción} other {# opciones}} en la fase final", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# Participante} other {# Participantes}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# peticiones} one {# petición} other {# peticiones}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# peticiones} one {# petición} other {# peticiones}} en la fase actual", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# peticiones} one {# petición} other {# peticiones}} en la fase final", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fase} other {# fases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, no {# proyecto} one {# proyecto} other {# proyectos}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# proyectos} one {# proyecto} other {# proyectos}} en la fase actual", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# proyectos} one {# proyecto} other {# proyectos}} en la fase final", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}} en la fase actual", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# propuestas} one {# propuesta} other {# propuestas}} en la fase final", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}} en la fase actual", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# preguntas} one {# preguntas} other {# preguntas}} en la fase final", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# próximo evento} other {# próximos eventos}}", "app.containers.Projects.yourBudget": "Presupuesto total", "app.containers.ProjectsIndexPage.metaDescription": "Explora todos los proyectos en curso de {orgName} para entender cómo puedes participar.\nÚnete a la conversación sobre los proyectos que más te interesen.", "app.containers.ProjectsIndexPage.metaTitle1": "{orgName}", diff --git a/front/app/translations/fr-BE.json b/front/app/translations/fr-BE.json index 655b25a48a2e..49b015a4b1dd 100644 --- a/front/app/translations/fr-BE.json +++ b/front/app/translations/fr-BE.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Événements à venir et en cours", "app.containers.Projects.upcomingEvents": "Événements à venir", "app.containers.Projects.whatsAppMessage": "{projectName} | de la plateforme de participation de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase actuelle", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase finale", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# événements} one {# événement} other {# événements}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase en cours", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase finale", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiative} one {# initiative} other {# initiatives}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiative} one {# initiative} other {# initiatives}} dans la phase actuelle", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiative} one {# initiative} other {# initiatives}} dans la dernière phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}} dans la phase actuelle", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}} dans la phase finale", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# options} one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# options} one {# option} other {# options}} dans la phase actuelle", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# options} one {# option} other {# options}} dans la phase finale", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# participants} one {# participant} other {# participants}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# pétition} one {# pétition} other {# pétitions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# pétition} one {# pétition} other {# pétitions}} dans la phase actuelle", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# pétition} one {# pétition} other {# pétitions}} dans la dernière phase", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# phases} one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural,no {# projets} one {# projet} other {# projets}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projects} one {# project} other {# projects}} dans la phase actuelle", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# projects} one {# project} other {# projects}} dans la phase finale", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# proposition} one {# proposition} other {# propositions}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# proposition} one {# proposition} other {# propositions}} dans la phase actuelle", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# proposition} one {# proposition} other {# propositions}} dans la dernière phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# questions} one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# questions} one {# question} other {# questions}} dans la phase actuelle", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# questions} one {# question} other {# questions}} dans la phase finale", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# événements à venir} one {# événement à venir} other {# événements à venir}}", "app.containers.Projects.yourBudget": "Budget total", "app.containers.ProjectsIndexPage.metaDescription": "Découvrez tous les projets en cours à {orgName} pour comprendre comment vous pouvez participer. \n Venez discutez des sujets qui comptent pour vous.", "app.containers.ProjectsIndexPage.metaTitle1": "Projets | {orgName}", diff --git a/front/app/translations/fr-FR.json b/front/app/translations/fr-FR.json index 3fd037817dfa..2aed5f0a6fbc 100644 --- a/front/app/translations/fr-FR.json +++ b/front/app/translations/fr-FR.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Événements à venir et en cours", "app.containers.Projects.upcomingEvents": "Événements à venir", "app.containers.Projects.whatsAppMessage": "{projectName} | de la plateforme de participation de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase actuelle", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# suggestions} one {# suggestion} other {# suggestions}} dans la phase finale", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# événements} one {# événement} other {# événements}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase en cours", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, no {# idées} one {# idée} other {# idées}} dans la phase finale", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiative} one {# initiative} other {# initiatives}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiative} one {# initiative} other {# initiatives}} dans la phase actuelle", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiative} one {# initiative} other {# initiatives}} dans la dernière phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}} dans la phase actuelle", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# issues} one {# issue} other {# issues}} dans la phase finale", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# options} one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# options} one {# option} other {# options}} dans la phase actuelle", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# options} one {# option} other {# options}} dans la phase finale", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# participants} one {# participant} other {# participants}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# pétition} one {# pétition} other {# pétitions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# pétition} one {# pétition} other {# pétitions}} dans la phase actuelle", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# pétition} one {# pétition} other {# pétitions}} dans la dernière phase", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# phases} one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural,no {# projets} one {# projet} other {# projets}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projets} one {# projet} other {# projets}} dans la phase actuelle", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, no {# projects} one {# project} other {# projects}} dans la phase finale", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# proposition} one {# proposition} other {# propositions}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# proposition} one {# proposition} other {# propositions}} dans la phase actuelle", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# proposition} one {# proposition} other {# propositions}} dans la dernière phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# questions} one {# questions} other {# questions}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# questions} one {# question} other {# questions}} dans la phase actuelle", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# questions} one {# question} other {# questions}} dans la phase finale", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# événements à venir} one {# événement à venir} other {# événements à venir}}", "app.containers.Projects.yourBudget": "Budget total", "app.containers.ProjectsIndexPage.metaDescription": "Découvrez tous les projets en cours à {orgName} pour comprendre comment vous pouvez participer. \n Venez discutez des sujets qui comptent pour vous.", "app.containers.ProjectsIndexPage.metaTitle1": "Projets | {orgName}", diff --git a/front/app/translations/it-IT.json b/front/app/translations/it-IT.json index 13eec56f90c5..19a02f0b84b2 100644 --- a/front/app/translations/it-IT.json +++ b/front/app/translations/it-IT.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Eventi imminenti e in corso", "app.containers.Projects.upcomingEvents": "Prossimi eventi", "app.containers.Projects.whatsAppMessage": "{projectName} | dalla piattaforma di partecipazione di {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# contributo} other {# contributi}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contributo} other {# contributi}} nella fase attuale", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contributo} other {# contributi}} nella fase finale", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# evento} other {# eventi}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# idee}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# idee}} nella fase attuale", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# idee}} nella fase finale", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# iniziative} one {# iniziativa} other {# iniziative}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# iniziative} one {# iniziative} other {# iniziative}} nella fase attuale", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# iniziative} one {# iniziative} other {# iniziative}} nella fase finale", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# numero} other {# numeri}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# problema} other {# problemi}} nella fase attuale", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# problema} other {# problemi}} nella fase finale", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# opzione} other {# opzioni}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# opzione} other {# opzioni}} nella fase attuale", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# opzione} other {# opzioni}} nella fase finale", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# partecipante} other {# partecipanti}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petizioni} one {# petizione} other {# petizioni}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petizioni} one {# petizioni} other {# petizioni}} nella fase attuale", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petizioni} one {# petizione} other {# petizioni}} nella fase finale", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fase} other {# fasi}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# progetto} other {# progetti}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# progetto} other {# progetti}} nella fase attuale", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# progetto} other {# progetti}} nella fase finale", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# proposte} one {# proposte} other {# proposte}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# proposte} one {# proposte} other {# proposte}} nella fase attuale", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# proposte} one {# proposte} other {# proposte}} in fase finale", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# domande} other {# domande}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# domanda} other {# domande}} nella fase attuale", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# domanda} other {# domande}} nella fase finale", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# evento imminente} other {# eventi imminenti}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Esplora tutti i progetti in corso di {orgName} per capire come puoi partecipare.\n Vieni a discutere dei progetti locali che ti interessano di più.", "app.containers.ProjectsIndexPage.metaTitle1": "Progetti | {orgName}", diff --git a/front/app/translations/lv-LV.json b/front/app/translations/lv-LV.json index 9b45ff95c352..8d4c8def45da 100644 --- a/front/app/translations/lv-LV.json +++ b/front/app/translations/lv-LV.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Gaidāmie un aktuālie notikumi", "app.containers.Projects.upcomingEvents": "Gaidāmie notikumi", "app.containers.Projects.whatsAppMessage": "{projectName} | no {orgName} līdzdalības platformas", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# ieguldījums} other {# ieguldījumi}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} pašreizējā posmā", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# contribution} other {# contributions}} pēdējā posmā", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# notikums} other {# notikumi}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideja} other {# idejas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idea} other {# ideas}} pašreizējā posmā", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} pēdējā posmā", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# iniciatīvas} one {# iniciatīva} other {# iniciatīvas}}# iniciatīvas ~ ~", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# iniciatīvas} one {# iniciatīva} other {# iniciatīvas}} pašreizējā posmā", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# iniciatīvas} one {# iniciatīva} other {# iniciatīvas}} pēdējā posmā", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# komentārs} other {# komentāri}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} pašreizējā posmā", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# comment} other {# comments}} pēdējā posmā", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# iespēja} other {# iespējas}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} pašreizējā posmā", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} pēdējā posmā", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# dalībnieks} other {# dalībnieki}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petīcijas} one {# petīcija} other {# petīcijas}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petīcijas} one {# petīcija} other {# petīcijas}} pašreizējā posmā", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petīcijas} one {# petīcija} other {# petīcijas}} noslēguma posmā", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fāze} other {# fāzes}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projekts} other {# projekti}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projects}} pašreizējā posmā", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projects}} pēdējā posmā", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# priekšlikumi} one {# priekšlikums} other {# priekšlikumi}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# priekšlikumi} one {# priekšlikums} other {# priekšlikumi}} pašreizējā posmā", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# priekšlikumi} one {# priekšlikums} other {# priekšlikumi}} noslēguma posmā", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# jautājumi} other {# jautājumi}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# question} other {# questions}} pašreizējā posmā", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# question} other {# questions}} pēdējā posmā", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# gaidāmais notikums} other {# gaidāmie pasākumi}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Iepazīstieties ar visiem {orgName} aktuālajiem projektiem, lai saprastu, kā jūs varat tajos piedalīties.\n Nāciet apspriest vietējos projektus, kas jums ir vissvarīgākie.", "app.containers.ProjectsIndexPage.metaTitle1": "Projekti | {orgName}", diff --git a/front/app/translations/nl-BE.json b/front/app/translations/nl-BE.json index 650359b6e3a8..d7977ec26db8 100644 --- a/front/app/translations/nl-BE.json +++ b/front/app/translations/nl-BE.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Aankomende en gestarte activiteiten", "app.containers.Projects.upcomingEvents": "Aankomende activiteiten", "app.containers.Projects.whatsAppMessage": "{projectName} | van het participatieplatform van {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# onderwerp} other {# onderwerpen}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# onderwerp} other {# onderwerpen}} in de huidige fase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# onderwerp} other {# onderwerpen}} in de laatste fase", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# activiteiten} one {# activiteit} other {# activiteiten}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# ideeën} one {# idee} other {# ideeën}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, no {# ideeën} one {# idee} other {# ideeën}} in de huidige fase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idee} other {# ideeën}} in de laatste fase", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiatieven} one {# initiatief} other {# initiatieven}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiatieven} one {# initiatief} other {# initiatieven}} in de huidige fase", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiatieven} one {# initiatief} other {# initiatieven}} in de laatste fase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}} in de huidige fase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}} in de laatste fase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# optie} other {# opties}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# optie} other {# opties}} in de huidige fase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# optie} other {# opties}} in de laatste fase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# deelnemers} one {# deelnemer} other {# deelnemers}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petities} one {# petitie} other {# petities}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petities} one {# petitie} other {# petities}} in de huidige fase", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petities} one {# petitie} other {# petities}} in de laatste fase", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# fasen} one {# fase} other {# fasen}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projecten}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projecten}} in de huidige fase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projecten}} in de laatste fase", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# voorstellen} one {# voorstel} other {# voorstellen}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# voorstellen} one {# voorstel} other {# voorstellen}} in de huidige fase", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# voorstellen} one {# voorstel} other {# voorstellen}} in de laatste fase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# vraag} other {# vragen}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# vraag} other {# vragen}} in de huidige fase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# vraag} other {# vragen}} in de laatste fase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# aankomende activiteiten} one {# aankomende activiteit} other {# aankomende activiteiten}}", "app.containers.Projects.yourBudget": "Totale budget", "app.containers.ProjectsIndexPage.metaDescription": "Verken alle lopende projecten van {orgName} en ontdek hoe jij kan deelnemen.\nBespreek die lokale projecten die voor jou het belangrijkst zijn.", "app.containers.ProjectsIndexPage.metaTitle1": "Projecten • {orgName}", diff --git a/front/app/translations/nl-NL.json b/front/app/translations/nl-NL.json index 958d16e2a827..3aa53ce539e5 100644 --- a/front/app/translations/nl-NL.json +++ b/front/app/translations/nl-NL.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Aankomende en gestarte activiteiten", "app.containers.Projects.upcomingEvents": "Aankomende activiteiten", "app.containers.Projects.whatsAppMessage": "{projectName} | van het participatieplatform van {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}} in de huidige fase", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# bijdrage} other {# bijdragen}} in de laatste fase", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# activiteiten} one {# activiteit} other {# activiteiten}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, no {# ideeën} one {# idee} other {# ideeën}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idee} other {# ideeën}} in de huidige fase", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# post} other {# posts}} in de laatste fase", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiatieven} one {# initiatief} other {# initiatieven}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiatieven} one {# initiatief} other {# initiatieven}} in de huidige fase", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiatieven} one {# initiatief} other {# initiatieven}} in de laatste fase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# reactie} other {# reacties}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# reactie} other {# reacties}} in de huidige fase", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# reactie} other {# reacties}} in de laatste fase", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# optie} other {# opties}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# optie} other {# opties}} in de huidige fase", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# optie} other {# opties}} in de laatste fase", - "app.containers.Projects.xParticipants": "{participantsCount, plural, no {# deelnemers} one {# deelnemer} other {# deelnemers}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petities} one {# petitie} other {# petities}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petities} one {# petitie} other {# petities}} in de huidige fase", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petities} one {# petitie} other {# petities}} in de laatste fase", - "app.containers.Projects.xPhases": "{phasesCount, plural, no {# fasen} one {# fase} other {# fasen}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# project} other {# projecten}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# project} other {# projecten}} in de huidige fase", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# project} other {# projecten}} in de laatste fase", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# voorstellen} one {# voorstel} other {# voorstellen}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# voorstellen} one {# voorstel} other {# voorstellen}} in de huidige fase", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# voorstellen} one {# voorstel} other {# voorstellen}} in de laatste fase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# vraag} other {# vragen}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# vraag} other {# vragen}} in de huidige fase", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# vraag} other {# vragen}} in de laatste fase", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, no {# aankomende activiteiten} one {# aankomende activiteit} other {# aankomende activiteiten}}", "app.containers.Projects.yourBudget": "Totale budget", "app.containers.ProjectsIndexPage.metaDescription": "Verken alle lopende projecten van {orgName} en ontdek hoe jij kan deelnemen.\nBespreek die lokale projecten die voor jou het belangrijkst zijn.", "app.containers.ProjectsIndexPage.metaTitle1": "Projecten • {orgName}", diff --git a/front/app/translations/pa-IN.json b/front/app/translations/pa-IN.json index 141405a9b435..0bef81146546 100644 --- a/front/app/translations/pa-IN.json +++ b/front/app/translations/pa-IN.json @@ -1524,13 +1524,11 @@ "app.containers.Projects.a11y_phasesOverview": "ਪੜਾਵਾਂ ਦੀ ਸੰਖੇਪ ਜਾਣਕਾਰੀ", "app.containers.Projects.a11y_titleInputs": "ਇਸ ਪ੍ਰੋਜੈਕਟ ਲਈ ਸਾਰੇ ਇਨਪੁਟ ਸਪੁਰਦ ਕੀਤੇ ਗਏ ਹਨ", "app.containers.Projects.a11y_titleInputsPhase": "ਇਸ ਪੜਾਅ ਵਿੱਚ ਸਾਰੇ ਇੰਪੁੱਟ ਜਮ੍ਹਾਂ ਕੀਤੇ ਗਏ ਹਨ", - "app.containers.Projects.about": "ਬਾਰੇ", "app.containers.Projects.accessRights": "ਪਹੁੰਚ ਅਧਿਕਾਰ", "app.containers.Projects.addedToBasket": "ਟੋਕਰੀ ਵਿੱਚ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ", "app.containers.Projects.allocateBudget": "ਆਪਣਾ ਬਜਟ ਨਿਰਧਾਰਤ ਕਰੋ", "app.containers.Projects.archived": "ਪੁਰਾਲੇਖ", "app.containers.Projects.basketSubmitted": "ਟੋਕਰੀ ਜਮ੍ਹਾ ਕਰ ਦਿੱਤੀ ਗਈ ਹੈ!", - "app.containers.Projects.budget": "{amount} ਬਜਟ", "app.containers.Projects.contributions": "ਯੋਗਦਾਨ", "app.containers.Projects.createANewPhase": "ਇੱਕ ਨਵਾਂ ਪੜਾਅ ਬਣਾਓ", "app.containers.Projects.currentPhase": "ਮੌਜੂਦਾ ਪੜਾਅ", @@ -1549,7 +1547,6 @@ "app.containers.Projects.invisibleTitlePoll": "ਪੋਲ ਲਓ", "app.containers.Projects.invisibleTitleSurvey": "ਸਰਵੇਖਣ ਲਵੋ", "app.containers.Projects.issues": "ਟਿੱਪਣੀਆਂ", - "app.containers.Projects.liveDataMessage": "ਤੁਸੀਂ ਰੀਅਲ-ਟਾਈਮ ਡਾਟਾ ਦੇਖ ਰਹੇ ਹੋ। ਭਾਗੀਦਾਰਾਂ ਦੀ ਗਿਣਤੀ ਪ੍ਰਬੰਧਕਾਂ ਲਈ ਲਗਾਤਾਰ ਅੱਪਡੇਟ ਕੀਤੀ ਜਾਂਦੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਨੋਟ ਕਰੋ ਕਿ ਨਿਯਮਤ ਉਪਭੋਗਤਾ ਕੈਸ਼ ਕੀਤਾ ਡੇਟਾ ਦੇਖਦੇ ਹਨ, ਜਿਸਦੇ ਨਤੀਜੇ ਵਜੋਂ ਸੰਖਿਆਵਾਂ ਵਿੱਚ ਮਾਮੂਲੀ ਅੰਤਰ ਹੋ ਸਕਦਾ ਹੈ।", "app.containers.Projects.location": "ਟਿਕਾਣਾ:", "app.containers.Projects.manageBasket": "ਟੋਕਰੀ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ", "app.containers.Projects.meetMinBudgetRequirement": "ਟੋਕਰੀ ਜਮ੍ਹਾ ਕਰਨ ਲਈ ਘੱਟੋ-ਘੱਟ ਬਜਟ ਨੂੰ ਪੂਰਾ ਕਰੋ।", @@ -1566,19 +1563,12 @@ "app.containers.Projects.noPastEvents": "ਪ੍ਰਦਰਸ਼ਿਤ ਕਰਨ ਲਈ ਕੋਈ ਪਿਛਲੀਆਂ ਘਟਨਾਵਾਂ ਨਹੀਂ ਹਨ", "app.containers.Projects.noPhaseSelected": "ਕੋਈ ਪੜਾਅ ਨਹੀਂ ਚੁਣਿਆ ਗਿਆ", "app.containers.Projects.noUpcomingOrOngoingEvents": "ਵਰਤਮਾਨ ਵਿੱਚ ਕੋਈ ਆਗਾਮੀ ਜਾਂ ਚੱਲ ਰਹੇ ਸਮਾਗਮਾਂ ਦਾ ਸਮਾਂ ਨਿਯਤ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ।", - "app.containers.Projects.nothingPosted": "ਅਜੇ ਤੱਕ ਕੁਝ ਵੀ ਪੋਸਟ ਨਹੀਂ ਕੀਤਾ ਗਿਆ", - "app.containers.Projects.oneDocToReview": "ਸਮੀਖਿਆ ਕਰਨ ਲਈ 1 ਦਸਤਾਵੇਜ਼", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "ਮੌਜੂਦਾ ਪੜਾਅ ਵਿੱਚ ਸਮੀਖਿਆ ਕਰਨ ਲਈ 1 ਦਸਤਾਵੇਜ਼", - "app.containers.Projects.oneSurvey": "1 ਸਰਵੇਖਣ", - "app.containers.Projects.oneSurveyInCurrentPhase": "ਮੌਜੂਦਾ ਪੜਾਅ ਵਿੱਚ 1 ਸਰਵੇਖਣ", "app.containers.Projects.options": "ਵਿਕਲਪ", "app.containers.Projects.participants": "ਭਾਗ ਲੈਣ ਵਾਲੇ", "app.containers.Projects.participantsTooltip4": "ਇਹ ਸੰਖਿਆ ਅਗਿਆਤ ਸਰਵੇਖਣ ਬੇਨਤੀਆਂ ਨੂੰ ਵੀ ਦਰਸਾਉਂਦੀ ਹੈ। ਅਗਿਆਤ ਸਰਵੇਖਣ ਸਬਮਿਸ਼ਨ ਸੰਭਵ ਹਨ ਜੇਕਰ ਸਰਵੇਖਣ ਹਰ ਕਿਸੇ ਲਈ ਖੁੱਲ੍ਹੇ ਹਨ (ਇਸ ਪ੍ਰੋਜੈਕਟ ਲਈ {accessRightsLink} ਟੈਬ ਦੇਖੋ)।", "app.containers.Projects.pastEvents": "ਪਿਛਲੀਆਂ ਘਟਨਾਵਾਂ", "app.containers.Projects.petitions": "ਪਟੀਸ਼ਨਾਂ", "app.containers.Projects.phases": "ਪੜਾਅ", - "app.containers.Projects.poll": "1 ਪੋਲ", - "app.containers.Projects.pollInCurrentPhase": "ਮੌਜੂਦਾ ਪੜਾਅ ਵਿੱਚ 1 ਪੋਲ", "app.containers.Projects.previousPhase": "ਪਿਛਲਾ ਪੜਾਅ", "app.containers.Projects.project": "ਪ੍ਰੋਜੈਕਟ", "app.containers.Projects.projectTwitterMessage": "ਆਪਣੀ ਆਵਾਜ਼ ਸੁਣਾਓ! {projectName} | ਵਿੱਚ ਭਾਗ ਲਓ {orgName}", @@ -1589,7 +1579,6 @@ "app.containers.Projects.readMore": "ਹੋਰ ਪੜ੍ਹੋ", "app.containers.Projects.removeItem": "ਆਈਟਮ ਹਟਾਓ", "app.containers.Projects.requiredSelection": "ਲੋੜੀਂਦੀ ਚੋਣ", - "app.containers.Projects.requiredSelectionExceeded": "ਤੁਸੀਂ ਲੋੜੀਂਦੀ ਚੋਣ ਨੂੰ ਪਾਰ ਕਰ ਲਿਆ ਹੈ।", "app.containers.Projects.reviewDocument": "ਦਸਤਾਵੇਜ਼ ਦੀ ਸਮੀਖਿਆ ਕਰੋ", "app.containers.Projects.seeTheContributions": "ਯੋਗਦਾਨ ਦੇਖੋ", "app.containers.Projects.seeTheIdeas": "ਵਿਚਾਰ ਦੇਖੋ", @@ -1601,50 +1590,16 @@ "app.containers.Projects.seeTheProposals": "ਪ੍ਰਸਤਾਵ ਵੇਖੋ", "app.containers.Projects.seeTheQuestions": "ਸਵਾਲ ਦੇਖੋ", "app.containers.Projects.seeUpcomingEvents": "ਆਗਾਮੀ ਸਮਾਗਮ ਵੇਖੋ", - "app.containers.Projects.selectionExceedsBudget": "ਤੁਹਾਡੀ ਚੋਣ ਤੁਹਾਡੇ ਬਜਟ ਤੋਂ ਵੱਧ ਹੈ।", "app.containers.Projects.share": "ਸ਼ੇਅਰ ਕਰੋ", "app.containers.Projects.shareThisProject": "ਇਸ ਪ੍ਰੋਜੈਕਟ ਨੂੰ ਸਾਂਝਾ ਕਰੋ", "app.containers.Projects.submitMyBasket": "ਟੋਕਰੀ ਜਮ੍ਹਾਂ ਕਰੋ", "app.containers.Projects.survey": "ਸਰਵੇਖਣ", - "app.containers.Projects.surveySubmissions": "ਸਰਵੇਖਣ ਅਧੀਨਗੀ", - "app.containers.Projects.surveySubmissionsTooltip3": "ਬਾਹਰੀ ਸਰਵੇਖਣ ਸਬਮਿਸ਼ਨਾਂ ਨੂੰ ਗਿਣਿਆ ਨਹੀਂ ਜਾਂਦਾ ਹੈ।", "app.containers.Projects.takeThePoll": "ਪੋਲ ਲਓ", "app.containers.Projects.takeTheSurvey": "ਸਰਵੇਖਣ ਲਵੋ", "app.containers.Projects.timeline": "ਸਮਾਂਰੇਖਾ", "app.containers.Projects.upcomingAndOngoingEvents": "ਆਗਾਮੀ ਅਤੇ ਚੱਲ ਰਹੇ ਸਮਾਗਮ", "app.containers.Projects.upcomingEvents": "ਆਗਾਮੀ ਸਮਾਗਮ", "app.containers.Projects.whatsAppMessage": "{projectName} | {orgName}ਦੇ ਭਾਗੀਦਾਰੀ ਪਲੇਟਫਾਰਮ ਤੋਂ", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# ਯੋਗਦਾਨ} other {# ਯੋਗਦਾਨ}}", - "app.containers.Projects.xContributionsInCurrentPhase": "ਮੌਜੂਦਾ ਪੜਾਅ ਵਿੱਚ {ideasCount, plural, one {# ਯੋਗਦਾਨ} other {# ਯੋਗਦਾਨ}}", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# ਯੋਗਦਾਨ} other {# ਯੋਗਦਾਨ}} ਅੰਤਿਮ ਪੜਾਅ ਵਿੱਚ", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# ਘਟਨਾ} other {# ਸਮਾਗਮ}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ਵਿਚਾਰ} other {# ਵਿਚਾਰ}}", - "app.containers.Projects.xIdeasInCurrentPhase": "ਮੌਜੂਦਾ ਦੌਰ ਵਿੱਚ {ideasCount, plural, one {# ਵਿਚਾਰ} other {# ਵਿਚਾਰ}}", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ਵਿਚਾਰ} other {# ਵਿਚਾਰ}} ਅੰਤਿਮ ਪੜਾਅ ਵਿੱਚ", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {#ਪਹਿਲ} one {#ਪਹਿਲ} other {#ਪਹਿਲ}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "ਮੌਜੂਦਾ ਦੌਰ ਵਿੱਚ {ideasCount, plural, no {# ਪਹਿਲਕਦਮੀਆਂ} one {# ਪਹਿਲਕਦਮੀ} other {# ਪਹਿਲਕਦਮੀਆਂ}}", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {#ਪਹਿਲ} one {#ਪਹਿਲ} other {#ਪਹਿਲ}} ਅੰਤਿਮ ਪੜਾਅ ਵਿੱਚ", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# ਟਿੱਪਣੀ} other {# ਟਿੱਪਣੀ}}", - "app.containers.Projects.xIssuesInCurrentPhase": "ਮੌਜੂਦਾ ਦੌਰ ਵਿੱਚ {ideasCount, plural, one {# ਟਿੱਪਣੀ} other {# ਟਿੱਪਣੀ}}", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# ਟਿੱਪਣੀ} other {# ਟਿੱਪਣੀਆਂ}} ਅੰਤਿਮ ਪੜਾਅ ਵਿੱਚ", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# ਵਿਕਲਪ} other {# ਵਿਕਲਪ}}", - "app.containers.Projects.xOptionsInCurrentPhase": "ਮੌਜੂਦਾ ਪੜਾਅ ਵਿੱਚ {ideasCount, plural, one {# ਵਿਕਲਪ} other {# ਵਿਕਲਪ}}", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# ਵਿਕਲਪ} other {# ਵਿਕਲਪ}} ਅੰਤਿਮ ਪੜਾਅ ਵਿੱਚ", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# ਭਾਗੀਦਾਰ} other {# ਭਾਗੀਦਾਰ}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# ਪਟੀਸ਼ਨਾਂ} one {# ਪਟੀਸ਼ਨ} other {# ਪਟੀਸ਼ਨਾਂ}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# ਪਟੀਸ਼ਨਾਂ} one {# ਪਟੀਸ਼ਨ} other {# ਪਟੀਸ਼ਨਾਂ}} ਮੌਜੂਦਾ ਪੜਾਅ ਵਿੱਚ", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# ਪਟੀਸ਼ਨਾਂ} one {# ਪਟੀਸ਼ਨ} other {# ਪਟੀਸ਼ਨਾਂ}} ਅੰਤਿਮ ਪੜਾਅ ਵਿੱਚ", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# ਪੜਾਅ} other {# ਪੜਾਅ}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# ਪ੍ਰੋਜੈਕਟ} other {# ਪ੍ਰੋਜੈਕਟ}}", - "app.containers.Projects.xProjectsInCurrentPhase": "ਮੌਜੂਦਾ ਪੜਾਅ ਵਿੱਚ {ideasCount, plural, one {# ਪ੍ਰੋਜੈਕਟ} other {# ਪ੍ਰੋਜੈਕਟ}}", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# ਪ੍ਰੋਜੈਕਟ} other {# ਪ੍ਰੋਜੈਕਟ}} ਅੰਤਿਮ ਪੜਾਅ ਵਿੱਚ", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# ਪ੍ਰਸਤਾਵ} one {# ਪ੍ਰਸਤਾਵ} other {# ਪ੍ਰਸਤਾਵ}}", - "app.containers.Projects.xProposalsInCurrentPhase": "ਮੌਜੂਦਾ ਦੌਰ ਵਿੱਚ {ideasCount, plural, no {# ਪ੍ਰਸਤਾਵ} one {# ਪ੍ਰਸਤਾਵ} other {# ਪ੍ਰਸਤਾਵ}}", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# ਪ੍ਰਸਤਾਵ} one {# ਪ੍ਰਸਤਾਵ} other {# ਪ੍ਰਸਤਾਵ}} ਅੰਤਿਮ ਪੜਾਅ ਵਿੱਚ", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# ਸਵਾਲ} other {# ਸਵਾਲ}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "ਮੌਜੂਦਾ ਪੜਾਅ ਵਿੱਚ {ideasCount, plural, one {# ਸਵਾਲ} other {# ਸਵਾਲ}}", - "app.containers.Projects.xQuestionsInFinalPhase": "ਅੰਤਮ ਪੜਾਅ ਵਿੱਚ {ideasCount, plural, one {# ਸਵਾਲ} other {# ਸਵਾਲ}}", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# ਆਗਾਮੀ ਸਮਾਗਮ} other {# ਆਉਣ ਵਾਲੇ ਸਮਾਗਮ}}", "app.containers.Projects.yourBudget": "ਕੁੱਲ ਬਜਟ", "app.containers.ProjectsIndexPage.metaDescription": "ਇਹ ਸਮਝਣ ਲਈ {orgName} ਦੇ ਸਾਰੇ ਚੱਲ ਰਹੇ ਪ੍ਰੋਜੈਕਟਾਂ ਦੀ ਪੜਚੋਲ ਕਰੋ ਕਿ ਤੁਸੀਂ ਕਿਵੇਂ ਭਾਗ ਲੈ ਸਕਦੇ ਹੋ।\n ਆਉ ਉਹਨਾਂ ਸਥਾਨਕ ਪ੍ਰੋਜੈਕਟਾਂ 'ਤੇ ਚਰਚਾ ਕਰੋ ਜੋ ਤੁਹਾਡੇ ਲਈ ਸਭ ਤੋਂ ਮਹੱਤਵਪੂਰਨ ਹਨ।", "app.containers.ProjectsIndexPage.metaTitle1": "ਪ੍ਰੋਜੈਕਟ | {orgName}", diff --git a/front/app/translations/pl-PL.json b/front/app/translations/pl-PL.json index d5889b9fab58..db4f57104d26 100644 --- a/front/app/translations/pl-PL.json +++ b/front/app/translations/pl-PL.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Nadchodzące i trwające wydarzenia", "app.containers.Projects.upcomingEvents": "Nadchodzące wydarzenia", "app.containers.Projects.whatsAppMessage": "{projectName} | z platformy partycypacyjnej {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {#wkłaady} one {# wkład} few {# wkłady} many {# wkładów} other {# wkłady}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# wkładu} one {# wkład} few {# wkłady} many {# wkładów} other {# wkłady}} na obecnym etapie", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# wkładu} one {# wkład} few {# wkłady} many {# wkładów} other {# wkłady}} na ostatnim etapie", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# wydarzenie} few {# wydarzenia} many {# wydarzeń} other {# wydarzenia}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# pomysł} few {# pomysły} many {# pomysłów} other {# pomysły}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# pomysł} few {# pomysły} many {# pomysłów} other {# pomysły}} na obecnym etapie", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# pomysł} few {# pomysły} many {# pomysłów} other {# pomysły}} w końcowej fazie", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# inicjatywy} one {# inicjatywy} other {# inicjatywy}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# inicjatywy} one {# inicjatywy} other {# inicjatywy}} w bieżącej fazie", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# inicjatywy} one {# inicjatywy} other {# inicjatywy}} w fazie końcowej", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {# spraw} one {# sprawa} few {# sprawy} many {# spraw} other {# sprawy}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# spraw} one {# sprawa} few {# spraw} many {# spraw} other {# sprawy}} na obecnym etapie", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# spraw} one {# sprawa} few {# spraw} many {# spraw} other {# sprawy}} na ostatnim etapie", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# opcji} one {# opcja} few {# opcje} many {# opcji} other {# opcje}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# opcja} few {# opcje} many {# opcji} other {# opcje}} w bieżącej fazie", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# opcja} few {# opcje} many {# opcji} other {# opcje}} w fazie końcowej", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# uczestnik} few {# uczestników} many {# uczestników} other {# uczestnicy}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petycje} one {# petycje} other {# petycje}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petycje} one {# petycje} other {# petycje}} w bieżącej fazie", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petycje} one {# petycje} other {# petycje}} w fazie końcowej", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# etap} few {# etapy} many {# etapów} other {# etapy}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projekt} few {# projekty} many {# projektów} other {# projekty}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, no {# projektów} one {# projekt} few {# projekty} many {# projektów} other {# projekty}} na obecnym etapie", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# projekt} few {# projekty} many {# projektów} other {# projekty}} na ostatnim etapie", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# propozycje} one {# propozycje} other {# propozycje}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# propozycje} one {# propozycje} other {# propozycje}} w bieżącej fazie", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# propozycje} one {# propozycje} other {# propozycje}} w fazie końcowej", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# pytanie} few {# pytania} many {# pytań} other {# pytania}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# pytanie} few {# pytania} many {# pytań} other {# pytania}} w bieżącej fazie", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# pytanie} few {# pytania} many {# pytań} other {# pytania}} w fazie końcowej", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# nadchodzące wydarzenia} few {# nadchodzące wydarzenia} many {# nadchodzących wydarzeń} other {# nadchodzących wydarzeń}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Poznaj wszystkie trwające projekty {orgName}, aby zrozumieć, jak możesz w nich uczestniczyć.\n Przyjdź i omów lokalne projekty, które są dla Ciebie najważniejsze.", "app.containers.ProjectsIndexPage.metaTitle1": "Projekty | {orgName}", diff --git a/front/app/translations/pt-BR.json b/front/app/translations/pt-BR.json index b59092bc8197..a3c57605b95b 100644 --- a/front/app/translations/pt-BR.json +++ b/front/app/translations/pt-BR.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Eventos próximos e em curso", "app.containers.Projects.upcomingEvents": "Próximos eventos", "app.containers.Projects.whatsAppMessage": "{projectName} | a partir da plataforma de participação de {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}} na fase atual", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, no {# contributions} one {# contribution} other {# contributions}} na fase final", - "app.containers.Projects.xEvents": "{eventsCount, plural, no {# evento} other {# eventos}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideia} other {# ideias}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, nenhuma {# ideas} uma {# ideia} other {# ideias}} na fase atual", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ideia} other {# ideias}} na fase final", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# iniciativas} one {# iniciativa} other {# iniciativas}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# iniciativas} one {# iniciativa} other {# iniciativas}} na fase atual", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# iniciativas} one {# iniciativa} other {# iniciativas}} na fase final", - "app.containers.Projects.xIssues": "{ideasCount, plural, no {#problemas} one {# problema} other {# problemas}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, no {# problemas} one {# problema} other {# problemas}} na fase atual", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, no {# problemas} one {# problema} other {# problemas}} na fase final", - "app.containers.Projects.xOptions": "{ideasCount, plural, no {# opções} one {# opção} other {# opções}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, no {# opções} one {# opção} other {# opções}} na fase atual", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, no {# opções} one {# opção} other {# opções}} na fase final", - "app.containers.Projects.xParticipants": "{participantsCount, plural, um {# participante} other {# participantes}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petições} one {# petição} other {# petições}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petições} one {# petição} other {# petições}} na fase atual", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petições} one {# petição} other {# petições}} na fase final", - "app.containers.Projects.xPhases": "{phasesCount, plural, não {# fases} um {# fase} other {# fases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, não {# projetos} um {# projeto} other {# projetos}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, não {# projetos} um {# projeto} other {# projetos}} na fase atual", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, não {# projetos} um {# projeto} other {# projetos}} na fase final", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# propostas} one {# proposta} other {# propostas}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# propostas} one {# proposta} other {# propostas}} na fase atual", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# propostas} one {# proposta} other {# propostas}} na fase final", - "app.containers.Projects.xQuestions": "{ideasCount, plural, no {# perguntas} one {# pergunta} other {# perguntas}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, no {# perguntas} one {# pergunta} other {# perguntas}} na fase atual", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, no {# perguntas} one {# pergunta} other {# perguntas}} na fase final", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, não {# próximos eventos} um {# próximo evento} other {# próximos eventos}}", "app.containers.Projects.yourBudget": "Orçamento total", "app.containers.ProjectsIndexPage.metaDescription": "Explore todos os projetos em andamento de {orgName} para entender como você pode participar.\nVenha discutir os projetos locais mais importantes para você.", "app.containers.ProjectsIndexPage.metaTitle1": "Projetos | {orgName}", diff --git a/front/app/translations/sr-Latn.json b/front/app/translations/sr-Latn.json index e4301e316bdc..5a6ea13c67d9 100644 --- a/front/app/translations/sr-Latn.json +++ b/front/app/translations/sr-Latn.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Predstojeći i tekući događaji", "app.containers.Projects.upcomingEvents": "Predstojeći događaji", "app.containers.Projects.whatsAppMessage": "{projectName} | sa participativne platforme od {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# doprinos} other {# doprinosa}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# doprinos} other {# doprinosa}} u trenutnoj fazi", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# doprinos} other {# doprinosa}} u finalnoj fazi", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# događaj} other {# događaja}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# ideja} other {# ideja}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# ideja} other {# ideja}}", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# ideja} other {# ideja}} u finalnoj fazi", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the current phase", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# problem} other {# problema}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# komentar} other {# komentara}}", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# problem} other {# problema}} u finalnoj fazi", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# solucija} other {# solucije}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# solucija} other {# solucije}}", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# solucija} other {# solucije}} u finalnoj fazi", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# učesnik} other {# učesnika}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the current phase", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the final phase", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# faza} other {# faza}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projekat} other {# projekata}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# projekat} other {# projekata}}", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# projekat} other {# projekata}} u finalnoj fazi", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the current phase", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# pitanje} other {# pitanja}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# pitanje} other {# pitanja}}", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# pitanje} other {# pitanja}} u finalnoj fazi", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# predstojeći događaj} other {# predstojećih događaja}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Istražite sve trenutne projekte od {orgName} i saznajte kako možete učestvovati. Pridružite nam se u diskusiji o lokalnim projektima do kojih vam je stalo.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/sr-SP.json b/front/app/translations/sr-SP.json index cb5c2861682b..1503166620e6 100644 --- a/front/app/translations/sr-SP.json +++ b/front/app/translations/sr-SP.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Предстојећи и текући догађаји", "app.containers.Projects.upcomingEvents": "Предстојећи догађаји", "app.containers.Projects.whatsAppMessage": "{projectName} | са платформе за учешће од {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# допринос} other {# доприноса}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# допринос} other {# доприноса}}", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# допринос} other {# доприноса}} у завршној фази", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# догађај} other {# догађаја}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# идеја} other {# идеје}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# идеја} other {# идејa}}", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# идеја} other {# идеје}} у завршној фази", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the current phase", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiatives} one {# initiative} other {# initiatives}} in the final phase", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# цоммент} other {# цомментс}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# коментар} other {# коментара}}", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# цоммент} other {# цомментс}} у завршној фази", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# опција} other {# Опције}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# солуција} other {# солуција}}", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# опција} other {# Опције}} у завршној фази", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# учесник} other {# учесника}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the current phase", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} in the final phase", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {#фаза} other {# фазе}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# пројекат} other {# пројекта}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# пројекат} other {# пројеката}}", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# пројекат} other {# пројекта}} у завршној фази", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the current phase", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}} in the final phase", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {#питања} other {#питања}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {#питање} other {#питања}}", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {#питање} other {#питања}} у завршној фази", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# предстојећи догађај} other {# Предстојећи догађаји}}", "app.containers.Projects.yourBudget": "Укупан буџет", "app.containers.ProjectsIndexPage.metaDescription": "Истражите све текуће пројекте {orgName} да бисте разумели како можете да учествујете.\n Дођите да разговарате о локалним пројектима који су вам најважнији.", "app.containers.ProjectsIndexPage.metaTitle1": "Projects | {orgName}", diff --git a/front/app/translations/sv-SE.json b/front/app/translations/sv-SE.json index f1ba5e90cd90..e75e4d34d21d 100644 --- a/front/app/translations/sv-SE.json +++ b/front/app/translations/sv-SE.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Kommande och pågående evenemang", "app.containers.Projects.upcomingEvents": "Kommande evenemang", "app.containers.Projects.whatsAppMessage": "{projectName} | från plattformen för deltagande för {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# bidrag} other {# bidrag}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# bidrag} other {# bidrag}} i den aktuella fasen", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# bidrag} other {# bidrag}} i slutfasen", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# evenemang} other {# evenemang}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idé} other {# idéer}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {# idé} other {# idéer}} i den aktuella fasen", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idé} other {# idéer}} i slutfasen", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# initiativ} one {# initiativ} other {# initiativ}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# initiativ} one {# initiativ} other {# initiativ}} i den aktuella fasen", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# initiativ} one {# initiativ} other {# initiativ}} i slutfasen", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# kommentar} other {# kommentarer}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# kommentar} other {# kommentarer}} i den aktuella fasen", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# kommentar} other {# kommentarer}} i slutfasen", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# alternativ} other {# alternativ}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# alternativ} other {# alternativ}} i den aktuella fasen", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# alternativ} other {# alternativ}} i slutfasen", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# deltagare} other {# deltagare}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# petitioner} one {# petition} other {# petitioner}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# framställningar} one {# framställning} other {# framställningar}} i den aktuella fasen", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# framställningar} one {# framställning} other {# framställningar}} i slutfasen", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# fas} other {# faser}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# projekt} other {# projekt}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# projekt} other {# projekt}} i den aktuella fasen", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# projekt} other {# projekt}} i slutfasen", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# proposals} one {# proposal} other {# proposals}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# förslag} one {# förslag} other {# förslag}} i den aktuella fasen", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# förslag} one {# förslag} other {# förslag}} i slutfasen", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# fråga} other {# frågor}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# fråga} other {# frågor}} i den aktuella fasen", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# fråga} other {# frågor}} i slutfasen", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# kommande evenemang} other {# kommande evenemang}}", "app.containers.Projects.yourBudget": "Total budget", "app.containers.ProjectsIndexPage.metaDescription": "Upptäck alla pågående projekt för {orgName} för att förstå hur du kan delta.\nKom och diskutera lokala projekt som är viktigast för dig.", "app.containers.ProjectsIndexPage.metaTitle1": "Projekt | {orgName}", diff --git a/front/app/translations/tr-TR.json b/front/app/translations/tr-TR.json index d1a09bcb687b..028b66db15e8 100644 --- a/front/app/translations/tr-TR.json +++ b/front/app/translations/tr-TR.json @@ -1600,37 +1600,6 @@ "app.containers.Projects.upcomingAndOngoingEvents": "Yaklaşan ve devam eden etkinlikler", "app.containers.Projects.upcomingEvents": "Yaklaşan etkinlikler", "app.containers.Projects.whatsAppMessage": "{projectName} | {orgName} katılım platformundan", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# katkı} other {# katkı}}", - "app.containers.Projects.xContributionsInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# katkı} other {# katkı}}", - "app.containers.Projects.xContributionsInFinalPhase": "Son aşamada {ideasCount, plural, one {# katkı} other {# katkı}}", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# etkinlik} other {# etkinlik}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# fikir} other {# fikir}}", - "app.containers.Projects.xIdeasInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# fikir} other {# fikir}}", - "app.containers.Projects.xIdeasInFinalPhase": "Son aşamada {ideasCount, plural, one {# fikir} other {# fikir}}", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# inisiyatifler} one {# inisiyatif} other {# inisiyatifler}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# girişimler} one {# girişim} other {# girişimler}} mevcut aşamada", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# girişimler} one {# girişim} other {# girişimler}} son aşamada", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# yorum} other {# yorum}}", - "app.containers.Projects.xIssuesInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# yorum} other {# yorum}}", - "app.containers.Projects.xIssuesInFinalPhase": "Son aşamada {ideasCount, plural, one {# yorum} other {# yorum}}", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# seçenek} other {# seçenek}}", - "app.containers.Projects.xOptionsInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# seçenek} other {# seçenek}}", - "app.containers.Projects.xOptionsInFinalPhase": "Son aşamada {ideasCount, plural, one {# seçenek} other {# seçenek}}", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# katılımcı} other {# katılımcı}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# dilekçeler} one {# dilekçe} other {# dilekçeler}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# dilekçeler} one {# dilekçe} other {# dilekçeler}} mevcut aşamada", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# dilekçeler} one {# dilekçe} other {# dilekçeler}} son aşamada", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# aşama} other {# aşama}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# proje} other {# proje}}", - "app.containers.Projects.xProjectsInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# proje} other {# proje}}", - "app.containers.Projects.xProjectsInFinalPhase": "Son aşamada {ideasCount, plural, one {# proje} other {# proje}}", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# teklifler} one {# teklif} other {# teklifler}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# teklifler} one {# teklif} other {# teklifler}} mevcut aşamada", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# teklifler} one {# teklif} other {# teklifler}} son aşamada", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# soru} other {# soru}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "Şu andaki aşamada {ideasCount, plural, one {# soru} other {# soru}}", - "app.containers.Projects.xQuestionsInFinalPhase": "Son aşamada {ideasCount, plural, one {# soru} other {# soru}}", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# yaklaşan etkinlik} other {# yaklaşan etkinlik}}", "app.containers.Projects.yourBudget": "Toplam bütçe", "app.containers.ProjectsIndexPage.metaDescription": "Nasıl katılabileceğinizi anlamak için devam eden tüm {orgName} projelerini keşfedin.\n Gelin, sizin için en önemli olan yerel projeleri tartışın.", "app.containers.ProjectsIndexPage.metaTitle1": "Projeler | {orgName}", diff --git a/front/app/translations/ur-PK.json b/front/app/translations/ur-PK.json index 82d098a2a5f4..c5949275c4f6 100644 --- a/front/app/translations/ur-PK.json +++ b/front/app/translations/ur-PK.json @@ -1524,13 +1524,11 @@ "app.containers.Projects.a11y_phasesOverview": "مراحل کا جائزہ", "app.containers.Projects.a11y_titleInputs": "تمام ان پٹ اس پروجیکٹ میں جمع کرائے گئے ہیں۔", "app.containers.Projects.a11y_titleInputsPhase": "تمام ان پٹ اس مرحلے میں جمع کرائے گئے ہیں۔", - "app.containers.Projects.about": "کے بارے میں", "app.containers.Projects.accessRights": "رسائی کے حقوق", "app.containers.Projects.addedToBasket": "ٹوکری میں شامل کیا گیا۔", "app.containers.Projects.allocateBudget": "اپنا بجٹ مختص کریں۔", "app.containers.Projects.archived": "محفوظ شدہ", "app.containers.Projects.basketSubmitted": "ٹوکری جمع کر دی گئی ہے!", - "app.containers.Projects.budget": "{amount} بجٹ", "app.containers.Projects.contributions": "شراکتیں", "app.containers.Projects.createANewPhase": "ایک نیا مرحلہ بنائیں", "app.containers.Projects.currentPhase": "موجودہ مرحلہ", @@ -1549,7 +1547,6 @@ "app.containers.Projects.invisibleTitlePoll": "رائے شماری کریں۔", "app.containers.Projects.invisibleTitleSurvey": "سروے میں حصہ لیں۔", "app.containers.Projects.issues": "تبصرے", - "app.containers.Projects.liveDataMessage": "آپ ریئل ٹائم ڈیٹا دیکھ رہے ہیں۔ منتظمین کے لیے شرکاء کی تعداد کو مسلسل اپ ڈیٹ کیا جاتا ہے۔ براہ کرم نوٹ کریں کہ عام صارفین کو کیش شدہ ڈیٹا نظر آتا ہے، جس کے نتیجے میں تعداد میں معمولی فرق ہو سکتا ہے۔", "app.containers.Projects.location": "مقام:", "app.containers.Projects.manageBasket": "ٹوکری کا انتظام کریں۔", "app.containers.Projects.meetMinBudgetRequirement": "ٹوکری جمع کرانے کے لیے کم از کم بجٹ کو پورا کریں۔", @@ -1566,19 +1563,12 @@ "app.containers.Projects.noPastEvents": "ظاہر کرنے کے لیے کوئی ماضی کے واقعات نہیں ہیں۔", "app.containers.Projects.noPhaseSelected": "کوئی مرحلہ منتخب نہیں کیا گیا۔", "app.containers.Projects.noUpcomingOrOngoingEvents": "کوئی آنے والا یا جاری ایونٹ فی الحال شیڈول نہیں ہے۔", - "app.containers.Projects.nothingPosted": "ابھی تک کچھ بھی پوسٹ نہیں ہوا۔", - "app.containers.Projects.oneDocToReview": "جائزہ لینے کے لیے 1 دستاویز", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "موجودہ مرحلے میں جائزہ لینے کے لیے 1 دستاویز", - "app.containers.Projects.oneSurvey": "1 سروے", - "app.containers.Projects.oneSurveyInCurrentPhase": "موجودہ مرحلے میں 1 سروے", "app.containers.Projects.options": "اختیارات", "app.containers.Projects.participants": "شرکاء", "app.containers.Projects.participantsTooltip4": "یہ نمبر گمنام سروے کی گذارشات کی بھی عکاسی کرتا ہے۔ اگر سروے ہر کسی کے لیے کھلے ہیں تو گمنام سروے کی گذارشات ممکن ہیں (اس پروجیکٹ کے لیے {accessRightsLink} ٹیب دیکھیں)۔", "app.containers.Projects.pastEvents": "ماضی کے واقعات", "app.containers.Projects.petitions": "پٹیشنز", "app.containers.Projects.phases": "مراحل", - "app.containers.Projects.poll": "1 پول", - "app.containers.Projects.pollInCurrentPhase": "موجودہ مرحلے میں 1 پول", "app.containers.Projects.previousPhase": "پچھلا مرحلہ", "app.containers.Projects.project": "پروجیکٹ", "app.containers.Projects.projectTwitterMessage": "اپنی آواز سنو! {projectName} | میں شرکت کریں۔ {orgName}", @@ -1589,7 +1579,6 @@ "app.containers.Projects.readMore": "مزید پڑھیں", "app.containers.Projects.removeItem": "آئٹم کو ہٹا دیں۔", "app.containers.Projects.requiredSelection": "مطلوبہ انتخاب", - "app.containers.Projects.requiredSelectionExceeded": "آپ نے مطلوبہ انتخاب سے تجاوز کر لیا ہے۔", "app.containers.Projects.reviewDocument": "دستاویز کا جائزہ لیں۔", "app.containers.Projects.seeTheContributions": "شراکتیں دیکھیں", "app.containers.Projects.seeTheIdeas": "آئیڈیاز دیکھیں", @@ -1601,50 +1590,16 @@ "app.containers.Projects.seeTheProposals": "تجاویز دیکھیں", "app.containers.Projects.seeTheQuestions": "سوالات دیکھیں", "app.containers.Projects.seeUpcomingEvents": "آنے والے واقعات دیکھیں", - "app.containers.Projects.selectionExceedsBudget": "آپ کا انتخاب آپ کے بجٹ سے زیادہ ہے۔", "app.containers.Projects.share": "شیئر کریں۔", "app.containers.Projects.shareThisProject": "اس پروجیکٹ کو شیئر کریں۔", "app.containers.Projects.submitMyBasket": "ٹوکری جمع کروائیں۔", "app.containers.Projects.survey": "سروے", - "app.containers.Projects.surveySubmissions": "سروے گذارشات", - "app.containers.Projects.surveySubmissionsTooltip3": "بیرونی سروے کی گذارشات کو شمار نہیں کیا جاتا ہے۔", "app.containers.Projects.takeThePoll": "رائے شماری کریں۔", "app.containers.Projects.takeTheSurvey": "سروے میں حصہ لیں۔", "app.containers.Projects.timeline": "ٹائم لائن", "app.containers.Projects.upcomingAndOngoingEvents": "آنے والے اور جاری واقعات", "app.containers.Projects.upcomingEvents": "آنے والے واقعات", "app.containers.Projects.whatsAppMessage": "{projectName} | {orgName}کے شرکت کے پلیٹ فارم سے", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {# شراکت} other {# شراکتیں}}", - "app.containers.Projects.xContributionsInCurrentPhase": "موجودہ مرحلے میں {ideasCount, plural, one {# شراکت} other {# شراکتیں}}", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# شراکت} other {# شراکتیں}} آخری مرحلے میں", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {# واقعہ} other {# واقعات}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {# idea} other {# ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "موجودہ مرحلے میں {ideasCount, plural, one {# آئیڈیا} other {# آئیڈیاز}}", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {# idea} other {# ideas}} آخری مرحلے میں", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {# پہل} one {# پہل} other {# پہل}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {# اقدامات} one {# پہل} other {# اقدامات}} موجودہ مرحلے میں", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {# پہل} one {# پہل} other {# پہل}} آخری مرحلے میں", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# تبصرہ} other {# تبصرے}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# تبصرہ} other {# تبصرے}} موجودہ مرحلے میں", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# تبصرہ} other {# تبصرے}} آخری مرحلے میں", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# آپشن} other {# اختیارات}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# آپشن} other {# اختیارات}} موجودہ مرحلے میں", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# آپشن} other {# اختیارات}} آخری مرحلے میں", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {# شریک} other {# شرکاء}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {# درخواستیں} one {# پٹیشن} other {# درخواستیں}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# عرضیاں} one {# پٹیشن} other {# عرضیاں}} موجودہ مرحلے میں", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# درخواستیں} one {# پٹیشن} other {# درخواستیں}} آخری مرحلے میں", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# مرحلہ} other {# مراحل}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {# پروجیکٹ} other {# پروجیکٹ}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# پروجیکٹ} other {# پروجیکٹس}} موجودہ مرحلے میں", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {# پروجیکٹ} other {# پروجیکٹ}} آخری مرحلے میں", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {# تجاویز} one {# تجویز} other {# تجاویز}}", - "app.containers.Projects.xProposalsInCurrentPhase": "موجودہ مرحلے میں {ideasCount, plural, no {# تجاویز} one {# تجویز} other {# تجاویز}}", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# تجاویز} one {# تجویز} other {# تجاویز}} آخری مرحلے میں", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {# سوالات} other {# سوالات}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "موجودہ مرحلے میں {ideasCount, plural, one {# سوال} other {# سوالات}}", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# سوال} other {# سوالات}} آخری مرحلے میں", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {# آنے والا ایونٹ} other {# آنے والے ایونٹس}}", "app.containers.Projects.yourBudget": "کل بجٹ", "app.containers.ProjectsIndexPage.metaDescription": "یہ سمجھنے کے لیے کہ آپ کس طرح حصہ لے سکتے ہیں {orgName} کے تمام جاری پروجیکٹس کو دریافت کریں۔\n آؤ ان مقامی منصوبوں پر بات کریں جو آپ کے لیے سب سے اہم ہیں۔", "app.containers.ProjectsIndexPage.metaTitle1": "پروجیکٹس | {orgName}", From b41e169f97b8eebc0a232156a10e6aa64406d808 Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Mon, 21 Oct 2024 09:30:25 +0300 Subject: [PATCH 16/47] Use better variables --- .../admin/ContentBuilder/Widgets/AboutBox/index.tsx | 9 ++++----- .../shared/header/ProjectInfoSideBar/index.tsx | 6 +++--- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx b/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx index 667bc6859e50..8faf129601f7 100644 --- a/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx +++ b/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx @@ -15,10 +15,10 @@ import useCraftComponentDefaultPadding from '../../useCraftComponentDefaultPaddi import messages from './messages'; type AboutBoxProps = { - hideParticipationAvatarsText?: boolean; + hideParticipationAvatars?: boolean; }; -const AboutBox = ({ hideParticipationAvatarsText }: AboutBoxProps) => { +const AboutBox = ({ hideParticipationAvatars }: AboutBoxProps) => { const { projectId, slug } = useParams() as { projectId: string; slug: string; @@ -36,7 +36,7 @@ const AboutBox = ({ hideParticipationAvatarsText }: AboutBoxProps) => { {projectID && ( )} @@ -60,8 +60,7 @@ const AboutBoxSettings = () => { onChange={() => { setProp( (props: AboutBoxProps) => - (props.hideParticipationAvatarsText = - !hideParticipationAvatarsText) + (props.hideParticipationAvatars = !hideParticipationAvatarsText) ); }} label={formatMessage(messages.hideParticipationAvatarsText)} diff --git a/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx b/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx index 44de17fd4ab0..9acd8754a212 100644 --- a/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx +++ b/front/app/containers/ProjectsShowPage/shared/header/ProjectInfoSideBar/index.tsx @@ -22,12 +22,12 @@ const StyledProjectActionButtons = styled(ProjectActionButtons)` interface Props { projectId: string; - hideParticipationAvatarsText?: boolean; + hideParticipationAvatars?: boolean; className?: string; } const ProjectInfoSideBar = memo( - ({ projectId, className, hideParticipationAvatarsText = false }) => { + ({ projectId, className, hideParticipationAvatars = false }) => { const { data: authUser } = useAuthUser(); const { data: project } = useProjectById(projectId, !isAdmin(authUser)); const theme = useTheme(); @@ -42,7 +42,7 @@ const ProjectInfoSideBar = memo( return ( - {!hideParticipationAvatarsText && avatarIds.length > 0 && ( + {!hideParticipationAvatars && avatarIds.length > 0 && ( Date: Mon, 21 Oct 2024 12:47:30 +0100 Subject: [PATCH 17/47] [TAN-2851] Fixed master template generation --- .../app/services/multi_tenancy/templates/tenant_serializer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/engines/commercial/multi_tenancy/app/services/multi_tenancy/templates/tenant_serializer.rb b/back/engines/commercial/multi_tenancy/app/services/multi_tenancy/templates/tenant_serializer.rb index 59e6dfe8ad65..a9128e01a9b3 100644 --- a/back/engines/commercial/multi_tenancy/app/services/multi_tenancy/templates/tenant_serializer.rb +++ b/back/engines/commercial/multi_tenancy/app/services/multi_tenancy/templates/tenant_serializer.rb @@ -31,7 +31,7 @@ def self.format_for_deserializer!(template) def serialize_models email_campaigns = EmailCampaigns::Campaign.manual groups = Group.where(membership_type: 'manual') - ideas = Idea.published + ideas = Idea.submitted_or_published initiatives = Initiative.published users = User.where('invite_status IS NULL OR invite_status != ?', 'pending') From 9efb8799ab1424622cc59d01a4b4f43d8fb3bbdb Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Mon, 21 Oct 2024 16:49:19 +0300 Subject: [PATCH 18/47] Switch CTAs such that primary is alwasy on top --- .../shared/header/ProjectActionButtons.tsx | 90 +++++++++---------- 1 file changed, 44 insertions(+), 46 deletions(-) diff --git a/front/app/containers/ProjectsShowPage/shared/header/ProjectActionButtons.tsx b/front/app/containers/ProjectsShowPage/shared/header/ProjectActionButtons.tsx index 149cd0cdebff..35dbb6293bad 100644 --- a/front/app/containers/ProjectsShowPage/shared/header/ProjectActionButtons.tsx +++ b/front/app/containers/ProjectsShowPage/shared/header/ProjectActionButtons.tsx @@ -1,9 +1,8 @@ import React, { memo, useEffect, useState } from 'react'; -import { useBreakpoint } from '@citizenlab/cl2-component-library'; +import { useBreakpoint, Box } from '@citizenlab/cl2-component-library'; import { isNumber } from 'lodash-es'; import { useLocation } from 'react-router-dom'; -import styled from 'styled-components'; import useEvents from 'api/events/useEvents'; import { IPhaseData } from 'api/phases/types'; @@ -26,12 +25,6 @@ import { isNilOrError } from 'utils/helperUtils'; import { getInputTermMessage } from 'utils/i18n'; import { scrollToElement } from 'utils/scroll'; -const Container = styled.div``; - -const SeeIdeasButton = styled(Button)` - margin-bottom: 10px; -`; - interface Props { projectId: string; className?: string; @@ -185,43 +178,12 @@ const ProjectActionButtons = memo(({ projectId, className }) => { const showEventsCTAButton = !!events?.data?.length; return ( - - {showSeeIdeasButton ? ( - { - scrollToElementWithId('project-ideas'); - }} - fontWeight="500" - > - - - ) : showEventsCTAButton ? ( - - ) : null} + {showPostIdeaButton && !hasCurrentPhaseEnded && ( (({ projectId, className }) => { )} - + {showSeeIdeasButton ? ( + + ) : showEventsCTAButton ? ( + + ) : null} + ); }); From c7a85b24f66812137a95e3edf5630ee638119160 Mon Sep 17 00:00:00 2001 From: CircleCI Date: Mon, 21 Oct 2024 13:53:01 +0000 Subject: [PATCH 19/47] Translations updated by CI (extract-intl) --- front/app/translations/admin/nb-NO.json | 1 - front/app/translations/nb-NO.json | 45 ------------------------- 2 files changed, 46 deletions(-) diff --git a/front/app/translations/admin/nb-NO.json b/front/app/translations/admin/nb-NO.json index aa62b1dcc7fc..b5ff3fc29c35 100644 --- a/front/app/translations/admin/nb-NO.json +++ b/front/app/translations/admin/nb-NO.json @@ -2509,7 +2509,6 @@ "app.containers.admin.ContentBuilder.delete": "Slett", "app.containers.admin.ContentBuilder.error": "feil", "app.containers.admin.ContentBuilder.errorMessage": "Det har oppstått en feil på {locale} content, vennligst fiks problemet for å kunne lagre endringene dine", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "Skjul deltakertall", "app.containers.admin.ContentBuilder.homepage.default": "standard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Hendelser", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Hendelser", diff --git a/front/app/translations/nb-NO.json b/front/app/translations/nb-NO.json index 57035480f650..21174edd0d0b 100644 --- a/front/app/translations/nb-NO.json +++ b/front/app/translations/nb-NO.json @@ -1527,13 +1527,11 @@ "app.containers.Projects.a11y_phasesOverview": "Oversikt over fasene", "app.containers.Projects.a11y_titleInputs": "Alle innspill som er sendt inn til dette prosjektet", "app.containers.Projects.a11y_titleInputsPhase": "Alle innspill som sendes inn i denne fasen", - "app.containers.Projects.about": "Om", "app.containers.Projects.accessRights": "Tilgangsrettigheter", "app.containers.Projects.addedToBasket": "Lagt til i handlekurven", "app.containers.Projects.allocateBudget": "Fordel budsjettet ditt", "app.containers.Projects.archived": "Arkivert", "app.containers.Projects.basketSubmitted": "Kurven er sendt inn!", - "app.containers.Projects.budget": "{amount} budsjett", "app.containers.Projects.contributions": "Bidrag", "app.containers.Projects.createANewPhase": "Opprett en ny fase", "app.containers.Projects.currentPhase": "Nåværende fase", @@ -1552,7 +1550,6 @@ "app.containers.Projects.invisibleTitlePoll": "Ta avstemningen", "app.containers.Projects.invisibleTitleSurvey": "Ta del i undersøkelsen", "app.containers.Projects.issues": "Kommentarer", - "app.containers.Projects.liveDataMessage": "Du ser på data i sanntid. Deltakerantallet oppdateres kontinuerlig for administratorer. Vær oppmerksom på at vanlige brukere ser mellomlagrede data, noe som kan føre til små forskjeller i tallene.", "app.containers.Projects.location": "Beliggenhet:", "app.containers.Projects.manageBasket": "Administrer kurv", "app.containers.Projects.meetMinBudgetRequirement": "Oppnå minimumsbudsjettet for å sende inn kurven.", @@ -1569,19 +1566,12 @@ "app.containers.Projects.noPastEvents": "Ingen tidligere hendelser å vise", "app.containers.Projects.noPhaseSelected": "Ingen fase valgt", "app.containers.Projects.noUpcomingOrOngoingEvents": "Ingen kommende eller pågående arrangementer er for øyeblikket planlagt.", - "app.containers.Projects.nothingPosted": "Ingenting lagt ut ennå", - "app.containers.Projects.oneDocToReview": "1 dokument til gjennomgang", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "1 dokument som skal gjennomgås i den nåværende fasen", - "app.containers.Projects.oneSurvey": "1 undersøkelse", - "app.containers.Projects.oneSurveyInCurrentPhase": "1 undersøkelse i den nåværende fasen", "app.containers.Projects.options": "Alternativer", "app.containers.Projects.participants": "Deltakere", "app.containers.Projects.participantsTooltip4": "Dette tallet gjenspeiler også anonyme besvarelser. Anonyme besvarelser er mulig hvis undersøkelsene er åpne for alle (se {accessRightsLink} under fanen for dette prosjektet).", "app.containers.Projects.pastEvents": "Tidligere arrangementer", "app.containers.Projects.petitions": "Begjæringer", "app.containers.Projects.phases": "Faser", - "app.containers.Projects.poll": "1 meningsmåling", - "app.containers.Projects.pollInCurrentPhase": "1 avstemning i inneværende fase", "app.containers.Projects.previousPhase": "Forrige fase", "app.containers.Projects.project": "Prosjekt", "app.containers.Projects.projectTwitterMessage": "Gjør din stemme hørt! Delta på {projectName} | {orgName}", @@ -1592,7 +1582,6 @@ "app.containers.Projects.readMore": "Les mer om dette", "app.containers.Projects.removeItem": "Fjern elementet", "app.containers.Projects.requiredSelection": "Nødvendig utvalg", - "app.containers.Projects.requiredSelectionExceeded": "Du har overskredet det nødvendige utvalget.", "app.containers.Projects.reviewDocument": "Gå gjennom dokumentet", "app.containers.Projects.seeTheContributions": "Se bidragene", "app.containers.Projects.seeTheIdeas": "Se ideene", @@ -1604,50 +1593,16 @@ "app.containers.Projects.seeTheProposals": "Se forslagene", "app.containers.Projects.seeTheQuestions": "Se spørsmålene", "app.containers.Projects.seeUpcomingEvents": "Se kommende arrangementer", - "app.containers.Projects.selectionExceedsBudget": "Utvalget ditt overskrider budsjettet ditt.", "app.containers.Projects.share": "Del", "app.containers.Projects.shareThisProject": "Del dette prosjektet", "app.containers.Projects.submitMyBasket": "Send inn kurv", "app.containers.Projects.survey": "Spørreundersøkelse", - "app.containers.Projects.surveySubmissions": "innleveringer av undersøkelser", - "app.containers.Projects.surveySubmissionsTooltip3": "Eksterne spørreundersøkelser telles ikke med.", "app.containers.Projects.takeThePoll": "Ta avstemningen", "app.containers.Projects.takeTheSurvey": "Ta del i undersøkelsen", "app.containers.Projects.timeline": "Tidslinje", "app.containers.Projects.upcomingAndOngoingEvents": "Kommende og pågående arrangementer", "app.containers.Projects.upcomingEvents": "Kommende arrangementer", "app.containers.Projects.whatsAppMessage": "{projectName} | fra plattformen for deltakelse på {orgName}", - "app.containers.Projects.xContributions": "{ideasCount, plural, one {~ # contribution} other {# contributions}}", - "app.containers.Projects.xContributionsInCurrentPhase": "{ideasCount, plural, one {# bidrag} other {# bidrag}} i den nåværende fasen", - "app.containers.Projects.xContributionsInFinalPhase": "{ideasCount, plural, one {# bidrag} other {# bidrag}} i sluttfasen", - "app.containers.Projects.xEvents": "{eventsCount, plural, one {~ # event} other {~ # events}}", - "app.containers.Projects.xIdeas": "{ideasCount, plural, one {~ ~ idea} other {~ ~ ideas}}", - "app.containers.Projects.xIdeasInCurrentPhase": "{ideasCount, plural, one {~ # idé} other {# ideer}} i den nåværende fasen", - "app.containers.Projects.xIdeasInFinalPhase": "{ideasCount, plural, one {~ # idé} other {# ideer}} i sluttfasen", - "app.containers.Projects.xInitiatives": "{ideasCount, plural, no {~ # initiativer} one {# initiativ} other {# initiativer}}", - "app.containers.Projects.xInitiativesInCurrentPhase": "{ideasCount, plural, no {~ # initiativer} one {# initiativ} other {# initiativer}} i den nåværende fasen", - "app.containers.Projects.xInitiativesInFinalPhase": "{ideasCount, plural, no {~ # initiativer} one {# initiativ} other {# initiativer}} i sluttfasen", - "app.containers.Projects.xIssues": "{ideasCount, plural, one {# comment} other {# comments}}", - "app.containers.Projects.xIssuesInCurrentPhase": "{ideasCount, plural, one {# comment} other {# comments}} i den nåværende fasen", - "app.containers.Projects.xIssuesInFinalPhase": "{ideasCount, plural, one {# kommentar} other {# kommentarer}} i sluttfasen", - "app.containers.Projects.xOptions": "{ideasCount, plural, one {# option} other {# options}}", - "app.containers.Projects.xOptionsInCurrentPhase": "{ideasCount, plural, one {# option} other {# options}} i den nåværende fasen", - "app.containers.Projects.xOptionsInFinalPhase": "{ideasCount, plural, one {# option} other {# options}} i sluttfasen", - "app.containers.Projects.xParticipants": "{participantsCount, plural, one {~ # deltaker} other {# deltakere}}", - "app.containers.Projects.xPetitions": "{ideasCount, plural, no {~ # petitions} one {# petition} other {# petitions}}", - "app.containers.Projects.xPetitionsInCurrentPhase": "{ideasCount, plural, no {# petitions} one {# petition} other {# petitions}} i den nåværende fasen", - "app.containers.Projects.xPetitionsInFinalPhase": "{ideasCount, plural, no {# begjæringer} one {# begjæring} other {# begjæringer}} i sluttfasen", - "app.containers.Projects.xPhases": "{phasesCount, plural, one {# phase} other {# phases}}", - "app.containers.Projects.xProjects": "{ideasCount, plural, one {~ # prosjekt} other {~ # prosjekter}}", - "app.containers.Projects.xProjectsInCurrentPhase": "{ideasCount, plural, one {# prosjekt} other {# prosjekter}} i den nåværende fasen", - "app.containers.Projects.xProjectsInFinalPhase": "{ideasCount, plural, one {~ # prosjekt} other {# prosjekter}} i sluttfasen", - "app.containers.Projects.xProposals": "{ideasCount, plural, no {~ # forslag} one {# forslag} other {# forslag}}", - "app.containers.Projects.xProposalsInCurrentPhase": "{ideasCount, plural, no {# forslag} one {# forslag} other {# forslag}} i den nåværende fasen", - "app.containers.Projects.xProposalsInFinalPhase": "{ideasCount, plural, no {# forslag} one {# forslag} other {# forslag}} i sluttfasen", - "app.containers.Projects.xQuestions": "{ideasCount, plural, one {~ # spørsmål} other {# spørsmål}}", - "app.containers.Projects.xQuestionsInCurrentPhase": "{ideasCount, plural, one {# spørsmål} other {# spørsmål}} i den nåværende fasen", - "app.containers.Projects.xQuestionsInFinalPhase": "{ideasCount, plural, one {# spørsmål} other {# spørsmål}} i sluttfasen", - "app.containers.Projects.xUpcomingEvents": "{upcomingEventsCount, plural, one {~ # kommende arrangement} other {~ # kommende arrangementer}}", "app.containers.Projects.yourBudget": "Totalt budsjett", "app.containers.ProjectsIndexPage.metaDescription": "Utforsk alle pågående prosjekter på {orgName} for å forstå hvordan du kan delta.\n Kom og diskuter lokale prosjekter som betyr mest for deg.", "app.containers.ProjectsIndexPage.metaTitle1": "Prosjekter | {orgName}", From 5ba5032546b46117992c55335dd56cfc5f550da8 Mon Sep 17 00:00:00 2001 From: EdwinKato Date: Mon, 21 Oct 2024 16:54:46 +0300 Subject: [PATCH 20/47] Fix hiding particpation avatars --- .../admin/ContentBuilder/Widgets/AboutBox/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx b/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx index 8faf129601f7..cdf20330f4a4 100644 --- a/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx +++ b/front/app/components/admin/ContentBuilder/Widgets/AboutBox/index.tsx @@ -47,20 +47,20 @@ const AboutBoxSettings = () => { const { formatMessage } = useIntl(); const { actions: { setProp }, - hideParticipationAvatarsText, + hideParticipationAvatars, } = useNode((node) => ({ - hideParticipationAvatarsText: node.data.props.hideParticipationAvatarsText, + hideParticipationAvatars: node.data.props.hideParticipationAvatars, id: node.id, })); return ( { setProp( (props: AboutBoxProps) => - (props.hideParticipationAvatars = !hideParticipationAvatarsText) + (props.hideParticipationAvatars = !hideParticipationAvatars) ); }} label={formatMessage(messages.hideParticipationAvatarsText)} From e78d70344fbb9f509cac268ba46c4b4c4cfc379f Mon Sep 17 00:00:00 2001 From: jamesspeake Date: Mon, 21 Oct 2024 14:59:56 +0100 Subject: [PATCH 21/47] [TAN-2853] Added additional English profanity terms --- back/config/blocked_words/en.txt | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/back/config/blocked_words/en.txt b/back/config/blocked_words/en.txt index 845e177eaa76..ceeac605ad03 100644 --- a/back/config/blocked_words/en.txt +++ b/back/config/blocked_words/en.txt @@ -48,6 +48,8 @@ cyberfucked cyberfucker cyberfuckers cyberfucking +darkie +darky d1ck dick dickhead @@ -154,6 +156,8 @@ muther mutherfucker n1gga n1gger +n1ggers +n1gger5 nigg3r nigg4h nigga @@ -162,8 +166,16 @@ niggas niggaz nigger niggers +nigger5 numbnuts nutsack +paki +pak1 +pakis +paki5 +pak15 +pakki +pakkis p0rn penisfucker phonesex @@ -239,4 +251,6 @@ w00se wank wanker wanky -whore \ No newline at end of file +whore +yid +yids \ No newline at end of file From 60f07f116a4fa581b3eef372822a8c6d2ae8b99a Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:15:21 +0200 Subject: [PATCH 22/47] New translations en.json (French) --- front/app/translations/admin/fr-FR.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/fr-FR.json b/front/app/translations/admin/fr-FR.json index 0b0723c2a015..a0b709f36622 100644 --- a/front/app/translations/admin/fr-FR.json +++ b/front/app/translations/admin/fr-FR.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Supprimer", "app.containers.admin.ContentBuilder.error": "erreur", "app.containers.admin.ContentBuilder.errorMessage": "Il y a une erreur sur le contenu {locale}, veuillez corriger le problème pour pouvoir sauvegarder vos modifications", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Masquer les avatars des participants", "app.containers.admin.ContentBuilder.homepage.default": "par défaut", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Événements", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Événements", From 8d16e6e25f174f72f364601d472c850132c20619 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:15:26 +0200 Subject: [PATCH 23/47] New translations en.json (Spanish) --- front/app/translations/admin/es-ES.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/es-ES.json b/front/app/translations/admin/es-ES.json index dd6009f70fb0..011c63b94a22 100644 --- a/front/app/translations/admin/es-ES.json +++ b/front/app/translations/admin/es-ES.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Eliminar", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "Hay un error en el contenido de {locale}, arregle el problema para poder guardar sus cambios", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Ocultar avatares de participación", "app.containers.admin.ContentBuilder.homepage.default": "por defecto", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Eventos", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Eventos", From 5efbc891f8909d43a626f906eb2ba6a2f8e5e32a Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:15:31 +0200 Subject: [PATCH 24/47] New translations en.json (Arabic) --- front/app/translations/admin/ar-SA.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/ar-SA.json b/front/app/translations/admin/ar-SA.json index bac44f845142..74ae62738136 100644 --- a/front/app/translations/admin/ar-SA.json +++ b/front/app/translations/admin/ar-SA.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "حذف", "app.containers.admin.ContentBuilder.error": "خطأ", "app.containers.admin.ContentBuilder.errorMessage": "يوجد خطأ في محتوى {locale}، يرجى حل المشكلة لتتمكن من حفظ التغييرات التي أجريتها", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "إخفاء صور المشاركة", "app.containers.admin.ContentBuilder.homepage.default": "تقصير", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "الأحداث", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "الأحداث", From a489695ca69283a61327bdb31bf544d80e0bf1e0 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:15:40 +0200 Subject: [PATCH 25/47] New translations en.json (Danish) --- front/app/translations/admin/da-DK.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/da-DK.json b/front/app/translations/admin/da-DK.json index 25d0c7a5eb56..973dba45077f 100644 --- a/front/app/translations/admin/da-DK.json +++ b/front/app/translations/admin/da-DK.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Slet", "app.containers.admin.ContentBuilder.error": "fejl", "app.containers.admin.ContentBuilder.errorMessage": "Der er en fejl i {locale}-indholdet, ret venligst problemet for at kunne gemme dine ændringer", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Skjul deltagelseravatarer", "app.containers.admin.ContentBuilder.homepage.default": "standard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Begivenheder", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Begivenheder", From def2e2f679f97f36afa59eafbe83b212cf730efd Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:15:45 +0200 Subject: [PATCH 26/47] New translations en.json (German) --- front/app/translations/admin/de-DE.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/de-DE.json b/front/app/translations/admin/de-DE.json index edc6bada9602..a72ea3396759 100644 --- a/front/app/translations/admin/de-DE.json +++ b/front/app/translations/admin/de-DE.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Löschen", "app.containers.admin.ContentBuilder.error": "Fehler", "app.containers.admin.ContentBuilder.errorMessage": "Es liegt ein Fehler im Inhalt von {locale} vor. Bitte beheben Sie das Problem, um Ihre Änderungen speichern zu können.", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Avatare der Teilnehmenden ausblenden", "app.containers.admin.ContentBuilder.homepage.default": "Standard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Veranstaltungen", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Veranstaltungen", From 509fa38c6026217f33787c0ddec6597abe0e9056 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:15:56 +0200 Subject: [PATCH 27/47] New translations en.yml (Dutch) --- back/engines/free/email_campaigns/config/locales/nl-NL.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/engines/free/email_campaigns/config/locales/nl-NL.yml b/back/engines/free/email_campaigns/config/locales/nl-NL.yml index cba728107acb..aba12fe87954 100644 --- a/back/engines/free/email_campaigns/config/locales/nl-NL.yml +++ b/back/engines/free/email_campaigns/config/locales/nl-NL.yml @@ -272,7 +272,7 @@ nl: main_header: '%{firstName} noemde je in een interne reactie.' preheader: '%{authorNameFull} noemde je in een interne reactie.' moderator_digest: - subject: 'Je weekoverzicht als projectbeheerder van %{time}' + subject: 'Je weekoverzicht als projectbeheerder van "%{project_title}"' preheader: 'Het weekoverzicht voor projectbeheerders van %{organizationName}' title_your_weekly_report: '%{firstName}, je wekelijks overzicht' text_introduction: 'Ontdek rond welke bijdrages er het meest werd gediscussieerd de afgelopen week. Hieronder kom je te weten wat er leeft in je project!' From 14aab8d844cdd03696e6b30e3d7963975ebb9b19 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:15:57 +0200 Subject: [PATCH 28/47] New translations en.json (Dutch) --- front/app/translations/admin/nl-NL.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/nl-NL.json b/front/app/translations/admin/nl-NL.json index 100fddfc5f72..eec9e99f4d0b 100644 --- a/front/app/translations/admin/nl-NL.json +++ b/front/app/translations/admin/nl-NL.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Verwijder", "app.containers.admin.ContentBuilder.error": "fout", "app.containers.admin.ContentBuilder.errorMessage": "Er is een fout opgetreden in de {locale} inhoud, los het probleem op om je wijzigingen op te kunnen slaan", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Verberg avatars deelnemers", "app.containers.admin.ContentBuilder.homepage.default": "standaard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Activiteiten", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Activiteiten", From 57035cbe5f130fb22453831b7456c4c8b27476db Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:16:04 +0200 Subject: [PATCH 29/47] New translations en.json (Punjabi) --- front/app/translations/admin/pa-IN.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/pa-IN.json b/front/app/translations/admin/pa-IN.json index 07378a88f4b8..300106ddf2d5 100644 --- a/front/app/translations/admin/pa-IN.json +++ b/front/app/translations/admin/pa-IN.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "ਮਿਟਾਓ", "app.containers.admin.ContentBuilder.error": "ਗਲਤੀ", "app.containers.admin.ContentBuilder.errorMessage": "{locale} ਸਮੱਗਰੀ 'ਤੇ ਇੱਕ ਤਰੁੱਟੀ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੀਆਂ ਤਬਦੀਲੀਆਂ ਨੂੰ ਸੁਰੱਖਿਅਤ ਕਰਨ ਦੇ ਯੋਗ ਹੋਣ ਲਈ ਸਮੱਸਿਆ ਨੂੰ ਠੀਕ ਕਰੋ", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "ਭਾਗੀਦਾਰੀ ਅਵਤਾਰਾਂ ਨੂੰ ਲੁਕਾਓ", "app.containers.admin.ContentBuilder.homepage.default": "ਡਿਫਾਲਟ", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "ਸਮਾਗਮ", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "ਸਮਾਗਮ", From 4eb6eaa2ce486f2dd400fab3bfdc958386da34bf Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:16:10 +0200 Subject: [PATCH 30/47] New translations en.json (Polish) --- front/app/translations/admin/pl-PL.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/pl-PL.json b/front/app/translations/admin/pl-PL.json index f5fa8baa3ba5..bfd55a20cb71 100644 --- a/front/app/translations/admin/pl-PL.json +++ b/front/app/translations/admin/pl-PL.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Usuń", "app.containers.admin.ContentBuilder.error": "błąd", "app.containers.admin.ContentBuilder.errorMessage": "Wystąpił błąd w treści {locale}, proszę naprawić ten błąd, aby móc zapisać zmiany", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Ukryj awatary uczestnictwa", "app.containers.admin.ContentBuilder.homepage.default": "domyślny", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Wydarzenia", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Wydarzenia", From 4775ee833a9f5c7721c069625d6988aad5d1c586 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:16:15 +0200 Subject: [PATCH 31/47] New translations en.json (Serbian (Cyrillic)) --- front/app/translations/admin/sr-SP.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/sr-SP.json b/front/app/translations/admin/sr-SP.json index f5cb8625e47f..616e020fe1c1 100644 --- a/front/app/translations/admin/sr-SP.json +++ b/front/app/translations/admin/sr-SP.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Избриши", "app.containers.admin.ContentBuilder.error": "грешка", "app.containers.admin.ContentBuilder.errorMessage": "Постоји грешка на {locale} садржају, решите проблем да бисте могли да сачувате промене", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Hide participation avatars", "app.containers.admin.ContentBuilder.homepage.default": "Уобичајено", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Догађаји", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Догађаји", From 52a246d0555bb232557992dbe9632240a7dcb7d8 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:16:20 +0200 Subject: [PATCH 32/47] New translations en.json (Swedish) --- front/app/translations/admin/sv-SE.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/sv-SE.json b/front/app/translations/admin/sv-SE.json index d12359a3bcf1..20bff5cc3db8 100644 --- a/front/app/translations/admin/sv-SE.json +++ b/front/app/translations/admin/sv-SE.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Radera", "app.containers.admin.ContentBuilder.error": "fel", "app.containers.admin.ContentBuilder.errorMessage": "Det finns ett fel i innehållet på {locale} – åtgärda problemet för att kunna spara dina ändringar", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Dölj deltagaravatarer", "app.containers.admin.ContentBuilder.homepage.default": "standard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Händelser", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Händelser", From 009b0f25cd9a32a4d2095342045748f703c9bd30 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:16:26 +0200 Subject: [PATCH 33/47] New translations en.json (Turkish) --- front/app/translations/admin/tr-TR.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/tr-TR.json b/front/app/translations/admin/tr-TR.json index d81387e17869..0d982d76e733 100644 --- a/front/app/translations/admin/tr-TR.json +++ b/front/app/translations/admin/tr-TR.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Sil", "app.containers.admin.ContentBuilder.error": "hata", "app.containers.admin.ContentBuilder.errorMessage": "{locale} içeriğinde bir hata var, değişikliklerinizi kaydedebilmek için lütfen sorunu düzeltin", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Katılım avatarlarını gizle", "app.containers.admin.ContentBuilder.homepage.default": "varsayılan", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Etkinlikler", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Etkinlikler", From 53bbb5e8a40eb7a596f517558420360aecdf63e6 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:16:31 +0200 Subject: [PATCH 34/47] New translations en.json (Urdu (Pakistan)) --- front/app/translations/admin/ur-PK.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/ur-PK.json b/front/app/translations/admin/ur-PK.json index ad11a612b43a..0d2261f66efe 100644 --- a/front/app/translations/admin/ur-PK.json +++ b/front/app/translations/admin/ur-PK.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "حذف کریں۔", "app.containers.admin.ContentBuilder.error": "غلطی", "app.containers.admin.ContentBuilder.errorMessage": "{locale} مواد میں ایک خرابی ہے، براہ کرم اپنی تبدیلیوں کو محفوظ کرنے کے لیے مسئلہ کو ٹھیک کریں۔", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "شرکت کے اوتار چھپائیں۔", "app.containers.admin.ContentBuilder.homepage.default": "پہلے سے طے شدہ", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "واقعات", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "واقعات", From 3345396a4ce91c5362c5e166cf9dd84336554e93 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:16:37 +0200 Subject: [PATCH 35/47] New translations en.json (Portuguese, Brazilian) --- front/app/translations/admin/pt-BR.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/pt-BR.json b/front/app/translations/admin/pt-BR.json index eb60d588071c..1c722db31c9a 100644 --- a/front/app/translations/admin/pt-BR.json +++ b/front/app/translations/admin/pt-BR.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Deletar", "app.containers.admin.ContentBuilder.error": "erro", "app.containers.admin.ContentBuilder.errorMessage": "Há um erro no conteúdo {locale}, por favor corrija o problema para poder guardar as suas alterações", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Ocultar avatares de participação", "app.containers.admin.ContentBuilder.homepage.default": "padrão", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Eventos", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Eventos", From 1502550ffc63e534f189148fa784e724b157af17 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:16:43 +0200 Subject: [PATCH 36/47] New translations en.json (Spanish, Chile) --- front/app/translations/admin/es-CL.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/es-CL.json b/front/app/translations/admin/es-CL.json index 319f4e152c6c..5a457f121391 100644 --- a/front/app/translations/admin/es-CL.json +++ b/front/app/translations/admin/es-CL.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Eliminar", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "Hay un error en el contenido de {locale}, arregle el problema para poder guardar sus cambios", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Ocultar avatares de participación", "app.containers.admin.ContentBuilder.homepage.default": "por defecto", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Eventos", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Eventos", From f2128fe25b08eba2e8513cca0bb8233ef7605ecc Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:16:49 +0200 Subject: [PATCH 37/47] New translations en.json (Latvian) --- front/app/translations/admin/lv-LV.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/lv-LV.json b/front/app/translations/admin/lv-LV.json index 3beb85ad002a..8d2190ce070b 100644 --- a/front/app/translations/admin/lv-LV.json +++ b/front/app/translations/admin/lv-LV.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Dzēst", "app.containers.admin.ContentBuilder.error": "kļūda", "app.containers.admin.ContentBuilder.errorMessage": "{locale} saturā ir kļūda. Lūdzu, novērsiet šo kļūdu, lai varētu saglabāt izmaiņas.", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Paslēpt dalības avatārus", "app.containers.admin.ContentBuilder.homepage.default": "noklusējuma", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Notikumi", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Notikumi", From 6c67c5ea8db8971f933dd23eee1d3484bf4165da Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:16:55 +0200 Subject: [PATCH 38/47] New translations en.json (English, Canada) --- front/app/translations/admin/en-CA.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/en-CA.json b/front/app/translations/admin/en-CA.json index c05bf1aa726b..11b9775a3a03 100644 --- a/front/app/translations/admin/en-CA.json +++ b/front/app/translations/admin/en-CA.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Delete", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "There is an error on {locale} content, please fix the issue to be able to save your changes", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Hide participation avatars", "app.containers.admin.ContentBuilder.homepage.default": "default", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Events", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Events", From e58ca102af733a4825ab99fba2aff91e1cd7c13a Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:17:01 +0200 Subject: [PATCH 39/47] New translations en.json (English, United Kingdom) --- front/app/translations/admin/en-GB.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/en-GB.json b/front/app/translations/admin/en-GB.json index 1a98de499c50..8c7e30652c82 100644 --- a/front/app/translations/admin/en-GB.json +++ b/front/app/translations/admin/en-GB.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Delete", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "There is an error on {locale} content, please fix the issue to be able to save your changes", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Hide participation avatars", "app.containers.admin.ContentBuilder.homepage.default": "default", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Events", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Events", From d1bb1e3ce15b310c724640589b91d05d02af00e2 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:17:06 +0200 Subject: [PATCH 40/47] New translations en.json (Serbian (Latin)) --- front/app/translations/admin/sr-Latn.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/sr-Latn.json b/front/app/translations/admin/sr-Latn.json index 6954425e661a..e478fe5b1c5c 100644 --- a/front/app/translations/admin/sr-Latn.json +++ b/front/app/translations/admin/sr-Latn.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Izbriši", "app.containers.admin.ContentBuilder.error": "greška", "app.containers.admin.ContentBuilder.errorMessage": "Došlo je do greške u sadržaju {locale}, rešite problem kako bi vaše promene bile sačuvane", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Hide participation avatars", "app.containers.admin.ContentBuilder.homepage.default": "default", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Events", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Events", From 4bc097e4f3fdd8d533f72d69bbe6434442cbca8d Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:17:11 +0200 Subject: [PATCH 41/47] New translations en.yml (Dutch, Belgium) --- back/engines/free/email_campaigns/config/locales/nl-BE.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/engines/free/email_campaigns/config/locales/nl-BE.yml b/back/engines/free/email_campaigns/config/locales/nl-BE.yml index 3ec91d004be4..f527294f9fc6 100644 --- a/back/engines/free/email_campaigns/config/locales/nl-BE.yml +++ b/back/engines/free/email_campaigns/config/locales/nl-BE.yml @@ -272,7 +272,7 @@ nl-BE: main_header: '%{firstName} noemde je in een interne reactie.' preheader: '%{authorNameFull} noemde je in een interne reactie.' moderator_digest: - subject: 'Je weekoverzicht als projectbeheerder van %{time}' + subject: 'Je weekoverzicht als projectbeheerder van "%{project_title}"' preheader: 'Het weekoverzicht voor projectbeheerders van %{organizationName}' title_your_weekly_report: '%{firstName}, je wekelijkse overzicht' text_introduction: 'Ontdek rond welke ideeën er het meest werd gediscussieerd de afgelopen week. Hieronder kom je te weten wat er gebeurt met je project!' From 06a06406fd75acd9f1c8cf28324362ac13744523 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:17:13 +0200 Subject: [PATCH 42/47] New translations en.json (Dutch, Belgium) --- front/app/translations/admin/nl-BE.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/nl-BE.json b/front/app/translations/admin/nl-BE.json index 34435a4e209d..dc206006bf1d 100644 --- a/front/app/translations/admin/nl-BE.json +++ b/front/app/translations/admin/nl-BE.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Verwijder", "app.containers.admin.ContentBuilder.error": "fout", "app.containers.admin.ContentBuilder.errorMessage": "Er is een fout opgetreden in de {locale} inhoud, los het probleem op om je wijzigingen op te kunnen slaan", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Verberg avatars deelnemers", "app.containers.admin.ContentBuilder.homepage.default": "standaard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Activiteiten", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Activiteiten", From 467c8641346c75169c3b541401435e14d785f17e Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:17:19 +0200 Subject: [PATCH 43/47] New translations en.json (English, Ireland) --- front/app/translations/admin/en-IE.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/en-IE.json b/front/app/translations/admin/en-IE.json index c05bf1aa726b..11b9775a3a03 100644 --- a/front/app/translations/admin/en-IE.json +++ b/front/app/translations/admin/en-IE.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Delete", "app.containers.admin.ContentBuilder.error": "error", "app.containers.admin.ContentBuilder.errorMessage": "There is an error on {locale} content, please fix the issue to be able to save your changes", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Hide participation avatars", "app.containers.admin.ContentBuilder.homepage.default": "default", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Events", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Events", From c55862ea874f9971af1406482ffdfba5b2d4679e Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:17:25 +0200 Subject: [PATCH 44/47] New translations en.json (French, Belgium) --- front/app/translations/admin/fr-BE.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/fr-BE.json b/front/app/translations/admin/fr-BE.json index 295687760955..78addf5fe436 100644 --- a/front/app/translations/admin/fr-BE.json +++ b/front/app/translations/admin/fr-BE.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Supprimer", "app.containers.admin.ContentBuilder.error": "erreur", "app.containers.admin.ContentBuilder.errorMessage": "Il y a une erreur sur le contenu {locale}, veuillez corriger le problème pour pouvoir sauvegarder vos modifications", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Masquer les avatars des participants", "app.containers.admin.ContentBuilder.homepage.default": "par défaut", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Événements", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Événements", From 72de5e745b7482ee035c8c98819464348ed2d30a Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:17:36 +0200 Subject: [PATCH 45/47] New translations en.json (Acholi) --- front/app/translations/admin/ach-UG.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/app/translations/admin/ach-UG.json b/front/app/translations/admin/ach-UG.json index 9bb1d16e6f30..7b65d6bde650 100644 --- a/front/app/translations/admin/ach-UG.json +++ b/front/app/translations/admin/ach-UG.json @@ -2509,7 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "crwdns212344:0crwdne212344:0", "app.containers.admin.ContentBuilder.error": "crwdns212358:0crwdne212358:0", "app.containers.admin.ContentBuilder.errorMessage": "crwdns212360:0{locale}crwdne212360:0", - "app.containers.admin.ContentBuilder.hideParticipationNumbersText": "crwdns3263245:0crwdne3263245:0", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "crwdns3338661:0crwdne3338661:0", "app.containers.admin.ContentBuilder.homepage.default": "crwdns1252866:0crwdne1252866:0", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "crwdns1347292:0crwdne1347292:0", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "crwdns1252868:0crwdne1252868:0", From 3518f6ba4323ee95ece1fb4029699103465e74e1 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:17:38 +0200 Subject: [PATCH 46/47] New translations en.json (Acholi) --- front/app/translations/ach-UG.json | 45 ------------------------------ 1 file changed, 45 deletions(-) diff --git a/front/app/translations/ach-UG.json b/front/app/translations/ach-UG.json index 916421de57ce..4ee2399ae5fe 100644 --- a/front/app/translations/ach-UG.json +++ b/front/app/translations/ach-UG.json @@ -1527,13 +1527,11 @@ "app.containers.Projects.a11y_phasesOverview": "crwdns215132:0crwdne215132:0", "app.containers.Projects.a11y_titleInputs": "crwdns215134:0crwdne215134:0", "app.containers.Projects.a11y_titleInputsPhase": "crwdns215136:0crwdne215136:0", - "app.containers.Projects.about": "crwdns215138:0crwdne215138:0", "app.containers.Projects.accessRights": "crwdns1294758:0crwdne1294758:0", "app.containers.Projects.addedToBasket": "crwdns215140:0crwdne215140:0", "app.containers.Projects.allocateBudget": "crwdns215142:0crwdne215142:0", "app.containers.Projects.archived": "crwdns215144:0crwdne215144:0", "app.containers.Projects.basketSubmitted": "crwdns215146:0crwdne215146:0", - "app.containers.Projects.budget": "crwdns215148:0{amount}crwdne215148:0", "app.containers.Projects.contributions": "crwdns215150:0crwdne215150:0", "app.containers.Projects.createANewPhase": "crwdns1442892:0crwdne1442892:0", "app.containers.Projects.currentPhase": "crwdns215152:0crwdne215152:0", @@ -1552,7 +1550,6 @@ "app.containers.Projects.invisibleTitlePoll": "crwdns215174:0crwdne215174:0", "app.containers.Projects.invisibleTitleSurvey": "crwdns215176:0crwdne215176:0", "app.containers.Projects.issues": "crwdns215178:0crwdne215178:0", - "app.containers.Projects.liveDataMessage": "crwdns3166359:0crwdne3166359:0", "app.containers.Projects.location": "crwdns215180:0crwdne215180:0", "app.containers.Projects.manageBasket": "crwdns215182:0crwdne215182:0", "app.containers.Projects.meetMinBudgetRequirement": "crwdns215184:0crwdne215184:0", @@ -1569,19 +1566,12 @@ "app.containers.Projects.noPastEvents": "crwdns215202:0crwdne215202:0", "app.containers.Projects.noPhaseSelected": "crwdns215204:0crwdne215204:0", "app.containers.Projects.noUpcomingOrOngoingEvents": "crwdns215206:0crwdne215206:0", - "app.containers.Projects.nothingPosted": "crwdns215208:0crwdne215208:0", - "app.containers.Projects.oneDocToReview": "crwdns649397:0crwdne649397:0", - "app.containers.Projects.oneDocToReviewInCurrentPhase": "crwdns649399:0crwdne649399:0", - "app.containers.Projects.oneSurvey": "crwdns649401:0crwdne649401:0", - "app.containers.Projects.oneSurveyInCurrentPhase": "crwdns649403:0crwdne649403:0", "app.containers.Projects.options": "crwdns215210:0crwdne215210:0", "app.containers.Projects.participants": "crwdns3166357:0crwdne3166357:0", "app.containers.Projects.participantsTooltip4": "crwdns1294760:0{accessRightsLink}crwdne1294760:0", "app.containers.Projects.pastEvents": "crwdns215212:0crwdne215212:0", "app.containers.Projects.petitions": "crwdns3335221:0crwdne3335221:0", "app.containers.Projects.phases": "crwdns215214:0crwdne215214:0", - "app.containers.Projects.poll": "crwdns215216:0crwdne215216:0", - "app.containers.Projects.pollInCurrentPhase": "crwdns215218:0crwdne215218:0", "app.containers.Projects.previousPhase": "crwdns215220:0crwdne215220:0", "app.containers.Projects.project": "crwdns215222:0crwdne215222:0", "app.containers.Projects.projectTwitterMessage": "crwdns215224:0{projectName}crwdnd215224:0{orgName}crwdne215224:0", @@ -1592,7 +1582,6 @@ "app.containers.Projects.readMore": "crwdns215232:0crwdne215232:0", "app.containers.Projects.removeItem": "crwdns215234:0crwdne215234:0", "app.containers.Projects.requiredSelection": "crwdns215236:0crwdne215236:0", - "app.containers.Projects.requiredSelectionExceeded": "crwdns215238:0crwdne215238:0", "app.containers.Projects.reviewDocument": "crwdns649405:0crwdne649405:0", "app.containers.Projects.seeTheContributions": "crwdns215240:0crwdne215240:0", "app.containers.Projects.seeTheIdeas": "crwdns215242:0crwdne215242:0", @@ -1604,50 +1593,16 @@ "app.containers.Projects.seeTheProposals": "crwdns3335229:0crwdne3335229:0", "app.containers.Projects.seeTheQuestions": "crwdns215250:0crwdne215250:0", "app.containers.Projects.seeUpcomingEvents": "crwdns953649:0crwdne953649:0", - "app.containers.Projects.selectionExceedsBudget": "crwdns215252:0crwdne215252:0", "app.containers.Projects.share": "crwdns215254:0crwdne215254:0", "app.containers.Projects.shareThisProject": "crwdns215256:0crwdne215256:0", "app.containers.Projects.submitMyBasket": "crwdns215258:0crwdne215258:0", "app.containers.Projects.survey": "crwdns215260:0crwdne215260:0", - "app.containers.Projects.surveySubmissions": "crwdns604477:0crwdne604477:0", - "app.containers.Projects.surveySubmissionsTooltip3": "crwdns604479:0crwdne604479:0", "app.containers.Projects.takeThePoll": "crwdns215262:0crwdne215262:0", "app.containers.Projects.takeTheSurvey": "crwdns215264:0crwdne215264:0", "app.containers.Projects.timeline": "crwdns215266:0crwdne215266:0", "app.containers.Projects.upcomingAndOngoingEvents": "crwdns215268:0crwdne215268:0", "app.containers.Projects.upcomingEvents": "crwdns215270:0crwdne215270:0", "app.containers.Projects.whatsAppMessage": "crwdns215272:0{projectName}crwdnd215272:0{orgName}crwdne215272:0", - "app.containers.Projects.xContributions": "crwdns215274:0ideasCount={ideasCount}crwdne215274:0", - "app.containers.Projects.xContributionsInCurrentPhase": "crwdns215276:0ideasCount={ideasCount}crwdne215276:0", - "app.containers.Projects.xContributionsInFinalPhase": "crwdns215278:0ideasCount={ideasCount}crwdne215278:0", - "app.containers.Projects.xEvents": "crwdns215280:0eventsCount={eventsCount}crwdne215280:0", - "app.containers.Projects.xIdeas": "crwdns215282:0ideasCount={ideasCount}crwdne215282:0", - "app.containers.Projects.xIdeasInCurrentPhase": "crwdns215284:0ideasCount={ideasCount}crwdne215284:0", - "app.containers.Projects.xIdeasInFinalPhase": "crwdns215286:0ideasCount={ideasCount}crwdne215286:0", - "app.containers.Projects.xInitiatives": "crwdns3335231:0{# initiatives}crwdnd3335231:0{# initiative}crwdnd3335231:0{# initiatives}crwdne3335231:0", - "app.containers.Projects.xInitiativesInCurrentPhase": "crwdns3335233:0{# initiatives}crwdnd3335233:0{# initiative}crwdnd3335233:0{# initiatives}crwdne3335233:0", - "app.containers.Projects.xInitiativesInFinalPhase": "crwdns3335235:0{# initiatives}crwdnd3335235:0{# initiative}crwdnd3335235:0{# initiatives}crwdne3335235:0", - "app.containers.Projects.xIssues": "crwdns215288:0ideasCount={ideasCount}crwdne215288:0", - "app.containers.Projects.xIssuesInCurrentPhase": "crwdns215290:0ideasCount={ideasCount}crwdne215290:0", - "app.containers.Projects.xIssuesInFinalPhase": "crwdns215292:0ideasCount={ideasCount}crwdne215292:0", - "app.containers.Projects.xOptions": "crwdns215294:0ideasCount={ideasCount}crwdne215294:0", - "app.containers.Projects.xOptionsInCurrentPhase": "crwdns215296:0ideasCount={ideasCount}crwdne215296:0", - "app.containers.Projects.xOptionsInFinalPhase": "crwdns215298:0ideasCount={ideasCount}crwdne215298:0", - "app.containers.Projects.xParticipants": "crwdns215300:0participantsCount={participantsCount}crwdne215300:0", - "app.containers.Projects.xPetitions": "crwdns3335237:0{# petitions}crwdnd3335237:0{# petition}crwdnd3335237:0{# petitions}crwdne3335237:0", - "app.containers.Projects.xPetitionsInCurrentPhase": "crwdns3335239:0{# petitions}crwdnd3335239:0{# petition}crwdnd3335239:0{# petitions}crwdne3335239:0", - "app.containers.Projects.xPetitionsInFinalPhase": "crwdns3335241:0{# petitions}crwdnd3335241:0{# petition}crwdnd3335241:0{# petitions}crwdne3335241:0", - "app.containers.Projects.xPhases": "crwdns215302:0phasesCount={phasesCount}crwdne215302:0", - "app.containers.Projects.xProjects": "crwdns215304:0ideasCount={ideasCount}crwdne215304:0", - "app.containers.Projects.xProjectsInCurrentPhase": "crwdns215306:0ideasCount={ideasCount}crwdne215306:0", - "app.containers.Projects.xProjectsInFinalPhase": "crwdns215308:0ideasCount={ideasCount}crwdne215308:0", - "app.containers.Projects.xProposals": "crwdns3335243:0{# proposals}crwdnd3335243:0{# proposal}crwdnd3335243:0{# proposals}crwdne3335243:0", - "app.containers.Projects.xProposalsInCurrentPhase": "crwdns3335245:0{# proposals}crwdnd3335245:0{# proposal}crwdnd3335245:0{# proposals}crwdne3335245:0", - "app.containers.Projects.xProposalsInFinalPhase": "crwdns3335247:0{# proposals}crwdnd3335247:0{# proposal}crwdnd3335247:0{# proposals}crwdne3335247:0", - "app.containers.Projects.xQuestions": "crwdns215310:0ideasCount={ideasCount}crwdne215310:0", - "app.containers.Projects.xQuestionsInCurrentPhase": "crwdns215312:0ideasCount={ideasCount}crwdne215312:0", - "app.containers.Projects.xQuestionsInFinalPhase": "crwdns215314:0ideasCount={ideasCount}crwdne215314:0", - "app.containers.Projects.xUpcomingEvents": "crwdns215320:0upcomingEventsCount={upcomingEventsCount}crwdne215320:0", "app.containers.Projects.yourBudget": "crwdns215322:0crwdne215322:0", "app.containers.ProjectsIndexPage.metaDescription": "crwdns215324:0{orgName}crwdne215324:0", "app.containers.ProjectsIndexPage.metaTitle1": "crwdns2278766:0{orgName}crwdne2278766:0", From 85af90dc2eb6f7530e59b6c6c3f2c4d3b9419828 Mon Sep 17 00:00:00 2001 From: cl-dev-bot <88031410+cl-dev-bot@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:17:42 +0200 Subject: [PATCH 47/47] New translations en.json (Norwegian Bokmal) --- front/app/translations/admin/nb-NO.json | 1 + 1 file changed, 1 insertion(+) diff --git a/front/app/translations/admin/nb-NO.json b/front/app/translations/admin/nb-NO.json index b5ff3fc29c35..d9ad38f8869c 100644 --- a/front/app/translations/admin/nb-NO.json +++ b/front/app/translations/admin/nb-NO.json @@ -2509,6 +2509,7 @@ "app.containers.admin.ContentBuilder.delete": "Slett", "app.containers.admin.ContentBuilder.error": "feil", "app.containers.admin.ContentBuilder.errorMessage": "Det har oppstått en feil på {locale} content, vennligst fiks problemet for å kunne lagre endringene dine", + "app.containers.admin.ContentBuilder.hideParticipationAvatarsText": "Skjul avatarer for deltakelse", "app.containers.admin.ContentBuilder.homepage.default": "standard", "app.containers.admin.ContentBuilder.homepage.events.eventsTitle": "Hendelser", "app.containers.admin.ContentBuilder.homepage.eventsTitle": "Hendelser",