Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: merge to master Dec 20 #3087

Merged
merged 21 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6e8b82b
fix(translations): sync translations from transifex (dev)
dhis2-bot Nov 5, 2023
146cd8d
chore: use reportportal fork
adeldhis2 Nov 6, 2023
4d6cbc0
Merge pull request #3042 from dhis2/use-fork-reportportal
adeldhis2 Nov 6, 2023
9fdbc7b
chore(deps): bump browserify-sign from 4.2.1 to 4.2.2 (#3025)
dependabot[bot] Nov 13, 2023
077c747
chore(deps): bump crypto-js from 4.1.1 to 4.2.0 (#3022)
dependabot[bot] Nov 13, 2023
f1f2111
chore(deps): bump @dhis2/maps-gl from 3.8.5 to 3.8.6 (#3020)
dependabot[bot] Nov 14, 2023
bcf344b
chore: use renamed github shared workflow (#3046)
jenniferarnesen Nov 16, 2023
7d98a8a
fix(translations): sync translations from transifex (dev)
dhis2-bot Nov 19, 2023
dcf7743
fix(translations): sync translations from transifex (dev)
dhis2-bot Nov 26, 2023
a60d773
chore: use more verbose style in LayersLoader to clarify logic (#3075)
jenniferarnesen Dec 8, 2023
ef72d06
chore: [email protected] (#3081)
janhenrikoverland Dec 14, 2023
321089b
test: send jest test results only when env is setup (#3078)
adeldhis2 Dec 19, 2023
8a1ae30
chore(deps-dev): bump @dhis2/cli-app-scripts from 10.3.10 to 10.3.11 …
dependabot[bot] Dec 20, 2023
f7b1e9b
chore(deps): bump @dhis2/ui from 8.13.15 to 8.16.0 (#3074)
dependabot[bot] Dec 20, 2023
edcfe3e
chore(deps): bump @dhis2/d2-i18n from 1.1.1 to 1.1.3 (#3056)
dependabot[bot] Dec 20, 2023
03eed2d
fix: conditionally set PR title in dhis2-verify-app workflow (#3089)
adeldhis2 Dec 20, 2023
e967e66
chore(deps): bump @babel/traverse from 7.21.2 to 7.23.2 (#3013)
dependabot[bot] Dec 20, 2023
0fee930
chore(deps-dev): bump eslint-plugin-cypress from 2.13.3 to 2.15.1 (#2…
dependabot[bot] Dec 20, 2023
008e7fe
fix: report as MAP_VIEW not VISUALIZATION_VIEW (#3086)
jenniferarnesen Dec 20, 2023
b45c23d
chore(deps-dev): bump start-server-and-test from 2.0.1 to 2.0.3 (#3048)
dependabot[bot] Dec 21, 2023
a3c4a09
chore(deps): bump @reportportal/agent-js-jest from 5.0.6 to 5.0.7 (#3…
dependabot[bot] Dec 21, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/dhis2-verify-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,15 @@ jobs:
REPORTPORTAL_API_KEY: ${{ secrets.REPORTPORTAL_API_KEY }}
REPORTPORTAL_ENDPOINT: ${{ vars.REPORTPORTAL_ENDPOINT }}
REPORTPORTAL_PROJECT: ${{ vars.REPORTPORTAL_PROJECT }}
CI_BUILD_ID: ${{ github.sha }}-${{ github.workflow }}-${{ github.event_name }}
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
PR_TITLE: ${{ github.event_name == 'pull_request' && github.event.pull_request.title || format('Direct push to {0}', github.ref_name) }}

call-workflow-e2e-prod:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
needs: [build, lint, test]
uses: dhis2/workflows/.github/workflows/analytics-e2e-tests.yml@master
uses: dhis2/workflows/.github/workflows/analytics-e2e-tests-prod.yml@master
secrets:
baseurl: ${{ secrets.CYPRESS_DHIS2_BASE_URL_DEV }}
username: ${{ secrets.CYPRESS_DHIS2_USERNAME }}
password: ${{ secrets.CYPRESS_DHIS2_PASSWORD }}
recordkey: ${{ secrets.CYPRESS_RECORD_KEY }}
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ defaults:

jobs:
call-workflow-e2e-dev:
if: github.ref == 'refs/heads/dev'
uses: dhis2/data-visualizer-app/.github/workflows/e2e-dev.yml@dev
uses: dhis2/workflows/.github/workflows/analytics-e2e-tests-dev.yml@master
secrets:
baseurl: ${{ secrets.CYPRESS_DHIS2_BASE_URL_DEV }}
username: ${{ secrets.CYPRESS_DHIS2_USERNAME }}
password: ${{ secrets.CYPRESS_DHIS2_PASSWORD }}
recordkey: ${{ secrets.CYPRESS_RECORD_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module.exports = defineConfig({
parallel: true,
debug: false,
restClientConfig: {
timeout: 360000,
timeout: 660000,
},
attributes: [
{
Expand All @@ -43,7 +43,7 @@ module.exports = defineConfig({
},
{
key: 'app_name',
value: 'maps_app',
value: 'maps-app',
},
{
key: 'test_level',
Expand Down
2 changes: 2 additions & 0 deletions cypress/integration/interpretations.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ context('Interpretations', () => {
Layer.openDialog('Thematic')
.selectIndicatorGroup('ANC')
.selectIndicator('ANC 1 Coverage')
.selectTab('Org Units')
.selectOu('Sierra Leone')
.addToMap()

Layer.validateDialogClosed(true)
Expand Down
47 changes: 13 additions & 34 deletions i18n/ar.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: i18next-conv\n"
"POT-Creation-Date: 2023-09-06T13:08:55.205Z\n"
"POT-Creation-Date: 2023-10-23T12:55:26.288Z\n"
"PO-Revision-Date: 2019-06-25 18:35+0000\n"
"Last-Translator: Viktor Varland <[email protected]>, 2023\n"
"Language-Team: Arabic (https://app.transifex.com/hisp-uio/teams/100509/ar/)\n"
Expand All @@ -26,15 +26,6 @@ msgstr ""
msgid "Failed to save map: {{message}}"
msgstr ""

msgid "Calculation"
msgstr ""

msgid "No calculations found"
msgstr ""

msgid "Calculations can be created in the Data Visualizer app."
msgstr ""

msgid "Classification"
msgstr "تصنيف"

Expand Down Expand Up @@ -438,9 +429,6 @@ msgstr "عنصر بيانات الحدث مطلوب"
msgid "Program indicator is required"
msgstr "مؤشر البرنامج مطلوب"

msgid "Calculation is required"
msgstr ""

msgid "Period is required"
msgstr "الفترة مطلوبة"

Expand All @@ -456,9 +444,6 @@ msgstr "عناصر بيانات الحدث"
msgid "Program indicators"
msgstr "مؤشرات البرنامج"

msgid "Calculations"
msgstr ""

msgid "Item type"
msgstr "نوع العنصر"

Expand Down Expand Up @@ -914,12 +899,6 @@ msgstr "OSM Light"
msgid "OSM Detailed"
msgstr "OSM مفصل"

msgid "Google Streets"
msgstr "الشوارع بحسب غوغل"

msgid "Google Hybrid"
msgstr "Google Hybrid"

msgid "Bing Road"
msgstr "Bing طرقات"

Expand Down Expand Up @@ -1327,18 +1306,6 @@ msgstr "لم يتم العثور على الكيانات المتعقبة"
msgid "related"
msgstr "ذات صلة"

msgid "Thematic"
msgstr ""

msgid "Events"
msgstr "الأحداث"

msgid "Tracked entities"
msgstr "الكيانات المتعقبة"

msgid "Org units"
msgstr "الوحدات التنظيمية"

msgid "not one of"
msgstr ""

Expand All @@ -1364,6 +1331,18 @@ msgstr ""
"تتطلب هذه الطبقة حساب Google Earth Engine. تحقق من وثائق DHIS2 لمزيد من "
"المعلومات."

msgid "Thematic"
msgstr ""

msgid "Events"
msgstr "الأحداث"

msgid "Tracked entities"
msgstr "الكيانات المتعقبة"

msgid "Org units"
msgstr "الوحدات التنظيمية"

msgid "Facility"
msgstr "المنشأة"

Expand Down
32 changes: 13 additions & 19 deletions i18n/cs.po
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: i18next-conv\n"
"POT-Creation-Date: 2023-09-06T13:08:55.205Z\n"
"POT-Creation-Date: 2023-10-23T12:55:26.288Z\n"
"PO-Revision-Date: 2019-06-25 18:35+0000\n"
"Last-Translator: Jiří Podhorecký, 2023\n"
"Language-Team: Czech (https://app.transifex.com/hisp-uio/teams/100509/cs/)\n"
Expand Down Expand Up @@ -911,12 +911,6 @@ msgstr "OSM Light"
msgid "OSM Detailed"
msgstr "OSM Detailed"

msgid "Google Streets"
msgstr "Google Streets"

msgid "Google Hybrid"
msgstr "Google Hybrid"

msgid "Bing Road"
msgstr "Bing Road"

Expand Down Expand Up @@ -1331,18 +1325,6 @@ msgstr "Nenalezeny žádné trasované entity"
msgid "related"
msgstr "příbuzný"

msgid "Thematic"
msgstr "Tematický"

msgid "Events"
msgstr "Události"

msgid "Tracked entities"
msgstr "Trasované entity"

msgid "Org units"
msgstr "Organizační jednotky"

msgid "not one of"
msgstr "není jeden z"

Expand All @@ -1368,6 +1350,18 @@ msgstr ""
"Tato vrstva vyžaduje účet Google Earth Engine. Další informace najdete v "
"dokumentaci DHIS2."

msgid "Thematic"
msgstr "Tematický"

msgid "Events"
msgstr "Události"

msgid "Tracked entities"
msgstr "Trasované entity"

msgid "Org units"
msgstr "Organizační jednotky"

msgid "Facility"
msgstr "Zařízení"

Expand Down
32 changes: 13 additions & 19 deletions i18n/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
msgid ""
msgstr ""
"Project-Id-Version: i18next-conv\n"
"POT-Creation-Date: 2023-09-06T13:08:55.205Z\n"
"POT-Creation-Date: 2023-10-23T12:55:26.288Z\n"
"PO-Revision-Date: 2019-06-25 18:35+0000\n"
"Last-Translator: Janeth Cruz, 2023\n"
"Language-Team: Spanish (https://app.transifex.com/hisp-uio/teams/100509/es/)\n"
Expand Down Expand Up @@ -915,12 +915,6 @@ msgstr "OSM Sencillo"
msgid "OSM Detailed"
msgstr "OSM Detallado"

msgid "Google Streets"
msgstr "Google Streets"

msgid "Google Hybrid"
msgstr "Google Híbrido"

msgid "Bing Road"
msgstr "Bing Carretera"

Expand Down Expand Up @@ -1321,18 +1315,6 @@ msgstr ""
msgid "related"
msgstr "relacionado"

msgid "Thematic"
msgstr "Temática"

msgid "Events"
msgstr "Eventos"

msgid "Tracked entities"
msgstr "Entidades monitoreadas"

msgid "Org units"
msgstr "Unidades organizativas"

msgid "not one of"
msgstr ""

Expand All @@ -1357,6 +1339,18 @@ msgid ""
"documentation for more information."
msgstr ""

msgid "Thematic"
msgstr "Temática"

msgid "Events"
msgstr "Eventos"

msgid "Tracked entities"
msgstr "Entidades monitoreadas"

msgid "Org units"
msgstr "Unidades organizativas"

msgid "Facility"
msgstr "Establecimiento"

Expand Down
47 changes: 13 additions & 34 deletions i18n/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
msgid ""
msgstr ""
"Project-Id-Version: i18next-conv\n"
"POT-Creation-Date: 2023-09-06T13:08:55.205Z\n"
"POT-Creation-Date: 2023-10-23T12:55:26.288Z\n"
"PO-Revision-Date: 2019-06-25 18:35+0000\n"
"Last-Translator: Viktor Varland <[email protected]>, 2023\n"
"Language-Team: French (https://app.transifex.com/hisp-uio/teams/100509/fr/)\n"
Expand All @@ -35,15 +35,6 @@ msgstr ""
msgid "Failed to save map: {{message}}"
msgstr ""

msgid "Calculation"
msgstr ""

msgid "No calculations found"
msgstr ""

msgid "Calculations can be created in the Data Visualizer app."
msgstr ""

msgid "Classification"
msgstr "Classification"

Expand Down Expand Up @@ -459,9 +450,6 @@ msgstr "L'élément de données évènement est requis"
msgid "Program indicator is required"
msgstr "L'indicateur de programme est requis"

msgid "Calculation is required"
msgstr ""

msgid "Period is required"
msgstr "La période est requise"

Expand All @@ -477,9 +465,6 @@ msgstr "Eléments de données évènement"
msgid "Program indicators"
msgstr "Program indicators"

msgid "Calculations"
msgstr ""

msgid "Item type"
msgstr "Type d'élément"

Expand Down Expand Up @@ -951,12 +936,6 @@ msgstr "OSM Light"
msgid "OSM Detailed"
msgstr "OSM détaillée"

msgid "Google Streets"
msgstr "Google Streets"

msgid "Google Hybrid"
msgstr "Google Hybride"

msgid "Bing Road"
msgstr "Bing Road"

Expand Down Expand Up @@ -1375,18 +1354,6 @@ msgstr "Aucune entité suivie trouvée"
msgid "related"
msgstr "lié"

msgid "Thematic"
msgstr "Thématique"

msgid "Events"
msgstr "Événements"

msgid "Tracked entities"
msgstr "Entités suiviées "

msgid "Org units"
msgstr "OrgUnit"

msgid "not one of"
msgstr "ne fait pas partie de"

Expand All @@ -1413,6 +1380,18 @@ msgstr ""
"Cette couche nécessite un compte Google Earth Engine. Consultez la "
"documentation du DHIS2 pour plus d'informations."

msgid "Thematic"
msgstr "Thématique"

msgid "Events"
msgstr "Événements"

msgid "Tracked entities"
msgstr "Entités suiviées "

msgid "Org units"
msgstr "OrgUnit"

msgid "Facility"
msgstr "Etablissement"

Expand Down
Loading
Loading