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.
51 lines
4.2 KiB
SQL
51 lines
4.2 KiB
SQL
-- Inscriptions mobile - lecteur QR (liste) + scan dossard sur fiche
|
|
|
|
DELETE FROM info
|
|
WHERE info_prg = 'compte.php'
|
|
AND info_clef IN (
|
|
'inscr_gestion_qr_title',
|
|
'inscr_gestion_qr_hint',
|
|
'inscr_gestion_qr_invalid',
|
|
'inscr_gestion_qr_not_found',
|
|
'inscr_gestion_qr_wrong_event',
|
|
'inscr_gestion_qr_camera_error',
|
|
'inscr_gestion_bib_scan_btn',
|
|
'inscr_gestion_bib_scan_hint',
|
|
'inscr_gestion_bib_scan_ready',
|
|
'inscr_gestion_bib_scan_tap',
|
|
'inscr_gestion_bib_scan_scanning',
|
|
'inscr_gestion_bib_scan_loading',
|
|
'inscr_gestion_bib_scan_found',
|
|
'inscr_gestion_bib_scan_invalid'
|
|
);
|
|
|
|
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_qr_title', 'fr', 'Code QR - Lecteur de code QR', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_title', 'en', 'QR code - QR code reader', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_hint', 'fr', 'Pointez la camera vers le code QR du participant.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_hint', 'en', 'Point the camera at the participant''s QR code.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_invalid', 'fr', 'Code QR invalide ou introuvable.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_invalid', 'en', 'Invalid or unknown QR code.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_not_found', 'fr', 'Participant introuvable pour cet evenement.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_not_found', 'en', 'Participant not found for this event.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_wrong_event', 'fr', 'Ce code QR appartient a un autre evenement : %s', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_wrong_event', 'en', 'This QR code belongs to another event: %s', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_camera_error', 'fr', 'Impossible d''acceder a la camera.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_qr_camera_error', 'en', 'Unable to access the camera.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_btn', 'fr', 'Scanner le numero', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_btn', 'en', 'Scan number', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_hint', 'fr', 'Ouvrez la camera, cadrez le numero, puis touchez l''image pour lire.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_hint', 'en', 'Open the camera, frame the number, then tap the image to read.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_ready', 'fr', 'Cadrez le numero, puis touchez l''image', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_ready', 'en', 'Frame the number, then tap the image', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_tap', 'fr', 'Toucher pour lire', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_tap', 'en', 'Tap to read', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_scanning', 'fr', 'Lecture en cours...', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_scanning', 'en', 'Reading...', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_loading', 'fr', 'Initialisation (1re fois)...', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_loading', 'en', 'Initializing (first time)...', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_found', 'fr', 'Numero %s detecte - validez avec OK.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_found', 'en', 'Number %s detected - press OK.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_invalid', 'fr', 'Numero illisible. Cadrez un seul numero.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_bib_scan_invalid', 'en', 'Unreadable number. Frame a single number.', '', 'compte.php', '', 0, 1, '', '', '', NOW());
|