mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-31 20:52:21 +01:00
Merge branch 'dev' for release 5.4.3
This commit is contained in:
commit
ab0df4e15c
@ -2,6 +2,12 @@
|
||||
|
||||
## next deploy
|
||||
|
||||
## v5.4.3 2022 June 6
|
||||
|
||||
- Updated translations
|
||||
- Fix a bug: deprecated bundler arguments (#362)
|
||||
- Fix a bug: unable to compile the assets when OIDC is enabled but the scopes were not set
|
||||
|
||||
## v5.4.2 2022 June 1
|
||||
|
||||
- Updated react-select to 5.3.2
|
||||
|
@ -46,7 +46,7 @@ RUN bundle config --global frozen 1
|
||||
WORKDIR /tmp
|
||||
COPY Gemfile /tmp/
|
||||
COPY Gemfile.lock /tmp/
|
||||
RUN bundle install --binstubs --without development test doc
|
||||
RUN bundle config set --local without 'development test doc' && bundle install && bundle binstubs --all
|
||||
|
||||
# Install Javascript packages
|
||||
WORKDIR /usr/src/app
|
||||
|
@ -18,7 +18,7 @@ class OpenIdConnectProvider < ApplicationRecord
|
||||
validates :client_auth_method, inclusion: { in: %w[basic jwks] }
|
||||
|
||||
def scope
|
||||
self[:scope].join(' ')
|
||||
self[:scope]&.join(' ')
|
||||
end
|
||||
|
||||
def config
|
||||
|
@ -995,7 +995,7 @@ fr:
|
||||
my_documents: "Mes documents"
|
||||
my_documents_info: "Suite à la déclaration de votre profil, vous devez déclarer des justificatifs. Une fois déposés, ces documents vont être vérifiés par l'administrateur."
|
||||
proof_of_identity_file_size_error: "La limite de poids est de {SIZE} Mo max"
|
||||
my_documents_alert: "Attention !</br>Vous pouvez déposer vos documents en pdf ou en image (jpg) sous une limit de poids de {SIZE} Mo max"
|
||||
my_documents_alert: "Attention !</br>Vous pouvez déposer vos documents en pdf ou en image (.jpg) sous une limite de poids de {SIZE} Mo max"
|
||||
proof_of_identity_files: "Justificatifs"
|
||||
find_below_the_proof_of_identity_files: "Retrouvez ci-dessous, les justificatifs déposés par le membre."
|
||||
save: "Enregistrer"
|
||||
|
@ -527,3 +527,5 @@ de:
|
||||
payzen_card_update_modal:
|
||||
update_card: "Karte aktualisieren"
|
||||
validate_button: "Neue Karte validieren"
|
||||
form_multi_select:
|
||||
create_label: "Add {VALUE}"
|
||||
|
@ -527,3 +527,5 @@ es:
|
||||
payzen_card_update_modal:
|
||||
update_card: "Update the card"
|
||||
validate_button: "Validate the new card"
|
||||
form_multi_select:
|
||||
create_label: "Add {VALUE}"
|
||||
|
@ -527,3 +527,5 @@ fr:
|
||||
payzen_card_update_modal:
|
||||
update_card: "Mettre à jour la carte"
|
||||
validate_button: "Valider la nouvelle carte"
|
||||
form_multi_select:
|
||||
create_label: "Ajouter {VALUE}"
|
||||
|
@ -527,3 +527,5 @@
|
||||
payzen_card_update_modal:
|
||||
update_card: "Oppdater kortet"
|
||||
validate_button: "Valider det nye kortet"
|
||||
form_multi_select:
|
||||
create_label: "Add {VALUE}"
|
||||
|
@ -527,3 +527,5 @@ pt:
|
||||
payzen_card_update_modal:
|
||||
update_card: "Atualizar o cartão"
|
||||
validate_button: "Verificar o novo cartão"
|
||||
form_multi_select:
|
||||
create_label: "Add {VALUE}"
|
||||
|
@ -527,3 +527,5 @@ zu:
|
||||
payzen_card_update_modal:
|
||||
update_card: "crwdns21512:0crwdne21512:0"
|
||||
validate_button: "crwdns21514:0crwdne21514:0"
|
||||
form_multi_select:
|
||||
create_label: "crwdns23124:0{VALUE}crwdne23124:0"
|
||||
|
@ -346,7 +346,7 @@ fr:
|
||||
date: "Ceci est un rappel pour vérifier que le prélèvement bancaire a bien été effectué."
|
||||
confirm: "Veuillez confirmer la réception des fonds dans votre interface de gestion des échéanciers de paiement, afin que la facture correspondante soit générée."
|
||||
notify_admin_user_proof_of_identity_files_created:
|
||||
subject: "Justufucatif téléversé par un membre"
|
||||
subject: "Justificatif téléversé par un membre"
|
||||
body:
|
||||
proof_of_identity_files_uploaded_below: "Le membre %{NAME} a téléversé le justificatif suivant :"
|
||||
validate_user: "Veuillez valider ce compte"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "fab-manager",
|
||||
"version": "5.4.2",
|
||||
"version": "5.4.3",
|
||||
"description": "Fab-manager is the FabLab management solution. It provides a comprehensive, web-based, open-source tool to simplify your administrative tasks and your marker's projects.",
|
||||
"keywords": [
|
||||
"fablab",
|
||||
|
Loading…
x
Reference in New Issue
Block a user