Skip to content

Commit

Permalink
fix(#1057): rename translation key and update spanish translation
Browse files Browse the repository at this point in the history
  • Loading branch information
santiagoballadares committed Feb 17, 2025
1 parent 243e75c commit 7ec75ac
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-i18n/locales/de-DE.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export const deDE: KottiI18n.Messages = {
editColumns: 'Spalten ändern',
editFilters: 'Filter ändern',
endDate: 'Enddatum',
itemsPerPage: 'Einträge pro Seite',
lastMonth: 'Letzter Monat',
lastWeek: 'Letzte Woche',
lastYear: 'Letztes Jahr',
Expand All @@ -146,7 +147,6 @@ export const deDE: KottiI18n.Messages = {
moreThan: 'Mehr als',
resultsCounter:
'Kein Eintrag | {range} von {total} Eintrag | {range} von {total} Einträgen',
rowsPerPage: 'Einträge pro Seite',
search: 'Suche',
showAll: 'Alles anzeigen',
startDate: 'Startdatum',
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-i18n/locales/en-US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export const enUS: KottiI18n.Messages = {
editColumns: 'Edit Columns',
editFilters: 'Edit Filters',
endDate: 'End',
itemsPerPage: 'Items per page',
lastMonth: 'Last Month',
lastWeek: 'Last Week',
lastYear: 'Last Year',
Expand All @@ -146,7 +147,6 @@ export const enUS: KottiI18n.Messages = {
moreThan: 'More Than',
resultsCounter:
'No items | {range} of {total} item | {range} of {total} items',
rowsPerPage: 'Items per page',
search: 'Search',
showAll: 'Show All',
startDate: 'Start',
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-i18n/locales/es-ES.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export const esES: KottiI18n.Messages = {
editColumns: 'Editar columnas',
editFilters: 'Editar filtros',
endDate: 'Finalización',
itemsPerPage: 'Artículos por página',
lastMonth: 'Mes pasado',
lastWeek: 'Semana pasada',
lastYear: 'Año pasado',
Expand All @@ -146,7 +147,6 @@ export const esES: KottiI18n.Messages = {
moreThan: 'Más de',
resultsCounter:
'No hay artículos | {range} de {total} artículo | {range} de {total} artículos',
rowsPerPage: 'Filas por página',
search: 'Buscar',
showAll: 'Mostrar todo',
startDate: 'Inicio',
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-i18n/locales/fr-FR.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export const frFR: KottiI18n.Messages = {
editColumns: 'Edit Columns',
editFilters: 'Edit Filters',
endDate: 'End',
itemsPerPage: 'Items per page',
lastMonth: 'Last Month',
lastWeek: 'Last Week',
lastYear: 'Last Year',
Expand All @@ -146,7 +147,6 @@ export const frFR: KottiI18n.Messages = {
moreThan: 'More Than',
resultsCounter:
'No items | {range} of {total} item | {range} of {total} items',
rowsPerPage: 'Items per page',
search: 'Search',
showAll: 'Show All',
startDate: 'Start',
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-i18n/locales/ja-JP.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export const jaJP: KottiI18n.Messages = {
editColumns: 'Edit Columns',
editFilters: 'Edit Filters',
endDate: 'End',
itemsPerPage: 'Items per page',
lastMonth: 'Last Month',
lastWeek: 'Last Week',
lastYear: 'Last Year',
Expand All @@ -146,7 +147,6 @@ export const jaJP: KottiI18n.Messages = {
moreThan: 'More Than',
resultsCounter:
'No items | {range} of {total} item | {range} of {total} items',
rowsPerPage: 'Items per page',
search: 'Search',
showAll: 'Show All',
startDate: 'Start',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="table-page-size">
<span v-text="translations.rowsPerPage" />
<span v-text="translations.itemsPerPage" />
<KtFieldSingleSelect
class="table-page-size__selector"
dataTest="table-page-size-selector"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,14 +295,14 @@ export namespace KottiStandardTable {
editColumns: string
editFilters: string
endDate: string
itemsPerPage: string
lastMonth: string
lastWeek: string
lastYear: string
max: string
min: string
moreThan: string
resultsCounter: string
rowsPerPage: string
search: string
showAll: string
startDate: string
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/locales/input.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,14 @@
"editColumns": "Edit Columns",
"editFilters": "Edit Filters",
"endDate": "End",
"itemsPerPage": "Items per page",
"lastMonth": "Last Month",
"lastWeek": "Last Week",
"lastYear": "Last Year",
"max": "Max.",
"min": "Min.",
"moreThan": "More Than",
"resultsCounter": "No items | {range} of {total} item | {range} of {total} items",
"rowsPerPage": "Items per page",
"search": "Search",
"showAll": "Show All",
"startDate": "Start",
Expand Down

0 comments on commit 7ec75ac

Please sign in to comment.