28 lines
2.0 KiB
SQL
28 lines
2.0 KiB
SQL
-- MSIN-4532 — Saisie rapide : ajouter un participant (hors inscription en ligne)
|
|
-- Contexte : Info compte.php (libellés panneau Ajouter)
|
|
-- Notes : exécution UNIQUEMENT sur dev préprod ; autres env = Navicat structure + sync_static_db
|
|
|
|
SET NAMES utf8mb4;
|
|
|
|
DELETE FROM info
|
|
WHERE info_prg = 'compte.php'
|
|
AND info_clef IN (
|
|
'inscr_gestion_hors_tx_create_title',
|
|
'inscr_gestion_hors_tx_create_submit',
|
|
'inscr_gestion_hors_tx_create_err_epreuve',
|
|
'inscr_gestion_hors_tx_create_err_prenom',
|
|
'inscr_gestion_hors_tx_create_no_epreuve'
|
|
);
|
|
|
|
INSERT INTO info (info_clef, info_langue, info_texte, info_aide, info_prg, info_description, info_trie, info_actif, info_option1, info_option2, info_option3, info_creation) VALUES
|
|
('inscr_gestion_hors_tx_create_title', 'fr', 'Ajouter un participant', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_hors_tx_create_title', 'en', 'Add a participant', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_hors_tx_create_submit', 'fr', 'Créer', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_hors_tx_create_submit', 'en', 'Create', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_hors_tx_create_err_epreuve', 'fr', 'Choisissez une épreuve.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_hors_tx_create_err_epreuve', 'en', 'Choose a distance.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_hors_tx_create_err_prenom', 'fr', 'Le prénom est obligatoire.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_hors_tx_create_err_prenom', 'en', 'First name is required.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_hors_tx_create_no_epreuve', 'fr', 'Aucune épreuve active : impossible d''ajouter un participant.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_hors_tx_create_no_epreuve', 'en', 'No active distance: cannot add a participant.', '', 'compte.php', '', 0, 1, '', '', '', NOW());
|