diff --git a/.github/workflows/cd-manual.yml b/.github/workflows/cd-manual.yml
index 1afc6e93..ac701fcc 100644
--- a/.github/workflows/cd-manual.yml
+++ b/.github/workflows/cd-manual.yml
@@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- uses: mr-smithers-excellent/docker-build-push@v6
- name: Build & push Docker image for ${{ matrix.db-type }}
+ name: Build & push Docker image to ghcr.io for ${{ matrix.db-type }}
with:
image: umami
tags: ${{ matrix.db-type }}-${{ inputs.version }}, ${{ matrix.db-type }}-latest
@@ -31,3 +31,13 @@ jobs:
platform: linux/amd64,linux/arm64
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
+
+ - uses: mr-smithers-excellent/docker-build-push@v6
+ name: Build & push Docker image to docker.io for ${{ matrix.db-type }}
+ with:
+ image: umamisoftware/umami
+ tags: ${{ matrix.db-type }}-${{ inputs.version }}, ${{ matrix.db-type }}-latest
+ buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
+ registry: docker.io
+ username: ${{ secrets.DOCKER_USERNAME }}
+ password: ${{ secrets.DOCKER_PASSWORD }}
\ No newline at end of file
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index 6fda05a6..0660bcba 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -19,7 +19,7 @@ jobs:
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- uses: mr-smithers-excellent/docker-build-push@v6
- name: Build & push Docker image for ${{ matrix.db-type }}
+ name: Build & push Docker image to ghcr.io for ${{ matrix.db-type }}
with:
image: umami
tags: ${{ matrix.db-type }}-${{ env.RELEASE_VERSION }}, ${{ matrix.db-type }}-latest
@@ -29,3 +29,13 @@ jobs:
platform: linux/amd64,linux/arm64
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
+
+ - uses: mr-smithers-excellent/docker-build-push@v6
+ name: Build & push Docker image to docker.io for ${{ matrix.db-type }}
+ with:
+ image: umamisoftware/umami
+ tags: ${{ matrix.db-type }}-${{ env.RELEASE_VERSION }}, ${{ matrix.db-type }}-latest
+ buildArgs: DATABASE_TYPE=${{ matrix.db-type }}
+ registry: docker.io
+ username: ${{ secrets.DOCKER_USERNAME }}
+ password: ${{ secrets.DOCKER_PASSWORD }}
\ No newline at end of file
diff --git a/components/common/ErrorBoundary.js b/components/common/ErrorBoundary.js
index 5bb11a9e..f97fd92c 100644
--- a/components/common/ErrorBoundary.js
+++ b/components/common/ErrorBoundary.js
@@ -12,7 +12,6 @@ export function ErrorBoundary({ children }) {
const { formatMessage, messages } = useMessages();
const fallbackRender = ({ error, resetErrorBoundary }) => {
- console.log({ error });
return (
{formatMessage(messages.error)}
diff --git a/components/layout/AppLayout.js b/components/layout/AppLayout.js
index c30b1018..989128f9 100644
--- a/components/layout/AppLayout.js
+++ b/components/layout/AppLayout.js
@@ -1,6 +1,5 @@
import { Container } from 'react-basics';
import Head from 'next/head';
-import { useRouter } from 'next/router';
import NavBar from 'components/layout/NavBar';
import UpdateNotice from 'components/common/UpdateNotice';
import useRequireLogin from 'hooks/useRequireLogin';
diff --git a/components/layout/AppLayout.module.css b/components/layout/AppLayout.module.css
index 58c1cacf..0afd11f9 100644
--- a/components/layout/AppLayout.module.css
+++ b/components/layout/AppLayout.module.css
@@ -18,4 +18,5 @@
min-height: 0;
height: calc(100vh - 60px);
overflow-y: auto;
+ padding-bottom: 60px;
}
diff --git a/components/layout/Footer.js b/components/layout/Footer.js
index 7cc5d3de..3a07c12a 100644
--- a/components/layout/Footer.js
+++ b/components/layout/Footer.js
@@ -1,31 +1,12 @@
-import { Row, Column } from 'react-basics';
-import { FormattedMessage } from 'react-intl';
-import { CURRENT_VERSION, HOMEPAGE_URL, REPO_URL } from 'lib/constants';
-import { labels } from 'components/messages';
+import { CURRENT_VERSION, HOMEPAGE_URL } from 'lib/constants';
import styles from './Footer.module.css';
export function Footer() {
return (
);
}
diff --git a/components/layout/Footer.module.css b/components/layout/Footer.module.css
index a23f496d..348c92d8 100644
--- a/components/layout/Footer.module.css
+++ b/components/layout/Footer.module.css
@@ -1,16 +1,12 @@
.footer {
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-end;
font-size: var(--font-size-sm);
- text-align: center;
line-height: 30px;
- margin: 60px 0;
+ margin: 40px 0;
}
.footer a {
color: var(--font-color100);
}
-
-.version {
- text-align: right;
- padding-right: 10px;
- white-space: nowrap;
-}
diff --git a/components/layout/Header.js b/components/layout/Header.js
index 2007b1d9..21cdd251 100644
--- a/components/layout/Header.js
+++ b/components/layout/Header.js
@@ -9,7 +9,7 @@ import styles from './Header.module.css';
export function Header() {
return (
-
+
diff --git a/components/layout/Header.module.css b/components/layout/Header.module.css
index e796b6f0..26f30552 100644
--- a/components/layout/Header.module.css
+++ b/components/layout/Header.module.css
@@ -1,8 +1,13 @@
.header {
display: flex;
+ flex-direction: row;
align-items: center;
width: 100%;
- padding: 30px 30px 0 30px;
+ height: 100px;
+}
+
+.row {
+ align-items: center;
}
.title {
@@ -35,18 +40,8 @@
}
@media only screen and (max-width: 768px) {
- .header {
- padding: 0 30px;
- }
-
.buttons,
.links {
display: none;
}
-
- .title {
- flex: 1;
- padding: 0.5rem;
- margin-bottom: 0.5rem;
- }
}
diff --git a/components/layout/Page.module.css b/components/layout/Page.module.css
index 42aafbe1..c546971b 100644
--- a/components/layout/Page.module.css
+++ b/components/layout/Page.module.css
@@ -4,11 +4,4 @@
flex-direction: column;
background: var(--base50);
position: relative;
- padding: 30px;
-}
-
-@media only screen and (max-width: 768px) {
- .page {
- padding: 10px 0;
- }
}
diff --git a/components/layout/PageHeader.module.css b/components/layout/PageHeader.module.css
index 03a1c7c8..b54ecfcf 100644
--- a/components/layout/PageHeader.module.css
+++ b/components/layout/PageHeader.module.css
@@ -1,10 +1,12 @@
.header {
display: flex;
+ flex-direction: row;
justify-content: space-between;
align-items: center;
align-content: center;
align-self: stretch;
flex-wrap: wrap;
+ height: 100px;
}
.header a {
diff --git a/components/messages.js b/components/messages.js
index 7bd4e9bc..a31e2875 100644
--- a/components/messages.js
+++ b/components/messages.js
@@ -229,19 +229,19 @@ export const messages = defineMessages({
defaultMessage: 'All website data will be deleted.',
},
noResultsFound: {
- id: 'messages.no-results-found',
+ id: 'message.no-results-found',
defaultMessage: 'No results were found.',
},
noWebsitesConfigured: {
- id: 'messages.no-websites-configured',
+ id: 'message.no-websites-configured',
defaultMessage: 'You do not have any websites configured.',
},
noTeamWebsites: {
- id: 'messages.no-team-websites',
+ id: 'message.no-team-websites',
defaultMessage: 'This team does not have any websites.',
},
teamWebsitesInfo: {
- id: 'messages.team-websites-info',
+ id: 'message.team-websites-info',
defaultMessage: 'Websites can be viewed by anyone on the team.',
},
noMatchPassword: { id: 'message.no-match-password', defaultMessage: 'Passwords do not match.' },
@@ -274,7 +274,7 @@ export const messages = defineMessages({
defaultMessage: 'No event data is available.',
},
newVersionAvailable: {
- id: 'new-version-available',
+ id: 'message.new-version-available',
defaultMessage: 'A new version of Umami {version} is available!',
},
});
diff --git a/components/pages/reports/Report.js b/components/pages/reports/Report.js
index 685ebb9f..0a98ef75 100644
--- a/components/pages/reports/Report.js
+++ b/components/pages/reports/Report.js
@@ -8,8 +8,6 @@ export const ReportContext = createContext(null);
export function Report({ reportId, defaultParameters, children, ...props }) {
const report = useReport(reportId, defaultParameters);
- //console.log({ report });
-
return (
diff --git a/lang/am-ET.json b/lang/am-ET.json
index 14f85d3c..0764b191 100644
--- a/lang/am-ET.json
+++ b/lang/am-ET.json
@@ -187,9 +187,9 @@
"message.tracking-code": "To track stats for this website, place the following code in the ... section of your HTML.",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Visitor from {country} using {browser} on {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "You do not have any websites configured.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "You do not have any websites configured.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/ar-SA.json b/lang/ar-SA.json
index 85a19287..933d42f5 100644
--- a/lang/ar-SA.json
+++ b/lang/ar-SA.json
@@ -187,9 +187,9 @@
"message.tracking-code": "كود التتبع",
"message.user-deleted": "تم حذف المستخدم.",
"message.visitor-log": "زائر من {country} يستخدم {browser} على {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "هذه المجموعة ليس لديه اي موقع.",
- "messages.no-websites-configured": "لم تقم بإعداد اي موقع.",
- "messages.team-websites-info": "يمكن مشاهدة الموقع من اي عضو في المجموعة.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "هذه المجموعة ليس لديه اي موقع.",
+ "message.no-websites-configured": "لم تقم بإعداد اي موقع.",
+ "message.team-websites-info": "يمكن مشاهدة الموقع من اي عضو في المجموعة.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/be-BY.json b/lang/be-BY.json
index 156488f1..bd14d98f 100644
--- a/lang/be-BY.json
+++ b/lang/be-BY.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Код адсочвання",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Наведвальнік з {country} праз {browser} на {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Вы не наладзілі ніводнага сайту.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Вы не наладзілі ніводнага сайту.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/bn-BD.json b/lang/bn-BD.json
index 6855db38..01069f92 100644
--- a/lang/bn-BD.json
+++ b/lang/bn-BD.json
@@ -187,9 +187,9 @@
"message.tracking-code": "ট্র্যাকিং কোড",
"message.user-deleted": "User deleted.",
"message.visitor-log": "{country} থেকে একজন ভিসিটর {ব্রাউজার}, ব্যবহার করছেন {os} {device} এর মধ্যে।",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "কোনও ওয়েবসাইট কনফিগার করা নেই।",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "কোনও ওয়েবসাইট কনফিগার করা নেই।",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/ca-ES.json b/lang/ca-ES.json
index 66dbb53a..e5ca7ac8 100644
--- a/lang/ca-ES.json
+++ b/lang/ca-ES.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Codi de seguiment",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Visitant de {country} usant {browser} a {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "No hi ha cap lloc web configurat.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "No hi ha cap lloc web configurat.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/cs-CZ.json b/lang/cs-CZ.json
index c220c90b..63300450 100644
--- a/lang/cs-CZ.json
+++ b/lang/cs-CZ.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Sledovací kód",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Návštěvník z {country} s prohlížečem {browser} na {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Nemáte nastavený žádný web.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Nemáte nastavený žádný web.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/da-DK.json b/lang/da-DK.json
index fb2c742d..cd2a1126 100644
--- a/lang/da-DK.json
+++ b/lang/da-DK.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Sporingskode",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Besøgende fra {country} bruger {browser} på {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Du har ikke konfigureret nogen hjemmesider.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Du har ikke konfigureret nogen hjemmesider.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/de-CH.json b/lang/de-CH.json
index c6a8c2e5..7ea503b0 100644
--- a/lang/de-CH.json
+++ b/lang/de-CH.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Tracking Code",
"message.user-deleted": "Benutzer glöscht.",
"message.visitor-log": "Bsuecher us {country} benutzt {browser} uf {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "Dem Team sind kei Websiite zuegordnet.",
- "messages.no-websites-configured": "Es isch kei Websiite vorhande.",
- "messages.team-websites-info": "Websiite chönd vo jedem im Team agluegt werde",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "Dem Team sind kei Websiite zuegordnet.",
+ "message.no-websites-configured": "Es isch kei Websiite vorhande.",
+ "message.team-websites-info": "Websiite chönd vo jedem im Team agluegt werde",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/de-DE.json b/lang/de-DE.json
index 87988d4b..b09f47ab 100644
--- a/lang/de-DE.json
+++ b/lang/de-DE.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Tracking Code",
"message.user-deleted": "Benutzer gelöscht.",
"message.visitor-log": "Besucher aus {country} benutzt {browser} auf {os} {device}",
- "messages.no-results-found": "Keine Ergebnisse gefunden.",
- "messages.no-team-websites": "Diesem Team sind keine Websites zugeordnet.",
- "messages.no-websites-configured": "Es ist keine Webseite vorhanden.",
- "messages.team-websites-info": "Webseiten können von jedem im Team eingesehen werden.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "Keine Ergebnisse gefunden.",
+ "message.no-team-websites": "Diesem Team sind keine Websites zugeordnet.",
+ "message.no-websites-configured": "Es ist keine Webseite vorhanden.",
+ "message.team-websites-info": "Webseiten können von jedem im Team eingesehen werden.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/el-GR.json b/lang/el-GR.json
index b9122f0b..6d7b1bb4 100644
--- a/lang/el-GR.json
+++ b/lang/el-GR.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Κωδικός παρακολούθησης",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Visitor from {country} using {browser} on {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Δεν έχετε ρυθμίσει κανένα ιστότοπο.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Δεν έχετε ρυθμίσει κανένα ιστότοπο.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/en-GB.json b/lang/en-GB.json
index 31b9cc4f..33a9e640 100644
--- a/lang/en-GB.json
+++ b/lang/en-GB.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Tracking code",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Visitor from {country} using {browser} on {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "You don't have any websites configured.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "You don't have any websites configured.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/en-US.json b/lang/en-US.json
index 850bb253..b4daac89 100644
--- a/lang/en-US.json
+++ b/lang/en-US.json
@@ -187,9 +187,9 @@
"message.tracking-code": "To track stats for this website, place the following code in the ... section of your HTML.",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Visitor from {country} using {browser} on {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "You do not have any websites configured.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "You do not have any websites configured.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/es-ES.json b/lang/es-ES.json
index 989f97eb..55343af1 100644
--- a/lang/es-ES.json
+++ b/lang/es-ES.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Código de rastreo",
"message.user-deleted": "Usuario eliminado.",
"message.visitor-log": "Visitante desde {country} usando {browser} en {os} {device}",
- "messages.no-results-found": "No se encontraron resultados.",
- "messages.no-team-websites": "Este equipo no tiene ningún sitio web configurado.",
- "messages.no-websites-configured": "No tienes ningún sitio web configurado.",
- "messages.team-websites-info": "Las analíticas de tus sitios web pueden ser vistas por cualquier miembro del equipo.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No se encontraron resultados.",
+ "message.no-team-websites": "Este equipo no tiene ningún sitio web configurado.",
+ "message.no-websites-configured": "No tienes ningún sitio web configurado.",
+ "message.team-websites-info": "Las analíticas de tus sitios web pueden ser vistas por cualquier miembro del equipo.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/es-MX.json b/lang/es-MX.json
index fa4fd21e..dd6a3cce 100644
--- a/lang/es-MX.json
+++ b/lang/es-MX.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Código de rastreo",
"message.user-deleted": "Usuario eliminado.",
"message.visitor-log": "Visitante desde {country} usando {browser} en {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "Este equipo no tiene ningún sitio web configurado.",
- "messages.no-websites-configured": "No tienes ningún sitio configurado.",
- "messages.team-websites-info": "Las analíticas de tus sitios pueden verse por cualquier miembro del equipo.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "Este equipo no tiene ningún sitio web configurado.",
+ "message.no-websites-configured": "No tienes ningún sitio configurado.",
+ "message.team-websites-info": "Las analíticas de tus sitios pueden verse por cualquier miembro del equipo.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/fa-IR.json b/lang/fa-IR.json
index bece2809..a81792ae 100644
--- a/lang/fa-IR.json
+++ b/lang/fa-IR.json
@@ -187,9 +187,9 @@
"message.tracking-code": "کد رهگیری",
"message.user-deleted": "User deleted.",
"message.visitor-log": "بازدیدکننده از کشور {country} با مروگر {browser} در {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "شما هیچ وبسایتی را پیکربندی نکردهاید.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "شما هیچ وبسایتی را پیکربندی نکردهاید.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/fi-FI.json b/lang/fi-FI.json
index 351ad952..541d391a 100644
--- a/lang/fi-FI.json
+++ b/lang/fi-FI.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Seurantakoodi",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Vierailija maasta {country} selaimella {browser} laitteella {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Sinulla ei ole määritettyjä verkkosivustoja.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Sinulla ei ole määritettyjä verkkosivustoja.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/fo-FO.json b/lang/fo-FO.json
index 4b61f287..e31c94d9 100644
--- a/lang/fo-FO.json
+++ b/lang/fo-FO.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Spori kota",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Vitjandi frá {country} brúkar {browser} á {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Tú hevur ongar heimasíður stillaða til.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Tú hevur ongar heimasíður stillaða til.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/fr-FR.json b/lang/fr-FR.json
index 145f2a1f..d1e6691a 100644
--- a/lang/fr-FR.json
+++ b/lang/fr-FR.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Code de suivi",
"message.user-deleted": "Utilisateur supprimé.",
"message.visitor-log": "Visiteur de {country} utilisant {browser} sur {os} {device}",
- "messages.no-results-found": "Aucun résultat n'a été trouvé.",
- "messages.no-team-websites": "Cette équipe n'a aucun site.",
- "messages.no-websites-configured": "Vous n'avez pas configuré de site.",
- "messages.team-websites-info": "Les sites peuvent être vus par tout utilisateur dans l'équipe.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "Aucun résultat n'a été trouvé.",
+ "message.no-team-websites": "Cette équipe n'a aucun site.",
+ "message.no-websites-configured": "Vous n'avez pas configuré de site.",
+ "message.team-websites-info": "Les sites peuvent être vus par tout utilisateur dans l'équipe.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/ga-ES.json b/lang/ga-ES.json
index 7703fb25..dce6504c 100644
--- a/lang/ga-ES.json
+++ b/lang/ga-ES.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Código de seguimento",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Visitante desde {country} usando {browser} en {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Non tes sitios web configurados.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Non tes sitios web configurados.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/he-IL.json b/lang/he-IL.json
index de415615..8ed7f6c0 100644
--- a/lang/he-IL.json
+++ b/lang/he-IL.json
@@ -187,9 +187,9 @@
"message.tracking-code": "קוד מעקב",
"message.user-deleted": "User deleted.",
"message.visitor-log": "מבקר ממדינת {country} משתמבש בדפדפן {browser} ב-{os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "לא מוגדרים אתרים",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "לא מוגדרים אתרים",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/hi-IN.json b/lang/hi-IN.json
index 6dd42f6d..429e6ebb 100644
--- a/lang/hi-IN.json
+++ b/lang/hi-IN.json
@@ -187,9 +187,9 @@
"message.tracking-code": "ट्रैकिंग कोड",
"message.user-deleted": "User deleted.",
"message.visitor-log": "{country} का आगंतुक, जो {browser} का उपयोग करता है, {os} यन्त्र पर",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "आपके पास कोई वेबसाइट कॉन्फ़िगर नहीं है।",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "आपके पास कोई वेबसाइट कॉन्फ़िगर नहीं है।",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/hr-HR.json b/lang/hr-HR.json
index 72e7377c..a9deb51f 100644
--- a/lang/hr-HR.json
+++ b/lang/hr-HR.json
@@ -187,9 +187,9 @@
"message.tracking-code": "To track stats for this website, place the following code in the ... section of your HTML.",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Visitor from {country} using {browser} on {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "You do not have any websites configured.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "You do not have any websites configured.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/hu-HU.json b/lang/hu-HU.json
index b3fc9d4b..e5c8a078 100644
--- a/lang/hu-HU.json
+++ b/lang/hu-HU.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Követési kód",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Látógató {country} területéről, {os} {device} eszközön, {browser} böngészőből.",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Még nem állítottál be egyetlen weboldalt sem.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Még nem állítottál be egyetlen weboldalt sem.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/id-ID.json b/lang/id-ID.json
index 9304172e..383f405e 100644
--- a/lang/id-ID.json
+++ b/lang/id-ID.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Kode lacak",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Pengunjung dari {country} dengan {browser} di {device} {os}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Anda tidak memiliki situs web yang dikonfigurasi.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Anda tidak memiliki situs web yang dikonfigurasi.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/it-IT.json b/lang/it-IT.json
index 20d7da78..854fd452 100644
--- a/lang/it-IT.json
+++ b/lang/it-IT.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Codice di tracking",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Utenti da {country} tramite {browser} su {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Non hai ancora configurato alcun sito.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Non hai ancora configurato alcun sito.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/ja-JP.json b/lang/ja-JP.json
index 758f172d..7f618a4e 100644
--- a/lang/ja-JP.json
+++ b/lang/ja-JP.json
@@ -187,9 +187,9 @@
"message.tracking-code": "トラッキングコード",
"message.user-deleted": "User deleted.",
"message.visitor-log": "{os}({device})で{browser}を使用している{country}からの訪問者",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Webサイトが設定されていません。",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Webサイトが設定されていません。",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/km-KH.json b/lang/km-KH.json
index 9bbf1166..20844242 100644
--- a/lang/km-KH.json
+++ b/lang/km-KH.json
@@ -187,9 +187,9 @@
"message.tracking-code": "លេខកូដតាមដាន",
"message.user-deleted": "User deleted.",
"message.visitor-log": "អ្នកមើលពីប្រទេស {country} ប្រើប្រាស់កម្មវិធី {browser} លើឧបករណ៍ {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "អ្នកមិនទាន់បានដាក់គេហទំព័រណាមួយចូលទេ។",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "អ្នកមិនទាន់បានដាក់គេហទំព័រណាមួយចូលទេ។",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/ko-KR.json b/lang/ko-KR.json
index d735dfef..2e4f0e5a 100644
--- a/lang/ko-KR.json
+++ b/lang/ko-KR.json
@@ -187,9 +187,9 @@
"message.tracking-code": "추적 코드",
"message.user-deleted": "User deleted.",
"message.visitor-log": "{os} {device}에서 {browser}을(를) 사용하는 {country}의 방문자",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "구성된 웹 사이트가 없습니다.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "구성된 웹 사이트가 없습니다.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/lt-LT.json b/lang/lt-LT.json
index 578aa260..e8ef150d 100644
--- a/lang/lt-LT.json
+++ b/lang/lt-LT.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Sekimo kodas",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Lankytojas iš {country}, naudojantis {browser} sistemoje {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Jūs nesate susikonfiguravę jokių svetainių.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Jūs nesate susikonfiguravę jokių svetainių.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/mn-MN.json b/lang/mn-MN.json
index fd90b8f4..1d9d9812 100644
--- a/lang/mn-MN.json
+++ b/lang/mn-MN.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Энэ вебийн хандалтуудыг мөрдөхийн тулд доорх кодыг HTML-нхээ ... хэсэгт байрлуулна уу.",
"message.user-deleted": "Хэрэглэгч устсан.",
"message.visitor-log": "{country} улсаас {os} {device} дээр {browser} хөтөч ашиглан орсон",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "Энэ багт ямар ч веб алга.",
- "messages.no-websites-configured": "Та ямар нэгэн веб тохируулаагүй байна.",
- "messages.team-websites-info": "Вебийг багийн бүх гишүүд үзэж болно.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "Энэ багт ямар ч веб алга.",
+ "message.no-websites-configured": "Та ямар нэгэн веб тохируулаагүй байна.",
+ "message.team-websites-info": "Вебийг багийн бүх гишүүд үзэж болно.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/ms-MY.json b/lang/ms-MY.json
index 8029a53e..c3a9254c 100644
--- a/lang/ms-MY.json
+++ b/lang/ms-MY.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Kod penjejakan",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Pelawat dari {country} mengguna {browser} pada {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Anda tidak ada sebarang laman web yang telah dikonfigurasikan.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Anda tidak ada sebarang laman web yang telah dikonfigurasikan.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/nb-NO.json b/lang/nb-NO.json
index 3dc87bdf..fcd29965 100644
--- a/lang/nb-NO.json
+++ b/lang/nb-NO.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Sporingskode",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Besøkende fra {country} med {browser} på {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Du har ikke satt opp noen nettsteder.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Du har ikke satt opp noen nettsteder.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/nl-NL.json b/lang/nl-NL.json
index 7a060f18..90b4ea40 100644
--- a/lang/nl-NL.json
+++ b/lang/nl-NL.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Volgcode",
"message.user-deleted": "Gebruiker verwijderd.",
"message.visitor-log": "Bezoeker uit {country} met {browser} op een {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "Er zijn geen websites gekoppeld aan dit team.",
- "messages.no-websites-configured": "Je hebt geen websites ingesteld.",
- "messages.team-websites-info": "Websites kunnen door iedereen in het team worden bekeken.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "Er zijn geen websites gekoppeld aan dit team.",
+ "message.no-websites-configured": "Je hebt geen websites ingesteld.",
+ "message.team-websites-info": "Websites kunnen door iedereen in het team worden bekeken.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/pl-PL.json b/lang/pl-PL.json
index b0faf6b1..79823f57 100644
--- a/lang/pl-PL.json
+++ b/lang/pl-PL.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Kod śledzenia",
"message.user-deleted": "Użytkownik usunięty.",
"message.visitor-log": "Odwiedzający z {country} używa {browser} na {os} {device}",
- "messages.no-results-found": "Nie znaleziono wyników.",
- "messages.no-team-websites": "Ten zespół nie ma żadnych witryn internetowych.",
- "messages.no-websites-configured": "Nie masz skonfigurowanych żadnych witryn internetowych.",
- "messages.team-websites-info": "Strony internetowe mogą być przeglądane przez każdego członka zespołu.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "Nie znaleziono wyników.",
+ "message.no-team-websites": "Ten zespół nie ma żadnych witryn internetowych.",
+ "message.no-websites-configured": "Nie masz skonfigurowanych żadnych witryn internetowych.",
+ "message.team-websites-info": "Strony internetowe mogą być przeglądane przez każdego członka zespołu.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/pt-BR.json b/lang/pt-BR.json
index 7654bdc2..dd1edf0b 100644
--- a/lang/pt-BR.json
+++ b/lang/pt-BR.json
@@ -46,11 +46,11 @@
"label.event": "Evento",
"label.event-data": "Event data",
"label.events": "Eventos",
- "label.field": "Field",
- "label.fields": "Fields",
+ "label.field": "Campo",
+ "label.fields": "Campos",
"label.filter-combined": "Combinado",
"label.filter-raw": "Dados brutos",
- "label.funnel": "Funnel",
+ "label.funnel": "Funil",
"label.insights": "Insights",
"label.join": "Entrar",
"label.join-team": "Entrar no time",
@@ -90,10 +90,10 @@
"label.reset": "Redefinir",
"label.reset-website": "Redefinir estatísticas",
"label.role": "Papel",
- "label.run-query": "Run query",
+ "label.run-query": "Executar query",
"label.save": "Salvar",
"label.screens": "Telas",
- "label.select-date": "Select date",
+ "label.select-date": "Selecionar data",
"label.select-website": "Selecionar site",
"label.sessions": "Sessões",
"label.settings": "Configurações",
@@ -124,30 +124,30 @@
"label.users": "Usuários",
"label.view": "Ver",
"label.view-details": "Ver detalhes",
- "label.view-only": "View only",
+ "label.view-only": "Somente visualização",
"label.views": "Visualizações",
"label.visitors": "Visitantes",
"label.website": "Website",
"label.website-id": "ID do Site",
"label.websites": "Sites",
- "label.window": "Window",
+ "label.window": "Janela",
"label.yesterday": "Ontem",
- "labels.after": "After",
+ "labels.after": "Depois",
"labels.average": "Average",
- "labels.before": "Before",
+ "labels.before": "Antes",
"labels.breakdown": "Breakdown",
"labels.contains": "Contains",
- "labels.create-report": "Create report",
- "labels.description": "Description",
+ "labels.create-report": "Criar relatório",
+ "labels.description": "Descrição",
"labels.does-not-contain": "Does not contain",
"labels.does-not-equal": "Does not equal",
"labels.equals": "Equals",
"labels.false": "False",
"labels.filters": "Filters",
- "labels.greater-than": "Greater than",
- "labels.greater-than-equals": "Greater than or equals",
- "labels.less-than": "Less than",
- "labels.less-than-equals": "Less than or equals",
+ "labels.greater-than": "Maior que",
+ "labels.greater-than-equals": "Maior que ou igual",
+ "labels.less-than": "Menor que",
+ "labels.less-than-equals": "Menor que ou igual",
"labels.max": "Max",
"labels.min": "Min",
"labels.overview": "Overview",
@@ -155,16 +155,16 @@
"labels.total": "Total",
"labels.total-records": "Total records",
"labels.true": "True",
- "labels.type": "Type",
- "labels.unique": "Unique",
- "labels.untitled": "Untitled",
- "labels.value": "Value",
+ "labels.type": "Tipo",
+ "labels.unique": "Único",
+ "labels.untitled": "Sem título",
+ "labels.value": "Valor",
"message.active-users": "{x} {x, plural, one {visitante} other {visitantes}} neste momento",
"message.confirm-delete": "Deseja realmente remover {target}?",
"message.confirm-leave": "Você tem certeza que deseja sair de {target}?",
"message.confirm-reset": "Você tem certeza que deseja redefinir as estatísticas de {target}?",
- "message.delete-account": "To delete this account, type {confirmation} in the box below to confirm.",
- "message.delete-website": "To delete this website, type {confirmation} in the box below to confirm.",
+ "message.delete-account": "Para excluir esta conta, digite {confirmation} na caixa abaixo para confirmar.",
+ "message.delete-website": "Para excluir este website, digite {confirmation} na caixa abaixo para confirmar.",
"message.delete-website-warning": "Todos os dados associados também serão eliminados.",
"message.error": "Ocorreu um erro.",
"message.event-log": "{event} em {url}",
@@ -173,12 +173,12 @@
"message.invalid-domain": "Domínio inválido",
"message.min-password-length": "Quantidade mínima de {n} caracteres",
"message.no-data-available": "Sem dados disponíveis.",
- "message.no-event-data": "No event data is available.",
+ "message.no-event-data": "Nenhum dado de evento está disponível.",
"message.no-match-password": "As senhas não correspondem",
"message.no-teams": "Você não criou nenhum time.",
"message.no-users": "Não há nenhum usuário.",
"message.page-not-found": "Página não encontrada.",
- "message.reset-website": "To reset this website, type {confirmation} in the box below to confirm.",
+ "message.reset-website": "Para redefinir este site, digite {confirmation} na caixa abaixo para confirmar.",
"message.reset-website-warning": "Todas as estatísticas deste site serão removidas, mas seu código de rastreamento permanecerá intacto.",
"message.saved": "Salvo com sucesso.",
"message.share-url": "Este é o link público de compartilhamento para {target}.",
@@ -187,9 +187,9 @@
"message.tracking-code": "Código de rastreamento",
"message.user-deleted": "Usuário removido.",
"message.visitor-log": "Visitante de {country} usando {browser} no {device} {os}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "Este time não possui nenhum site.",
- "messages.no-websites-configured": "Nenhum site foi configurado ainda.",
- "messages.team-websites-info": "Os sites podem ser visualizados por qualquer membro da equipe.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "Nenhum resultado foi encontrado.",
+ "message.no-team-websites": "Este time não possui nenhum site.",
+ "message.no-websites-configured": "Nenhum site foi configurado ainda.",
+ "message.team-websites-info": "Os sites podem ser visualizados por qualquer membro da equipe.",
+ "message.new-version-available": "Uma nova versão do Umami {version} está disponível!"
}
diff --git a/lang/pt-PT.json b/lang/pt-PT.json
index 3b6bebc1..24765e7a 100644
--- a/lang/pt-PT.json
+++ b/lang/pt-PT.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Código de rastreamento",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Visitante de {country} a usar {browser} no {device} {os}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Não tens nenhum website configurado.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Não tens nenhum website configurado.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/ro-RO.json b/lang/ro-RO.json
index 67ce0ed0..fa15ce24 100644
--- a/lang/ro-RO.json
+++ b/lang/ro-RO.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Cod de urmărire",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Vizitator din {country} folosind {browser} pe {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Nu aveți niciun site web configurat.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Nu aveți niciun site web configurat.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/ru-RU.json b/lang/ru-RU.json
index c50f8ba8..93bc5367 100644
--- a/lang/ru-RU.json
+++ b/lang/ru-RU.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Код отслеживания",
"message.user-deleted": "Пользователь удален.",
"message.visitor-log": "Посетитель из {country} используя {browser} на {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "У этой команды нет ни одного сайта.",
- "messages.no-websites-configured": "У вас нет настроенных сайтов.",
- "messages.team-websites-info": "Сайты могут просматривать все члены команды.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "У этой команды нет ни одного сайта.",
+ "message.no-websites-configured": "У вас нет настроенных сайтов.",
+ "message.team-websites-info": "Сайты могут просматривать все члены команды.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/si-LK.json b/lang/si-LK.json
index c69fe1cc..086c156e 100644
--- a/lang/si-LK.json
+++ b/lang/si-LK.json
@@ -187,9 +187,9 @@
"message.tracking-code": "To track stats for this website, place the following code in the ... section of your HTML.",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Visitor from {country} using {browser} on {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "You do not have any websites configured.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "You do not have any websites configured.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/sk-SK.json b/lang/sk-SK.json
index 2495ac51..884519aa 100644
--- a/lang/sk-SK.json
+++ b/lang/sk-SK.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Sledovací kód",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Návštevník z {country} s prehliadačom {browser} na {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Nemáte nastavený žiadny web.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Nemáte nastavený žiadny web.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/sl-SI.json b/lang/sl-SI.json
index 7916df03..ab309ab9 100644
--- a/lang/sl-SI.json
+++ b/lang/sl-SI.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Koda za sledenje",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Obiskovalec iz {country} uporablja {browser} na {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Ni nastavljenih spletnih mest.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Ni nastavljenih spletnih mest.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/sv-SE.json b/lang/sv-SE.json
index bc237e92..3e1303c5 100644
--- a/lang/sv-SE.json
+++ b/lang/sv-SE.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Spårningskod",
"message.user-deleted": "Användare raderad.",
"message.visitor-log": "Besökare från {country} med {browser} på {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "Det här teamet har inga webbsajter.",
- "messages.no-websites-configured": "Du har inga webbsajter.",
- "messages.team-websites-info": "Websajter kan ses av alla i teamet.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "Det här teamet har inga webbsajter.",
+ "message.no-websites-configured": "Du har inga webbsajter.",
+ "message.team-websites-info": "Websajter kan ses av alla i teamet.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/ta-IN.json b/lang/ta-IN.json
index a3dbff5f..e52bf186 100644
--- a/lang/ta-IN.json
+++ b/lang/ta-IN.json
@@ -187,9 +187,9 @@
"message.tracking-code": "கண்காணிப்பு குறியீடு",
"message.user-deleted": "User deleted.",
"message.visitor-log": "{country}வில் இருந்து பார்வையாளர் {browser} ஐ {os} {device}லில் பயன்படுத்துகிறார்",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "உங்களிடம் எந்த வலைத்தளங்களும் கட்டமைக்கப்படவில்லை.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "உங்களிடம் எந்த வலைத்தளங்களும் கட்டமைக்கப்படவில்லை.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/th-TH.json b/lang/th-TH.json
index a30b9770..7fa70298 100644
--- a/lang/th-TH.json
+++ b/lang/th-TH.json
@@ -187,9 +187,9 @@
"message.tracking-code": "โค้ดสำหรับใช้ติดตาม",
"message.user-deleted": "User deleted.",
"message.visitor-log": "ผู้เข้าชมจาก {country} กำลังใช้งานผ่าน {browser} บน {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "คุณยังไม่ได้ตั้งค่าเว็บไซต์ใด ๆ ไว้.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "คุณยังไม่ได้ตั้งค่าเว็บไซต์ใด ๆ ไว้.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/tr-TR.json b/lang/tr-TR.json
index d010caae..4f39fcb3 100644
--- a/lang/tr-TR.json
+++ b/lang/tr-TR.json
@@ -187,9 +187,9 @@
"message.tracking-code": "İzleme kodu",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Yeni ziyaretçi: {country}, {os}, {device}, {browser}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Henüz hiç web sitesi tanımlamadınız",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Henüz hiç web sitesi tanımlamadınız",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/uk-UA.json b/lang/uk-UA.json
index f49502e4..7bdffd17 100644
--- a/lang/uk-UA.json
+++ b/lang/uk-UA.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Код для відслідковування",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Відвідувач з {country} використовуючи {browser} на {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "У вас немає налаштованих сайтів.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "У вас немає налаштованих сайтів.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/ur-PK.json b/lang/ur-PK.json
index c19b543d..a10594d9 100644
--- a/lang/ur-PK.json
+++ b/lang/ur-PK.json
@@ -187,9 +187,9 @@
"message.tracking-code": "ٹریکنگ کوڈ",
"message.user-deleted": "User deleted.",
"message.visitor-log": "{os} {device} پر {browser} کا استعمال کرتے ہوئے {country} سے آنے والا",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "آپ کے پاس کوئی ویب سائٹ کنفیگر نہیں ہے۔",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "آپ کے پاس کوئی ویب سائٹ کنفیگر نہیں ہے۔",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/vi-VN.json b/lang/vi-VN.json
index 8a25ffbd..b105cd6b 100644
--- a/lang/vi-VN.json
+++ b/lang/vi-VN.json
@@ -187,9 +187,9 @@
"message.tracking-code": "Mã theo dõi",
"message.user-deleted": "User deleted.",
"message.visitor-log": "Khách từ {country} đang dùng {browser} trên {os} {device}",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "Bạn chưa có bất cứ website nào.",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "Bạn chưa có bất cứ website nào.",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/zh-CN.json b/lang/zh-CN.json
index d53a7067..f40dd88a 100644
--- a/lang/zh-CN.json
+++ b/lang/zh-CN.json
@@ -185,11 +185,11 @@
"message.team-already-member": "你已经是该团队的成员。",
"message.team-not-found": "未找到团队。",
"message.tracking-code": "跟踪代码",
- "message.user-deleted": "User detected.",
+ "message.user-deleted": "User deleted.",
"message.visitor-log": "来自{country}的访客在搭载 {os} 的{device}上使用 {browser} 浏览器进行访问。",
- "messages.no-results-found": "没有找到任何结果。",
- "messages.no-team-websites": "这个团队没有任何网站。",
- "messages.no-websites-configured": "你还没有设置任何网站。",
- "messages.team-websites-info": "团队中的任何人都可查看网站。",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "没有找到任何结果。",
+ "message.no-team-websites": "这个团队没有任何网站。",
+ "message.no-websites-configured": "你还没有设置任何网站。",
+ "message.team-websites-info": "团队中的任何人都可查看网站。",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lang/zh-TW.json b/lang/zh-TW.json
index 1a75e608..a95d50df 100644
--- a/lang/zh-TW.json
+++ b/lang/zh-TW.json
@@ -187,9 +187,9 @@
"message.tracking-code": "追蹤代碼",
"message.user-deleted": "User deleted.",
"message.visitor-log": "來自{country}的訪客在搭載 {os} 的{device}上使用 {browser} 進行訪問。",
- "messages.no-results-found": "No results were found.",
- "messages.no-team-websites": "This team does not have any websites.",
- "messages.no-websites-configured": "目前無任何網站設定。",
- "messages.team-websites-info": "Websites can be viewed by anyone on the team.",
- "new-version-available": "A new version of Umami {version} is available!"
+ "message.no-results-found": "No results were found.",
+ "message.no-team-websites": "This team does not have any websites.",
+ "message.no-websites-configured": "目前無任何網站設定。",
+ "message.team-websites-info": "Websites can be viewed by anyone on the team.",
+ "message.new-version-available": "A new version of Umami {version} is available!"
}
diff --git a/lib/prisma.ts b/lib/prisma.ts
index 427578d6..08309e31 100644
--- a/lib/prisma.ts
+++ b/lib/prisma.ts
@@ -70,7 +70,7 @@ function getFilterQuery(filters = {}, params = []): string {
if (filter !== undefined) {
const column = FILTER_COLUMNS[key] || key;
- arr.push(`and ${column}=$${params.length + 1}`);
+ arr.push(`and ${column}={{${key}}}`);
params.push(decodeURIComponent(filter));
}
diff --git a/package.json b/package.json
index fd4d4522..868b3cdf 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "umami",
- "version": "2.4.0",
+ "version": "2.4.1",
"description": "A simple, fast, privacy-focused alternative to Google Analytics.",
"author": "Mike Cao ",
"license": "MIT",
diff --git a/pages/api/websites/[id]/metrics.ts b/pages/api/websites/[id]/metrics.ts
index 4c6fb270..37a04691 100644
--- a/pages/api/websites/[id]/metrics.ts
+++ b/pages/api/websites/[id]/metrics.ts
@@ -1,5 +1,5 @@
import { NextApiResponse } from 'next';
-import { methodNotAllowed, ok, unauthorized } from 'next-basics';
+import { badRequest, methodNotAllowed, ok, unauthorized } from 'next-basics';
import { WebsiteMetric, NextApiRequestQueryBody } from 'lib/types';
import { canViewWebsite } from 'lib/auth';
import { useAuth, useCors } from 'lib/middleware';
@@ -121,6 +121,8 @@ export default async (
return ok(res, data);
}
+
+ return badRequest(res);
}
return methodNotAllowed(res);
diff --git a/public/intl/messages/am-ET.json b/public/intl/messages/am-ET.json
index 8bb2babe..b82cdf36 100644
--- a/public/intl/messages/am-ET.json
+++ b/public/intl/messages/am-ET.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Passwords do not match."
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "You do not have any websites configured."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1288,43 +1326,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "You do not have any websites configured."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/ar-SA.json b/public/intl/messages/ar-SA.json
index 6ac6424c..b850db9b 100644
--- a/public/intl/messages/ar-SA.json
+++ b/public/intl/messages/ar-SA.json
@@ -1141,6 +1141,20 @@
"value": " حرف/أحرف"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "كلمة المرور غير متطابقة"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "هذه المجموعة ليس لديه اي موقع."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "لا يوجد مستخدمين."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "لم تقم بإعداد اي موقع."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "لم يتم العثور على المجموعة"
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "يمكن مشاهدة الموقع من اي عضو في المجموعة."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "هذه المجموعة ليس لديه اي موقع."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "لم تقم بإعداد اي موقع."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "يمكن مشاهدة الموقع من اي عضو في المجموعة."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/be-BY.json b/public/intl/messages/be-BY.json
index c426e182..9d17b700 100644
--- a/public/intl/messages/be-BY.json
+++ b/public/intl/messages/be-BY.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Паролі не супадаюць"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Вы не наладзілі ніводнага сайту."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Вы не наладзілі ніводнага сайту."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/bn-BD.json b/public/intl/messages/bn-BD.json
index 014a4d22..6e51b096 100644
--- a/public/intl/messages/bn-BD.json
+++ b/public/intl/messages/bn-BD.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "পাসওয়ার্ড মেলে না"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "কোনও ওয়েবসাইট কনফিগার করা নেই।"
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 0,
"value": " এর মধ্যে।"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "কোনও ওয়েবসাইট কনফিগার করা নেই।"
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/ca-ES.json b/public/intl/messages/ca-ES.json
index 962c6b88..6a3f0542 100644
--- a/public/intl/messages/ca-ES.json
+++ b/public/intl/messages/ca-ES.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Les contrasenyes no coincideixen"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "No hi ha cap lloc web configurat."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "No hi ha cap lloc web configurat."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/cs-CZ.json b/public/intl/messages/cs-CZ.json
index 18d2ef94..abfc225d 100644
--- a/public/intl/messages/cs-CZ.json
+++ b/public/intl/messages/cs-CZ.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Hesla se neschodují"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Nemáte nastavený žádný web."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Nemáte nastavený žádný web."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/da-DK.json b/public/intl/messages/da-DK.json
index fca7435f..e69d7036 100644
--- a/public/intl/messages/da-DK.json
+++ b/public/intl/messages/da-DK.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Adgangskoderne matcher ikke"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Du har ikke konfigureret nogen hjemmesider."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Du har ikke konfigureret nogen hjemmesider."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/de-CH.json b/public/intl/messages/de-CH.json
index ed120636..4a5fd0a2 100644
--- a/public/intl/messages/de-CH.json
+++ b/public/intl/messages/de-CH.json
@@ -1141,6 +1141,20 @@
"value": " Zeiche"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Passwörter stimmed ned überi"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "Dem Team sind kei Websiite zuegordnet."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "Da gits kei Benutzer"
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Es isch kei Websiite vorhande."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1221,6 +1253,12 @@
"value": "Team nöd gfunde."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websiite chönd vo jedem im Team agluegt werde"
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1266,43 +1304,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "Dem Team sind kei Websiite zuegordnet."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Es isch kei Websiite vorhande."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websiite chönd vo jedem im Team agluegt werde"
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/de-DE.json b/public/intl/messages/de-DE.json
index 198cbcac..ef34acd2 100644
--- a/public/intl/messages/de-DE.json
+++ b/public/intl/messages/de-DE.json
@@ -1141,6 +1141,20 @@
"value": " Zeichen"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Passwörter stimmen nicht überein"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "Keine Ergebnisse gefunden."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "Diesem Team sind keine Websites zugeordnet."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "Hier gibt es keine Benutzer."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Es ist keine Webseite vorhanden."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1221,6 +1253,12 @@
"value": "Team nicht gefunden."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Webseiten können von jedem im Team eingesehen werden."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1266,43 +1304,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "Keine Ergebnisse gefunden."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "Diesem Team sind keine Websites zugeordnet."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Es ist keine Webseite vorhanden."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Webseiten können von jedem im Team eingesehen werden."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/el-GR.json b/public/intl/messages/el-GR.json
index 24fa5429..26fdc535 100644
--- a/public/intl/messages/el-GR.json
+++ b/public/intl/messages/el-GR.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Οι κωδικοί πρόσβασης δεν ταιριάζουν"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Δεν έχετε ρυθμίσει κανένα ιστότοπο."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Δεν έχετε ρυθμίσει κανένα ιστότοπο."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/en-GB.json b/public/intl/messages/en-GB.json
index 2961d4fb..4194da83 100644
--- a/public/intl/messages/en-GB.json
+++ b/public/intl/messages/en-GB.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Passwords don't match"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "You don't have any websites configured."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "You don't have any websites configured."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/en-US.json b/public/intl/messages/en-US.json
index 818a4f76..929f61c9 100644
--- a/public/intl/messages/en-US.json
+++ b/public/intl/messages/en-US.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Passwords do not match."
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "You do not have any websites configured."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1221,6 +1253,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1280,43 +1318,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "You do not have any websites configured."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/es-ES.json b/public/intl/messages/es-ES.json
index 3660ff6d..6d528965 100644
--- a/public/intl/messages/es-ES.json
+++ b/public/intl/messages/es-ES.json
@@ -1141,6 +1141,20 @@
"value": " caracteres"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Las contraseñas no coinciden"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No se encontraron resultados."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "Este equipo no tiene ningún sitio web configurado."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "No hay usuarios."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "No tienes ningún sitio web configurado."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Equipo no encontrado."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Las analíticas de tus sitios web pueden ser vistas por cualquier miembro del equipo."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No se encontraron resultados."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "Este equipo no tiene ningún sitio web configurado."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "No tienes ningún sitio web configurado."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Las analíticas de tus sitios web pueden ser vistas por cualquier miembro del equipo."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/es-MX.json b/public/intl/messages/es-MX.json
index 5f06a936..6e2cf72b 100644
--- a/public/intl/messages/es-MX.json
+++ b/public/intl/messages/es-MX.json
@@ -1141,6 +1141,20 @@
"value": " caracteres"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Las contraseñas no coinciden"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "Este equipo no tiene ningún sitio web configurado."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "No hay usuarios."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "No tienes ningún sitio configurado."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Equipo no encontrado."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Las analíticas de tus sitios pueden verse por cualquier miembro del equipo."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "Este equipo no tiene ningún sitio web configurado."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "No tienes ningún sitio configurado."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Las analíticas de tus sitios pueden verse por cualquier miembro del equipo."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/fa-IR.json b/public/intl/messages/fa-IR.json
index 3843eb1c..8f2d9378 100644
--- a/public/intl/messages/fa-IR.json
+++ b/public/intl/messages/fa-IR.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "رمزها یکسان نیستند"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "شما هیچ وبسایتی را پیکربندی نکردهاید."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "شما هیچ وبسایتی را پیکربندی نکردهاید."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/fi-FI.json b/public/intl/messages/fi-FI.json
index 26cf989e..b78025f3 100644
--- a/public/intl/messages/fi-FI.json
+++ b/public/intl/messages/fi-FI.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Salasanat eivät täsmää"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Sinulla ei ole määritettyjä verkkosivustoja."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Sinulla ei ole määritettyjä verkkosivustoja."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/fo-FO.json b/public/intl/messages/fo-FO.json
index adc597e3..8b98376e 100644
--- a/public/intl/messages/fo-FO.json
+++ b/public/intl/messages/fo-FO.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Loyniorðini eru ikki eins"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Tú hevur ongar heimasíður stillaða til."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Tú hevur ongar heimasíður stillaða til."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/fr-FR.json b/public/intl/messages/fr-FR.json
index 8ad21616..992f4c70 100644
--- a/public/intl/messages/fr-FR.json
+++ b/public/intl/messages/fr-FR.json
@@ -1137,6 +1137,20 @@
"value": " caractères"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1155,6 +1169,18 @@
"value": "Les mots de passe ne correspondent pas"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "Aucun résultat n'a été trouvé."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "Cette équipe n'a aucun site."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1167,6 +1193,12 @@
"value": "Aucun utilisateur."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Vous n'avez pas configuré de site."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1217,6 +1249,12 @@
"value": "Équipe non trouvée."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Les sites peuvent être vus par tout utilisateur dans l'équipe."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1262,43 +1300,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "Aucun résultat n'a été trouvé."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "Cette équipe n'a aucun site."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Vous n'avez pas configuré de site."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Les sites peuvent être vus par tout utilisateur dans l'équipe."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/ga-ES.json b/public/intl/messages/ga-ES.json
index c7beacf6..6101da47 100644
--- a/public/intl/messages/ga-ES.json
+++ b/public/intl/messages/ga-ES.json
@@ -1149,6 +1149,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1167,6 +1181,18 @@
"value": "Non concordan os contrasinais"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1179,6 +1205,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Non tes sitios web configurados."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1237,6 +1269,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1282,43 +1320,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Non tes sitios web configurados."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/he-IL.json b/public/intl/messages/he-IL.json
index 1de3bdb2..7a5c063c 100644
--- a/public/intl/messages/he-IL.json
+++ b/public/intl/messages/he-IL.json
@@ -1133,6 +1133,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1151,6 +1165,18 @@
"value": "סיסמאות לא תואמות"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1163,6 +1189,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "לא מוגדרים אתרים"
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1217,6 +1249,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1262,43 +1300,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "לא מוגדרים אתרים"
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/hi-IN.json b/public/intl/messages/hi-IN.json
index 2a0ca4d2..04394385 100644
--- a/public/intl/messages/hi-IN.json
+++ b/public/intl/messages/hi-IN.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "पासवर्ड मेल नहीं खाते"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "आपके पास कोई वेबसाइट कॉन्फ़िगर नहीं है।"
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1266,43 +1304,5 @@
"type": 0,
"value": " यन्त्र पर"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "आपके पास कोई वेबसाइट कॉन्फ़िगर नहीं है।"
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/hr-HR.json b/public/intl/messages/hr-HR.json
index d6243b04..bfac159a 100644
--- a/public/intl/messages/hr-HR.json
+++ b/public/intl/messages/hr-HR.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Passwords do not match."
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "You do not have any websites configured."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1288,43 +1326,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "You do not have any websites configured."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/hu-HU.json b/public/intl/messages/hu-HU.json
index c1064112..2d12b05b 100644
--- a/public/intl/messages/hu-HU.json
+++ b/public/intl/messages/hu-HU.json
@@ -1145,6 +1145,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1163,6 +1177,18 @@
"value": "A jelszavak nem egyeznek"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1175,6 +1201,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Még nem állítottál be egyetlen weboldalt sem."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1278,43 +1316,5 @@
"type": 0,
"value": " böngészőből."
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Még nem állítottál be egyetlen weboldalt sem."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/id-ID.json b/public/intl/messages/id-ID.json
index 6f6f7ddb..9a8b5f41 100644
--- a/public/intl/messages/id-ID.json
+++ b/public/intl/messages/id-ID.json
@@ -1109,6 +1109,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1127,6 +1141,18 @@
"value": "Kata sandi tidak cocok"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1139,6 +1165,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Anda tidak memiliki situs web yang dikonfigurasi."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1197,6 +1229,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1242,43 +1280,5 @@
"type": 1,
"value": "os"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Anda tidak memiliki situs web yang dikonfigurasi."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/it-IT.json b/public/intl/messages/it-IT.json
index 22d17868..dcff2f88 100644
--- a/public/intl/messages/it-IT.json
+++ b/public/intl/messages/it-IT.json
@@ -1145,6 +1145,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1163,6 +1177,18 @@
"value": "Le password non corrispondono"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1175,6 +1201,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Non hai ancora configurato alcun sito."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1233,6 +1265,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1278,43 +1316,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Non hai ancora configurato alcun sito."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/ja-JP.json b/public/intl/messages/ja-JP.json
index 42913bc6..16b17513 100644
--- a/public/intl/messages/ja-JP.json
+++ b/public/intl/messages/ja-JP.json
@@ -1117,6 +1117,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1135,6 +1149,18 @@
"value": "パスワードが一致しません"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1147,6 +1173,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Webサイトが設定されていません。"
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1205,6 +1237,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1250,43 +1288,5 @@
"type": 0,
"value": "からの訪問者"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Webサイトが設定されていません。"
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/km-KH.json b/public/intl/messages/km-KH.json
index d0cacdd1..938c3df8 100644
--- a/public/intl/messages/km-KH.json
+++ b/public/intl/messages/km-KH.json
@@ -1113,6 +1113,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1131,6 +1145,18 @@
"value": "ពាក្យសម្ងាត់មិនត្រូវគ្នាទេ"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1143,6 +1169,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "អ្នកមិនទាន់បានដាក់គេហទំព័រណាមួយចូលទេ។"
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1201,6 +1233,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1246,43 +1284,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "អ្នកមិនទាន់បានដាក់គេហទំព័រណាមួយចូលទេ។"
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/ko-KR.json b/public/intl/messages/ko-KR.json
index 08d4482e..4c7b4f53 100644
--- a/public/intl/messages/ko-KR.json
+++ b/public/intl/messages/ko-KR.json
@@ -1117,6 +1117,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1135,6 +1149,18 @@
"value": "비밀번호가 일치하지 않음"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1147,6 +1173,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "구성된 웹 사이트가 없습니다."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1205,6 +1237,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1250,43 +1288,5 @@
"type": 0,
"value": "의 방문자"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "구성된 웹 사이트가 없습니다."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/lt-LT.json b/public/intl/messages/lt-LT.json
index 1330fa77..46e33666 100644
--- a/public/intl/messages/lt-LT.json
+++ b/public/intl/messages/lt-LT.json
@@ -1266,6 +1266,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1284,6 +1298,18 @@
"value": "Slaptažodžiai nesutampa"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1296,6 +1322,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Jūs nesate susikonfiguravę jokių svetainių."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1354,6 +1386,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1399,43 +1437,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Jūs nesate susikonfiguravę jokių svetainių."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/mn-MN.json b/public/intl/messages/mn-MN.json
index 401e929d..0c541031 100644
--- a/public/intl/messages/mn-MN.json
+++ b/public/intl/messages/mn-MN.json
@@ -1149,6 +1149,20 @@
"value": " тэмдэгт"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1167,6 +1181,18 @@
"value": "Нууц үг тохирохгүй байна."
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "Энэ багт ямар ч веб алга."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1179,6 +1205,12 @@
"value": "Хэрэглэгч байхгүй байна."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Та ямар нэгэн веб тохируулаагүй байна."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Баг олдсонгүй."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Вебийг багийн бүх гишүүд үзэж болно."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1288,43 +1326,5 @@
"type": 0,
"value": " хөтөч ашиглан орсон"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "Энэ багт ямар ч веб алга."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Та ямар нэгэн веб тохируулаагүй байна."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Вебийг багийн бүх гишүүд үзэж болно."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/ms-MY.json b/public/intl/messages/ms-MY.json
index 7a271728..1bbcf235 100644
--- a/public/intl/messages/ms-MY.json
+++ b/public/intl/messages/ms-MY.json
@@ -1133,6 +1133,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1151,6 +1165,18 @@
"value": "Kata laluan tidak sepadan"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1163,6 +1189,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Anda tidak ada sebarang laman web yang telah dikonfigurasikan."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1221,6 +1253,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1266,43 +1304,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Anda tidak ada sebarang laman web yang telah dikonfigurasikan."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/nb-NO.json b/public/intl/messages/nb-NO.json
index 6c4619b2..69d9c6dc 100644
--- a/public/intl/messages/nb-NO.json
+++ b/public/intl/messages/nb-NO.json
@@ -1145,6 +1145,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1163,6 +1177,18 @@
"value": "Passordene er ikke like"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1175,6 +1201,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Du har ikke satt opp noen nettsteder."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1233,6 +1265,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1278,43 +1316,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Du har ikke satt opp noen nettsteder."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/nl-NL.json b/public/intl/messages/nl-NL.json
index c8c7f93a..878dddfa 100644
--- a/public/intl/messages/nl-NL.json
+++ b/public/intl/messages/nl-NL.json
@@ -1141,6 +1141,20 @@
"value": " tekens"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Wachtwoorden komen niet overeen"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "Er zijn geen websites gekoppeld aan dit team."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "Er zijn geen gebruikers."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Je hebt geen websites ingesteld."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team niet gevonden."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites kunnen door iedereen in het team worden bekeken."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "Er zijn geen websites gekoppeld aan dit team."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Je hebt geen websites ingesteld."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites kunnen door iedereen in het team worden bekeken."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/pl-PL.json b/public/intl/messages/pl-PL.json
index adeb8f0d..e88b6a83 100644
--- a/public/intl/messages/pl-PL.json
+++ b/public/intl/messages/pl-PL.json
@@ -1141,6 +1141,20 @@
"value": " znaków"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Hasła się nie zgadzają"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "Nie znaleziono wyników."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "Ten zespół nie ma żadnych witryn internetowych."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "Nie ma żadnych użytkowników."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Nie masz skonfigurowanych żadnych witryn internetowych."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Nie znaleziono zespołu."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Strony internetowe mogą być przeglądane przez każdego członka zespołu."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "Nie znaleziono wyników."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "Ten zespół nie ma żadnych witryn internetowych."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Nie masz skonfigurowanych żadnych witryn internetowych."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Strony internetowe mogą być przeglądane przez każdego członka zespołu."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/pt-BR.json b/public/intl/messages/pt-BR.json
index cd9dd807..e3d7e33d 100644
--- a/public/intl/messages/pt-BR.json
+++ b/public/intl/messages/pt-BR.json
@@ -284,13 +284,13 @@
"label.field": [
{
"type": 0,
- "value": "Field"
+ "value": "Campo"
}
],
"label.fields": [
{
"type": 0,
- "value": "Fields"
+ "value": "Campos"
}
],
"label.filter-combined": [
@@ -308,7 +308,7 @@
"label.funnel": [
{
"type": 0,
- "value": "Funnel"
+ "value": "Funil"
}
],
"label.insights": [
@@ -568,7 +568,7 @@
"label.run-query": [
{
"type": 0,
- "value": "Run query"
+ "value": "Executar query"
}
],
"label.save": [
@@ -586,7 +586,7 @@
"label.select-date": [
{
"type": 0,
- "value": "Select date"
+ "value": "Selecionar data"
}
],
"label.select-website": [
@@ -772,7 +772,7 @@
"label.view-only": [
{
"type": 0,
- "value": "View only"
+ "value": "Somente visualização"
}
],
"label.views": [
@@ -808,7 +808,7 @@
"label.window": [
{
"type": 0,
- "value": "Window"
+ "value": "Janela"
}
],
"label.yesterday": [
@@ -820,7 +820,7 @@
"labels.after": [
{
"type": 0,
- "value": "After"
+ "value": "Depois"
}
],
"labels.average": [
@@ -832,7 +832,7 @@
"labels.before": [
{
"type": 0,
- "value": "Before"
+ "value": "Antes"
}
],
"labels.breakdown": [
@@ -850,13 +850,13 @@
"labels.create-report": [
{
"type": 0,
- "value": "Create report"
+ "value": "Criar relatório"
}
],
"labels.description": [
{
"type": 0,
- "value": "Description"
+ "value": "Descrição"
}
],
"labels.does-not-contain": [
@@ -892,25 +892,25 @@
"labels.greater-than": [
{
"type": 0,
- "value": "Greater than"
+ "value": "Maior que"
}
],
"labels.greater-than-equals": [
{
"type": 0,
- "value": "Greater than or equals"
+ "value": "Maior que ou igual"
}
],
"labels.less-than": [
{
"type": 0,
- "value": "Less than"
+ "value": "Menor que"
}
],
"labels.less-than-equals": [
{
"type": 0,
- "value": "Less than or equals"
+ "value": "Menor que ou igual"
}
],
"labels.max": [
@@ -958,25 +958,25 @@
"labels.type": [
{
"type": 0,
- "value": "Type"
+ "value": "Tipo"
}
],
"labels.unique": [
{
"type": 0,
- "value": "Unique"
+ "value": "Único"
}
],
"labels.untitled": [
{
"type": 0,
- "value": "Untitled"
+ "value": "Sem título"
}
],
"labels.value": [
{
"type": 0,
- "value": "Value"
+ "value": "Valor"
}
],
"message.active-users": [
@@ -1062,7 +1062,7 @@
"message.delete-account": [
{
"type": 0,
- "value": "To delete this account, type "
+ "value": "Para excluir esta conta, digite "
},
{
"type": 1,
@@ -1070,13 +1070,13 @@
},
{
"type": 0,
- "value": " in the box below to confirm."
+ "value": " na caixa abaixo para confirmar."
}
],
"message.delete-website": [
{
"type": 0,
- "value": "To delete this website, type "
+ "value": "Para excluir este website, digite "
},
{
"type": 1,
@@ -1084,7 +1084,7 @@
},
{
"type": 0,
- "value": " in the box below to confirm."
+ "value": " na caixa abaixo para confirmar."
}
],
"message.delete-website-warning": [
@@ -1145,6 +1145,20 @@
"value": " caracteres"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "Uma nova versão do Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " está disponível!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1154,7 +1168,7 @@
"message.no-event-data": [
{
"type": 0,
- "value": "No event data is available."
+ "value": "Nenhum dado de evento está disponível."
}
],
"message.no-match-password": [
@@ -1163,6 +1177,18 @@
"value": "As senhas não correspondem"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "Nenhum resultado foi encontrado."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "Este time não possui nenhum site."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1175,6 +1201,12 @@
"value": "Não há nenhum usuário."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Nenhum site foi configurado ainda."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1184,7 +1216,7 @@
"message.reset-website": [
{
"type": 0,
- "value": "To reset this website, type "
+ "value": "Para redefinir este site, digite "
},
{
"type": 1,
@@ -1192,7 +1224,7 @@
},
{
"type": 0,
- "value": " in the box below to confirm."
+ "value": " na caixa abaixo para confirmar."
}
],
"message.reset-website-warning": [
@@ -1233,6 +1265,12 @@
"value": "Time não encontrado."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Os sites podem ser visualizados por qualquer membro da equipe."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1278,43 +1316,5 @@
"type": 1,
"value": "os"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "Este time não possui nenhum site."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Nenhum site foi configurado ainda."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Os sites podem ser visualizados por qualquer membro da equipe."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/pt-PT.json b/public/intl/messages/pt-PT.json
index 27a6ea76..3120b272 100644
--- a/public/intl/messages/pt-PT.json
+++ b/public/intl/messages/pt-PT.json
@@ -1145,6 +1145,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1163,6 +1177,18 @@
"value": "As senhas não coincidem"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1175,6 +1201,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Não tens nenhum website configurado."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1233,6 +1265,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1278,43 +1316,5 @@
"type": 1,
"value": "os"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Não tens nenhum website configurado."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/ro-RO.json b/public/intl/messages/ro-RO.json
index f06648b5..0694cf52 100644
--- a/public/intl/messages/ro-RO.json
+++ b/public/intl/messages/ro-RO.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Parolele nu se potrivesc"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Nu aveți niciun site web configurat."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Nu aveți niciun site web configurat."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/ru-RU.json b/public/intl/messages/ru-RU.json
index c0ce9cd7..317fcbee 100644
--- a/public/intl/messages/ru-RU.json
+++ b/public/intl/messages/ru-RU.json
@@ -1109,6 +1109,20 @@
"value": " символов"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1127,6 +1141,18 @@
"value": "Пароли не совпадают"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "У этой команды нет ни одного сайта."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1139,6 +1165,12 @@
"value": "Нет пользователей."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "У вас нет настроенных сайтов."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1189,6 +1221,12 @@
"value": "Команда не найдена."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Сайты могут просматривать все члены команды."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1234,43 +1272,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "У этой команды нет ни одного сайта."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "У вас нет настроенных сайтов."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Сайты могут просматривать все члены команды."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/si-LK.json b/public/intl/messages/si-LK.json
index 2488f955..ccee2f6c 100644
--- a/public/intl/messages/si-LK.json
+++ b/public/intl/messages/si-LK.json
@@ -1133,6 +1133,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1151,6 +1165,18 @@
"value": "Passwords do not match."
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1163,6 +1189,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "You do not have any websites configured."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1221,6 +1253,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1280,43 +1318,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "You do not have any websites configured."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/sk-SK.json b/public/intl/messages/sk-SK.json
index d3fe02f6..9febb0ad 100644
--- a/public/intl/messages/sk-SK.json
+++ b/public/intl/messages/sk-SK.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Hesla se nezhodujú"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Nemáte nastavený žiadny web."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Nemáte nastavený žiadny web."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/sl-SI.json b/public/intl/messages/sl-SI.json
index 41039507..813a9c7f 100644
--- a/public/intl/messages/sl-SI.json
+++ b/public/intl/messages/sl-SI.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "Gesli se ne ujemata"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Ni nastavljenih spletnih mest."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Ni nastavljenih spletnih mest."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/sv-SE.json b/public/intl/messages/sv-SE.json
index 2ec8e86f..e55ae25a 100644
--- a/public/intl/messages/sv-SE.json
+++ b/public/intl/messages/sv-SE.json
@@ -1145,6 +1145,20 @@
"value": " tecken"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1163,6 +1177,18 @@
"value": "Lösenorden är inte samma"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "Det här teamet har inga webbsajter."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1175,6 +1201,12 @@
"value": "Det finns inga användare."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Du har inga webbsajter."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1233,6 +1265,12 @@
"value": "Team kan inte hittas."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websajter kan ses av alla i teamet."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1278,43 +1316,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "Det här teamet har inga webbsajter."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Du har inga webbsajter."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websajter kan ses av alla i teamet."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/ta-IN.json b/public/intl/messages/ta-IN.json
index b8ffde55..5afccd0e 100644
--- a/public/intl/messages/ta-IN.json
+++ b/public/intl/messages/ta-IN.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "இருக்கடவுச்சொல் பொருந்தவில்லை"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "உங்களிடம் எந்த வலைத்தளங்களும் கட்டமைக்கப்படவில்லை."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1225,6 +1257,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1270,43 +1308,5 @@
"type": 0,
"value": "லில் பயன்படுத்துகிறார்"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "உங்களிடம் எந்த வலைத்தளங்களும் கட்டமைக்கப்படவில்லை."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/th-TH.json b/public/intl/messages/th-TH.json
index d8d0e512..092c3fb8 100644
--- a/public/intl/messages/th-TH.json
+++ b/public/intl/messages/th-TH.json
@@ -1137,6 +1137,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1155,6 +1169,18 @@
"value": "รหัสผ่านไม่ตรงกัน"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1167,6 +1193,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "คุณยังไม่ได้ตั้งค่าเว็บไซต์ใด ๆ ไว้."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1225,6 +1257,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1270,43 +1308,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "คุณยังไม่ได้ตั้งค่าเว็บไซต์ใด ๆ ไว้."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/tr-TR.json b/public/intl/messages/tr-TR.json
index acba6bfc..6f5c6e3e 100644
--- a/public/intl/messages/tr-TR.json
+++ b/public/intl/messages/tr-TR.json
@@ -1113,6 +1113,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1131,6 +1145,18 @@
"value": "Parolalar uyuşmuyor"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1143,6 +1169,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Henüz hiç web sitesi tanımlamadınız"
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1197,6 +1229,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1242,43 +1280,5 @@
"type": 1,
"value": "browser"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Henüz hiç web sitesi tanımlamadınız"
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/uk-UA.json b/public/intl/messages/uk-UA.json
index 016c1595..5f54c972 100644
--- a/public/intl/messages/uk-UA.json
+++ b/public/intl/messages/uk-UA.json
@@ -1117,6 +1117,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1135,6 +1149,18 @@
"value": "Паролі не співпадають"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1147,6 +1173,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "У вас немає налаштованих сайтів."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1205,6 +1237,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1250,43 +1288,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "У вас немає налаштованих сайтів."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/ur-PK.json b/public/intl/messages/ur-PK.json
index 88d0a00d..adf1eb31 100644
--- a/public/intl/messages/ur-PK.json
+++ b/public/intl/messages/ur-PK.json
@@ -1141,6 +1141,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1159,6 +1173,18 @@
"value": "پاس ورڈز مماثل نہیں ہیں"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1171,6 +1197,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "آپ کے پاس کوئی ویب سائٹ کنفیگر نہیں ہے۔"
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1229,6 +1261,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1274,43 +1312,5 @@
"type": 0,
"value": " سے آنے والا"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "آپ کے پاس کوئی ویب سائٹ کنفیگر نہیں ہے۔"
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/vi-VN.json b/public/intl/messages/vi-VN.json
index ce01c397..d0b3b69b 100644
--- a/public/intl/messages/vi-VN.json
+++ b/public/intl/messages/vi-VN.json
@@ -1133,6 +1133,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1151,6 +1165,18 @@
"value": "Mật khẩu không đồng nhất"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1163,6 +1189,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "Bạn chưa có bất cứ website nào."
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1221,6 +1253,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1266,43 +1304,5 @@
"type": 1,
"value": "device"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "Bạn chưa có bất cứ website nào."
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/zh-CN.json b/public/intl/messages/zh-CN.json
index b6967d59..29a4ea1f 100644
--- a/public/intl/messages/zh-CN.json
+++ b/public/intl/messages/zh-CN.json
@@ -1125,6 +1125,20 @@
"value": " 个字符"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1143,6 +1157,18 @@
"value": "密码不一致"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "没有找到任何结果。"
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "这个团队没有任何网站。"
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1155,6 +1181,12 @@
"value": "没有任何用户。"
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "你还没有设置任何网站。"
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1213,6 +1245,12 @@
"value": "未找到团队。"
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "团队中的任何人都可查看网站。"
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1222,7 +1260,7 @@
"message.user-deleted": [
{
"type": 0,
- "value": "User detected."
+ "value": "User deleted."
}
],
"message.visitor-log": [
@@ -1262,43 +1300,5 @@
"type": 0,
"value": " 浏览器进行访问。"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "没有找到任何结果。"
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "这个团队没有任何网站。"
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "你还没有设置任何网站。"
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "团队中的任何人都可查看网站。"
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/public/intl/messages/zh-TW.json b/public/intl/messages/zh-TW.json
index 5438e66f..c51bd538 100644
--- a/public/intl/messages/zh-TW.json
+++ b/public/intl/messages/zh-TW.json
@@ -1121,6 +1121,20 @@
"value": " characters"
}
],
+ "message.new-version-available": [
+ {
+ "type": 0,
+ "value": "A new version of Umami "
+ },
+ {
+ "type": 1,
+ "value": "version"
+ },
+ {
+ "type": 0,
+ "value": " is available!"
+ }
+ ],
"message.no-data-available": [
{
"type": 0,
@@ -1139,6 +1153,18 @@
"value": "密碼不一致"
}
],
+ "message.no-results-found": [
+ {
+ "type": 0,
+ "value": "No results were found."
+ }
+ ],
+ "message.no-team-websites": [
+ {
+ "type": 0,
+ "value": "This team does not have any websites."
+ }
+ ],
"message.no-teams": [
{
"type": 0,
@@ -1151,6 +1177,12 @@
"value": "There are no users."
}
],
+ "message.no-websites-configured": [
+ {
+ "type": 0,
+ "value": "目前無任何網站設定。"
+ }
+ ],
"message.page-not-found": [
{
"type": 0,
@@ -1209,6 +1241,12 @@
"value": "Team not found."
}
],
+ "message.team-websites-info": [
+ {
+ "type": 0,
+ "value": "Websites can be viewed by anyone on the team."
+ }
+ ],
"message.tracking-code": [
{
"type": 0,
@@ -1258,43 +1296,5 @@
"type": 0,
"value": " 進行訪問。"
}
- ],
- "messages.no-results-found": [
- {
- "type": 0,
- "value": "No results were found."
- }
- ],
- "messages.no-team-websites": [
- {
- "type": 0,
- "value": "This team does not have any websites."
- }
- ],
- "messages.no-websites-configured": [
- {
- "type": 0,
- "value": "目前無任何網站設定。"
- }
- ],
- "messages.team-websites-info": [
- {
- "type": 0,
- "value": "Websites can be viewed by anyone on the team."
- }
- ],
- "new-version-available": [
- {
- "type": 0,
- "value": "A new version of Umami "
- },
- {
- "type": 1,
- "value": "version"
- },
- {
- "type": 0,
- "value": " is available!"
- }
]
}
diff --git a/queries/analytics/eventData/getEventDataEvents.ts b/queries/analytics/eventData/getEventDataEvents.ts
index 7a926eaf..634a28a2 100644
--- a/queries/analytics/eventData/getEventDataEvents.ts
+++ b/queries/analytics/eventData/getEventDataEvents.ts
@@ -27,7 +27,7 @@ async function relationalQuery(
) {
const { rawQuery } = prisma;
const website = await loadWebsite(websiteId);
- const { field, event } = filters;
+ const { event } = filters;
if (event) {
return rawQuery(
@@ -35,19 +35,19 @@ async function relationalQuery(
select
we.event_name as event,
ed.event_key as field,
+ ed.data_type as type,
ed.string_value as value,
- count(ed.*) as total
+ count(*) as total
from event_data as ed
inner join website_event as we
on we.event_id = ed.website_event_id
- where ed.website_id = {{websiteId:uuid}}
- and ed.event_key = {{field}}
+ where ed.website_id = {{websiteId::uuid}}
and ed.created_at between {{startDate}} and {{endDate}}
and we.event_name = {{event}}
- group by ed.event_key, ed.string_value
- order by 3 desc, 2 desc, 1 asc
+ group by we.event_name, ed.event_key, ed.data_type, ed.string_value
+ order by 1 asc, 2 asc, 3 asc, 4 desc
`,
- { ...filters, websiteId, startDate: maxDate(startDate, website.resetAt), endDate },
+ { websiteId, startDate: maxDate(startDate, website.resetAt), endDate, ...filters },
);
}
return rawQuery(
@@ -55,18 +55,18 @@ async function relationalQuery(
select
we.event_name as event,
ed.event_key as field,
- ed.string_value as value,
- count(ed.*) as total
+ ed.data_type as type,
+ count(*) as total
from event_data as ed
inner join website_event as we
on we.event_id = ed.website_event_id
where ed.website_id = {{websiteId::uuid}}
- and ed.event_key = {{field}}
and ed.created_at between {{startDate}} and {{endDate}}
- group by we.event_name, ed.event_key, ed.string_value
- order by 3 desc, 2 desc, 1 asc
+ group by we.event_name, ed.event_key, ed.data_type
+ order by 1 asc, 2 asc
+ limit 100
`,
- { websiteId, field, startDate: maxDate(startDate, website.resetAt), endDate },
+ { websiteId, startDate: maxDate(startDate, website.resetAt), endDate },
);
}
diff --git a/queries/analytics/events/getEventMetrics.ts b/queries/analytics/events/getEventMetrics.ts
index 11a5c690..e9754036 100644
--- a/queries/analytics/events/getEventMetrics.ts
+++ b/queries/analytics/events/getEventMetrics.ts
@@ -47,11 +47,11 @@ async function relationalQuery(websiteId: string, criteria: GetEventMetricsCrite
order by 2
`,
{
- ...filters,
websiteId,
startDate: maxDate(startDate, website.resetAt),
endDate,
eventType: EVENT_TYPE.customEvent,
+ ...filters,
},
);
}
diff --git a/queries/analytics/pageviews/getPageviewMetrics.ts b/queries/analytics/pageviews/getPageviewMetrics.ts
index 677de980..1032540b 100644
--- a/queries/analytics/pageviews/getPageviewMetrics.ts
+++ b/queries/analytics/pageviews/getPageviewMetrics.ts
@@ -39,6 +39,7 @@ async function relationalQuery(
startDate: maxDate(startDate, website.resetAt),
endDate,
eventType: column === 'event_name' ? EVENT_TYPE.customEvent : EVENT_TYPE.pageView,
+ ...filters,
};
let excludeDomain = '';
diff --git a/queries/analytics/pageviews/getPageviewStats.ts b/queries/analytics/pageviews/getPageviewStats.ts
index 31b0ebdd..f6d4158c 100644
--- a/queries/analytics/pageviews/getPageviewStats.ts
+++ b/queries/analytics/pageviews/getPageviewStats.ts
@@ -52,11 +52,11 @@ async function relationalQuery(websiteId: string, criteria: PageviewStatsCriteri
group by 1
`,
{
- ...filters,
websiteId,
startDate: maxDate(startDate, website.resetAt),
endDate,
eventType: EVENT_TYPE.pageView,
+ ...filters,
},
);
}
diff --git a/queries/analytics/sessions/getSessionMetrics.ts b/queries/analytics/sessions/getSessionMetrics.ts
index e037176b..aec2d8f1 100644
--- a/queries/analytics/sessions/getSessionMetrics.ts
+++ b/queries/analytics/sessions/getSessionMetrics.ts
@@ -42,7 +42,12 @@ async function relationalQuery(
group by 1
order by 2 desc
limit 100`,
- { ...filters, websiteId, startDate: maxDate(startDate, website.resetAt), endDate },
+ {
+ websiteId,
+ startDate: maxDate(startDate, website.resetAt),
+ endDate,
+ ...filters,
+ },
);
}
diff --git a/queries/analytics/stats/getWebsiteStats.ts b/queries/analytics/stats/getWebsiteStats.ts
index f44abafa..4d3730ee 100644
--- a/queries/analytics/stats/getWebsiteStats.ts
+++ b/queries/analytics/stats/getWebsiteStats.ts
@@ -51,11 +51,11 @@ async function relationalQuery(
) as t
`,
{
- ...filters,
websiteId,
startDate: maxDate(startDate, website.resetAt),
endDate,
eventType: EVENT_TYPE.pageView,
+ ...filters,
},
);
}