mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
Label Incrementions and pt-BR update
This commit is contained in:
parent
689bb94898
commit
1b44c5f826
@ -24,16 +24,16 @@ function EventDataButton({ websiteId }) {
|
|||||||
<>
|
<>
|
||||||
<Button
|
<Button
|
||||||
icon={<List />}
|
icon={<List />}
|
||||||
tooltip={<FormattedMessage id="label.event-data" defaultMessage="Event" />}
|
tooltip={<FormattedMessage id="label.event" defaultMessage="Event" />}
|
||||||
tooltipId="button-event"
|
tooltipId="button-event"
|
||||||
size="small"
|
size="small"
|
||||||
onClick={handleClick}
|
onClick={handleClick}
|
||||||
className={styles.button}
|
className={styles.button}
|
||||||
>
|
>
|
||||||
Event Data
|
<FormattedMessage id="label.event-data" defaultMessage="Event Data" />
|
||||||
</Button>
|
</Button>
|
||||||
{showEventData && (
|
{showEventData && (
|
||||||
<Modal title={<FormattedMessage id="label.event-data" defaultMessage="Query Event Data" />}>
|
<Modal title={<FormattedMessage id="label.query-event-data" defaultMessage="Query Event Data" />}>
|
||||||
<EventDataForm websiteId={websiteId} onClose={handleClose} />
|
<EventDataForm websiteId={websiteId} onClose={handleClose} />
|
||||||
</Modal>
|
</Modal>
|
||||||
)}
|
)}
|
||||||
|
@ -246,7 +246,7 @@ export default function EventDataForm({ websiteId, onClose, className }) {
|
|||||||
</FormLayout>
|
</FormLayout>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<DataTable className={styles.table} data={data} title="Results" showPercentage={false} />
|
<DataTable className={styles.table} data={data} title={<FormattedMessage id="label.results" defaultMessage="Results" />} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<FormButtons>
|
<FormButtons>
|
||||||
|
@ -117,7 +117,7 @@ export default function WebsiteEditForm({ values, onSave, onClose }) {
|
|||||||
<Field
|
<Field
|
||||||
name="domain"
|
name="domain"
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="example.com"
|
placeholder={<FormattedMessage id="label.example" defaultMessage="example.com" />}
|
||||||
spellCheck="false"
|
spellCheck="false"
|
||||||
autoCapitalize="off"
|
autoCapitalize="off"
|
||||||
autoCorrect="off"
|
autoCorrect="off"
|
||||||
|
@ -337,6 +337,12 @@
|
|||||||
"value": "Tema"
|
"value": "Tema"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"label.yesterday": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Ontem"
|
||||||
|
}
|
||||||
|
],
|
||||||
"label.this-month": [
|
"label.this-month": [
|
||||||
{
|
{
|
||||||
"type": 0,
|
"type": 0,
|
||||||
@ -397,6 +403,66 @@
|
|||||||
"value": "Sites"
|
"value": "Sites"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"label.event": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Evento"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"label.event-data": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Dados de evento"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"label.query-event-data": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Consultar dados do evento"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"label.search": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Buscar"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"label.results": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Resultados"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"label.add-filter": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Adicionar filtro"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"label.value": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Valor"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"label.field-name": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Nome do campo"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"label.add-column": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Adicionar coluna"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"label.label.type": [
|
||||||
|
{
|
||||||
|
"type": 0,
|
||||||
|
"value": "Tipo"
|
||||||
|
}
|
||||||
|
],
|
||||||
"message.active-users": [
|
"message.active-users": [
|
||||||
{
|
{
|
||||||
"type": 1,
|
"type": 1,
|
||||||
@ -478,7 +544,7 @@
|
|||||||
"message.edit-dashboard": [
|
"message.edit-dashboard": [
|
||||||
{
|
{
|
||||||
"type": 0,
|
"type": 0,
|
||||||
"value": "Edit dashboard"
|
"value": "Editar painel"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"message.failure": [
|
"message.failure": [
|
||||||
@ -774,7 +840,7 @@
|
|||||||
"metrics.query-parameters": [
|
"metrics.query-parameters": [
|
||||||
{
|
{
|
||||||
"type": 0,
|
"type": 0,
|
||||||
"value": "Query parameters"
|
"value": "Parâmetros de Consulta"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"metrics.referrers": [
|
"metrics.referrers": [
|
||||||
@ -786,7 +852,7 @@
|
|||||||
"metrics.screens": [
|
"metrics.screens": [
|
||||||
{
|
{
|
||||||
"type": 0,
|
"type": 0,
|
||||||
"value": "Screens"
|
"value": "Telas"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"metrics.unique-visitors": [
|
"metrics.unique-visitors": [
|
||||||
|
Loading…
Reference in New Issue
Block a user