From c41c8e36392302c198b38f5afdc5f11594d1d6da Mon Sep 17 00:00:00 2001 From: volterra79 Date: Fri, 8 Mar 2024 09:41:49 +0100 Subject: [PATCH] :globe_with_meridians Add pl.js Polish translation file --- config/i18n/index.js | 4 +- config/i18n/pl.js | 159 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 162 insertions(+), 1 deletion(-) create mode 100644 config/i18n/pl.js diff --git a/config/i18n/index.js b/config/i18n/index.js index 2640a12f..99b847d2 100644 --- a/config/i18n/index.js +++ b/config/i18n/index.js @@ -5,6 +5,7 @@ import se from './se'; import fr from './fr'; import de from './de'; import ro from './ro'; +import pl from './pl'; export default { it, @@ -13,5 +14,6 @@ export default { se, fr, de, - ro + ro, + pl, } \ No newline at end of file diff --git a/config/i18n/pl.js b/config/i18n/pl.js new file mode 100644 index 00000000..35cd163e --- /dev/null +++ b/config/i18n/pl.js @@ -0,0 +1,159 @@ +export default { + errors: { + no_layers: "An error occurs. It's no possible to edit layers", + some_layers: "An error occurs: It's no possible to edit some layers" + }, + search: "Search", + editing_changes: "Editing Changes", + editing_data: "Editing Layers", + editing_attributes: "Editing attributes", + relations: "Relations", + edit_relation: "Edit relation", + back_to_relations: "Back to Relations", + no_relations_found: "No relations found", + relation_data: "Relation data", + relation_already_added: "Relation already added", + list_of_relations_feature: "List of relations feature ", + tooltip: { + edit_layer: "Edit Layer" + }, + toolbox: { + title: 'Edit' + }, + table: { + edit: "Edit feature", + copy: "Create a copy", + delete: "Delete feature" + }, + tools: { + copy: "Copy features", + pastefeaturesfromotherlayers: "Paste features from other layer", + addpart: "Add part to multipart", + deletepart: "Delete part from multipart", + merge: "Dissolve features", + split: "Split Feature", + add_feature: "Add feature", + delete_feature: "Delete feature", + move_feature: "Move feature", + update_vertex: "Update feature vertex", + update_feature: "Update feature attribute", + update_multi_features: "Update attributes of selected features", + copyfeaturefromexternallayer: "Create Feature from added layer" + }, + toolsoftool: { + measure: "Show measure", + snap: "Snap layer", + snapall: "Snap to all layers" + }, + steps: { + help: { + select_elements: "Select features", + select_element: "Select feature", + copy: "Create new copy of selected features", + merge: "Dissolve features", + split: "Split Feature", + new: "Create new feature", + edit_table: "Edit table features", + draw_new_feature: "Draw feature on map", + action_confirm: "Confirm action", + double_click_delete: "Select feature on map to delete", + edit_feature_vertex: "Modify or add a vertex on selected feature", + move: "Move selected feature", + select_feature_to_relation: "Select feature that you bind relation", + show_edit_feature_form: "Show feature form to edit attributes", + pick_feature: "Select feature on map to modify", + insert_attributes_feature: "Insert attributes of the feature" + } + }, + workflow: { + steps: { + select: 'Click on feature to select', + draw_part: "Draw new part", + merge: 'Select featurewhere dissolve', + selectSHIFT: 'Select features drawing a rectangle pressing SHIFT', + selectDrawBox: "Select features drawing a rectangle by two point of opposite corners", + selectDrawBoxAtLeast2Feature: "Select at least features drawing a rectangle by two point of opposite corners", + selectPoint: "Click on feature to select", + selectPointSHIFT: 'Select features drawing a rectangle pressing SHIFT (multifeatures) or click on one feature', + selectMultiPointSHIFT: 'Select features drawing a rectangle pressing SHIFT or click on feature', + selectMultiPointSHIFTAtLeast2Feature: 'Select at least 2 features drawing a rectangle pressing SHIFT or click on feature', + copyCTRL: 'Copy selected features using CTRL+C', + selectStartVertex: 'Select starting vertex of selected features', + selectToPaste: 'Select the point where paste the features selected', + draw_split_line: "Draw a line to split selected feature" + }, + title: { + steps: 'Steps' + }, + next: 'Next', + }, + messages: { + featureslockbyotheruser: "Some geometries/records are not editable because in editing by other user", + splitted: "Splitted", + nosplittedfeature: "Feature not spitted", + press_esc: "Press ESC to back", + online: "Back ONLINE. Now you can save your changes on database", + offline: "You are OFFLINE. All changes are saved locally", + delete_feature: "Do you want delete selected feature ?", + delete_feature_relations: "If feature has bindings relations, these relations become orphans. We suggest to handle these relations before detele this feature", + unlink_relation: "Do you want unlink relation?", + commit_feature: "Do you want to save the changes", + toolbox_has_relation: "this layer is part of a relation", + saved: "Data saved successfully", + saved_local:"Data saved locally successfully", + loading_data: "Loading data", + saving: "Saving data. Please wait ...", + constraints: { + enable_editing: "Please Zoom In to enable editing tools \nActivation scale at 1:" + }, + pdf: "Document preview not available. Please click here ", + commit: { + header: "The following list show all changes to commit.", + header_add: "Added show the number of features added", + header_update_delete: "Modified and Deleted show the list of features id", + add: "Added(n. features)", + delete: "Deleted(id)", + update: "Modified(id)" + }, + loading_table_data: "Building Data Table. Please wait ...", + copy_and_paste_from_other_layer_mandatory_fields: "It is necessary to fill in any mandatory fields on the features pasted before saving", + no_feature_selected: "No feature selected", + select_min_2_features: 'Select at least 2 features' + }, + relation: { + table: { + info: `
Select relations to link it to current editing feature.
` + }, + draw_new_feature:"Draw new feature", + draw_or_copy:"or", + copy_feature_from_other_layer:"Copy feature from other layer" + }, + form: { + relations: { + tooltips: { + back_to_father:"Back to edit father", + add_relation: "Create and link new relation", + link_relation: "Join a relation to this feature", + open_relation_tools: "Show relation tools", + unlink_relation: "Unlink relation" + } + }, + buttons: { + save: "Insert/Edit", + save_and_back: "Save and Back", + save_and_back_table: "Save and Back", + cancel: "Ignore Changes" + } + }, + modal: { + tools: { + copyfeaturefromotherlayer: { + title: "Select feature/s", + edit_attributes: "Edit attributes of pasted features in multiple mode" + }, + copyfeaturefromprojectlayer: { + title: "Select a feature" + } + } + } +} \ No newline at end of file