Skip to content

Commit

Permalink
Merge pull request #3018 from LiteFarmOrg/integration
Browse files Browse the repository at this point in the history
HOTFIX 3.5.1
  • Loading branch information
den4ik1203 authored Nov 29, 2023
2 parents 042b146 + 2789e04 commit 81b239c
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 15 deletions.
4 changes: 2 additions & 2 deletions packages/api/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "litefarm-api",
"version": "3.5.0",
"version": "3.5.1",
"description": "LiteFarm API server",
"main": "./api/src/server.js",
"type": "module",
Expand All @@ -11,7 +11,7 @@
"jest-w": "jest --watch",
"start": "set NODE_ENV=development&& node src/server.js",
"start:prod": "node src/server.js",
"nodemon": "set NODE_ENV=development && nodemon --inspect=0.0.0.0:9230 src/server.js",
"nodemon": "set NODE_ENV=development&& nodemon --inspect=0.0.0.0:9230 src/server.js",
"debug-email-template": "set NODE_ENV=development&& DEBUG=email-templates nodemon src/server.js",
"debug-i18n": "set NODE_ENV=development&& DEBUG=i18n:* nodemon src/server.js",
"production": "NODE_ENV=production node src/server.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "litefarm-webapp",
"version": "3.5.0",
"version": "3.5.1",
"description": "LiteFarm Web application",
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/webapp/public/locales/es/expense.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"CUSTOM_DESCRIPTION": "Todo lo demás. Considere crear un tipo de gasto personalizado si tendrá gastos similares a este en el futuro."
},
"UTILITIES": {
"EXPENSE_NAME": "Utilidades",
"EXPENSE_NAME": "Servicios básicos",
"CUSTOM_DESCRIPTION": "Gastos recurrentes relacionados a electricidad, gas, agua (incluyendo irrigación), recolección de residuos, y otros servicios periódicos."
},
"LABOUR": {
Expand All @@ -48,7 +48,7 @@
"CUSTOM_DESCRIPTION": "Gastos relacionados a mover ingresos, egresos y personas."
},
"SERVICES": {
"EXPENSE_NAME": "Servicios",
"EXPENSE_NAME": "Servicios especializados",
"CUSTOM_DESCRIPTION": "Gastos relacionados a otros servicios, como licenciamiento, certificación, soporte agronómico, testeo, marketing y otros."
}
}
4 changes: 2 additions & 2 deletions packages/webapp/public/locales/pt/expense.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"CUSTOM_DESCRIPTION": "Todo o resto. Considere criar um tipo de despesa personalizado se você tiver despesas adicionais como essa no futuro."
},
"UTILITIES": {
"EXPENSE_NAME": "Contas",
"EXPENSE_NAME": "Serviços básicos",
"CUSTOM_DESCRIPTION": "Despesas recorrentes relacionadas com eletricidade, gás, água (incluindo irrigação), coleta de lixo e outros serviços periódicos."
},
"LABOUR": {
Expand All @@ -48,7 +48,7 @@
"CUSTOM_DESCRIPTION": "Despesas relacionadas ao transporte de insumos, produtos e pessoas."
},
"SERVICES": {
"EXPENSE_NAME": "Serviços",
"EXPENSE_NAME": "Serviços especializados",
"CUSTOM_DESCRIPTION": "Despesas relacionadas com outros serviços como licenciamento, certificação, suporte técnico, testes, comercialização, entre outros."
}
}
4 changes: 2 additions & 2 deletions packages/webapp/public/locales/pt/message.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,15 +168,15 @@
"TASK": {
"ABANDON": {
"FAILED": "Erro ao completar tarefa",
"SUCCESS": "Tarefa concluída com sucesso"
"SUCCESS": "Tarefa abandonada com sucesso"
},
"COMPLETE": {
"FAILED": "Erro ao completar tarefa",
"SUCCESS": "Tarefa concluída com sucesso"
},
"CREATE": {
"FAILED": "Erro ao completar tarefa",
"SUCCESS": "Tarefa concluída com sucesso"
"SUCCESS": "Tarefa criada com sucesso"
},
"UPDATE": {
"FAILED": "Falha ao atualizar a tarefa"
Expand Down
3 changes: 1 addition & 2 deletions packages/webapp/src/components/Form/InputDuration/index.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import PropTypes from 'prop-types';
import { useEffect } from 'react';
import { addDaysToDate, getDateInputFormat } from '../../../util/moment';
import { getLocalizedDateString } from '../../RepeatCropPlan/utils';
import { addDaysToDate, getDateInputFormat, getLocalizedDateString } from '../../../util/moment';
import { Semibold } from '../../Typography';
import Input, { integerOnKeyDown } from '../Input';
import styles from './styles.module.scss';
Expand Down
2 changes: 1 addition & 1 deletion packages/webapp/src/containers/Finances/Report/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ const Report = () => {
<>
<Semibold className={styles.helpText}>{t('SALE.FINANCES.REPORT_HELP_TEXT')}</Semibold>
<div className={styles.dateFilterContainer}>
<Text>Date</Text>
<Text>{t('common:DATE')}</Text>
<FinanceDateRangeSelector
value={dateFilter}
onChange={(dateRange) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/webapp/src/util/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ export const DO_ORIGIN_URL = `https://${
export const DO_CDN_URL = `https://${
import.meta.env.VITE_DO_BUCKET_NAME
}.nyc3.cdn.digitaloceanspaces.com`;
export const APP_VERSION = '3.5.0';
export const APP_VERSION = '3.5.1';

0 comments on commit 81b239c

Please sign in to comment.