-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9795 from CitizenLabDotCo/master
Release 2024-12-16 (2)
- Loading branch information
Showing
64 changed files
with
504 additions
and
346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
kl: | ||
analysis: | ||
example_tag_n: Example tag %{n} | ||
example_tag_n: Tag'ikkatut assersuutit %{n} |
8 changes: 4 additions & 4 deletions
8
back/engines/commercial/multi_tenancy/config/locales/kl-GL.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#Translations for continuous to timeline migration | ||
kl: | ||
phase_title_default: | ||
ideation: Collect input | ||
ideation: Ilanngussat katersukkit | ||
voting: Taasisitsineq | ||
poll: Taasineq | ||
native_survey: Immersuilluni apersuineq | ||
survey: Immersuilluni apersuineq | ||
document_annotation: Document feedback | ||
volunteering: Find volunteers | ||
information: Information | ||
document_annotation: Utertitsiviginninneq uppernarsaruk | ||
volunteering: Kajumissutsiminnik sulisunik ujarlerit | ||
information: Paasissutissat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { addDays, format } from 'date-fns'; | ||
import { http, HttpResponse } from 'msw'; | ||
|
||
import { PhaseMini } from '../types'; | ||
|
||
export const apiPathPhaseMini = '/web_api/v1/phases/:id/mini'; | ||
|
||
const miniPhaseData: PhaseMini['data'] = { | ||
id: 'MockPhaseInformationId', | ||
type: 'phase_mini', | ||
attributes: { | ||
end_at: format(addDays(new Date(), 21), 'yyyy-MM-dd'), | ||
participation_method: 'ideation', | ||
input_term: 'idea', | ||
}, | ||
relationships: { | ||
project: { | ||
data: { | ||
id: 'projectId', | ||
type: 'project', | ||
}, | ||
}, | ||
}, | ||
}; | ||
|
||
const endpoints = { | ||
'GET phases/:id/mini': http.get(apiPathPhaseMini, () => { | ||
return HttpResponse.json({ data: miniPhaseData }, { status: 200 }); | ||
}), | ||
}; | ||
|
||
export default endpoints; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.