This commit replaces references to mobile inscriptions with gestion inscriptions across multiple SQL files. It includes the addition of new button labels, search prompts, and QR code handling for the gestion interface, ensuring a consistent user experience. The changes enhance the overall structure and maintainability of the event management system while providing clearer instructions and improved functionality for users.
19 lines
1.2 KiB
SQL
19 lines
1.2 KiB
SQL
-- Inscriptions mobile — libellés revamp visuel (Gestion, Détails)
|
|
|
|
DELETE FROM info WHERE info_clef IN (
|
|
'inscr_gestion_section_management',
|
|
'inscr_gestion_epreuve',
|
|
'inscr_gestion_type',
|
|
'inscr_gestion_remboursement'
|
|
) AND info_prg = 'compte.php';
|
|
|
|
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_section_management', 'fr', 'Gestion', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_section_management', 'en', 'Management', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_epreuve', 'fr', 'Épreuve', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_epreuve', 'en', 'Race', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_type', 'fr', 'Type', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_type', 'en', 'Type', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_remboursement', 'fr', 'Remboursement', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_remboursement', 'en', 'Refund', '', 'compte.php', '', 0, 1, '', '', '', NOW());
|