@getodk/web-forms 0.23.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +353 -3
- package/dist/ActionsInfoDialog-B8AZQOuY.js +44 -0
- package/dist/CanvasBlock-DWoXGSW9.js +1171 -0
- package/dist/{MapBlock-PuSKnmfD.js → MapBlock-BTX9u64V.js} +4764 -4807
- package/dist/index-Cg9qvMI9.js +68551 -0
- package/dist/index.js +2 -2
- package/dist/strings_es-C8xkQaZj.js +127 -0
- package/dist/strings_fr-C0vLmCzP.js +127 -0
- package/dist/strings_id-BE0G3I_d.js +127 -0
- package/dist/vue-konva-D0sZ6RWk.js +7890 -0
- package/package.json +23 -19
- package/dist/index-BYKrQSL_.js +0 -47556
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
"form_load_failure_dialog.header.title": { string: "Ocurrió un error al cargar este formulario", developer_comment: "The title text shown in the header of the dialog." },
|
|
3
|
+
"form_load_failure_dialog.details.label": { string: "Detalles técnicos del error", developer_comment: "The label for the clickable summary that reveals technical error information." },
|
|
4
|
+
"odk_web_forms.submit.label": { string: "Enviar", developer_comment: "Label for the primary form submission button." },
|
|
5
|
+
"odk_web_forms.validation.error": { string: "{count, plural, one {# pregunta con error} many {# preguntas con errores} other {# preguntas con errores}}", developer_comment: "Error banner message. {count} is the number of validation violations." },
|
|
6
|
+
"odk_web_forms.geolocation.error": { string: "Ubicación no disponible. Active el GPS y los permisos del navegador, luego reinicie el formulario para intentarlo de nuevo.", developer_comment: "Error message shown when background geolocation fails." },
|
|
7
|
+
"odk_web_forms.delete.label": { string: "Eliminar", developer_comment: "Generic label for a delete action button." },
|
|
8
|
+
"odk_web_forms.cancel.label": { string: "Cancelar", developer_comment: "Generic label for a cancel action button." },
|
|
9
|
+
"odk_web_forms.remove.label": { string: "Quitar", developer_comment: "Generic label for a remove action button." },
|
|
10
|
+
"odk_web_forms.save.label": { string: "Guardar", developer_comment: "Generic label for a save action button." },
|
|
11
|
+
"common_actions.open_full_screen.description": { string: "Expandir a pantalla completa", developer_comment: "Aria-label/description for the control button that expands the view to full screen. Shared across the canvas and map components." },
|
|
12
|
+
"common_actions.close_full_screen.description": { string: "Salir de la pantalla completa", developer_comment: "Aria-label/description for the control button that exits full-screen mode. Shared across the canvas and map components." },
|
|
13
|
+
"common_actions.zoom_in.description": { string: "Acercar", developer_comment: "Aria-label/description for the control button that zooms in. Shared across the canvas and map components." },
|
|
14
|
+
"common_actions.zoom_out.description": { string: "Alejar", developer_comment: "Aria-label/description for the control button that zooms out. Shared across the canvas and map components." },
|
|
15
|
+
"common_actions.undo.description": { string: "Deshacer la última acción", developer_comment: "Aria-label/description for the control button that undoes the last action. Shared across the canvas and map components." },
|
|
16
|
+
"common_actions.open_info.description": { string: "Mostrar información sobre las acciones", developer_comment: "Aria-label/description for the control button that opens the info dialog listing available actions. Shared across the canvas and map components." },
|
|
17
|
+
"common_actions.info_dialog.title": { string: "Cómo usar esta herramienta", developer_comment: "Title shown in the header of the dialog that explains the available actions. Shared across the canvas and map components." },
|
|
18
|
+
"geolocation_formatted_value.accuracy.label": { string: "Precisión: {accuracy} m,", developer_comment: "Displays the GPS accuracy in metres. {accuracy} is the numeric accuracy value." },
|
|
19
|
+
"geolocation_formatted_value.latitude.label": { string: "Latitud: {latitude},", developer_comment: "Displays the GPS latitude coordinate. {latitude} is the numeric latitude value." },
|
|
20
|
+
"geolocation_formatted_value.longitude.label": { string: "Longitud: {longitude}.", developer_comment: "Displays the GPS longitude coordinate. {longitude} is the numeric longitude value." },
|
|
21
|
+
"searchable_dropdown.select.placeholder": { string: "Seleccione la respuesta", developer_comment: "Placeholder text shown in a minimal select dropdown when no option has been selected yet." },
|
|
22
|
+
"validation_message.required.error": { string: "Este campo es obligatorio.", developer_comment: "Default error shown when a required field has no value and the form designer did not specify a custom message." },
|
|
23
|
+
"validation_message.constraint.error": { string: "Este campo no cumple los requisitos.", developer_comment: "Default error shown when a field's value fails a constraint and the form designer did not specify a custom message." },
|
|
24
|
+
"canvas_async.load_error.message": { string: "No se pudo cargar el lienzo", developer_comment: "Error message shown when the canvas component fails to load." },
|
|
25
|
+
"canvas_controls.exit_after_save.description": { string: "Salir de la pantalla completa, cambios guardados", developer_comment: "Explains the canvas control button that exits full-screen mode after autosave has captured the user's drawing." },
|
|
26
|
+
"canvas_controls.color_picker.description": { string: "Elegir un color", developer_comment: "Explains the canvas control button that opens the color picker." },
|
|
27
|
+
"canvas_controls.pan.description": { string: "Alternar el modo de desplazamiento", developer_comment: "Explains the canvas control button that activates or deactivates pan mode. When active, dragging moves the canvas instead of drawing." },
|
|
28
|
+
"canvas_controls.clear_all.description": { string: "Eliminar todos los trazos", developer_comment: "Explains the canvas control button that removes all drawn strokes." },
|
|
29
|
+
"canvas_block.loading_image.message": { string: "Cargando imagen...", developer_comment: "Status text shown while the background image is loading in the canvas." },
|
|
30
|
+
"canvas_block.load_image.error": { string: "Error al cargar la imagen.", developer_comment: "Error message shown when the background image fails to load in the canvas." },
|
|
31
|
+
"canvas_block.draw_instruction.message": { string: "Comience a dibujar aquí", developer_comment: "Instruction message shown in draw mode before the user has made any strokes." },
|
|
32
|
+
"map_async.load_error.message": { string: "No se puede cargar el mapa", developer_comment: "Error message shown when the map component fails to load." },
|
|
33
|
+
"map_block.graphics_error.title": { string: "Se detectó un problema de gráficos", developer_comment: "Title of the error shown when the browser cannot render the map due to WebGL being unavailable." },
|
|
34
|
+
"map_block.graphics_error.message": { string: "Su navegador no puede mostrar el mapa en este momento. Active la configuración de aceleración de gráficos.", developer_comment: "Description of the WebGL error, instructing the user to enable hardware acceleration in their browser." },
|
|
35
|
+
"map_block.location_error.title": { string: "No se puede acceder a la ubicación", developer_comment: "Title of the error shown in the map when the browser denies geolocation permission." },
|
|
36
|
+
"map_block.location_error.message": { string: "Otorgue permisos de ubicación en la configuración del navegador y asegúrese de que la ubicación esté activada.", developer_comment: "Description of what the user should do to resolve a geolocation access error in the map." },
|
|
37
|
+
"map_block.get_location.label": { string: "Obtener ubicación", developer_comment: "Label for the button in the map overlay that starts watching the device's GPS location." },
|
|
38
|
+
"map_block.drag_vertex_instruction.placed": { string: "Presione y arrastre para mover un punto", developer_comment: "Instruction shown on the map when a point has been placed and the user can drag points and vertices." },
|
|
39
|
+
"map_block.drag_vertex_instruction.default": { string: "Presione para colocar un punto", developer_comment: "Instruction shown on the map before a point is placed, when the user can drag points and vertices." },
|
|
40
|
+
"map_block.drag_instruction.placed": { string: "Presione para mover el punto", developer_comment: "Instruction shown on the map when a point has been placed and the user can drag the feature." },
|
|
41
|
+
"map_block.drag_instruction.default": { string: "Use el botón de ubicación para centrar el mapa en su posición actual", developer_comment: "Instruction shown on the map before a point is placed, when the user can drag the feature." },
|
|
42
|
+
"map_confirm_dialog.delete_shape.header": { string: "¿Eliminar todo el polígono?", developer_comment: "Title of the confirmation dialog shown before deleting a shape." },
|
|
43
|
+
"map_confirm_dialog.delete_trace.header": { string: "¿Eliminar toda la linea?", developer_comment: "Title of the confirmation dialog shown before deleting a trace." },
|
|
44
|
+
"map_confirm_dialog.delete_shape.body": { string: "¿Está seguro de que desea eliminar todo el polígono y comenzar de nuevo?", developer_comment: "Body text of the confirmation dialog shown before deleting a shape." },
|
|
45
|
+
"map_confirm_dialog.delete_trace.body": { string: "¿Está seguro de que desea eliminar toda la linea y comenzar de nuevo?", developer_comment: "Body text of the confirmation dialog shown before deleting a trace." },
|
|
46
|
+
"map_advanced_panel.longitude.label": { string: "Longitud", developer_comment: "Label for the longitude input field in the advanced panel." },
|
|
47
|
+
"map_advanced_panel.longitude.error": { string: "La longitud no es válida", developer_comment: "Validation error shown when the longitude value entered is out of range." },
|
|
48
|
+
"map_advanced_panel.latitude.label": { string: "Latitud", developer_comment: "Label for the latitude input field in the advanced panel." },
|
|
49
|
+
"map_advanced_panel.latitude.error": { string: "La latitud no es válida", developer_comment: "Validation error shown when the latitude value entered is out of range." },
|
|
50
|
+
"map_advanced_panel.altitude.label": { string: "Altitud", developer_comment: "Label for the altitude input field in the advanced panel." },
|
|
51
|
+
"map_advanced_panel.accuracy.label": { string: "Precisión", developer_comment: "Label for the accuracy input field in the advanced panel." },
|
|
52
|
+
"map_advanced_panel.import_data.label": { string: "Importar datos para reemplazar ubicación", developer_comment: "Label for the link that opens the import/paste dialog from the advanced panel." },
|
|
53
|
+
"map_controls.zoom_fit_all.description": { string: "Mostrar todos los elementos en el mapa", developer_comment: "Aria-label for the map control button that zooms to fit all features in view." },
|
|
54
|
+
"map_controls.current_location.description": { string: "Encuentre su ubicación", developer_comment: "Aria-label for the map control button that centers the map on the device's current GPS location." },
|
|
55
|
+
"map_controls.delete.description": { string: "Eliminar un vértice o todos los vértices", developer_comment: "Aria-label for the map control button that deletes the selected vertex or all vertices." },
|
|
56
|
+
"map_controls.open_advanced.description": { string: "Ediciones avanzadas manuales", developer_comment: "Aria-label for the map control button that opens the advanced coordinate editing panel." },
|
|
57
|
+
"map_properties.remove_selection.label": { string: "Quitar selección", developer_comment: "Label for the button that removes the currently saved feature selection." },
|
|
58
|
+
"map_properties.save_selected.label": { string: "Guardar selección", developer_comment: "Label for the button that saves the currently selected map feature." },
|
|
59
|
+
"map_status_bar.no_trace_saved.label": { string: "Ninguna linea guardada", developer_comment: "Status bar message shown when no trace (linestring) has been saved yet." },
|
|
60
|
+
"map_status_bar.no_shape_saved.label": { string: "Ningún polígono guardado", developer_comment: "Status bar message shown when no shape (polygon) has been saved yet." },
|
|
61
|
+
"map_status_bar.no_point_saved.label": { string: "Ningún punto guardado", developer_comment: "Status bar message shown when no point has been saved yet." },
|
|
62
|
+
"map_status_bar.point_saved.label": { string: "Punto guardado", developer_comment: "Status bar message shown when a point has been saved." },
|
|
63
|
+
"map_status_bar.trace_saved.label": { string: "Linea guardada", developer_comment: "Status bar message shown when a trace (linestring) has been saved." },
|
|
64
|
+
"map_status_bar.shape_saved.label": { string: "Polígono guardado", developer_comment: "Status bar message shown when a shape (polygon) has been saved." },
|
|
65
|
+
"map_status_bar.feature_saved.label": { string: "Elemento guardado", developer_comment: "Fallback status bar message shown when a feature of an unrecognised geometry type has been saved." },
|
|
66
|
+
"map_status_bar.points_saved.label": { string: "{count} puntos guardados", developer_comment: "Status bar message showing how many points have been saved. {count} is the number of saved points." },
|
|
67
|
+
"map_status_bar.capturing.label": { string: "Obteniendo ubicación...", developer_comment: "Status bar message shown while the device is actively capturing a GPS location." },
|
|
68
|
+
"map_status_bar.remove_point.label": { string: "Eliminar punto", developer_comment: "Full label for the remove button shown on larger screens in the map status bar." },
|
|
69
|
+
"map_status_bar.view_details.label": { string: "Ver detalles", developer_comment: "Label for the button that opens the feature properties panel." },
|
|
70
|
+
"map_status_bar.advanced.label": { string: "Avanzado", developer_comment: "Label for the button that opens the advanced coordinate editing panel." },
|
|
71
|
+
"map_status_bar.vertex_longitude.label": { string: "Longitud: {longitude}", developer_comment: "Longitude component of the selected vertex info shown in the map status bar. {longitude} is the numeric longitude value." },
|
|
72
|
+
"map_status_bar.vertex_latitude.label": { string: "Latitud: {latitude}", developer_comment: "Latitude component of the selected vertex info shown in the map status bar. {latitude} is the numeric latitude value." },
|
|
73
|
+
"map_status_bar.vertex_altitude.label": { string: "Altitud: {altitude} m", developer_comment: "Altitude component of the selected vertex info shown in the map status bar. {altitude} is the numeric altitude value in metres." },
|
|
74
|
+
"map_status_bar.vertex_accuracy.label": { string: "Precisión: {accuracy}", developer_comment: "Accuracy component of the selected vertex info shown in the map status bar. {accuracy} is the pre-formatted accuracy value." },
|
|
75
|
+
"map_update_coords_dialog.header.title": { string: "Importar datos para reemplazar ubicación", developer_comment: "Title shown in the header of the dialog for importing coordinates via paste or file upload." },
|
|
76
|
+
"map_update_coords_dialog.paste_data.label": { string: "Pegue los datos en formato ODK", developer_comment: "Label for the paste input field in the import coordinates dialog." },
|
|
77
|
+
"map_update_coords_dialog.paste_data.hint": { string: "Ingrese las coordenadas como: Latitud Longitud Altitud Precisión. Separe múltiples puntos con un punto y coma (;).", developer_comment: "Helper text explaining the expected format for pasted coordinate data." },
|
|
78
|
+
"map_update_coords_dialog.upload_file.label": { string: "Subir un archivo GeoJSON", developer_comment: "Label for the file upload section in the import coordinates dialog." },
|
|
79
|
+
"map_update_coords_dialog.upload_file.action": { string: "Subir archivo", developer_comment: "Label for the button that opens the file chooser to upload a GeoJSON file." },
|
|
80
|
+
"map_update_coords_dialog.file_empty.error": { string: "El archivo está vacío.", developer_comment: "Error shown when the uploaded file contains no content." },
|
|
81
|
+
"map_update_coords_dialog.unsupported_file.error": { string: "Tipo de archivo no compatible. Por favor, suba un archivo .geojson.", developer_comment: "Error shown when the uploaded file is not a supported GeoJSON format." },
|
|
82
|
+
"map_update_coords_dialog.parse_failed.error": { string: "Error al convertir el archivo. Asegúrese de que sea un GeoJSON válido.", developer_comment: "Error shown when the uploaded file could not be parsed as valid GeoJSON." },
|
|
83
|
+
"map_update_coords_dialog.incorrect_geometry.error": { string: "Tipo de geometría incorrecto.", developer_comment: "Error shown when the imported data contains a geometry type incompatible with the current field." },
|
|
84
|
+
"media_block.fetch.error": { string: "No fue posible obtener el archivo multimedia. Compruebe la URL y los ajustes de descarga", developer_comment: "Displayed when media (image, audio or video) fetching fails." },
|
|
85
|
+
"media_block.not_found.error": { string: "Archivo multimedia no encontrado. Archivo: {file}", developer_comment: "Displayed when the server returns a 404 or non-200 status." },
|
|
86
|
+
"media_block.unknown.error": { string: "No fue posible obtener el archivo multimedia. Error desconocido. Archivo: {file}", developer_comment: "Generic fallback for network failures or unexpected exceptions." },
|
|
87
|
+
"video_block.load.error": { string: "Error al cargar el video. Archivo: {file}", developer_comment: "Displayed when a video element fires a load error. {file} is the resource URL." },
|
|
88
|
+
"audio_block.load.error": { string: "Error al cargar el audio. Archivo: {file}", developer_comment: "Displayed when an audio element fires a load error. {file} is the resource URL." },
|
|
89
|
+
"image_block.load.error": { string: "Error al cargar la imagen. Archivo: {file}", developer_comment: "Displayed when an image element fires a load error. {file} is the resource URL." },
|
|
90
|
+
"rank_control.open.label": { string: "Ordenar elementos", developer_comment: "The label for the button that opens the rank control." },
|
|
91
|
+
"trigger_control.okay.label": { string: "Aceptar", developer_comment: "The label for the 'Okay' button." },
|
|
92
|
+
"input_geopoint.get_location.label": { string: "Obtener ubicación", developer_comment: "Label for the button to start capturing the device's current GPS location." },
|
|
93
|
+
"input_geopoint.try_again.label": { string: "Intentar de nuevo", developer_comment: "Label for the button to retry capturing the GPS location after one has already been saved." },
|
|
94
|
+
"input_geopoint.location_error.title": { string: "No se puede acceder a la ubicación", developer_comment: "Title of the error message shown when the browser cannot access the device's location." },
|
|
95
|
+
"input_geopoint.location_error.description": { string: "Otorgue permisos de ubicación en la configuración del navegador y asegúrese de que la ubicación esté activada.", developer_comment: "Description of what the user should do to resolve a location access error." },
|
|
96
|
+
"geolocation_dialog.header.title": { string: "Buscando su ubicación", developer_comment: "Title shown in the header of the dialog while the device is searching for a GPS fix." },
|
|
97
|
+
"geolocation_dialog.accuracy_threshold.info": { string: "La ubicación se guardará a los {accuracyThreshold} m", developer_comment: "Informational message shown while waiting for a GPS fix. {accuracyThreshold} is the accuracy threshold in metres at which the location will be automatically saved." },
|
|
98
|
+
"geolocation_dialog.elapsed_time.label": { string: "Tiempo transcurrido para capturar la ubicación:", developer_comment: "Label preceding the elapsed time counter shown while waiting for a GPS fix." },
|
|
99
|
+
"geolocation_dialog.previous_accuracy.info": { string: "Ubicación anterior guardada a los {accuracy} m", developer_comment: "Shows the accuracy of the previously saved location in metres. {accuracy} is the numeric accuracy value." },
|
|
100
|
+
"geolocation_dialog.save.label": { string: "Guardar ubicación", developer_comment: "Label for the button to save the currently captured GPS location." },
|
|
101
|
+
"geopoint_accuracy.good.label": { string: "Buena precisión", developer_comment: "Label shown when the GPS accuracy is within the good threshold." },
|
|
102
|
+
"geopoint_accuracy.acceptable.label": { string: "Precisión aceptable", developer_comment: "Label shown when the GPS accuracy is within the acceptable threshold (between good and unacceptable)." },
|
|
103
|
+
"geopoint_accuracy.poor.label": { string: "Precisión deficiente", developer_comment: "Label shown when the GPS accuracy does not meet the acceptable threshold." },
|
|
104
|
+
"geopoint_accuracy.unknown.label": { string: "Precisión desconocida", developer_comment: "Label shown when no GPS accuracy value is available yet." },
|
|
105
|
+
"upload_image_header.take_picture.label": { string: "Tomar una foto", developer_comment: "Label for the button to take a picture using the device's camera." },
|
|
106
|
+
"upload_image_header.choose_image.label": { string: "Seleccionar imagen", developer_comment: "Label for the button to choose an image from the device's gallery or file system." },
|
|
107
|
+
"upload_image_header.annotation.label": { string: "Marcar la imagen", developer_comment: "Label for the button to open the canvas in full-screen mode for annotating the image. Only visible on mobile devices." },
|
|
108
|
+
"upload_image_header.draw.label": { string: "Dibujar", developer_comment: "Label for the button to open the canvas in full-screen mode for drawing. Only visible on mobile devices." },
|
|
109
|
+
"upload_image_header.signature.label": { string: "Capturar firma", developer_comment: "Label for the button to open the canvas in full-screen mode for capturing a signature. Only visible on mobile devices." },
|
|
110
|
+
"upload_control.choose_file.label": { string: "Seleccionar archivo", developer_comment: "Label for the button to choose a file from the device. Used in the audio, video, and generic file upload headers." },
|
|
111
|
+
"upload_control.drag_and_drop.placeholder": { string: "Arrastre y suelte los archivos aquí para cargarlos", developer_comment: "Placeholder text shown in the upload area when no file has been selected." },
|
|
112
|
+
"upload_control.no_signature.placeholder": { string: "No se capturó ninguna firma", developer_comment: "Placeholder text shown on mobile when no signature has been captured yet." },
|
|
113
|
+
"upload_control.no_drawing.placeholder": { string: "No se capturó ningún dibujo", developer_comment: "Placeholder text shown on mobile when no drawing has been captured yet." },
|
|
114
|
+
"upload_control.file_too_large.error": { string: "El tamaño del archivo seleccionado excede el máximo permitido", developer_comment: "Error message shown when the selected file exceeds the maximum allowed size." },
|
|
115
|
+
"upload_control.must_be_image.error": { string: "El archivo seleccionado debe ser una imagen", developer_comment: "Error message shown when the selected file is not an image." },
|
|
116
|
+
"upload_control.must_be_video.error": { string: "El archivo seleccionado debe ser un video", developer_comment: "Error message shown when the selected file is not a video." },
|
|
117
|
+
"upload_control.must_be_audio.error": { string: "El archivo seleccionado debe ser un audio", developer_comment: "Error message shown when the selected file is not an audio file." },
|
|
118
|
+
"upload_control.invalid_file_type.error": { string: "El tipo de archivo no es válido", developer_comment: "Error message shown when the selected file does not match the expected media type." },
|
|
119
|
+
"upload_delete_dialog.header.title": { string: "¿Eliminar el archivo cargado?", developer_comment: "Title of the confirmation dialog shown before deleting an uploaded file." },
|
|
120
|
+
"upload_delete_dialog.body.message": { string: "¿Está seguro de que desea eliminar este archivo?", developer_comment: "Body text of the confirmation dialog shown before deleting an uploaded file." },
|
|
121
|
+
"upload_control.downloading.error": { string: "Hubo un error al descargar este archivo.", developer_comment: "Error message shown when downloading the attachment from the server failed." },
|
|
122
|
+
"repeat.add.label": { string: "Agregar", developer_comment: "Label for the button to add a repeat instance." },
|
|
123
|
+
"repeat.instance.placeholder": { string: "Elemento", developer_comment: "Placeholder for the label of a repeat instance." }
|
|
124
|
+
};
|
|
125
|
+
export {
|
|
126
|
+
e as default
|
|
127
|
+
};
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
"form_load_failure_dialog.header.title": { string: "Il y a eu une erreur lors du chargement de ce formulaire", developer_comment: "The title text shown in the header of the dialog." },
|
|
3
|
+
"form_load_failure_dialog.details.label": { string: "Détails techniques de l'erreur", developer_comment: "The label for the clickable summary that reveals technical error information." },
|
|
4
|
+
"odk_web_forms.submit.label": { string: "Envoyer", developer_comment: "Label for the primary form submission button." },
|
|
5
|
+
"odk_web_forms.validation.error": { string: "{count, plural, one {# question avec erreur} many {# questions avec erreurs} other {# questions avec erreurs}}", developer_comment: "Error banner message. {count} is the number of validation violations." },
|
|
6
|
+
"odk_web_forms.geolocation.error": { string: "La position n'est pas disponible. Activez le GPS et les autorisations du navigateur, puis rechargez le formulaire pour réessayer.", developer_comment: "Error message shown when background geolocation fails." },
|
|
7
|
+
"odk_web_forms.delete.label": { string: "Supprimer", developer_comment: "Generic label for a delete action button." },
|
|
8
|
+
"odk_web_forms.cancel.label": { string: "Annuler", developer_comment: "Generic label for a cancel action button." },
|
|
9
|
+
"odk_web_forms.remove.label": { string: "Retirer", developer_comment: "Generic label for a remove action button." },
|
|
10
|
+
"odk_web_forms.save.label": { string: "Enregistrer", developer_comment: "Generic label for a save action button." },
|
|
11
|
+
"common_actions.open_full_screen.description": { string: "Passer en plein écran", developer_comment: "Aria-label/description for the control button that expands the view to full screen. Shared across the canvas and map components." },
|
|
12
|
+
"common_actions.close_full_screen.description": { string: "Quitter le plein écran", developer_comment: "Aria-label/description for the control button that exits full-screen mode. Shared across the canvas and map components." },
|
|
13
|
+
"common_actions.zoom_in.description": { string: "Zoom avant", developer_comment: "Aria-label/description for the control button that zooms in. Shared across the canvas and map components." },
|
|
14
|
+
"common_actions.zoom_out.description": { string: "Zoom arrière", developer_comment: "Aria-label/description for the control button that zooms out. Shared across the canvas and map components." },
|
|
15
|
+
"common_actions.undo.description": { string: "Annuler la dernière action", developer_comment: "Aria-label/description for the control button that undoes the last action. Shared across the canvas and map components." },
|
|
16
|
+
"common_actions.open_info.description": { string: "Afficher les instructions", developer_comment: "Aria-label/description for the control button that opens the info dialog listing available actions. Shared across the canvas and map components." },
|
|
17
|
+
"common_actions.info_dialog.title": { string: "Instructions", developer_comment: "Title shown in the header of the dialog that explains the available actions. Shared across the canvas and map components." },
|
|
18
|
+
"geolocation_formatted_value.accuracy.label": { string: "Précision : {accuracy} m,", developer_comment: "Displays the GPS accuracy in metres. {accuracy} is the numeric accuracy value." },
|
|
19
|
+
"geolocation_formatted_value.latitude.label": { string: "Latitude : {latitude},", developer_comment: "Displays the GPS latitude coordinate. {latitude} is the numeric latitude value." },
|
|
20
|
+
"geolocation_formatted_value.longitude.label": { string: "Longitude : {longitude}.", developer_comment: "Displays the GPS longitude coordinate. {longitude} is the numeric longitude value." },
|
|
21
|
+
"searchable_dropdown.select.placeholder": { string: "Sélectionnez la réponse", developer_comment: "Placeholder text shown in a minimal select dropdown when no option has been selected yet." },
|
|
22
|
+
"validation_message.required.error": { string: "Ce champ est obligatoire.", developer_comment: "Default error shown when a required field has no value and the form designer did not specify a custom message." },
|
|
23
|
+
"validation_message.constraint.error": { string: "Ne respecte pas les critères.", developer_comment: "Default error shown when a field's value fails a constraint and the form designer did not specify a custom message." },
|
|
24
|
+
"canvas_async.load_error.message": { string: "Impossible de charger le canevas", developer_comment: "Error message shown when the canvas component fails to load." },
|
|
25
|
+
"canvas_controls.exit_after_save.description": { string: "Quitter le plein écran, modifications enregistrées", developer_comment: "Explains the canvas control button that exits full-screen mode after autosave has captured the user's drawing." },
|
|
26
|
+
"canvas_controls.color_picker.description": { string: "Choisir une couleur", developer_comment: "Explains the canvas control button that opens the color picker." },
|
|
27
|
+
"canvas_controls.pan.description": { string: "Basculer le mode de déplacement", developer_comment: "Explains the canvas control button that activates or deactivates pan mode. When active, dragging moves the canvas instead of drawing." },
|
|
28
|
+
"canvas_controls.clear_all.description": { string: "Effacer tous les traits", developer_comment: "Explains the canvas control button that removes all drawn strokes." },
|
|
29
|
+
"canvas_block.loading_image.message": { string: "Chargement de l'image...", developer_comment: "Status text shown while the background image is loading in the canvas." },
|
|
30
|
+
"canvas_block.load_image.error": { string: "Erreur lors du chargement de l'image.", developer_comment: "Error message shown when the background image fails to load in the canvas." },
|
|
31
|
+
"canvas_block.draw_instruction.message": { string: "Commencez à dessiner ici", developer_comment: "Instruction message shown in draw mode before the user has made any strokes." },
|
|
32
|
+
"map_async.load_error.message": { string: "Impossible de charger la carte", developer_comment: "Error message shown when the map component fails to load." },
|
|
33
|
+
"map_block.graphics_error.title": { string: "Un problème d'affichage a été détecté", developer_comment: "Title of the error shown when the browser cannot render the map due to WebGL being unavailable." },
|
|
34
|
+
"map_block.graphics_error.message": { string: "Votre navigateur ne peut pas afficher la carte pour le moment. Activez l'accélération matérielle dans vos paramètres.", developer_comment: "Description of the WebGL error, instructing the user to enable hardware acceleration in their browser." },
|
|
35
|
+
"map_block.location_error.title": { string: "Accès à la position impossible", developer_comment: "Title of the error shown in the map when the browser denies geolocation permission." },
|
|
36
|
+
"map_block.location_error.message": { string: "Accordez les autorisations de localisation dans les paramètres du navigateur et assurez-vous que la localisation est activée.", developer_comment: "Description of what the user should do to resolve a geolocation access error in the map." },
|
|
37
|
+
"map_block.get_location.label": { string: "Obtenir la position", developer_comment: "Label for the button in the map overlay that starts watching the device's GPS location." },
|
|
38
|
+
"map_block.drag_vertex_instruction.placed": { string: "Appuyez et faites glisser pour déplacer un point", developer_comment: "Instruction shown on the map when a point has been placed and the user can drag points and vertices." },
|
|
39
|
+
"map_block.drag_vertex_instruction.default": { string: "Appuyez pour placer un point", developer_comment: "Instruction shown on the map before a point is placed, when the user can drag points and vertices." },
|
|
40
|
+
"map_block.drag_instruction.placed": { string: "Appuyez pour déplacer le point", developer_comment: "Instruction shown on the map when a point has been placed and the user can drag the feature." },
|
|
41
|
+
"map_block.drag_instruction.default": { string: "Utilisez le bouton de localisation pour centrer la carte sur votre position actuelle", developer_comment: "Instruction shown on the map before a point is placed, when the user can drag the feature." },
|
|
42
|
+
"map_confirm_dialog.delete_shape.header": { string: "Supprimer tout le polygone ?", developer_comment: "Title of the confirmation dialog shown before deleting a shape." },
|
|
43
|
+
"map_confirm_dialog.delete_trace.header": { string: "Supprimer tout le tracé ?", developer_comment: "Title of the confirmation dialog shown before deleting a trace." },
|
|
44
|
+
"map_confirm_dialog.delete_shape.body": { string: "Voulez-vous vraiment supprimer tout le polygone et recommencer ?", developer_comment: "Body text of the confirmation dialog shown before deleting a shape." },
|
|
45
|
+
"map_confirm_dialog.delete_trace.body": { string: "Voulez-vous vraiment supprimer tout le tracé et recommencer ?", developer_comment: "Body text of the confirmation dialog shown before deleting a trace." },
|
|
46
|
+
"map_advanced_panel.longitude.label": { string: "Longitude", developer_comment: "Label for the longitude input field in the advanced panel." },
|
|
47
|
+
"map_advanced_panel.longitude.error": { string: "La longitude n'est pas valide", developer_comment: "Validation error shown when the longitude value entered is out of range." },
|
|
48
|
+
"map_advanced_panel.latitude.label": { string: "Latitude", developer_comment: "Label for the latitude input field in the advanced panel." },
|
|
49
|
+
"map_advanced_panel.latitude.error": { string: "La latitude n'est pas valide", developer_comment: "Validation error shown when the latitude value entered is out of range." },
|
|
50
|
+
"map_advanced_panel.altitude.label": { string: "Altitude", developer_comment: "Label for the altitude input field in the advanced panel." },
|
|
51
|
+
"map_advanced_panel.accuracy.label": { string: "Précision", developer_comment: "Label for the accuracy input field in the advanced panel." },
|
|
52
|
+
"map_advanced_panel.import_data.label": { string: "Importer des données pour remplacer la position", developer_comment: "Label for the link that opens the import/paste dialog from the advanced panel." },
|
|
53
|
+
"map_controls.zoom_fit_all.description": { string: "Afficher tous les éléments sur la carte", developer_comment: "Aria-label for the map control button that zooms to fit all features in view." },
|
|
54
|
+
"map_controls.current_location.description": { string: "Trouver votre position", developer_comment: "Aria-label for the map control button that centers the map on the device's current GPS location." },
|
|
55
|
+
"map_controls.delete.description": { string: "Supprimer un sommet ou tous les sommets", developer_comment: "Aria-label for the map control button that deletes the selected vertex or all vertices." },
|
|
56
|
+
"map_controls.open_advanced.description": { string: "Modifications manuelles avancées", developer_comment: "Aria-label for the map control button that opens the advanced coordinate editing panel." },
|
|
57
|
+
"map_properties.remove_selection.label": { string: "Annuler la sélection", developer_comment: "Label for the button that removes the currently saved feature selection." },
|
|
58
|
+
"map_properties.save_selected.label": { string: "Enregistrer la sélection", developer_comment: "Label for the button that saves the currently selected map feature." },
|
|
59
|
+
"map_status_bar.no_trace_saved.label": { string: "Aucun tracé enregistré", developer_comment: "Status bar message shown when no trace (linestring) has been saved yet." },
|
|
60
|
+
"map_status_bar.no_shape_saved.label": { string: "Aucun polygone enregistré", developer_comment: "Status bar message shown when no shape (polygon) has been saved yet." },
|
|
61
|
+
"map_status_bar.no_point_saved.label": { string: "Aucun point enregistré", developer_comment: "Status bar message shown when no point has been saved yet." },
|
|
62
|
+
"map_status_bar.point_saved.label": { string: "Point enregistré", developer_comment: "Status bar message shown when a point has been saved." },
|
|
63
|
+
"map_status_bar.trace_saved.label": { string: "Tracé enregistré", developer_comment: "Status bar message shown when a trace (linestring) has been saved." },
|
|
64
|
+
"map_status_bar.shape_saved.label": { string: "Polygone enregistré", developer_comment: "Status bar message shown when a shape (polygon) has been saved." },
|
|
65
|
+
"map_status_bar.feature_saved.label": { string: "Élément enregistré", developer_comment: "Fallback status bar message shown when a feature of an unrecognised geometry type has been saved." },
|
|
66
|
+
"map_status_bar.points_saved.label": { string: "{count} points enregistrés", developer_comment: "Status bar message showing how many points have been saved. {count} is the number of saved points." },
|
|
67
|
+
"map_status_bar.capturing.label": { string: "Obtention de la position...", developer_comment: "Status bar message shown while the device is actively capturing a GPS location." },
|
|
68
|
+
"map_status_bar.remove_point.label": { string: "Supprimer le point", developer_comment: "Full label for the remove button shown on larger screens in the map status bar." },
|
|
69
|
+
"map_status_bar.view_details.label": { string: "Voir les détails", developer_comment: "Label for the button that opens the feature properties panel." },
|
|
70
|
+
"map_status_bar.advanced.label": { string: "Avancé", developer_comment: "Label for the button that opens the advanced coordinate editing panel." },
|
|
71
|
+
"map_status_bar.vertex_longitude.label": { string: "Longitude : {longitude}", developer_comment: "Longitude component of the selected vertex info shown in the map status bar. {longitude} is the numeric longitude value." },
|
|
72
|
+
"map_status_bar.vertex_latitude.label": { string: "Latitude : {latitude}", developer_comment: "Latitude component of the selected vertex info shown in the map status bar. {latitude} is the numeric latitude value." },
|
|
73
|
+
"map_status_bar.vertex_altitude.label": { string: "Altitude : {altitude} m", developer_comment: "Altitude component of the selected vertex info shown in the map status bar. {altitude} is the numeric altitude value in metres." },
|
|
74
|
+
"map_status_bar.vertex_accuracy.label": { string: "Précision : {accuracy}", developer_comment: "Accuracy component of the selected vertex info shown in the map status bar. {accuracy} is the pre-formatted accuracy value." },
|
|
75
|
+
"map_update_coords_dialog.header.title": { string: "Importer des données pour remplacer la position", developer_comment: "Title shown in the header of the dialog for importing coordinates via paste or file upload." },
|
|
76
|
+
"map_update_coords_dialog.paste_data.label": { string: "Collez les données en format ODK", developer_comment: "Label for the paste input field in the import coordinates dialog." },
|
|
77
|
+
"map_update_coords_dialog.paste_data.hint": { string: "Saisissez les coordonnées comme suit : Latitude Longitude Altitude Précision. Séparez plusieurs points par un point-virgule (;).", developer_comment: "Helper text explaining the expected format for pasted coordinate data." },
|
|
78
|
+
"map_update_coords_dialog.upload_file.label": { string: "Importer un fichier GeoJSON", developer_comment: "Label for the file upload section in the import coordinates dialog." },
|
|
79
|
+
"map_update_coords_dialog.upload_file.action": { string: "Importer le fichier", developer_comment: "Label for the button that opens the file chooser to upload a GeoJSON file." },
|
|
80
|
+
"map_update_coords_dialog.file_empty.error": { string: "Le fichier est vide.", developer_comment: "Error shown when the uploaded file contains no content." },
|
|
81
|
+
"map_update_coords_dialog.unsupported_file.error": { string: "Type de fichier non reconnu. Veuillez importer un fichier .geojson.", developer_comment: "Error shown when the uploaded file is not a supported GeoJSON format." },
|
|
82
|
+
"map_update_coords_dialog.parse_failed.error": { string: "Erreur d'analyse du fichier. Assurez-vous qu'il s'agit d'un fichier GeoJSON valide.", developer_comment: "Error shown when the uploaded file could not be parsed as valid GeoJSON." },
|
|
83
|
+
"map_update_coords_dialog.incorrect_geometry.error": { string: "Type de géométrie incorrect.", developer_comment: "Error shown when the imported data contains a geometry type incompatible with the current field." },
|
|
84
|
+
"media_block.fetch.error": { string: "Impossible de récupérer le fichier multimédia. Vérifiez l'URL et les paramètres de téléchargement.", developer_comment: "Displayed when media (image, audio or video) fetching fails." },
|
|
85
|
+
"media_block.not_found.error": { string: "Fichier multimédia introuvable. Fichier : {file}", developer_comment: "Displayed when the server returns a 404 or non-200 status." },
|
|
86
|
+
"media_block.unknown.error": { string: "Impossible de récupérer le fichier multimédia. Erreur inconnue. Fichier : {file}", developer_comment: "Generic fallback for network failures or unexpected exceptions." },
|
|
87
|
+
"video_block.load.error": { string: "Erreur lors du chargement de la vidéo. Fichier : {file}", developer_comment: "Displayed when a video element fires a load error. {file} is the resource URL." },
|
|
88
|
+
"audio_block.load.error": { string: "Erreur lors du chargement de l'audio. Fichier : {file}", developer_comment: "Displayed when an audio element fires a load error. {file} is the resource URL." },
|
|
89
|
+
"image_block.load.error": { string: "Erreur lors du chargement de l'image. Fichier : {file}", developer_comment: "Displayed when an image element fires a load error. {file} is the resource URL." },
|
|
90
|
+
"rank_control.open.label": { string: "Ordonner les éléments", developer_comment: "The label for the button that opens the rank control." },
|
|
91
|
+
"trigger_control.okay.label": { string: "OK", developer_comment: "The label for the 'Okay' button." },
|
|
92
|
+
"input_geopoint.get_location.label": { string: "Obtenir la position", developer_comment: "Label for the button to start capturing the device's current GPS location." },
|
|
93
|
+
"input_geopoint.try_again.label": { string: "Réessayer", developer_comment: "Label for the button to retry capturing the GPS location after one has already been saved." },
|
|
94
|
+
"input_geopoint.location_error.title": { string: "Accès à la position impossible", developer_comment: "Title of the error message shown when the browser cannot access the device's location." },
|
|
95
|
+
"input_geopoint.location_error.description": { string: "Accordez les autorisations de localisation dans les paramètres de votre navigateur et assurez-vous que la localisation est activée.", developer_comment: "Description of what the user should do to resolve a location access error." },
|
|
96
|
+
"geolocation_dialog.header.title": { string: "Recherche de votre position", developer_comment: "Title shown in the header of the dialog while the device is searching for a GPS fix." },
|
|
97
|
+
"geolocation_dialog.accuracy_threshold.info": { string: "La position sera enregistrée à {accuracyThreshold} m", developer_comment: "Informational message shown while waiting for a GPS fix. {accuracyThreshold} is the accuracy threshold in metres at which the location will be automatically saved." },
|
|
98
|
+
"geolocation_dialog.elapsed_time.label": { string: "Temps écoulé pour capturer la position :", developer_comment: "Label preceding the elapsed time counter shown while waiting for a GPS fix." },
|
|
99
|
+
"geolocation_dialog.previous_accuracy.info": { string: "Position précédente enregistrée à {accuracy} m", developer_comment: "Shows the accuracy of the previously saved location in metres. {accuracy} is the numeric accuracy value." },
|
|
100
|
+
"geolocation_dialog.save.label": { string: "Enregistrer la position", developer_comment: "Label for the button to save the currently captured GPS location." },
|
|
101
|
+
"geopoint_accuracy.good.label": { string: "Bonne précision", developer_comment: "Label shown when the GPS accuracy is within the good threshold." },
|
|
102
|
+
"geopoint_accuracy.acceptable.label": { string: "Précision acceptable", developer_comment: "Label shown when the GPS accuracy is within the acceptable threshold (between good and unacceptable)." },
|
|
103
|
+
"geopoint_accuracy.poor.label": { string: "Précision faible", developer_comment: "Label shown when the GPS accuracy does not meet the acceptable threshold." },
|
|
104
|
+
"geopoint_accuracy.unknown.label": { string: "Précision inconnue", developer_comment: "Label shown when no GPS accuracy value is available yet." },
|
|
105
|
+
"upload_image_header.take_picture.label": { string: "Prendre une photo", developer_comment: "Label for the button to take a picture using the device's camera." },
|
|
106
|
+
"upload_image_header.choose_image.label": { string: "Sélectionner une image", developer_comment: "Label for the button to choose an image from the device's gallery or file system." },
|
|
107
|
+
"upload_image_header.annotation.label": { string: "Annoter l'image", developer_comment: "Label for the button to open the canvas in full-screen mode for annotating the image. Only visible on mobile devices." },
|
|
108
|
+
"upload_image_header.draw.label": { string: "Dessiner", developer_comment: "Label for the button to open the canvas in full-screen mode for drawing. Only visible on mobile devices." },
|
|
109
|
+
"upload_image_header.signature.label": { string: "Capturer la signature", developer_comment: "Label for the button to open the canvas in full-screen mode for capturing a signature. Only visible on mobile devices." },
|
|
110
|
+
"upload_control.choose_file.label": { string: "Sélectionner un fichier", developer_comment: "Label for the button to choose a file from the device. Used in the audio, video, and generic file upload headers." },
|
|
111
|
+
"upload_control.drag_and_drop.placeholder": { string: "Glissez et déposez les fichiers ici pour les importer", developer_comment: "Placeholder text shown in the upload area when no file has been selected." },
|
|
112
|
+
"upload_control.no_signature.placeholder": { string: "Aucune signature capturée", developer_comment: "Placeholder text shown on mobile when no signature has been captured yet." },
|
|
113
|
+
"upload_control.no_drawing.placeholder": { string: "Aucun dessin capturé", developer_comment: "Placeholder text shown on mobile when no drawing has been captured yet." },
|
|
114
|
+
"upload_control.file_too_large.error": { string: "La taille du fichier sélectionné dépasse le maximum autorisé", developer_comment: "Error message shown when the selected file exceeds the maximum allowed size." },
|
|
115
|
+
"upload_control.must_be_image.error": { string: "Le fichier sélectionné doit être une image", developer_comment: "Error message shown when the selected file is not an image." },
|
|
116
|
+
"upload_control.must_be_video.error": { string: "Le fichier sélectionné doit être une vidéo", developer_comment: "Error message shown when the selected file is not a video." },
|
|
117
|
+
"upload_control.must_be_audio.error": { string: "Le fichier sélectionné doit être un fichier audio", developer_comment: "Error message shown when the selected file is not an audio file." },
|
|
118
|
+
"upload_control.invalid_file_type.error": { string: "Le type de fichier n'est pas valide", developer_comment: "Error message shown when the selected file does not match the expected media type." },
|
|
119
|
+
"upload_delete_dialog.header.title": { string: "Supprimer le fichier importé ?", developer_comment: "Title of the confirmation dialog shown before deleting an uploaded file." },
|
|
120
|
+
"upload_delete_dialog.body.message": { string: "Voulez-vous vraiment supprimer ce fichier ?", developer_comment: "Body text of the confirmation dialog shown before deleting an uploaded file." },
|
|
121
|
+
"upload_control.downloading.error": { string: "Erreur lors du téléchargement.", developer_comment: "Error message shown when downloading the attachment from the server failed." },
|
|
122
|
+
"repeat.add.label": { string: "Ajouter", developer_comment: "Label for the button to add a repeat instance." },
|
|
123
|
+
"repeat.instance.placeholder": { string: "Élément répété", developer_comment: "Placeholder for the label of a repeat instance." }
|
|
124
|
+
};
|
|
125
|
+
export {
|
|
126
|
+
e as default
|
|
127
|
+
};
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
"form_load_failure_dialog.header.title": { string: "Terjadi kesalahan saat memuat formulir ini", developer_comment: "The title text shown in the header of the dialog." },
|
|
3
|
+
"form_load_failure_dialog.details.label": { string: "Kesalahan detail teknis", developer_comment: "The label for the clickable summary that reveals technical error information." },
|
|
4
|
+
"odk_web_forms.submit.label": { string: "Kirim", developer_comment: "Label for the primary form submission button." },
|
|
5
|
+
"odk_web_forms.validation.error": { string: "{count, plural, other {# pertanyaan dojawab dengan tidak tepat}}", developer_comment: "Error banner message. {count} is the number of validation violations." },
|
|
6
|
+
"odk_web_forms.geolocation.error": { string: "Lokasi tidak tersedia. Aktifkan GPS dan izin browser, lalu muat ulang formulir untuk mencoba lagi.", developer_comment: "Error message shown when background geolocation fails." },
|
|
7
|
+
"odk_web_forms.delete.label": { string: "Hapus", developer_comment: "Generic label for a delete action button." },
|
|
8
|
+
"odk_web_forms.cancel.label": { string: "Batal", developer_comment: "Generic label for a cancel action button." },
|
|
9
|
+
"odk_web_forms.remove.label": { string: "Keluarkan", developer_comment: "Generic label for a remove action button." },
|
|
10
|
+
"odk_web_forms.save.label": { string: "Simpan", developer_comment: "Generic label for a save action button." },
|
|
11
|
+
"common_actions.open_full_screen.description": { string: "Perluas ke layar penuh", developer_comment: "Aria-label/description for the control button that expands the view to full screen. Shared across the canvas and map components." },
|
|
12
|
+
"common_actions.close_full_screen.description": { string: "Keluar dari layar penuh", developer_comment: "Aria-label/description for the control button that exits full-screen mode. Shared across the canvas and map components." },
|
|
13
|
+
"common_actions.zoom_in.description": { string: "Perbesar", developer_comment: "Aria-label/description for the control button that zooms in. Shared across the canvas and map components." },
|
|
14
|
+
"common_actions.zoom_out.description": { string: "Perkecil", developer_comment: "Aria-label/description for the control button that zooms out. Shared across the canvas and map components." },
|
|
15
|
+
"common_actions.undo.description": { string: "Batalkan tindakan terakhir", developer_comment: "Aria-label/description for the control button that undoes the last action. Shared across the canvas and map components." },
|
|
16
|
+
"common_actions.open_info.description": { string: "Tampilkan informasi tindakan", developer_comment: "Aria-label/description for the control button that opens the info dialog listing available actions. Shared across the canvas and map components." },
|
|
17
|
+
"common_actions.info_dialog.title": { string: "Cara menggunakan alat ini", developer_comment: "Title shown in the header of the dialog that explains the available actions. Shared across the canvas and map components." },
|
|
18
|
+
"geolocation_formatted_value.accuracy.label": { string: "Akurasi: {accuracy} m,", developer_comment: "Displays the GPS accuracy in metres. {accuracy} is the numeric accuracy value." },
|
|
19
|
+
"geolocation_formatted_value.latitude.label": { string: "Lintang: {latitude},", developer_comment: "Displays the GPS latitude coordinate. {latitude} is the numeric latitude value." },
|
|
20
|
+
"geolocation_formatted_value.longitude.label": { string: "Bujur: {longitude}.", developer_comment: "Displays the GPS longitude coordinate. {longitude} is the numeric longitude value." },
|
|
21
|
+
"searchable_dropdown.select.placeholder": { string: "Pilih jawaban", developer_comment: "Placeholder text shown in a minimal select dropdown when no option has been selected yet." },
|
|
22
|
+
"validation_message.required.error": { string: "Bidang ini wajib diisi.", developer_comment: "Default error shown when a required field has no value and the form designer did not specify a custom message." },
|
|
23
|
+
"validation_message.constraint.error": { string: "Tidak memenuhi syarat.", developer_comment: "Default error shown when a field's value fails a constraint and the form designer did not specify a custom message." },
|
|
24
|
+
"canvas_async.load_error.message": { string: "Tidak dapat memuat kanvas", developer_comment: "Error message shown when the canvas component fails to load." },
|
|
25
|
+
"canvas_controls.exit_after_save.description": { string: "Keluar dari layar penuh, perubahan disimpan", developer_comment: "Explains the canvas control button that exits full-screen mode after autosave has captured the user's drawing." },
|
|
26
|
+
"canvas_controls.color_picker.description": { string: "Pilih warna", developer_comment: "Explains the canvas control button that opens the color picker." },
|
|
27
|
+
"canvas_controls.pan.description": { string: "Ganti mode geser", developer_comment: "Explains the canvas control button that activates or deactivates pan mode. When active, dragging moves the canvas instead of drawing." },
|
|
28
|
+
"canvas_controls.clear_all.description": { string: "Hapus semua goresan", developer_comment: "Explains the canvas control button that removes all drawn strokes." },
|
|
29
|
+
"canvas_block.loading_image.message": { string: "Memuat gambar...", developer_comment: "Status text shown while the background image is loading in the canvas." },
|
|
30
|
+
"canvas_block.load_image.error": { string: "Gagal memuat gambar.", developer_comment: "Error message shown when the background image fails to load in the canvas." },
|
|
31
|
+
"canvas_block.draw_instruction.message": { string: "Mulai menggambar di sini", developer_comment: "Instruction message shown in draw mode before the user has made any strokes." },
|
|
32
|
+
"map_async.load_error.message": { string: "Tidak dapat memuat peta", developer_comment: "Error message shown when the map component fails to load." },
|
|
33
|
+
"map_block.graphics_error.title": { string: "Masalah grafis terdeteksi", developer_comment: "Title of the error shown when the browser cannot render the map due to WebGL being unavailable." },
|
|
34
|
+
"map_block.graphics_error.message": { string: "Browser Anda tidak dapat menampilkan peta saat ini. Aktifkan pengaturan akselerasi perangkat keras.", developer_comment: "Description of the WebGL error, instructing the user to enable hardware acceleration in their browser." },
|
|
35
|
+
"map_block.location_error.title": { string: "Lokasi tidak dapat diakses", developer_comment: "Title of the error shown in the map when the browser denies geolocation permission." },
|
|
36
|
+
"map_block.location_error.message": { string: "Berikan izin lokasi di pengaturan browser dan pastikan lokasi diaktifkan.", developer_comment: "Description of what the user should do to resolve a geolocation access error in the map." },
|
|
37
|
+
"map_block.get_location.label": { string: "Dapatkan lokasi", developer_comment: "Label for the button in the map overlay that starts watching the device's GPS location." },
|
|
38
|
+
"map_block.drag_vertex_instruction.placed": { string: "Tekan dan tarik untuk memindahkan titik", developer_comment: "Instruction shown on the map when a point has been placed and the user can drag points and vertices." },
|
|
39
|
+
"map_block.drag_vertex_instruction.default": { string: "Tekan untuk menempatkan titik", developer_comment: "Instruction shown on the map before a point is placed, when the user can drag points and vertices." },
|
|
40
|
+
"map_block.drag_instruction.placed": { string: "Tekan untuk memindahkan titik", developer_comment: "Instruction shown on the map when a point has been placed and the user can drag the feature." },
|
|
41
|
+
"map_block.drag_instruction.default": { string: "Gunakan tombol lokasi untuk memusatkan peta pada posisi Anda saat ini", developer_comment: "Instruction shown on the map before a point is placed, when the user can drag the feature." },
|
|
42
|
+
"map_confirm_dialog.delete_shape.header": { string: "Hapus seluruh poligon?", developer_comment: "Title of the confirmation dialog shown before deleting a shape." },
|
|
43
|
+
"map_confirm_dialog.delete_trace.header": { string: "Hapus seluruh garis?", developer_comment: "Title of the confirmation dialog shown before deleting a trace." },
|
|
44
|
+
"map_confirm_dialog.delete_shape.body": { string: "Apakah Anda yakin ingin menghapus seluruh poligon dan mengulang kembali?", developer_comment: "Body text of the confirmation dialog shown before deleting a shape." },
|
|
45
|
+
"map_confirm_dialog.delete_trace.body": { string: "Apakah Anda yakin ingin menghapus seluruh garis dan mengulang kembali?", developer_comment: "Body text of the confirmation dialog shown before deleting a trace." },
|
|
46
|
+
"map_advanced_panel.longitude.label": { string: "Bujur", developer_comment: "Label for the longitude input field in the advanced panel." },
|
|
47
|
+
"map_advanced_panel.longitude.error": { string: "Bujur tidak valid", developer_comment: "Validation error shown when the longitude value entered is out of range." },
|
|
48
|
+
"map_advanced_panel.latitude.label": { string: "Lintang", developer_comment: "Label for the latitude input field in the advanced panel." },
|
|
49
|
+
"map_advanced_panel.latitude.error": { string: "Lintang tidak valid", developer_comment: "Validation error shown when the latitude value entered is out of range." },
|
|
50
|
+
"map_advanced_panel.altitude.label": { string: "Ketinggian", developer_comment: "Label for the altitude input field in the advanced panel." },
|
|
51
|
+
"map_advanced_panel.accuracy.label": { string: "Akurasi", developer_comment: "Label for the accuracy input field in the advanced panel." },
|
|
52
|
+
"map_advanced_panel.import_data.label": { string: "Impor data untuk mengganti lokasi", developer_comment: "Label for the link that opens the import/paste dialog from the advanced panel." },
|
|
53
|
+
"map_controls.zoom_fit_all.description": { string: "Tampilkan semua elemen di peta", developer_comment: "Aria-label for the map control button that zooms to fit all features in view." },
|
|
54
|
+
"map_controls.current_location.description": { string: "Temukan lokasi Anda", developer_comment: "Aria-label for the map control button that centers the map on the device's current GPS location." },
|
|
55
|
+
"map_controls.delete.description": { string: "Hapus satu titik sudut atau semua titik sudut", developer_comment: "Aria-label for the map control button that deletes the selected vertex or all vertices." },
|
|
56
|
+
"map_controls.open_advanced.description": { string: "Pengeditan manual lanjutan", developer_comment: "Aria-label for the map control button that opens the advanced coordinate editing panel." },
|
|
57
|
+
"map_properties.remove_selection.label": { string: "Hapus pilihan", developer_comment: "Label for the button that removes the currently saved feature selection." },
|
|
58
|
+
"map_properties.save_selected.label": { string: "Simpan pilihan", developer_comment: "Label for the button that saves the currently selected map feature." },
|
|
59
|
+
"map_status_bar.no_trace_saved.label": { string: "Belum ada garis yang disimpan", developer_comment: "Status bar message shown when no trace (linestring) has been saved yet." },
|
|
60
|
+
"map_status_bar.no_shape_saved.label": { string: "Belum ada poligon yang disimpan", developer_comment: "Status bar message shown when no shape (polygon) has been saved yet." },
|
|
61
|
+
"map_status_bar.no_point_saved.label": { string: "Belum ada titik yang disimpan", developer_comment: "Status bar message shown when no point has been saved yet." },
|
|
62
|
+
"map_status_bar.point_saved.label": { string: "Titik disimpan", developer_comment: "Status bar message shown when a point has been saved." },
|
|
63
|
+
"map_status_bar.trace_saved.label": { string: "Garis disimpan", developer_comment: "Status bar message shown when a trace (linestring) has been saved." },
|
|
64
|
+
"map_status_bar.shape_saved.label": { string: "Poligon disimpan", developer_comment: "Status bar message shown when a shape (polygon) has been saved." },
|
|
65
|
+
"map_status_bar.feature_saved.label": { string: "Elemen disimpan", developer_comment: "Fallback status bar message shown when a feature of an unrecognised geometry type has been saved." },
|
|
66
|
+
"map_status_bar.points_saved.label": { string: "{count} titik disimpan", developer_comment: "Status bar message showing how many points have been saved. {count} is the number of saved points." },
|
|
67
|
+
"map_status_bar.capturing.label": { string: "Mendapatkan lokasi...", developer_comment: "Status bar message shown while the device is actively capturing a GPS location." },
|
|
68
|
+
"map_status_bar.remove_point.label": { string: "Hapus titik", developer_comment: "Full label for the remove button shown on larger screens in the map status bar." },
|
|
69
|
+
"map_status_bar.view_details.label": { string: "Lihat detail", developer_comment: "Label for the button that opens the feature properties panel." },
|
|
70
|
+
"map_status_bar.advanced.label": { string: "Lanjutan", developer_comment: "Label for the button that opens the advanced coordinate editing panel." },
|
|
71
|
+
"map_status_bar.vertex_longitude.label": { string: "Bujur: {longitude}", developer_comment: "Longitude component of the selected vertex info shown in the map status bar. {longitude} is the numeric longitude value." },
|
|
72
|
+
"map_status_bar.vertex_latitude.label": { string: "Lintang: {latitude}", developer_comment: "Latitude component of the selected vertex info shown in the map status bar. {latitude} is the numeric latitude value." },
|
|
73
|
+
"map_status_bar.vertex_altitude.label": { string: "Ketinggian: {altitude} m", developer_comment: "Altitude component of the selected vertex info shown in the map status bar. {altitude} is the numeric altitude value in metres." },
|
|
74
|
+
"map_status_bar.vertex_accuracy.label": { string: "Akurasi: {accuracy}", developer_comment: "Accuracy component of the selected vertex info shown in the map status bar. {accuracy} is the pre-formatted accuracy value." },
|
|
75
|
+
"map_update_coords_dialog.header.title": { string: "Impor data untuk mengganti lokasi", developer_comment: "Title shown in the header of the dialog for importing coordinates via paste or file upload." },
|
|
76
|
+
"map_update_coords_dialog.paste_data.label": { string: "Tempel data dalam format ODK", developer_comment: "Label for the paste input field in the import coordinates dialog." },
|
|
77
|
+
"map_update_coords_dialog.paste_data.hint": { string: "Masukkan koordinat sebagai: Lintang Bujur Ketinggian Akurasi. Pisahkan beberapa titik dengan titik koma (;).", developer_comment: "Helper text explaining the expected format for pasted coordinate data." },
|
|
78
|
+
"map_update_coords_dialog.upload_file.label": { string: "Unggah file GeoJSON", developer_comment: "Label for the file upload section in the import coordinates dialog." },
|
|
79
|
+
"map_update_coords_dialog.upload_file.action": { string: "Unggah file", developer_comment: "Label for the button that opens the file chooser to upload a GeoJSON file." },
|
|
80
|
+
"map_update_coords_dialog.file_empty.error": { string: "File kosong.", developer_comment: "Error shown when the uploaded file contains no content." },
|
|
81
|
+
"map_update_coords_dialog.unsupported_file.error": { string: "Jenis file tidak didukung. Harap unggah file .geojson.", developer_comment: "Error shown when the uploaded file is not a supported GeoJSON format." },
|
|
82
|
+
"map_update_coords_dialog.parse_failed.error": { string: "Kesalahan saat mengurai file. Pastikan itu adalah GeoJSON yang valid.", developer_comment: "Error shown when the uploaded file could not be parsed as valid GeoJSON." },
|
|
83
|
+
"map_update_coords_dialog.incorrect_geometry.error": { string: "Jenis geometri salah.", developer_comment: "Error shown when the imported data contains a geometry type incompatible with the current field." },
|
|
84
|
+
"media_block.fetch.error": { string: "Tidak dapat mengambil file media. Periksa URL dan pengaturan unduhan.", developer_comment: "Displayed when media (image, audio or video) fetching fails." },
|
|
85
|
+
"media_block.not_found.error": { string: "File media tidak ditemukan. File: {file}", developer_comment: "Displayed when the server returns a 404 or non-200 status." },
|
|
86
|
+
"media_block.unknown.error": { string: "Tidak dapat mengambil file media. Kesalahan tidak diketahui. File: {file}", developer_comment: "Generic fallback for network failures or unexpected exceptions." },
|
|
87
|
+
"video_block.load.error": { string: "Kesalahan saat memuat video. File: {file}", developer_comment: "Displayed when a video element fires a load error. {file} is the resource URL." },
|
|
88
|
+
"audio_block.load.error": { string: "Kesalahan saat memuat audio. File: {file}", developer_comment: "Displayed when an audio element fires a load error. {file} is the resource URL." },
|
|
89
|
+
"image_block.load.error": { string: "Kesalahan saat memuat gambar. File: {file}", developer_comment: "Displayed when an image element fires a load error. {file} is the resource URL." },
|
|
90
|
+
"rank_control.open.label": { string: "Urutkan elemen", developer_comment: "The label for the button that opens the rank control." },
|
|
91
|
+
"trigger_control.okay.label": { string: "Oke", developer_comment: "The label for the 'Okay' button." },
|
|
92
|
+
"input_geopoint.get_location.label": { string: "Dapatkan lokasi", developer_comment: "Label for the button to start capturing the device's current GPS location." },
|
|
93
|
+
"input_geopoint.try_again.label": { string: "Coba lagi", developer_comment: "Label for the button to retry capturing the GPS location after one has already been saved." },
|
|
94
|
+
"input_geopoint.location_error.title": { string: "Lokasi tidak dapat diakses", developer_comment: "Title of the error message shown when the browser cannot access the device's location." },
|
|
95
|
+
"input_geopoint.location_error.description": { string: "Berikan izin lokasi di pengaturan browser Anda dan pastikan lokasi diaktifkan.", developer_comment: "Description of what the user should do to resolve a location access error." },
|
|
96
|
+
"geolocation_dialog.header.title": { string: "Mencari lokasi Anda", developer_comment: "Title shown in the header of the dialog while the device is searching for a GPS fix." },
|
|
97
|
+
"geolocation_dialog.accuracy_threshold.info": { string: "Lokasi akan disimpan pada {accuracyThreshold} m", developer_comment: "Informational message shown while waiting for a GPS fix. {accuracyThreshold} is the accuracy threshold in metres at which the location will be automatically saved." },
|
|
98
|
+
"geolocation_dialog.elapsed_time.label": { string: "Waktu untuk menangkap lokasi:", developer_comment: "Label preceding the elapsed time counter shown while waiting for a GPS fix." },
|
|
99
|
+
"geolocation_dialog.previous_accuracy.info": { string: "Lokasi sebelumnya disimpan pada {accuracy} m", developer_comment: "Shows the accuracy of the previously saved location in metres. {accuracy} is the numeric accuracy value." },
|
|
100
|
+
"geolocation_dialog.save.label": { string: "Simpan lokasi", developer_comment: "Label for the button to save the currently captured GPS location." },
|
|
101
|
+
"geopoint_accuracy.good.label": { string: "Akurasi baik", developer_comment: "Label shown when the GPS accuracy is within the good threshold." },
|
|
102
|
+
"geopoint_accuracy.acceptable.label": { string: "Akurasi dapat diterima", developer_comment: "Label shown when the GPS accuracy is within the acceptable threshold (between good and unacceptable)." },
|
|
103
|
+
"geopoint_accuracy.poor.label": { string: "Akurasi buruk", developer_comment: "Label shown when the GPS accuracy does not meet the acceptable threshold." },
|
|
104
|
+
"geopoint_accuracy.unknown.label": { string: "Akurasi tidak diketahui", developer_comment: "Label shown when no GPS accuracy value is available yet." },
|
|
105
|
+
"upload_image_header.take_picture.label": { string: "Ambil gambar", developer_comment: "Label for the button to take a picture using the device's camera." },
|
|
106
|
+
"upload_image_header.choose_image.label": { string: "Pilih gambar", developer_comment: "Label for the button to choose an image from the device's gallery or file system." },
|
|
107
|
+
"upload_image_header.annotation.label": { string: "Tandai gambar", developer_comment: "Label for the button to open the canvas in full-screen mode for annotating the image. Only visible on mobile devices." },
|
|
108
|
+
"upload_image_header.draw.label": { string: "Sketsa", developer_comment: "Label for the button to open the canvas in full-screen mode for drawing. Only visible on mobile devices." },
|
|
109
|
+
"upload_image_header.signature.label": { string: "Ambil tanda tangan", developer_comment: "Label for the button to open the canvas in full-screen mode for capturing a signature. Only visible on mobile devices." },
|
|
110
|
+
"upload_control.choose_file.label": { string: "Pilih file", developer_comment: "Label for the button to choose a file from the device. Used in the audio, video, and generic file upload headers." },
|
|
111
|
+
"upload_control.drag_and_drop.placeholder": { string: "Tarik dan lepas file di sini untuk mengunggah", developer_comment: "Placeholder text shown in the upload area when no file has been selected." },
|
|
112
|
+
"upload_control.no_signature.placeholder": { string: "Tidak ada tanda tangan yang diambil", developer_comment: "Placeholder text shown on mobile when no signature has been captured yet." },
|
|
113
|
+
"upload_control.no_drawing.placeholder": { string: "Tidak ada gambar yang diambil", developer_comment: "Placeholder text shown on mobile when no drawing has been captured yet." },
|
|
114
|
+
"upload_control.file_too_large.error": { string: "Ukuran file yang dipilih melebihi batas maksimum yang diizinkan", developer_comment: "Error message shown when the selected file exceeds the maximum allowed size." },
|
|
115
|
+
"upload_control.must_be_image.error": { string: "File yang dipilih harus berupa gambar", developer_comment: "Error message shown when the selected file is not an image." },
|
|
116
|
+
"upload_control.must_be_video.error": { string: "File yang dipilih harus berupa video", developer_comment: "Error message shown when the selected file is not a video." },
|
|
117
|
+
"upload_control.must_be_audio.error": { string: "File yang dipilih harus berupa audio", developer_comment: "Error message shown when the selected file is not an audio file." },
|
|
118
|
+
"upload_control.invalid_file_type.error": { string: "Jenis file tidak valid", developer_comment: "Error message shown when the selected file does not match the expected media type." },
|
|
119
|
+
"upload_delete_dialog.header.title": { string: "Hapus file yang diunggah?", developer_comment: "Title of the confirmation dialog shown before deleting an uploaded file." },
|
|
120
|
+
"upload_delete_dialog.body.message": { string: "Apakah Anda yakin ingin menghapus file ini?", developer_comment: "Body text of the confirmation dialog shown before deleting an uploaded file." },
|
|
121
|
+
"upload_control.downloading.error": { string: "Terjadi kesalahan saat mengunduh.", developer_comment: "Error message shown when downloading the attachment from the server failed." },
|
|
122
|
+
"repeat.add.label": { string: "Tambah", developer_comment: "Label for the button to add a repeat instance." },
|
|
123
|
+
"repeat.instance.placeholder": { string: "Elemen", developer_comment: "Placeholder for the label of a repeat instance." }
|
|
124
|
+
};
|
|
125
|
+
export {
|
|
126
|
+
e as default
|
|
127
|
+
};
|