Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
dnlsilva committed Feb 21, 2024
1 parent bc9eb19 commit b59f389
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/organize_translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,19 @@ jobs:

- name: Get changed files
id: git-check
uses: tj-actions/changed-files@v42
with:
since_last_remote_commit: true
uses: tj-actions/changed-files@v42
with:
files: |
**.json
- name: List all changed files
if: steps.git-check.outputs.any_changed == 'true'
env:
ALL_CHANGED_FILES: ${{ steps.git-check.outputs.all_changed_files }}
run: |
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
- name: Commit and push if changes
if: steps.git-check.outputs.any_changed == 'true'
Expand Down
2 changes: 1 addition & 1 deletion app/i18n/locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@
"error-invalid-password": "La contraseña no es correcta",
"error-invalid-room-name": "No se puede asignar el nombre {{room_name}} a una sala.",
"error-not-allowed": "No permitido",
"unarchive": "desarchivar",
"error-too-many-requests": "Error, demasiadas peticiones. Debes esperar {{seconds}} segundos antes de continuar. Por favor, sé paciente.",
"error-you-are-last-owner": "Eres el único propietario existente. Debes establecer un nuevo propietario antes de abandonar la sala.",
"is_typing": "escribiendo",
Expand All @@ -285,7 +286,6 @@
"saving_profile": "guardando perfil",
"saving_settings": "guardando configuración",
"topic": "asunto",
"unarchive": "desarchivar",
"unmuted": "Desmuteado",
"unread_messages": "marcar como no leído",
"you": "",
Expand Down

0 comments on commit b59f389

Please sign in to comment.